summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2016-03-09 22:05:38 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2016-03-09 22:05:38 +0100
commitb9a4e9c8a68dcb6b17617f4f7a5ad5ad3298bfa9 (patch)
tree55b47f0b304ebea5608d98f0a978b150e5ab30c8
parent126bb8cb6b93240bb4d3a2b816b74c286c3d422b (diff)
Imported Upstream version 1.7.1upstream/1.7.1upstream
-rw-r--r--CHANGELOG30
-rw-r--r--bin/gcstar2
-rw-r--r--lib/gcstar/GCExport/GCExportBase.pm39
-rw-r--r--lib/gcstar/GCExport/GCExportExternal.pm19
-rw-r--r--lib/gcstar/GCExport/GCExportHTML.pm2
-rw-r--r--lib/gcstar/GCGraphicComponents/GCDoubleLists.pm73
-rw-r--r--lib/gcstar/GCItemsLists/GCImageLists.pm4
-rw-r--r--lib/gcstar/GCItemsLists/GCListOptions.pm9
-rw-r--r--lib/gcstar/GCItemsLists/GCTextLists.pm18
-rw-r--r--lib/gcstar/GCLang/CA/GCstar.pm12
-rw-r--r--lib/gcstar/GCLang/CS/GCstar.pm12
-rw-r--r--lib/gcstar/GCLang/DE/GCstar.pm12
-rw-r--r--lib/gcstar/GCLang/EL/GCstar.pm12
-rw-r--r--lib/gcstar/GCLang/SV/GCstar.pm12
-rw-r--r--lib/gcstar/GCModel.pm19
-rw-r--r--lib/gcstar/GCPlugins/GCcomics/GCbedetheque.pm246
-rw-r--r--lib/gcstar/GCPlugins/GCfilms/GCAlpacineES.pm435
-rw-r--r--lib/gcstar/GCPlugins/GCfilms/GCImdb.pm888
-rw-r--r--lib/gcstar/GCPlugins/GCgames/GCGameSpot.pm365
-rw-r--r--lib/gcstar/GCPlugins/GCgames/GCJeuxVideoCom.pm512
-rw-r--r--lib/gcstar/GCPlugins/GCgames/GCJeuxVideoFr.pm78
-rw-r--r--lib/gcstar/GCPlugins/GCgames/GCMobyGames.pm287
-rw-r--r--lib/gcstar/GCStats.pm28
-rw-r--r--lib/gcstar/GCUtils.pm17
-rw-r--r--packages/fedora/gcstar.spec2
-rw-r--r--packages/rpm/gcstar.spec2
-rw-r--r--packages/win32/gcstar.nsi2
-rw-r--r--share/applications/gcstar.desktop2
-rw-r--r--share/gcstar/logos/Peri_main_logo.svg6209
29 files changed, 5810 insertions, 3538 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 761147d..9606d06 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,33 @@
+1.7.1
+
+ * New features
+ - When generating statistics, they can be grouped per dates.
+ - Export to GCstar Viewer generates a collection that loads faster in
+ image mode (requires GCstar Viewer 2.10 or above)
+
+ * User interface changes
+ - Display totals for numeric fields when the list is displayed in
+ detailed mode.
+
+ * Updated languages
+ - Catalan
+ - Czech
+ - German
+ - Greek
+ - Swedish
+
+ * Bugs fixed
+ - User added fields were not shown in the panel below the list.
+ - When exporting to HTML, it was sometimes not possible to select
+ fields with the templates that support that.
+ - Bugs fixed in some website plugins:
+ Bedetheque
+ GameSpot
+ IMDb
+ jeuxvideo.com
+ jeuxvideo.fr
+ MobyGames
+
1.7.0
* New translations
diff --git a/bin/gcstar b/bin/gcstar
index 4f83b71..0b4ed85 100644
--- a/bin/gcstar
+++ b/bin/gcstar
@@ -33,7 +33,7 @@ if ($ENV{GCS_PROFILING} > 0)
eval '$initTime = [Time::HiRes::gettimeofday()]';
}
-my $VERSION = '1.7.0';
+my $VERSION = '1.7.1';
my $MULTI_PROCESS = ((!exists $ENV{GCS_PROFILING}) || ($ENV{GCS_PROFILING} == 0));
diff --git a/lib/gcstar/GCExport/GCExportBase.pm b/lib/gcstar/GCExport/GCExportBase.pm
index fb23ec2..0c229d7 100644
--- a/lib/gcstar/GCExport/GCExportBase.pm
+++ b/lib/gcstar/GCExport/GCExportBase.pm
@@ -133,6 +133,29 @@ use GCExportImport;
return $self->{options}->{parent}->getUniqueImageFileName($suffix, $title, $dir);
}
+ sub createMiniature
+ {
+ my ($self, $source, $dest, $newHeight) = @_;
+
+ $source =~ /.*?(\.[^.]*)$/;
+ my $suffix = $1;
+ my $pixbuf = Gtk2::Gdk::Pixbuf->new_from_file($source);
+ my ($width, $height) = ($pixbuf->get_width, $pixbuf->get_height);
+ my $picWidth = $width * ($newHeight / $height);
+ $pixbuf = GCUtils::scaleMaxPixbuf($pixbuf, $picWidth, $newHeight, 1);
+ my $format;
+ if ($suffix =~ /png/i)
+ {
+ $format = 'png';
+ }
+ else
+ {
+ $dest =~ s/\.[^.]*$/\.jpg/;
+ $format = 'jpeg';
+ }
+ $pixbuf->save($dest, $format);
+ }
+
sub duplicatePicture
{
my ($self, $orig, $field, $dir, $title, $newHeight) = @_;
@@ -157,21 +180,7 @@ use GCExportImport;
my $picHeight = $self->getNewPictureHeight;
if ($picHeight)
{
- my $pixbuf = Gtk2::Gdk::Pixbuf->new_from_file($newPic);
- my ($width, $height) = ($pixbuf->get_width, $pixbuf->get_height);
- my $picWidth = $width * ($picHeight / $height);
- $pixbuf = GCUtils::scaleMaxPixbuf($pixbuf, $picWidth, $picHeight, 1);
- my $format;
- if ($suffix =~ /png/i)
- {
- $format = 'png';
- }
- else
- {
- $dest =~ s/\.[^.]*$/\.jpg/;
- $format = 'jpeg';
- }
- $pixbuf->save($dest, $format);
+ $self->createMiniature($newPic, $dest, $picHeight);
}
else
{
diff --git a/lib/gcstar/GCExport/GCExportExternal.pm b/lib/gcstar/GCExport/GCExportExternal.pm
index d5c096c..2263387 100644
--- a/lib/gcstar/GCExport/GCExportExternal.pm
+++ b/lib/gcstar/GCExport/GCExportExternal.pm
@@ -45,6 +45,7 @@ use GCExport::GCExportBase;
bless ($self, $class);
$self->{useZip} = $self->checkOptionalModule('Archive::Zip');
+ $self->{covers} = {};
return $self;
}
@@ -57,10 +58,13 @@ use GCExport::GCExportBase;
sub transformPicturePath
{
my ($self, $path, $file, $item, $field) = @_;
- return $self->duplicatePicture($path,
+ my $newPath = $self->duplicatePicture($path,
$field,
$self->{imageDir},
$item->{$self->{model}->{commonFields}->{title}});
+ $self->{isCover}->{$newPath} = 1
+ if $self->{model}->{commonFields}->{cover} eq $field;
+ return $newPath;
}
sub process
@@ -123,8 +127,19 @@ use GCExport::GCExportBase;
my $zip = Archive::Zip->new();
$zip->addFile(basename($self->{fileName}));
$zip->addDirectory(basename($self->{imageDir}));
+ my $miniDir = $self->{imageDir}.'-mini';
+ mkdir $miniDir;
+ $zip->addDirectory(basename($miniDir));
my @images = glob $imagesSubDir.'/*';
- $zip->addFile($_) foreach @images;
+ foreach my $image(@images)
+ {
+ $zip->addFile($image);
+ my $imgFile = basename($image);
+ my $fullFileName = $self->{imageDir}."/$imgFile";
+ next if !$self->{isCover}->{$image};
+ $self->createMiniature($fullFileName, "$miniDir/$imgFile", 150);
+ $zip->addFile(basename($miniDir)."/$imgFile");
+ }
my $result = $zip->writeToFileNamed($outFile);
if ($result)
{
diff --git a/lib/gcstar/GCExport/GCExportHTML.pm b/lib/gcstar/GCExport/GCExportHTML.pm
index b083545..406039c 100644
--- a/lib/gcstar/GCExport/GCExportHTML.pm
+++ b/lib/gcstar/GCExport/GCExportHTML.pm
@@ -195,6 +195,7 @@ use GCExport::GCExportBase;
$parent->{options}->{modelFile}->set_sensitive($model eq 'UseFile');
$parent->{fieldsSelection}->set_sensitive($self->{isGeneric}->{$model})
if $parent->{fieldsSelection};
+ $self->{wantsFieldsSelection} = $self->{isGeneric}->{$model};
}
sub preview
@@ -240,7 +241,6 @@ use GCExport::GCExportBase;
{
my $self = shift;
return 1;
- return $self->{genericAdded} || $self->{genericModels};
}
sub wantsImagesSelection
diff --git a/lib/gcstar/GCGraphicComponents/GCDoubleLists.pm b/lib/gcstar/GCGraphicComponents/GCDoubleLists.pm
index c59cae1..63ab50f 100644
--- a/lib/gcstar/GCGraphicComponents/GCDoubleLists.pm
+++ b/lib/gcstar/GCGraphicComponents/GCDoubleLists.pm
@@ -470,6 +470,32 @@ use GCUtils;
$self->removeFromPermanent($self->{ignoreString});
}
+ sub setModel
+ {
+ my ($self, $model) = @_;
+ $self->{model} = $model;
+ if ($model)
+ {
+ my $groups = $model->getGroups;
+ $self->{separator} = $model->getDisplayedText('Separator');
+ while (my ($key, $value) = each %{$model->{fieldsInfo}})
+ {
+ next if !$value->{displayed};
+ my $displayed = $groups->{$value->{group}}->{displayed}
+ . $self->{separator}
+ . $value->{displayed};
+ $self->{fieldNameToId}->{$displayed} = $key;
+ $self->{fieldIdToName}->{$key} = $displayed;
+ }
+ my $order = 0;
+ foreach (@{$model->{groups}})
+ {
+ $self->{groupsOrder}->{$groups->{$_->{id}}->{displayed}} = $order++;
+ }
+ $self->{model} = $model;
+ }
+ }
+
sub new
{
my ($proto, $parent, $preList, $isIdList, $ignoreField) = @_;
@@ -524,27 +550,32 @@ use GCUtils;
$self->{fieldNameToId} = {};
$self->{groupsOrder} = {};
- my $model = $self->{parent}->{model};
- if ($model)
- {
- my $groups = $model->getGroups;
- $self->{separator} = $model->getDisplayedText('Separator');
- while (my ($key, $value) = each %{$model->{fieldsInfo}})
- {
- next if !$value->{displayed};
- my $displayed = $groups->{$value->{group}}->{displayed}
- . $self->{separator}
- . $value->{displayed};
- $self->{fieldNameToId}->{$displayed} = $key;
- $self->{fieldIdToName}->{$key} = $displayed;
- }
- my $order = 0;
- foreach (@{$model->{groups}})
- {
- $self->{groupsOrder}->{$groups->{$_->{id}}->{displayed}} = $order++;
- }
- $self->{model} = $model;
- }
+# my $model = $self->{parent}->{model};
+# use Data::Dumper;
+# if ($model)
+# {
+# my $groups = $model->getGroups;
+# print "GROUPS : ",Dumper($groups),"\n";
+# print "FIELDS : ",Dumper($model->{fieldsInfo}),"\n";
+# $self->{separator} = $model->getDisplayedText('Separator');
+# while (my ($key, $value) = each %{$model->{fieldsInfo}})
+# {
+# next if !$value->{displayed};
+# my $displayed = $groups->{$value->{group}}->{displayed}
+# . $self->{separator}
+# . $value->{displayed};
+# print "ADDING ",$displayed,"\n";
+# $self->{fieldNameToId}->{$displayed} = $key;
+# $self->{fieldIdToName}->{$key} = $displayed;
+# }
+# my $order = 0;
+# foreach (@{$model->{groups}})
+# {
+# $self->{groupsOrder}->{$groups->{$_->{id}}->{displayed}} = $order++;
+# }
+# $self->{model} = $model;
+# }
+ $self->setModel($self->{parent}->{model});
if ($preList)
{
diff --git a/lib/gcstar/GCItemsLists/GCImageLists.pm b/lib/gcstar/GCItemsLists/GCImageLists.pm
index 2250bcb..6c775e9 100644
--- a/lib/gcstar/GCItemsLists/GCImageLists.pm
+++ b/lib/gcstar/GCItemsLists/GCImageLists.pm
@@ -1,4 +1,4 @@
-package GCImageLists;
+package GCImageLists;
###################################################
#
@@ -1424,7 +1424,7 @@ my $timeOutBetweenEnhancements = 50;
if ($^O =~ /win32/i)
{
# It looks like Win32 version only supports JPEG pictures for background
- $tmpPixbuf->save($self->{style}->{tmpBgPixmap}, 'jpeg', quality => '100');
+ $tmpPixbuf->save($self->{style}->{tmpBgPixmapFile}, 'jpeg', quality => '100');
}
else
{
diff --git a/lib/gcstar/GCItemsLists/GCListOptions.pm b/lib/gcstar/GCItemsLists/GCListOptions.pm
index c41084b..f473319 100644
--- a/lib/gcstar/GCItemsLists/GCListOptions.pm
+++ b/lib/gcstar/GCItemsLists/GCListOptions.pm
@@ -145,6 +145,9 @@ use Gtk2;
sub initValues
{
my $self = shift;
+ $self->{groupByOption}->setModel($self->{parent}->{model});
+ $self->{secondarySortOption}->setModel($self->{parent}->{model});
+
$self->{resizeImgList}->set_active($self->{optionsManager}->resizeImgList);
$self->{animateImgList}->set_active($self->{optionsManager}->animateImgList);
$self->{columns}->set_value($self->{optionsManager}->columns);
@@ -213,6 +216,7 @@ use Gtk2;
#my $self = $class->SUPER::new(0,0);
$self->{optionsManager} = $optionsManager;
+ $self->{parent} = $parent;
$self->{lang} = $parent->{lang};
# $self->set_row_spacings($GCUtils::halfMargin);
@@ -384,12 +388,16 @@ use Gtk2;
{
my $self = shift;
+ $self->{groupByOption}->setModel($self->{parent}->{model});
+ $self->{secondarySortOption}->setModel($self->{parent}->{model});
+
$self->{imgSizeOption}->setValue($self->{optionsManager}->detailImgSize);
$self->{groupByOption}->setValue($self->{optionsManager}->groupBy);
$self->{secondarySortOption}->setValue($self->{optionsManager}->secondarySort);
$self->{groupedFirst}->setValue($self->{optionsManager}->groupedFirst);
$self->{addCount}->setValue($self->{optionsManager}->addCount);
+ $self->{fieldsSelection}->setModel($self->{parent}->{model});
my @tmpFieldsArray = split m/\|/, $self->{optionsManager}->details;
$self->{fieldsSelection}->setListFromIds(\@tmpFieldsArray);
@@ -435,6 +443,7 @@ use Gtk2;
$self->{lang} = $parent->{lang};
$self->{optionsManager} = $optionsManager;
+ $self->{parent} = $parent;
bless ($self, $class);
diff --git a/lib/gcstar/GCItemsLists/GCTextLists.pm b/lib/gcstar/GCItemsLists/GCTextLists.pm
index aaa080b..741d03e 100644
--- a/lib/gcstar/GCItemsLists/GCTextLists.pm
+++ b/lib/gcstar/GCItemsLists/GCTextLists.pm
@@ -742,6 +742,7 @@ use locale;
$self->{secondaryField} = $self->{preferences}->secondarySort;
$self->{secondaryIndex} = -1;
$self->{addSecondary} = 0;
+ $self->{numericFields} = [];
foreach my $field(@tmpArray)
{
@@ -767,6 +768,7 @@ use locale;
push @columnsType, 'Glib::Double';
$renderer = Gtk2::CellRendererText->new;
$attribute = 'text';
+ push @{$self->{numericFields}}, $field;
}
else
{
@@ -1582,6 +1584,22 @@ use locale;
$generated);
$self->{originalValue}->{$generated} = $original;
$self->{model}->set($iter, $self->{visibleCol}, $nbChildren);
+
+ my %totals;
+ my $field;
+ my $childIter = $self->{subModel}->iter_children($subIter);
+ while ($childIter)
+ {
+ for $field(@{$self->{numericFields}})
+ {
+ $totals{$field} += ($self->{subModel}->get($childIter))[$self->{fieldToId}->{$field}];
+ }
+ $childIter = $self->{subModel}->iter_next($childIter);
+ }
+ for $field(@{$self->{numericFields}})
+ {
+ $self->{model}->set($iter, $self->{fieldToId}->{$field}, $totals{$field});
+ }
}
sub refreshCounts
diff --git a/lib/gcstar/GCLang/CA/GCstar.pm b/lib/gcstar/GCLang/CA/GCstar.pm
index c741c5f..5b66ffa 100644
--- a/lib/gcstar/GCLang/CA/GCstar.pm
+++ b/lib/gcstar/GCLang/CA/GCstar.pm
@@ -138,11 +138,11 @@ podeu usar <b>el botó situat devall dels detalls de la pel·lícula</b>.',
'MenuNoFilter' => '_Tot',
'MenuConfiguration' => '_Configura',
- 'MenuDisplayMenu' => 'Display',
- 'MenuDisplayFullScreen' => 'Full screen',
- 'MenuDisplayMenuBar' => 'Menus',
- 'MenuDisplayToolBar' => 'Toolbar',
- 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayMenu' => 'Mostrar',
+ 'MenuDisplayFullScreen' => 'Pantalla completa',
+ 'MenuDisplayMenuBar' => 'Menús',
+ 'MenuDisplayToolBar' => 'Barra d\'eines',
+ 'MenuDisplayStatusBar' => 'Barra d\'estat',
'MenuDisplayOptions' => '_Informació a mostrar',
'MenuBorrowers' => '_Prestataris',
'MenuToolbarConfiguration' => '_Controls de la barra d\'eines',
@@ -409,7 +409,7 @@ Logo i disseny web per le Spektre',
'ImagesOptionsBgTooltip' => 'Canvia el color de fons',
'ImagesOptionsFgTooltip'=> 'Canvia el color de la selecció',
'ImagesOptionsResizeImgList' => 'Canvia automàticament el nombre de columnes',
- 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsAnimateImgList' => 'Utilitza animacions',
'ImagesOptionsSizeLabel' => 'Mida',
'ImagesOptionsSizeList' => {0 => 'Molt Petit', 1 => 'Petit', 2 => 'Mitjà', 3 => 'Gran', 4 => 'Molt Gran'},
'ImagesOptionsSizeTooltip' => 'Trieu la mida de la imatge',
diff --git a/lib/gcstar/GCLang/CS/GCstar.pm b/lib/gcstar/GCLang/CS/GCstar.pm
index 359f860..7d31ea2 100644
--- a/lib/gcstar/GCLang/CS/GCstar.pm
+++ b/lib/gcstar/GCLang/CS/GCstar.pm
@@ -137,11 +137,11 @@ K rozlišení, který server vlastní dané informace, můžete použít
'MenuNoFilter' => '_Vše',
'MenuConfiguration' => '_Nastavení',
- 'MenuDisplayMenu' => 'Display',
- 'MenuDisplayFullScreen' => 'Full screen',
- 'MenuDisplayMenuBar' => 'Menus',
- 'MenuDisplayToolBar' => 'Toolbar',
- 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayMenu' => 'Zobrazení',
+ 'MenuDisplayFullScreen' => 'Celá obrazovka',
+ 'MenuDisplayMenuBar' => 'Nabídky',
+ 'MenuDisplayToolBar' => 'Nástrojová lišta',
+ 'MenuDisplayStatusBar' => 'Stavová lišta',
'MenuDisplayOptions' => '_Zobrazené informace',
'MenuBorrowers' => '_Dlužníci',
'MenuToolbarConfiguration' => '_Toolbar controls',
@@ -408,7 +408,7 @@ Logo a webdesign od le Spektre',
'ImagesOptionsBgTooltip' => 'Změna barvy pozadí',
'ImagesOptionsFgTooltip'=> 'Změna barvy výběru',
'ImagesOptionsResizeImgList' => 'Automatically change number of columns',
- 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsAnimateImgList' => 'Používat animace',
'ImagesOptionsSizeLabel' => 'Velikost obrázků',
'ImagesOptionsSizeList' => {0 => 'Velmi malé', 1 => 'Malé', 2 => 'Středně velké', 3 => 'Velké', 4 => 'Velmi velké'},
'ImagesOptionsSizeTooltip' => 'Výběr velikosti obrázků',
diff --git a/lib/gcstar/GCLang/DE/GCstar.pm b/lib/gcstar/GCLang/DE/GCstar.pm
index 2326204..f1ea537 100644
--- a/lib/gcstar/GCLang/DE/GCstar.pm
+++ b/lib/gcstar/GCLang/DE/GCstar.pm
@@ -137,11 +137,11 @@ Webseite, von der die Informationen stammen.',
'MenuNoFilter' => '_Alle',
'MenuConfiguration' => '_Einstellungen',
- 'MenuDisplayMenu' => 'Display',
- 'MenuDisplayFullScreen' => 'Full screen',
- 'MenuDisplayMenuBar' => 'Menus',
- 'MenuDisplayToolBar' => 'Toolbar',
- 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayMenu' => 'Anzeige',
+ 'MenuDisplayFullScreen' => 'Vollbild',
+ 'MenuDisplayMenuBar' => 'Menüs',
+ 'MenuDisplayToolBar' => 'Symbolleiste',
+ 'MenuDisplayStatusBar' => 'Fußleiste',
'MenuDisplayOptions' => 'Sichtbare _Felder',
'MenuBorrowers' => 'Ent_leiher',
'MenuToolbarConfiguration' => '_Werkzeugleiste konfigurieren',
@@ -422,7 +422,7 @@ Logo und Webdesign von le Spektre',
'ImagesOptionsBgTooltip' => 'Hintergrundfarbe ändern',
'ImagesOptionsFgTooltip'=> 'Farbe für die Auswahl einstellen',
'ImagesOptionsResizeImgList' => 'Anzahl der Spalten automatisch anpassen',
- 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsAnimateImgList' => 'Verwende Animationen',
'ImagesOptionsSizeLabel' => 'Größe',
'ImagesOptionsSizeList' => {0 => 'Sehr klein', 1 => 'Klein', 2 => 'Mittel', 3 => 'Groß', 4 => 'Sehr Groß'},
'ImagesOptionsSizeTooltip' => 'Bildgröße auswählen',
diff --git a/lib/gcstar/GCLang/EL/GCstar.pm b/lib/gcstar/GCLang/EL/GCstar.pm
index 5cc5efc..dd4884d 100644
--- a/lib/gcstar/GCLang/EL/GCstar.pm
+++ b/lib/gcstar/GCLang/EL/GCstar.pm
@@ -138,11 +138,11 @@ search plugins) προορίζονται για <b>προσωπική χρήση
'MenuNoFilter' => '_Όλα',
'MenuConfiguration' => '_Ρυθμίσεις',
- 'MenuDisplayMenu' => 'Display',
- 'MenuDisplayFullScreen' => 'Full screen',
- 'MenuDisplayMenuBar' => 'Menus',
- 'MenuDisplayToolBar' => 'Toolbar',
- 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayMenu' => 'Εμφάνιση',
+ 'MenuDisplayFullScreen' => 'Πλήρης οθόνη',
+ 'MenuDisplayMenuBar' => 'Μενού',
+ 'MenuDisplayToolBar' => 'Γραμμή εργαλείων',
+ 'MenuDisplayStatusBar' => 'Κάτω γραμμή',
'MenuDisplayOptions' => '_Εμφάνιση Πληροφοριών',
'MenuBorrowers' => '_Δανειολήπτες',
'MenuToolbarConfiguration' => '_Κουμπιά γραμμής εργαλειών',
@@ -409,7 +409,7 @@ Logo and webdesign by le Spektre',
'ImagesOptionsBgTooltip' => 'Αλλαγή χρώματος παρασκηνίου',
'ImagesOptionsFgTooltip'=> 'Αλλαγή χρώματος επιλογής',
'ImagesOptionsResizeImgList' => 'Αυτόματη ρύθμιση του αριθμού των στηλών',
- 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsAnimateImgList' => 'Χρήση κίνησης',
'ImagesOptionsSizeLabel' => 'Μέγεθος',
'ImagesOptionsSizeList' => {0 => 'Πολύ μικρό', 1 => 'Μικρό', 2 => 'Μεσαίο', 3 => 'Μεγάλο', 4 => 'Πολύ μεγάλο'},
'ImagesOptionsSizeTooltip' => 'Επιλέξτε το μέγεθος της εικόνας',
diff --git a/lib/gcstar/GCLang/SV/GCstar.pm b/lib/gcstar/GCLang/SV/GCstar.pm
index 6cad462..a2e7df8 100644
--- a/lib/gcstar/GCLang/SV/GCstar.pm
+++ b/lib/gcstar/GCLang/SV/GCstar.pm
@@ -135,11 +135,11 @@ För att avgöra vilken hemsida som äger informationen, så kan du använda <b>
'MenuNoFilter' => '_Någon',
'MenuConfiguration' => '_Inställningar',
- 'MenuDisplayMenu' => 'Display',
- 'MenuDisplayFullScreen' => 'Full screen',
- 'MenuDisplayMenuBar' => 'Menus',
- 'MenuDisplayToolBar' => 'Toolbar',
- 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayMenu' => 'Visa',
+ 'MenuDisplayFullScreen' => 'Fullskärm',
+ 'MenuDisplayMenuBar' => 'Meny',
+ 'MenuDisplayToolBar' => 'Verktygsfält',
+ 'MenuDisplayStatusBar' => 'Nedre fält',
'MenuDisplayOptions' => '_Visad Information',
'MenuBorrowers' => '_Låntagare',
'MenuToolbarConfiguration' => '_Verktygsfältets kontroller',
@@ -405,7 +405,7 @@ Logotyper och webbdesign skapad av le Spektre',
'ImagesOptionsBgTooltip' => 'Ändra bakgrundsfärg',
'ImagesOptionsFgTooltip'=> 'Ändra markeringsfärg',
'ImagesOptionsResizeImgList' => 'Ändra automatiskt antalet kolumner',
- 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsAnimateImgList' => 'Använd amimationer',
'ImagesOptionsSizeLabel' => 'Storlek',
'ImagesOptionsSizeList' => {0 => 'Väldigt liten', 1 => 'Liten', 2 => 'Mellan', 3 => 'Stor', 4 => 'Extra Stor'},
'ImagesOptionsSizeTooltip' => 'Välj en bildstorlek',
diff --git a/lib/gcstar/GCModel.pm b/lib/gcstar/GCModel.pm
index 2223e3e..65803ef 100644
--- a/lib/gcstar/GCModel.pm
+++ b/lib/gcstar/GCModel.pm
@@ -1176,18 +1176,15 @@ our $linkNameSeparator = '##';
sub getGroups
{
my $self = shift;
-
- if (!$self->{groupsHash})
+
+ $self->{groupsHash} = {};
+ foreach (@{$self->{groups}})
{
- $self->{groupsHash} = {};
- foreach (@{$self->{groups}})
- {
- $self->{groupsHash}->{$_->{id}} = {
- id => $_->{id},
- label => $_->{label},
- displayed => $self->getDisplayedText($_->{label})
- };
- }
+ $self->{groupsHash}->{$_->{id}} = {
+ id => $_->{id},
+ label => $_->{label},
+ displayed => $self->getDisplayedText($_->{label})
+ };
}
return $self->{groupsHash};
}
diff --git a/lib/gcstar/GCPlugins/GCcomics/GCbedetheque.pm b/lib/gcstar/GCPlugins/GCcomics/GCbedetheque.pm
index 457194a..636fd4f 100644
--- a/lib/gcstar/GCPlugins/GCcomics/GCbedetheque.pm
+++ b/lib/gcstar/GCPlugins/GCcomics/GCbedetheque.pm
@@ -39,11 +39,11 @@ use GCPlugins::GCcomics::GCcomicsCommon;
my ( $self, $word ) = @_;
if ($self->{searchField} eq 'series')
{
- return "http://www.bedetheque.com/index.php?R=1&RechSerie=$word";
+ return "http://www.bedetheque.com/search/albums?RechSerie=$word";
}
elsif ($self->{searchField} eq 'writer')
{
- return "http://www.bedetheque.com/index.php?R=1&RechAuteur=$word";
+ return "http://www.bedetheque.com/search/albums?RechAuteur=$word";
}
else
{
@@ -64,6 +64,7 @@ use GCPlugins::GCcomics::GCcomicsCommon;
my @array = split( /#/, $url );
$self->{site_internal_id} = $array[1];
+ # print "getItemUrl $url\n\n";
return $url if $url =~ /^http:/;
return "http://www.bedetheque.com/" . $url;
}
@@ -143,14 +144,30 @@ use GCPlugins::GCcomics::GCcomicsCommon;
}
else
{
- $html =~ m/(<div class="box main reeditions">.+)/;
-
- #$html =~ m/(<div class="album.+)/;
+ # print $html ;
+ $html =~ m/(<div class="single-title-wrap serie-wrap">.+)/;
$html = $1;
$self->{isResultsTable} = 0;
$self->{parsingEnded} = 0;
$self->{isCover} = 0;
- $self->{itemIdx}++;;
+ $self->{isTabs} = 0;
+ $self->{isLabel} = 0;
+ $self->{itemIdx}++;
+ #
+ $self->{doneColourist} = 0 ;
+ $self->{doneCost} = 0 ;
+ $self->{doneFormat} = 0 ;
+ $self->{doneIllustrator} = 0 ;
+ $self->{doneISBN} = 0 ;
+ $self->{doneNumberboards} = 0 ;
+ $self->{donePublishdate} = 0 ;
+ $self->{donePublishdate} = 0 ;
+ $self->{donePublisher} = 0 ;
+ $self->{doneSerie} = 0 ;
+ $self->{doneSynopsis} = 0 ;
+ $self->{doneTitle} = 0 ;
+ $self->{doneVolume} = 0 ;
+ $self->{doneWriter} = 0 ;
}
return $html;
@@ -178,69 +195,100 @@ use GCPlugins::GCcomics::GCcomicsCommon;
#$self->{itemsList}[ $self->{itemIdx} ]->{url} =
# "http://www.bedetheque.com/" . $attr->{href};
}
- elsif ( $tagname eq "i" )
- {
+ elsif ( ( $tagname eq "ul" ) && ( $attr->{class} eq "search-list" ) ) {
+ $self->{inTable} = 1;
+ }
+ elsif ( ($self->{inTable}) && ( $tagname eq "li" ) ) {
+ $self->{isVolume} = 1;
+ }
+ elsif ( ($self->{inTable}) && ( $tagname eq "a" ) && ( $attr->{title} eq "tooltip" ) ) {
+ $self->{itemsList}[$self->{itemIdx}]->{image} = $attr->{rel};
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $attr->{href};
+ }
+ elsif ( ($self->{isVolume}) && ( $tagname eq "span" ) && ( $attr->{class} eq "titre" ) ) {
+ $self->{isTitle} = 1;
+ }
+ elsif ( ($self->{isVolume}) && ( $tagname eq "span" ) && ( $attr->{class} eq "serie" ) ) {
$self->{isSerie} = 1;
}
+ elsif ( ($self->{isVolume}) && ( $tagname eq "span" ) && ( $attr->{class} eq "num" ) ) {
+ $self->{isNumber} = 1;
+ }
} else {
- if ( ( $tagname eq "table" ) && ( $attr->{id} eq "albums_serie" ) ) {
+ if ( ( $tagname eq "ul" ) && ( $attr->{class} eq "search-list" ) ) {
$self->{inTable} = 1;
}
- elsif ( ($self->{inTable}) && ( $tagname eq "td" ) && ( $attr->{class} eq "num" ) ) {
+ elsif ( ($self->{inTable}) && ( $tagname eq "li" ) ) {
$self->{itemIdx}++;
$self->{isVolume} = 1;
}
- elsif ( ($self->{inTable}) && ( $tagname eq "a" ) && ( $attr->{href} =~ m/serie-/ ) ) {
+ elsif ( ($self->{inTable}) && ( $tagname eq "a" ) && ( $attr->{title} eq "tooltip" ) ) {
+ $self->{itemsList}[$self->{itemIdx}]->{image} = $attr->{rel};
$self->{itemsList}[$self->{itemIdx}]->{url} = $attr->{href};
+ }
+ elsif ( ($self->{isVolume}) && ( $tagname eq "span" ) && ( $attr->{class} eq "titre" ) ) {
$self->{isTitle} = 1;
}
+ elsif ( ($self->{isVolume}) && ( $tagname eq "span" ) && ( $attr->{class} eq "serie" ) ) {
+ $self->{isSerie} = 1;
+ }
elsif ( ( $self->{isSynopsis} ) && ( $tagname eq "br" ) && ( $self->{startSynopsis} ) ) {
# This is a stop! for br ;-) and complementary of the p in the end section
# should be ( ( $tagname eq "p" ) || ( $tagname eq "br" ) )
$self->{isSynopsis} = 0;
$self->{startSynopsis} = 0;
- $self->{parsingEnded} = 1;
+ $self->{parsingEnded} = 1;
}
}
}
else
{
- if ( $tagname eq "title")
- {
- $self->{isIssue} = 1;
- $self->{isTitle} = 1;
- }
-
- if ( ( $self->{isCover} == 0 ) && ( $tagname eq "a" ) && ( $attr->{href} =~ m/Couvertures\/.*\.[jJ][pP][gG]/ ) )
- {
- $self->{curInfo}->{image} = 'http://www.bedetheque.com/' . $attr->{href};
+ if ( ( $self->{isCover} == 0 ) && ( $tagname eq "a" ) && ( $attr->{href} =~ m/Couvertures\/.*\.[jJ][pP][gG]/ ) ) {
+ $self->{curInfo}->{image} = $attr->{href};
$self->{isCover} = 1;
}
- elsif ( ( $tagname eq "div") && ( $attr->{class} eq "titre" ) ) {
- $self->{isVolume} = 1;
- }
- elsif ( ( $tagname eq "ul") && ( $attr->{class} eq "infos" ) ) {
- $self->{isResultsTable} = 1;
+ elsif ( $tagname eq "label" ) {
+ $self->{isLabel} = 1;
}
- elsif ( ( $self->{isResultsTable} ) && ( $tagname eq "label" ) ) {
- $self->{current_field} = '';
- $self->{openlabel} = 1;
+ elsif ( ( $tagname eq "ul" ) && ( $attr->{class} eq "tabs-album" ) && ( ! $self->{doneSerie} ) ) {
+ $self->{isTabs} = 1;
}
- elsif ( ( $tagname eq "div" ) && ( $attr->{class} eq "title" ) && ( !defined( $self->{curInfo}->{title} ) || ( $self->{curInfo}->{title} =~ /^$/ ) ) ) {
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "name" ) && ( ! $self->{doneTitle} ) ) {
$self->{isTitle} = 1;
}
- elsif ( ( $tagname eq "span" ) && ( $attr->{class} eq "type" ) ) {
+ elsif ( ( $tagname eq "span" ) && ( $attr->{class} eq "titre-rubrique" ) && ( ! $self->{doneSerie} ) && ( $self->{isTabs} ) ) {
$self->{isSerie} = 1;
}
- elsif ( $tagname eq "em" ) {
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "author" ) && ( ! $self->{doneWriter} ) ) {
+ $self->{isWriter} = 1;
+ }
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "illustrator" ) && ( ! $self->{doneIllustrator} ) ) {
+ $self->{isIllustrator} = 1;
+ }
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "illustrator" ) && ( ! $self->{doneColourist} ) && ( $self->{doneIllustrator} ) ) {
+ $self->{isColourist} = 1;
+ }
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "publisher" ) && ( ! $self->{donePublisher} ) ) {
+ $self->{isPublisher} = 1;
+ }
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "isbn" ) && ( ! $self->{doneISBN} ) ) {
+ $self->{isISBN} = 1;
+ }
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "numberOfPages" ) && ( ! $self->{doneNumberboards} ) ) {
+ $self->{isNumberboards} = 1;
+ }
+ elsif ( ( $tagname eq "span" ) && ( $attr->{itemprop} eq "description" ) && ( ! $self->{doneSynopsis} ) ) {
$self->{isSynopsis} = 1;
}
- elsif ( ( $tagname eq "a" ) && ( $attr->{class} eq "titre eo" ) ) {
- if ( $attr->{title} =~ m/.+\s-(\d+)-\s.+/ ) {
- $self->{curInfo}->{volume} = $1;
- }
+ elsif ( ( $tagname eq "ul" ) && ( $attr->{class} eq "liste-albums" ) ) {
+ $self->{doneColourist} = 1; # To avoid getting mess with illustrator
}
+# elsif ( ( $tagname eq "a" ) && ( $attr->{class} eq "titre eo" ) ) {
+# if ( $attr->{title} =~ m/.+\s-(\d+)-\s.+/ ) {
+# $self->{curInfo}->{volume} = $1;
+# }
+# }
}
}
@@ -260,6 +308,17 @@ use GCPlugins::GCcomics::GCcomicsCommon;
$self->{itemsList}[ $self->{itemIdx} ]->{series} = $origtext;
$self->{isSerie} = 0;
}
+ elsif ( $self->{isTitle} == 1)
+ {
+ $self->{itemsList}[ $self->{itemIdx} ]->{title} = $origtext;
+ $self->{isTitle} = 0;
+ }
+ elsif ( $self->{isNumber} == 1)
+ {
+ $self->{itemsList}[ $self->{itemIdx} ]->{volume} = $origtext;
+ $self->{itemsList}[ $self->{itemIdx} ]->{volume} =~ s/#//;
+ $self->{isNumber} = 0;
+ }
else
{
if ($self->{isCollection} == 1)
@@ -296,8 +355,8 @@ use GCPlugins::GCcomics::GCcomicsCommon;
"Scénario :" => 'writer',
"Dessin :" => 'illustrator',
"Couleurs :" => 'colourist',
- "Dépot légal :" => 'publishdate',
- "Achevé impr. :" => 'printdate ',
+ "Dépot légal :" => 'publishdate',
+ "Achevé impr. :" => 'printdate ',
"Estimation :" => 'cost',
"Editeur :" => 'publisher',
"Collection : " => 'collection',
@@ -317,27 +376,86 @@ use GCPlugins::GCcomics::GCcomicsCommon;
$self->{current_field} = "";
}
}
- elsif ( $self->{isVolume} )
- {
- $self->{curInfo}->{volume} = $origtext;
- $self->{isVolume} = 0 ;
- }
-
- if ( $self->{isTitle} )
- {
+ elsif ( $self->{isTitle} ) {
$self->{curInfo}->{title} = $origtext;
+ $self->{isTitle} = 0 ;
+ $self->{doneTitle} = 1 ;
}
elsif ( $self->{isSerie} ) {
$self->{curInfo}->{series} = $origtext;
$self->{curInfo}->{series} =~s/^\s+//;
+ $self->{isSerie} = 0 ;
+ $self->{doneSerie} = 1 ;
+ $self->{isTabs} = 0 ;
+ }
+ elsif ( $self->{isWriter} ) {
+ $self->{curInfo}->{writer} = $origtext;
+ $self->{isWriter} = 0 ;
+ $self->{doneWriter} = 1 ;
+ }
+ elsif ( $self->{isIllustrator} ) {
+ $self->{curInfo}->{illustrator} = $origtext;
+ $self->{isIllustrator} = 0 ;
+ $self->{doneIllustrator} = 1 ;
+ }
+ elsif ( $self->{isColourist} ) {
+ $self->{curInfo}->{colourist} = $origtext;
+ $self->{isColourist} = 0 ;
+ $self->{doneColourist} = 1 ;
+ }
+ elsif ( $self->{isPublisher} ) {
+ $self->{curInfo}->{publisher} = $origtext;
+ $self->{isPublisher} = 0 ;
+ $self->{donePublisher} = 1 ;
}
- elsif ( ( $self->{isSynopsis} ) && ( ( $origtext =~ /Résumé de l'album :/ ) || ( $origtext =~ /Résumé de la série :/ ) ) ) {
- $self->{startSynopsis} = 1;
+ elsif ( $self->{isISBN} ) {
+ $self->{curInfo}->{isbn} = $origtext;
+ $self->{isISBN} = 0 ;
+ $self->{doneISBN} = 1 ;
}
- elsif ( ( $self->{isSynopsis} ) && ( $self->{startSynopsis} ) ) {
- $self->{curInfo}->{synopsis} .= " ".$origtext;
+ elsif ( $self->{isNumberboards} ) {
+ $self->{curInfo}->{numberboards} = $origtext;
+ $self->{isNumberboards} = 0 ;
+ $self->{doneNumberboards} = 1 ;
+ }
+ elsif ( $self->{isVolume} ) {
+ $self->{curInfo}->{volume} = $origtext;
+ $self->{isVolume} = 0 ;
+ $self->{doneVolume} = 1 ;
+ }
+ elsif ( ( $self->{isLabel} ) && ( $origtext =~ m/Dépot légal/ ) && ( ! $self->{donePublishdate} ) ) {
+ $self->{isPublishdate} = 1 ;
+ $self->{isLabel} = 0 ;
+ }
+ elsif ( $self->{isPublishdate} ) {
+ $self->{curInfo}->{publishdate} = $origtext;
+ $self->{isPublishdate} = 0 ;
+ $self->{donePublishdate} = 1 ;
+ }
+ elsif ( ( $self->{isLabel} ) && ( $origtext =~ m/Estimation/ ) && ( ! $self->{doneCost} ) ) {
+ $self->{isCost} = 1 ;
+ $self->{isLabel} = 0 ;
+ }
+ elsif ( $self->{isCost} ) {
+ $self->{curInfo}->{cost} = $origtext;
+ $self->{isCost} = 0 ;
+ $self->{doneCost} = 1 ;
+ }
+ elsif ( ( $self->{isLabel} ) && ( $origtext =~ m/Format/ ) && ( ! $self->{doneFormat} ) ) {
+ $self->{isFormat} = 1 ;
+ $self->{isLabel} = 0 ;
+ }
+ elsif ( $self->{isFormat} ) {
+ $self->{curInfo}->{format} = $origtext;
+ $self->{isFormat} = 0 ;
+ $self->{doneFormat} = 1 ;
+ }
+ elsif ( $self->{isSynopsis} ) {
+ $self->{curInfo}->{synopsis} = $origtext;
$self->{curInfo}->{synopsis} =~ s/^(\s)*//;
$self->{curInfo}->{synopsis} =~ s/(\s)*$//;
+ $self->{isSynopsis} = 0 ;
+ $self->{doneSynopsis} = 1 ;
}
}
}
@@ -359,9 +477,9 @@ use GCPlugins::GCcomics::GCcomicsCommon;
$self->{isCollection} = 0;
}
} else {
- if ( ( $self->{inTable} ) && ( $tagname eq "a" ) ) {
+ if ( ( $self->{inTable} ) && ( $tagname eq "span" ) ) {
$self->{isTitle} = 0;
- } elsif ( ( $self->{inTable} ) && ( $tagname eq "td" ) ) {
+ } elsif ( ( $self->{inTable} ) && ( $tagname eq "li" ) ) {
$self->{isVolume} = 0;
}
}
@@ -373,18 +491,20 @@ use GCPlugins::GCcomics::GCcomicsCommon;
$self->{isIssue} = 0;
$self->{isResultsTable} = 0;
}
- elsif ( ( $self->{isResultsTable} ) && ( $tagname eq "label" ) ) {
+ elsif ( $tagname eq "label" ) {
$self->{openlabel} = 0;
+ $self->{isLabel} = 0;
}
- elsif ( ( $self->{isTitle} ) && ( ( $tagname eq "div" ) || ( $tagname eq "h1" ) ) ) {
- $self->{isTitle} = 0;
- }
- elsif ( ( $self->{isSerie} ) && ( $tagname eq "a" ) ) {
- $self->{isSerie} = 0;
- }
- elsif ( ( $self->{isSynopsis} ) && ( $tagname eq "em" ) && ( !$self->{startSynopsis} ) ) {
- $self->{isSynopsis} = 0;
- $self->{startSynopsis} = 0;
+ elsif ( $tagname eq "span" ) {
+ $self->{isColourist} = 0;
+ $self->{isIllustrator} = 0;
+ $self->{isISBN} = 0;
+ $self->{isNumberboards} = 0;
+ $self->{isPublisher} = 0;
+ $self->{isSerie} = 0;
+ $self->{isSynopsis} = 0;
+ $self->{isTitle} = 0;
+ $self->{isWriter} = 0;
}
elsif ( ( $self->{isSynopsis} ) && ( ( $tagname eq "p" ) || ( $tagname eq "br" ) ) && ( $self->{startSynopsis} ) ) {
$self->{isSynopsis} = 0;
@@ -395,4 +515,4 @@ use GCPlugins::GCcomics::GCcomicsCommon;
}
}
-1; \ No newline at end of file
+1;
diff --git a/lib/gcstar/GCPlugins/GCfilms/GCAlpacineES.pm b/lib/gcstar/GCPlugins/GCfilms/GCAlpacineES.pm
deleted file mode 100644
index 75c6854..0000000
--- a/lib/gcstar/GCPlugins/GCfilms/GCAlpacineES.pm
+++ /dev/null
@@ -1,435 +0,0 @@
-package GCPlugins::GCfilms::GCAlpacineES;
-
-###################################################
-#
-# Copyright 2005-2010 Christian Jodar
-#
-# This file is part of GCstar.
-#
-# GCstar is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# GCstar is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GCstar; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
-#
-###################################################
-
-use strict;
-use utf8;
-
-use GCPlugins::GCfilms::GCfilmsCommon;
-
-{
- package GCPlugins::GCfilms::GCPluginAlpacineES;
-
- use base qw(GCPlugins::GCfilms::GCfilmsPluginsBase);
-
-
- # text
- # Called each time some plain text (between tags) is processed.
- # $origtext is the read text.
- sub text
- {
- my ($self, $origtext) = @_;
-
- return if length($origtext) < 2;
-
- # Código para procesar el resultado de la busqueda
- if ($self->{parsingList}){
- # Guardamos la fecha.
- if ($self->{inside}->{li} && $self->{insideInfos}){
- $origtext =~ /. \(([0-9]{4})\)/;
- $self->{itemsList}[$self->{itemIdx}]->{date} = $origtext;
- }
- # Guardamos el título
- if ($self->{inside}->{a} && $self->{insideInfos}){
- $self->{itemsList}[$self->{itemIdx}]->{title} = $origtext;
- }
- }
-
- else{
- # Eliminamos espacios iniciales, espacios dobles y espacios finales del texto
- $origtext =~ s/^\s*|\s{2,}|\s*$//g;
- # Estamos procesando el titulo
- if ($self->{insideTitle})
- {
- # Obtenemos titulo y fecha
- $origtext =~ /(.*) \(([0-9]{4})\)/;
- $self->{curInfo}->{title} = $1;
- $self->{curInfo}->{date} = $2;
- $self->{insideTitle} = 0;
- return;
- }
-
- # Si existe el hipervinculo "Ampliar" cambiamos la imagen por la ampliada
- if ($self->{inside}->{a} && $origtext eq "Ampliar"){
- $self->{curInfo}->{image} =~ /(http:\/\/img.alpacine.com\/carteles\/.*)-[0-9]*(\.jpg)/;
- $self->{curInfo}->{image} = $1 . $2;
- return;
- }
- # Estamos en la puntuación real
- if($self->{insideRating}){
- $self->{curInfo}->{ratingpress} = int( $origtext + 0.5 );
- $self->{insideRating} = 0;
- }
- # No hay puntuación real, asignamos 0 por defecto
- if($self->{inside}->{div}){
- if($origtext =~ /Esperando \d votos/){
- $self->{curInfo}->{ratingpress} = 0;
- }
- }
- # Procesamos el titulo original
- if ($self->{isOrigTit} eq 1) {
- $self->{isOrigTit} = 0;
- $self->{curInfo}->{original} = $origtext;
- return;
- }
- # Procesamos los generos (gen, gen, gen, gen...)
- if ($self->{isGenres} eq 1) {
- if($origtext ne ""){
- # hacemos uso de sus propias comas
- $self->{curInfo}->{genre} .= $origtext;
- }
- else{
- $self->{isGenres} = 0;
- }
- return;
- }
- # Procesamos el país
- if ($self->{isCountry} eq 1) {
- $self->{isCountry} = 0;
- $self->{curInfo}->{country} = $origtext;
- return;
- }
- # Procesamos la duración
- if ($self->{isTime} eq 1) {
- $self->{isTime} = 0;
- $self->{curInfo}->{time} = $origtext;
- return;
- }
- # Procesamos los directores
- if ($self->{isDirector} eq 1) {
- if($origtext ne ""){
- if($self->{curInfo}->{director} eq ""){
- $self->{curInfo}->{director} .= $origtext;
- }
- else{
- $self->{curInfo}->{director} .= ", $origtext";
- }
- }
- else{
- $self->{isDirector} = 0;
- }
- return;
- }
- # Actores
- if ($self->{isActors} eq 1) {
- if($origtext ne ""){
- if($self->{curInfo}->{actors} eq ""){
- $self->{curInfo}->{actors} .= $origtext;
- }
- else{
- $self->{curInfo}->{actors} .= ", $origtext";
- }
- }
- else{
- $self->{isActors} = 0;
- }
- return;
- }
- # Procesamos la Sinopsis
- if ($self->{isSynopsis} eq 1) {
- $self->{isSynopsis} = 0;
- $self->{curInfo}->{synopsis} = $origtext;
- return;
- }
- # Procesamos los premios
- if ($self->{isAwards} eq 1) {
- $self->{isAwards} = 0;
- $self->{curInfo}->{synopsis} = $self->{curInfo}->{synopsis}. "\n\nPremios:\n\t".$origtext;
- $self->{insideInfos} = 0;
- return;
- }
-
- # Condiciones para procesar los campos en el siguiente ciclo
- if($self->{insideInfos}){
- $self->{isOrigTit} = 1 if $origtext eq "Título original:";
- $self->{isGenres} = 1 if $origtext eq "Género:";
- $self->{isCountry} = 1 if $origtext eq "País:";
- $self->{isTime} = 1 if $origtext eq "Duración:";
- $self->{isDirector} = 1 if $origtext eq "Dirección:";
- $self->{isActors} = 1 if $origtext eq "Interpretación:";
- $self->{isSynopsis} = 1 if $origtext eq "Sinopsis:";
- $self->{isAwards} = 1 if $origtext eq "Premios:";
- }
- }
- }
-
-
- # end
- # Called each time a HTML tag ends.
- # $tagname is the tag name.
- sub end
- {
- my ($self, $tagname) = @_;
- $self->{inside}->{$tagname}--;
-
- # Código para procesar el resultado de la busqueda
- #if ($self->{parsingList}){
- #}
- # Código para procesar la información de la pelicula seleccionada
- #else {
- #}
- }
-
- # In processing functions below, self->{parsingList} can be used.
- # If true, we are processing a search results page
- # If false, we are processing a item information page.
-
- # $self->{inside}->{tagname} (with correct value for tagname) can be used to test
- # if we are in the corresponding tag.
-
- # You have a counter $self->{itemIdx} that have to be used when processing search results.
- # It is your responsability to increment it!
-
- # When processing search results, you have to fill the available fields for results
- #
- # $self->{itemsList}[$self->{movieIdx}]->{field_name}
- #
- # When processing a movie page, you need to fill the fields (if available)
- # in $self->{curInfo}.
- #
- # $self->{curInfo}->{field_name}
-
- # start
- # Called each time a new HTML tag begins.
- # $tagname is the tag name.
- # $attr is reference to an associative array of tag attributes.
- # $attrseq is an array reference containing all the attributes name.
- # $origtext is the tag text as found in source file
- # Returns nothing
- sub start
- {
- my ($self, $tagname, $attr, $attrseq, $origtext) = @_;
- $self->{inside}->{$tagname}++;
-
- # Código para procesar el resultado de la busqueda para generar el listado
- if ($self->{parsingList})
- {
- # Comprobamos si estamos dentro de un título utilizando el atributo class
- if( ($tagname eq "li" ) && ($attr->{class} ne "mas" )){
- $self->{itemIdx}++;
- $self->{insideInfos} = 1 ;
- return;
- }
- if( ($tagname eq "li" ) && ($attr->{class} eq "mas" )){
- $self->{insideInfos} = 0;
- return;
- }
- # Si estamos en un título y encontramos una tag a, es un enlace a ficha
- if ($tagname eq "a" && $self->{insideInfos}){
- $self->{itemsList}[$self->{itemIdx}]->{url} = "http://www.alpacine.com".$attr->{href};
- return;
- }
- }
- # Código para procesar la información de la pelicula seleccionada
- else {
- if ($tagname eq "h1"){
- $self->{insideTitle} = 1;
- return;
- }
- # Si estamos dentro de una imagen y el src es el del thumb lo asignamos como imagen
- if ($tagname eq "img")
- {
- # Extraemos la dirección de la imagen thumb
- if ($attr->{src} =~ /http:\/\/img.alpacine.com\/carteles\/.*\.jpg/)
- {
- $self->{curInfo}->{image} = $attr->{src};
- }
- return;
- }
-
- if ($tagname eq "div" && $attr->{class} eq "voto"){
- $self->{insideRating} = 1;
- return;
- }
-
- if( $tagname eq "div" && $attr->{class} eq "datos" ){
- $self->{insideInfos} = 1 ;
- return;
- }
- }
- }
-
- # preProcess
- # Called before each page is processed. You can use it to do some substitutions.
- # $html is the page content.
- # Returns modified version of page content.
- sub preProcess
- {
- my ($self, $html) = @_;
-
- # Anulamos el html si coincide con el patron de no resultados
- if($html =~ /^.*No hay resultados para.*$/s){
- $html = "";
- return $html;
- }
-
- # Recorta el código del listado de resultados, quedandose solo con la parte que nos interesa del html
- # el modificador s/.../$1/s trata el flujo como una sola cadena y reemplaza todo el cuerpo con la parte que nos interesa
- if($html =~ s/^.*<div class="titulo">Pel.culas <span class="resultados">\([0-9]* resultado[s]?\)<\/span><\/div><ul>(<li><a.*<\/a> \([0-9]*\)<\/li>).*$/$1/s){
- return $html;
- }
-
- # Recorta el código de la ficha, quedandose solo con la parte que nos interesa del html
- # Comprobamos si la pelicula contiene o no premios y nos quedamos con lo que corresponda
- if($html =~ /^.*<div class="titulo">Premios:.*más\.\.\.<\/a><\/div><\/div>.*$/s){
- $html =~ s/^.*<div id="titulo">(.*<\/div><\/div>.*\n.*<div class="datox"><div class="titulo">Premios:.*)más\.\.\.<\/a><\/div><\/div>.*$/$1/s;
- }
- else{
- $html =~ s/^.*<div id="titulo">(.*<\/div><\/div>)\n\n\t\t\t\t\n\n\t\t\t\t<hr \/>.*$/$1/s;
- }
- return $html;
- }
-
- # changeUrl
- # Can be used to change URL if item URL and the one used to
- # extract information are different.
- # Return the modified URL.
- #sub changeUrl
- #{
- # my ($self, $url) = @_;
- # return $url;
- #}
-
- # getExtra
- # Used if the plugin wants an extra column to be displayed in search results
- # Return the column title or empty string to hide the column.
- #sub getExtra
- #{
- # return 'Extra';
- #}
-
-
- # getLang
- # Used to fill in plugin list with user language plugins
- # Return the language used for this site (2 letters code).
- sub getLang
- {
- return "ES";
- }
-
-
- # getAuthor
- # Used to display the plugin author in GUI.
- # Returns the plugin author name.
- sub getAuthor
- {
- return "DoVerMan";
- }
-
-
- # getName
- # Used to display plugin name in GUI.
- # Returns the plugin name.
- sub getName
- {
- return 'Alpacine';
- }
-
-
- # getCharset
- # Used to convert charset in web pages.
- # Returns the charset as specified in pages.
- #sub getCharset
- #{
- # my $self = shift;
- # # Charset de la web
- # return "UTF-8";
- #}
-
-
- # getItemUrl
- # Used to get the full URL of an item page.
- # Useful when url on results pages are relative.
- # $url is the URL as found with a search.
- # Returns the absolute URL.
- sub getItemUrl
- {
- my ($self, $url) = @_;
- return $url;
- }
-
-
- # getSearchUrl
- # Used to get the URL that to be used to perform searches.
- # $word is the query
- # Returns the full URL.
- sub getSearchUrl
- {
- my ($self, $word) = @_;
- # Hack para evitar problemas con acentos
- $word =~ s/%E1/a/g;
- $word =~ s/%E9/e/g;
- $word =~ s/%ED/i/g;
- $word =~ s/%F3/o/g;
- $word =~ s/%FA/u/g;
- $word =~ s/%C1/A/g;
- $word =~ s/%C9/E/g;
- $word =~ s/%CD/I/g;
- $word =~ s/%D3/O/g;
- $word =~ s/%DA/U/g;
-
- return "http://www.alpacine.com/buscar/?buscar=" . $word;
-
- }
-
-
- # Constructor
- sub new
- {
- # Inicialización
- my $proto = shift;
- my $class = ref($proto) || $proto;
- my $self = $class->SUPER::new();
- bless ($self, $class);
-
- # Campos que devuelve el plugin (1 si, 0 no). Son los que apareceran
- # en el listado de resultados
- $self->{hasField} = {
- title => 1,
- date => 1,
- director => 0,
- actors => 0,
- };
-
- # Indica si estamos procesando información útil
- $self->{insideInfos} = 0;
-
- # Indican el estado del procesado del listado de resultados
- $self->{insideRating} = 0;
- $self->{insideTitle} = 0;
-
- $self->{isOrigTit} = 0;
- $self->{isGenres} = 0;
- $self->{isCountry} = 0;
- $self->{isTime} = 0;
- $self->{isDirector} = 0;
- $self->{isActors} = 0;
- $self->{isSynopsis} = 0;
- $self->{isAwards} = 0;
-
- return $self;
- }
-
-}
-
-1;
diff --git a/lib/gcstar/GCPlugins/GCfilms/GCImdb.pm b/lib/gcstar/GCPlugins/GCfilms/GCImdb.pm
index 70af804..0d12717 100644
--- a/lib/gcstar/GCPlugins/GCfilms/GCImdb.pm
+++ b/lib/gcstar/GCPlugins/GCfilms/GCImdb.pm
@@ -1,439 +1,449 @@
-package GCPlugins::GCfilms::GCImdb;
-
-###################################################
-#
-# Copyright 2010 groms
-#
-# Features:
-# + Multiple directors separated by comma
-# + Multiple countries separated by comma
-# + Correct URL in case of redirection
-# + Fetches Original Title
-#
-# This file is part of GCstar.
-#
-# GCstar is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# GCstar is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GCstar; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-#
-###################################################
-
-use strict;
-
-use GCPlugins::GCfilms::GCfilmsCommon;
-
-{
- package GCPlugins::GCfilms::GCPluginImdb;
-
- use base qw(GCPlugins::GCfilms::GCfilmsPluginsBase);
-
- sub start
- {
- my ($self, $tagname, $attr, $attrseq, $origtext) = @_;
-
- $self->{inside}->{$tagname}++;
-
- if ($self->{parsingEnded})
- {
- return;
- }
-
- if ($self->{parsingList})
- {
- if ($tagname eq "a")
- {
- my $url = $attr->{href};
- if (($url =~ /^\/title\//) && (!$self->{alreadyListed}->{$url}))
- {
- $self->{isMovie} = 1;
- $self->{isInfo} = 1;
- $self->{itemIdx}++;
- $self->{itemsList}[$self->{itemIdx}]->{url} = $url;
- $self->{alreadyListed}->{$url} = 1;
- }
- }
- }
- else
- {
-
- if ($tagname eq "link")
- {
- if ($attr->{rel} eq "canonical")
- {
- $self->{curInfo}->{webPage} = $attr->{href};
- }
- }
- elsif ($tagname eq "h1")
- {
- if ($attr->{class} eq "header")
- {
- $self->{insideHeader} = 1;
- }
- }
- elsif ($tagname eq "div")
- {
- if ($attr->{class} eq "infobar")
- {
- $self->{insideInfobar} = 1;
- }
- }
- elsif ($tagname eq "table")
- {
- if ($attr->{class} eq "cast_list")
- {
- $self->{insideCastList} = 1;
- }
- }
- elsif ($tagname eq "span")
- {
- if ($attr->{itemprop} eq "ratingValue")
- {
- $self->{insideRating} = 1;
- }
- elsif ($attr->{class} eq "title-extra")
- {
- $self->{insideOriginalTitle} = 1;
- }
- }
- elsif ($tagname eq "img")
- {
- if ($self->{insidePrimaryImage})
- {
- if (!($attr->{src} =~ m/nopicture/))
- {
- ($self->{curInfo}->{image} = $attr->{src}) =~ s/_V1\._.+\./_V1\._SX1000_SY1000_\./;
- }
- }
- elsif ($self->{insideInfobar} && $attr->{src} =~ m|/certificates/us/|)
- {
- my $cert = $attr->{title};
- $self->{curInfo}->{age} = 1 if ($cert eq 'Unrated') || ($cert eq 'Open');
- $self->{curInfo}->{age} = 2 if ($cert eq 'G') || ($cert eq 'Approved');
- $self->{curInfo}->{age} = 5 if ($cert eq 'PG') || ($cert eq 'M') || ($cert eq 'GP');
- $self->{curInfo}->{age} = 13 if $cert eq 'PG_13';
- $self->{curInfo}->{age} = 17 if $cert eq 'R';
- $self->{curInfo}->{age} = 18 if ($cert eq 'NC_17') || ($cert eq 'X');
- }
- }
- elsif ($tagname eq "a")
- {
- if ($self->{insideHeader} && $attr->{href} =~ m/year/)
- {
- $self->{insideYear} = 1;
- }
- elsif ($self->{insideInfobar} && $attr->{href} =~ m/genre/)
- {
- $self->{insideGenre} = 1;
- }
- }
- elsif ($tagname eq 'td')
- {
- if ($self->{insideCastList})
- {
- if ($attr->{class} eq 'name')
- {
- $self->{insideActor} = 1;
- }
- elsif ($attr->{class} eq 'character')
- {
- $self->{insideRole} = 1;
- }
- }
- elsif ($attr->{id} eq "img_primary") {
- $self->{insidePrimaryImage} = 1;
- }
- }
- }
- }
-
- sub end
- {
- my ($self, $tagname) = @_;
-
- $self->{inside}->{$tagname}--;
- if ($self->{parsingList})
- {
- if ($self->{isMovie} && ($tagname eq 'a'))
- {
- $self->{isMovie} = 0;
- my $url = $self->{itemsList}[$self->{itemIdx}]->{url};
- if (!$self->{itemsList}[$self->{itemIdx}]->{title})
- {
- $self->{alreadyListed}->{$url} = 0;
- $self->{itemIdx}--;
- }
- }
- } else {
- if ($tagname eq "h1")
- {
- $self->{insideHeader} = 0;
- }
- elsif ($tagname eq "a")
- {
- $self->{insideYear} = 0;
- $self->{insideGenre} = 0;
- $self->{insideActor} = 0;
- $self->{insideRole} = 0;
- }
- elsif ($tagname eq "div")
- {
- $self->{insideInfobar} = 0;
- $self->{insideNat} = 0;
- $self->{insideDirector} = 0;
- $self->{insideStoryline} = 0;
- $self->{insideReleaseDate} = 0;
- }
- elsif ($tagname eq "span")
- {
- $self->{insideRating} = 0;
- $self->{insideOriginalTitle} = 0;
- }
- elsif ($tagname eq "table")
- {
- $self->{insideCastList} = 0;
- }
- elsif ($tagname eq "td")
- {
- $self->{insidePrimaryImage} = 0;
- }
- elsif ($self->{insideCastList})
- {
- if ($self->{actor} && $self->{role})
- {
- $self->{actor} =~ s/^\s+|\s+$//g;
- $self->{actor} =~ s/\s{2,}/ /g;
- push @{$self->{curInfo}->{actors}}, [$self->{actor}];
- $self->{role} =~ s/^\s+|\s+$//g;
- $self->{role} =~ s/\s{2,}/ /g;
- push @{$self->{curInfo}->{actors}->[$self->{actorsCounter}]}, $self->{role};
- $self->{actorsCounter}++;
- }
- $self->{actor} = "";
- $self->{role} = "";
- }
- }
- }
-
- sub text
- {
- my ($self, $origtext) = @_;
-
- return if length($origtext) < 2;
-
- $origtext =~ s/^\s+|\s+$//g;
-
- return if ($self->{parsingEnded});
-
- if ($self->{parsingList})
- {
- if ($self->{inside}->{h1} && $origtext !~ m/IMDb\s*Title\s*Search/i)
- {
- $self->{parsingEnded} = 1;
- $self->{itemIdx} = 0;
- $self->{itemsList}[0]->{url} = $self->{loadedUrl};
- }
- if ($self->{isMovie})
- {
- $self->{itemsList}[$self->{itemIdx}]->{title} = $origtext;
- $self->{isMovie} = 0;
- $self->{isInfo} = 1;
- return;
- }
- if ($self->{isInfo})
- {
- $self->{itemsList}[$self->{itemIdx}]->{date} = $1 if $origtext =~ m|\(([0-9]*)(/I+)?\)|;
- $self->{isInfo} = 0;
- }
- }
- else
- {
- if ($self->{insideHeader})
- {
- if ($self->{insideYear})
- {
- $self->{curInfo}->{date} = $origtext;
- }
- elsif (!$self->{curInfo}->{title})
- {
- $self->{curInfo}->{title} = $origtext;
- if (!$self->{curInfo}->{original})
- {
- $self->{curInfo}->{original} = $origtext;
- }
- }
- elsif ($self->{insideOriginalTitle} && !$self->{inside}->{i})
- {
- $self->{curInfo}->{original} = $origtext;
- }
- }
- elsif ($self->{insideInfobar})
- {
- if ($self->{insideGenre})
- {
- if ($self->{curInfo}->{genre})
- {
- $self->{curInfo}->{genre} .= ",";
- }
- $self->{curInfo}->{genre} .= $origtext;
- }
- elsif ($origtext =~ m/([0-9]+ min)/)
- {
- $self->{curInfo}->{time} = $1;
- }
- }
- elsif ($self->{insideRating} && $origtext =~ m/[0-9]\.[0-9]/)
- {
- $self->{curInfo}->{ratingpress} = int($origtext + 0.5);
- }
- elsif ($self->{insideSynopsis})
- {
- $self->{curInfo}->{synopsis} .= $origtext;
- }
- elsif ($self->{insideNat})
- {
- if ($origtext =~ m/[^\s].+/)
- {
- if ($self->{curInfo}->{country} =~ m/.+/)
- {
- $self->{curInfo}->{country} .= ", ".$origtext;
- }
- else
- {
- $self->{curInfo}->{country} = $origtext;
- }
- }
- }
- elsif ($self->{insideCastList})
- {
- if ($self->{insideActor})
- {
- $self->{actor} .= $origtext;
- }
- elsif ($self->{insideRole})
- {
- $self->{role} .= $origtext;
- }
- }
- elsif ($self->{insideStoryline} && $self->{inside}{p})
- {
- $self->{curInfo}->{synopsis} = $origtext;
- $self->{insideStoryline} = 0;
- }
- elsif ($self->{insideDirector} && $self->{inside}->{div})
- {
- $origtext =~ s/,/, /;
- $self->{curInfo}->{director} .= $origtext;
- }
- elsif ($self->{insideReleaseDate} && !$self->{curInfo}->{date}) {
- if ($origtext =~ m/([0-9]{4})/)
- {
- $self->{curInfo}->{date} = $1;
- $self->{insideReleaseDate} = 0;
- }
- }
-
- if ($self->{inside}->{h2})
- {
- $self->{insideStoryline} = 1 if ($origtext eq "Storyline");
- }
- elsif ($self->{inside}->{h4})
- {
- $self->{insideDirector} = 1 if $origtext =~ m/Directors?:/;
- $self->{insideTime} = 1 if $origtext =~ m/Runtime:/;
- $self->{insideNat} = 1 if $origtext =~ m/Country:/;
- $self->{insideReleaseDate} = 1 if $origtext =~ m/Release Date:/;
- }
- }
- }
-
- sub new
- {
- my $proto = shift;
- my $class = ref($proto) || $proto;
- my $self = $class->SUPER::new();
- bless ($self, $class);
-
- $self->{hasField} = {
- title => 1,
- date => 1,
- director => 0,
- actors => 0,
- };
-
- $self->{isInfo} = 0;
- $self->{isMovie} = 0;
- $self->{curName} = undef;
- $self->{curUrl} = undef;
-
- return $self;
- }
-
- sub preProcess
- {
- my ($self, $html) = @_;
-
- $self->{parsingEnded} = 0;
-
- if ($self->{parsingList})
- {
- $self->{alreadyListed} = {};
- }
- else
- {
- #$html =~ s|<a href="synopsis">[^<]*</a>||gi;
- #$html =~ s|<a href="/name/.*?"[^>]*>([^<]*)</a>|$1|gi;
- #$html =~ s|<a href="/character/ch[0-9]*/">([^<]*)</a>|$1|gi;
- #$html =~ s|<a href="/Sections/.*?">([^<]*)</a>|$1|gi;
-
- # Commented out this line, causes bug #14420 when importing from named lists
- #$self->{curInfo}->{actors} = [];
- }
-
-
- return $html;
- }
-
- sub getSearchUrl
- {
- my ($self, $word) = @_;
-
- return "http://www.imdb.com/find?s=tt&q=$word";
- }
-
- sub getItemUrl
- {
- my ($self, $url) = @_;
-
- return "http://www.imdb.com" if $url eq "";
- return $url if $url =~ /^http:/;
- return "http://www.imdb.com".$url;
- }
-
- sub getName
- {
- return "IMDb";
- }
-
- sub getAuthor
- {
- return 'groms';
- }
-
- sub getLang
- {
- return 'EN';
- }
-
-}
-
-1;
+package GCPlugins::GCfilms::GCImdb;
+
+###################################################
+#
+# Features:
+# + Multiple directors separated by comma
+# + Multiple countries separated by comma
+# + Correct URL in case of redirection
+# + Fetches Original Title
+#
+###################################################
+#
+# Copyright 2005-2014 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+use strict;
+
+use GCPlugins::GCfilms::GCfilmsCommon;
+
+{
+ package GCPlugins::GCfilms::GCPluginImdb;
+
+ use base qw(GCPlugins::GCfilms::GCfilmsPluginsBase);
+
+ sub start
+ {
+ my ($self, $tagname, $attr, $attrseq, $origtext) = @_;
+
+ $self->{inside}->{$tagname}++;
+
+ if ($self->{parsingEnded})
+ {
+ return;
+ }
+
+ if ($self->{parsingList})
+ {
+ if ($tagname eq "a")
+ {
+ my $url = $attr->{href};
+ if (($url =~ /^\/title\//) && (!$self->{alreadyListed}->{$url}))
+ {
+ $self->{isMovie} = 1;
+ $self->{isInfo} = 1;
+ $self->{itemIdx}++;
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $url;
+ $self->{alreadyListed}->{$url} = 1;
+ }
+ }
+ }
+ else
+ {
+
+ if ($tagname eq "link")
+ {
+ if ($attr->{rel} eq "canonical")
+ {
+ $self->{curInfo}->{webPage} = $attr->{href};
+ }
+ }
+ elsif ($tagname eq "h1")
+ {
+ if ($attr->{class} eq "header")
+ {
+ $self->{insideHeader} = 1;
+ }
+ }
+ elsif ($tagname eq "div")
+ {
+ if ($attr->{class} eq "infobar")
+ {
+ $self->{insideInfobar} = 1;
+ }
+ }
+ elsif ($tagname eq "table")
+ {
+ if ($attr->{class} eq "cast_list")
+ {
+ $self->{insideCastList} = 1;
+ }
+ }
+ elsif ($tagname eq "span")
+ {
+ if ($attr->{itemprop} eq "ratingValue")
+ {
+ $self->{insideRating} = 1;
+ }
+ elsif ($attr->{class} eq "title-extra")
+ {
+ $self->{insideOriginalTitle} = 1;
+ }
+ elsif ($self->{insideCastList})
+ {
+ if ($attr->{itemprop} eq 'name')
+ {
+ $self->{insideActor} = 1;
+ }
+ }
+ }
+ elsif ($tagname eq "img")
+ {
+ if ($self->{insidePrimaryImage})
+ {
+ if (!($attr->{src} =~ m/nopicture/))
+ {
+ ($self->{curInfo}->{image} = $attr->{src}) =~ s/_V1\._.+\./_V1\._SX1000_SY1000_\./;
+ }
+ }
+ elsif ($self->{insideInfobar} && $attr->{src} =~ m|/certificates/us/|)
+ {
+ my $cert = $attr->{title};
+ $self->{curInfo}->{age} = 1 if ($cert eq 'Unrated') || ($cert eq 'Open');
+ $self->{curInfo}->{age} = 2 if ($cert eq 'G') || ($cert eq 'Approved');
+ $self->{curInfo}->{age} = 5 if ($cert eq 'PG') || ($cert eq 'M') || ($cert eq 'GP');
+ $self->{curInfo}->{age} = 13 if $cert eq 'PG_13';
+ $self->{curInfo}->{age} = 17 if $cert eq 'R';
+ $self->{curInfo}->{age} = 18 if ($cert eq 'NC_17') || ($cert eq 'X');
+ }
+ }
+ elsif ($tagname eq "a")
+ {
+ if ($self->{insideHeader} && $attr->{href} =~ m/year/)
+ {
+ $self->{insideYear} = 1;
+ }
+ elsif ($self->{insideInfobar} && $attr->{href} =~ m/genre/)
+ {
+ $self->{insideGenre} = 1;
+ }
+ }
+ elsif ($tagname eq 'td')
+ {
+ if ($self->{insideCastList})
+ {
+ #if ($attr->{class} eq 'name')
+ #{
+ #$self->{insideActor} = 1;
+ #}
+ if ($attr->{class} eq 'character')
+ {
+ $self->{insideRole} = 1;
+ }
+ }
+ elsif ($attr->{id} eq "img_primary") {
+ $self->{insidePrimaryImage} = 1;
+ }
+ }
+ }
+ }
+
+ sub end
+ {
+ my ($self, $tagname) = @_;
+
+ $self->{inside}->{$tagname}--;
+ if ($self->{parsingList})
+ {
+ if ($self->{isMovie} && ($tagname eq 'a'))
+ {
+ $self->{isMovie} = 0;
+ my $url = $self->{itemsList}[$self->{itemIdx}]->{url};
+ if (!$self->{itemsList}[$self->{itemIdx}]->{title})
+ {
+ $self->{alreadyListed}->{$url} = 0;
+ $self->{itemIdx}--;
+ }
+ }
+ } else {
+ if ($tagname eq "h1")
+ {
+ $self->{insideHeader} = 0;
+ }
+ elsif ($tagname eq "a")
+ {
+ $self->{insideYear} = 0;
+ $self->{insideGenre} = 0;
+ $self->{insideActor} = 0;
+ $self->{insideRole} = 0;
+ }
+ elsif ($tagname eq "div")
+ {
+ $self->{insideInfobar} = 0;
+ $self->{insideNat} = 0;
+ $self->{insideDirector} = 0;
+ $self->{insideStoryline} = 0;
+ $self->{insideReleaseDate} = 0;
+ }
+ elsif ($tagname eq "span")
+ {
+ $self->{insideRating} = 0;
+ $self->{insideOriginalTitle} = 0;
+ }
+ elsif ($tagname eq "table")
+ {
+ $self->{insideCastList} = 0;
+ }
+ elsif ($tagname eq "td")
+ {
+ $self->{insidePrimaryImage} = 0;
+ }
+ elsif ($self->{insideCastList})
+ {
+ if ($self->{actor} && $self->{role})
+ {
+ $self->{actor} =~ s/^\s+|\s+$//g;
+ $self->{actor} =~ s/\s{2,}/ /g;
+ push @{$self->{curInfo}->{actors}}, [$self->{actor}];
+ $self->{role} =~ s/^\s+|\s+$//g;
+ $self->{role} =~ s/\s{2,}/ /g;
+ push @{$self->{curInfo}->{actors}->[$self->{actorsCounter}]}, $self->{role};
+ $self->{actorsCounter}++;
+ }
+ $self->{actor} = "";
+ $self->{role} = "";
+ }
+ }
+ }
+
+ sub text
+ {
+ my ($self, $origtext) = @_;
+
+ return if length($origtext) < 2;
+
+ $origtext =~ s/^\s+|\s+$//g;
+
+ return if ($self->{parsingEnded});
+
+ if ($self->{parsingList})
+ {
+ #if ($self->{inside}->{h1} && $origtext !~ m/IMDb\s*Title\s*Search/i)
+ if ($self->{inside}->{title} && $origtext !~ m/Find\s-\sIMDb/i)
+ {
+ $self->{parsingEnded} = 1;
+ $self->{itemIdx} = 0;
+ $self->{itemsList}[0]->{url} = $self->{loadedUrl};
+ }
+ if ($self->{isMovie})
+ {
+ $self->{itemsList}[$self->{itemIdx}]->{title} = $origtext;
+ $self->{isMovie} = 0;
+ $self->{isInfo} = 1;
+ return;
+ }
+ if ($self->{isInfo})
+ {
+ $self->{itemsList}[$self->{itemIdx}]->{date} = $1 if $origtext =~ m|\(([0-9]*)(/I+)?\)|;
+ $self->{isInfo} = 0;
+ }
+ }
+ else
+ {
+ if ($self->{insideHeader})
+ {
+ if ($self->{insideYear})
+ {
+ $self->{curInfo}->{date} = $origtext;
+ }
+ elsif (!$self->{curInfo}->{title})
+ {
+ $self->{curInfo}->{title} = $origtext;
+ if (!$self->{curInfo}->{original})
+ {
+ $self->{curInfo}->{original} = $origtext;
+ }
+ }
+ elsif ($self->{insideOriginalTitle} && !$self->{inside}->{i})
+ {
+ $self->{curInfo}->{original} = $origtext;
+ }
+ }
+ elsif ($self->{insideInfobar})
+ {
+ if ($self->{insideGenre})
+ {
+ if ($self->{curInfo}->{genre})
+ {
+ $self->{curInfo}->{genre} .= ",";
+ }
+ $self->{curInfo}->{genre} .= $origtext;
+ }
+ elsif ($origtext =~ m/([0-9]+ min)/)
+ {
+ $self->{curInfo}->{time} = $1;
+ }
+ }
+ elsif ($self->{insideRating} && $origtext =~ m/[0-9]\.[0-9]/)
+ {
+ $self->{curInfo}->{ratingpress} = int($origtext + 0.5);
+ }
+ elsif ($self->{insideSynopsis})
+ {
+ $self->{curInfo}->{synopsis} .= $origtext;
+ }
+ elsif ($self->{insideNat})
+ {
+ if ($origtext =~ m/[^\s].+/)
+ {
+ if ($self->{curInfo}->{country} =~ m/.+/)
+ {
+ $self->{curInfo}->{country} .= ", ".$origtext;
+ }
+ else
+ {
+ $self->{curInfo}->{country} = $origtext;
+ }
+ }
+ }
+ elsif ($self->{insideCastList})
+ {
+ if ($self->{insideActor})
+ {
+ $self->{actor} .= $origtext;
+ }
+ elsif ($self->{insideRole})
+ {
+ $self->{role} .= $origtext;
+ }
+ }
+ elsif ($self->{insideStoryline} && $self->{inside}{p})
+ {
+ $self->{curInfo}->{synopsis} = $origtext;
+ $self->{insideStoryline} = 0;
+ }
+ elsif ($self->{insideDirector} && $self->{inside}->{div})
+ {
+ $origtext =~ s/,/, /;
+ $self->{curInfo}->{director} .= $origtext;
+ }
+ elsif ($self->{insideReleaseDate} && !$self->{curInfo}->{date}) {
+ if ($origtext =~ m/([0-9]{4})/)
+ {
+ $self->{curInfo}->{date} = $1;
+ $self->{insideReleaseDate} = 0;
+ }
+ }
+
+ if ($self->{inside}->{h2})
+ {
+ $self->{insideStoryline} = 1 if ($origtext eq "Storyline");
+ }
+ elsif ($self->{inside}->{h4})
+ {
+ $self->{insideDirector} = 1 if $origtext =~ m/Directors?:/;
+ $self->{insideTime} = 1 if $origtext =~ m/Runtime:/;
+ $self->{insideNat} = 1 if $origtext =~ m/Country:/;
+ $self->{insideReleaseDate} = 1 if $origtext =~ m/Release Date:/;
+ }
+ }
+ }
+
+ sub new
+ {
+ my $proto = shift;
+ my $class = ref($proto) || $proto;
+ my $self = $class->SUPER::new();
+ bless ($self, $class);
+
+ $self->{hasField} = {
+ title => 1,
+ date => 1,
+ director => 0,
+ actors => 0,
+ };
+
+ $self->{isInfo} = 0;
+ $self->{isMovie} = 0;
+ $self->{curName} = undef;
+ $self->{curUrl} = undef;
+
+ return $self;
+ }
+
+ sub preProcess
+ {
+ my ($self, $html) = @_;
+
+ $self->{parsingEnded} = 0;
+
+ if ($self->{parsingList})
+ {
+ $self->{alreadyListed} = {};
+ }
+ else
+ {
+ #$html =~ s|<a href="synopsis">[^<]*</a>||gi;
+ #$html =~ s|<a href="/name/.*?"[^>]*>([^<]*)</a>|$1|gi;
+ #$html =~ s|<a href="/character/ch[0-9]*/">([^<]*)</a>|$1|gi;
+ #$html =~ s|<a href="/Sections/.*?">([^<]*)</a>|$1|gi;
+
+ # Commented out this line, causes bug #14420 when importing from named lists
+ #$self->{curInfo}->{actors} = [];
+ }
+
+
+ return $html;
+ }
+
+ sub getSearchUrl
+ {
+ my ($self, $word) = @_;
+
+ return "http://www.imdb.com/find?s=tt&q=$word";
+ }
+
+ sub getItemUrl
+ {
+ my ($self, $url) = @_;
+
+ return "http://www.imdb.com" if $url eq "";
+ return $url if $url =~ /^http:/;
+ return "http://www.imdb.com".$url;
+ }
+
+ sub getName
+ {
+ return "IMDb";
+ }
+
+ sub getAuthor
+ {
+ return 'groms';
+ }
+
+ sub getLang
+ {
+ return 'EN';
+ }
+
+}
+
+1;
diff --git a/lib/gcstar/GCPlugins/GCgames/GCGameSpot.pm b/lib/gcstar/GCPlugins/GCgames/GCGameSpot.pm
index c5870b4..3c6e390 100644
--- a/lib/gcstar/GCPlugins/GCgames/GCGameSpot.pm
+++ b/lib/gcstar/GCPlugins/GCgames/GCGameSpot.pm
@@ -2,7 +2,7 @@ package GCPlugins::GCgames::GCGameSpot;
###################################################
#
-# Copyright 2005-2011 Christian Jodar
+# Copyright 2005-2014 Christian Jodar
#
# This file is part of GCstar.
#
@@ -40,45 +40,76 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{inside}->{$tagname}++;
if ($self->{parsingList})
{
- if ($tagname eq 'div')
+ if ($tagname eq 'head')
{
- $self->{isGame} = 1
- if $attr->{class} =~ /result_title/;
+ $self->{isGame} = 0;
}
- elsif ($tagname eq 'tpfdatetpf')
+ elsif (($tagname eq 'ul') && ($attr->{class} eq 'editorial river search-results'))
{
- $self->{isDate} = 1;
+ $self->{isGame} = 1;
}
elsif (($tagname eq 'a') && ($self->{isGame}))
{
$self->{itemIdx}++;
- $self->{itemsList}[$self->{itemIdx}]->{url} = $attr->{href};
+ $self->{itemsList}[$self->{itemIdx}]->{url} = 'http://www.gamespot.com'.$attr->{href};
+ }
+ elsif (($tagname eq 'time') && ($attr->{class} eq 'media-date') && ($self->{isGame}))
+ {
+ $self->{itemsList}[$self->{itemIdx}]->{released} = $attr->{datetime};
+ $self->{isPlatform} = 0;
+
+ my @array = split(/,/,$self->{itemsList}[$self->{itemIdx}]->{platform});
+ my $element;
+
+ my $SaveName = $self->{itemsList}[$self->{itemIdx}]->{name};
+ my $SaveDate = $self->{itemsList}[$self->{itemIdx}]->{released};
+ my $SaveUrl = $self->{itemsList}[$self->{itemIdx}]->{url};
+ $self->{itemIdx}--;
+
+ foreach $element (@array)
+ {
+ if ($element ne '')
+ {
+ $self->{itemIdx}++;
+ $self->{itemsList}[$self->{itemIdx}]->{name} = $SaveName;
+ $self->{itemsList}[$self->{itemIdx}]->{released} = $SaveDate;
+ $self->{itemsList}[$self->{itemIdx}]->{platform} = $element;
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $SaveUrl . 'tpfplatformtpf' . $self->{itemsList}[$self->{itemIdx}]->{platform}. 'tpfreleasetpf' . $self->{itemsList}[$self->{itemIdx}]->{released};
+ }
+ }
+ }
+ elsif (($tagname eq 'h3') && ($attr->{class} eq 'media-title') && ($self->{isGame}))
+ {
$self->{isName} = 1;
}
+ elsif (($tagname eq 'div') && ($attr->{class} eq 'media-byline') && ($self->{isGame}))
+ {
+ $self->{isPlatform} = 1;
+ }
+ elsif (($tagname eq 'span') && ($self->{isPlatform} eq 1))
+ {
+ $self->{isPlatform} = 2;
+ }
+ elsif (($tagname eq 'ul') && ($attr->{class} eq 'paginate'))
+ {
+ $self->{isGame} = 0;
+ }
}
elsif ($self->{parsingTips})
{
- if (($tagname eq 'h2') && ($attr->{class} eq 'module_title'))
+ if (($tagname eq 'h2') && ($attr->{class} eq 'cheats__title'))
{
$self->{isSection} = 1;
}
- elsif (($tagname eq 'th') && ($attr->{scope} eq 'row') && ($attr->{class} eq 'code') && ($self->{section} ne ''))
+ elsif (($tagname eq 'th') && ($attr->{scope} eq 'row') && ($attr->{class} eq 'cheats__code') && (($self->{section} eq 'Codes') || ($self->{section} eq 'Unlockables')))
{
$self->{isCheat} = 1;
}
- elsif (($tagname eq 'td') && ($attr->{class} eq 'effect') && ($self->{section} ne ''))
+ elsif (($tagname eq 'td') && ($attr->{class} eq 'cheats__effect') && ($self->{section} ne ''))
{
$self->{isDesc} = 1;
}
- elsif (($tagname eq 'h3') && ($attr->{class} eq 'cheatCodeTitle') && ($self->{section} eq 'Secrets'))
- {
- $self->{curInfo}->{secrets} .= "\n" if $self->{curInfo}->{secrets};
- }
- elsif ($tagname eq 'tpfdebuttpf')
- {
- $self->{section} = 'Secrets';
- }
- elsif (($tagname eq 'div') && ($attr->{class} eq 'head'))
+ elsif (($tagname eq 'li') && ($attr->{class} eq 'cheats-list__item'))
{
$self->{section} = '';
}
@@ -89,112 +120,74 @@ use GCPlugins::GCgames::GCgamesCommon;
}
else
{
- if ($tagname eq 'img')
+ if (($tagname eq 'a') && ($self->{isScreen}))
{
- $self->{curInfo}->{boxpic} = ' '
- if $attr->{src} =~ /no_preview/;
- if ((! $self->{curInfo}->{boxpic}) && ($attr->{src} =~ /[^xo]boxs[^c]/))
+ if (! $self->{curInfo}->{screenshot1})
{
- $self->{curInfo}->{boxpic} = $attr->{src};
+ $self->{curInfo}->{screenshot1} = $attr->{href};
}
- if ($attr->{src} =~ /thumb/)
+ elsif (! $self->{curInfo}->{screenshot2})
{
- my $pic = $attr->{src};
- $pic =~ s/thumb00([0-9])/screen00$1/;
- if ($1 && ($1 <= 2))
- {
- $self->{curInfo}->{'screenshot'.$1} = $pic
- if ! $self->{curInfo}->{'screenshot'.$1};
- }
+ $self->{curInfo}->{screenshot2} = $attr->{href};
}
+ $self->{isScreen} = 0;
}
- elsif (($tagname eq 'div') && ($attr->{class} eq 'boxshot'))
- {
- $self->{isBox} = 1;
- }
- elsif (($tagname eq 'a') && ($self->{isBox} eq 1))
- {
- my $html = $self->loadPage($self->getItemUrl($attr->{href}), 0, 1);
- my $found = index($html,"id=\"main_image\" src=\"");
- if ( $found >= 0 )
- {
- $html = substr($html, $found +length('id="main_image" src="'),length($html)- $found -length('id="main_image" src="'));
-
- my @array = split(/"/,$html);
- #"
- if ($self->{bigPics})
- {
- $self->{curInfo}->{boxpic} = $array[0];
- }
- $self->{curInfo}->{backpic} = $array[0];
- $self->{curInfo}->{backpic} =~ s/_front/_back/;
- }
- $self->{isBox} = 0;
- }
- elsif (($tagname eq 'h1') && ($attr->{class} eq 'productPageTitle'))
- {
- $self->{isName} = 1 if ! $self->{curInfo}->{name};
- }
- elsif (($tagname eq 'meta') && ($attr->{name} eq 'description'))
- {
- $self->{curInfo}->{description} = $attr->{content};
- }
- elsif (($tagname eq 'li') && ($attr->{class} =~ /activeFilter/))
+ elsif (($tagname eq 'a') && ($attr->{href} =~ /\/cheats\//))
{
- $self->{curInfo}->{exclusive} = 0;
- }
- elsif (($tagname eq 'span') && ($attr->{class} eq 'reviewer'))
- {
- $self->{isRating} = 1;
+ $self->{urlTips} = $attr->{href};
}
- elsif (($tagname eq 'a') && ($self->{isRating} eq 1))
+ elsif (($tagname eq 'li') && ($attr->{class} eq 'pod-images__item'))
{
- $self->{isRating} = 2;
+ $self->{isScreen} = 1;
}
- elsif (($tagname eq 'li') && ($attr->{class} eq 'moreStat play_info number_of_players'))
+ elsif (($tagname eq 'img') && ($self->{isBox}))
{
- $self->{isPlayers} = 1;
+ $self->{curInfo}->{boxpic} = $attr->{src};
+ $self->{curInfo}->{boxpic} =~ s/_medium/_avatar/ if !$self->{bigPics} ;
+ $self->{isBox} = 0;
}
- elsif (($tagname eq 'p') && ($self->{isPlayers} eq 1))
+ elsif (($tagname eq 'dt') && ($attr->{class} eq 'pod-objectStats__title'))
{
- $self->{isPlayers} = 2;
+ $self->{isGame} = 1 if ! $self->{curInfo}->{name};
}
- elsif (($tagname eq 'li') && ($attr->{class} eq 'publisher'))
+ elsif (($tagname eq 'footer') && ($self->{isGame}))
{
- $self->{isEditor} = 1;
+ $self->{isGame} = 0;
+ if ($self->{curInfo}->{exclusive} ne 1)
+ {
+ $self->{curInfo}->{exclusive} = 0;
+ }
}
- elsif (($tagname eq 'a') && ($self->{isEditor} eq 1))
+ elsif (($tagname eq 'h3') && ($self->{isGame}))
{
- $self->{isEditor} = 2;
+ $self->{isName} = 1 if ! $self->{curInfo}->{name};
}
- elsif (($tagname eq 'li') && ($attr->{class} eq 'developer'))
+ elsif (($tagname eq 'ul') && ($attr->{class} eq 'system-list') && ($self->{isGame}))
{
- $self->{isDeveloper} = 1;
+ $self->{curInfo}->{exclusive} = 0;
}
- elsif (($tagname eq 'a') && ($self->{isDeveloper} eq 1))
+ elsif (($tagname eq 'li') && ($attr->{class} =~ m/system /i) && ($self->{isGame}))
{
- $self->{isDeveloper} = 2;
+ $self->{curInfo}->{exclusive} = $self->{curInfo}->{exclusive} + 1;
+ $self->{isPlatform} = 1 if ($attr->{class} =~ m/$self->{curInfo}->{platform}/i);
}
- elsif (($tagname eq 'li') && ($attr->{class} eq 'genre'))
+ elsif (($tagname eq 'div') && ($attr->{class} eq 'media-img imgflare--boxart') && ($self->{isGame}))
{
- $self->{isGenre} = 1;
+ $self->{isBox} = 1;
}
- elsif (($tagname eq 'a') && ($self->{isGenre}))
+ elsif (($tagname eq 'li') && ($attr->{class} eq 'pod-objectStats__item') && ($self->{isGame}))
{
- $self->{curInfo}->{genre} = $attr->{title};
+ $self->{isEditor} = 0;
+ $self->{isDeveloper} = 0;
$self->{isGenre} = 0;
}
- elsif (($tagname eq 'li') && ($attr->{class} eq 'date'))
+ elsif (($tagname eq 'dd') && ($attr->{class} eq 'pod-objectStats__deck'))
{
- $self->{isReleased} = 1;
- }
- elsif (($tagname eq 'a') && ($self->{isReleased} eq 1))
- {
- $self->{isReleased} = 2;
+ $self->{isDesc} = 1;
}
- elsif (($tagname eq 'a') && ($attr->{href} =~ /\/cheats\//) && ($attr->{class} eq 'navItemAction'))
+ elsif (($tagname eq 'div') && ($attr->{class} eq 'gs-score__cell'))
{
- $self->{urlTips} = $attr->{href};
+ $self->{isRating} = 1 if ! $self->{curInfo}->{ratingpress};
}
}
}
@@ -204,14 +197,6 @@ use GCPlugins::GCgames::GCgamesCommon;
my ($self, $tagname) = @_;
$self->{inside}->{$tagname}--;
- if ($self->{parsingList})
- {
- $self->{isGame} = 0
- if ($tagname eq 'div');
- }
- elsif ($self->{parsingTips})
- {
- }
}
sub text
@@ -220,30 +205,53 @@ use GCPlugins::GCgames::GCgamesCommon;
if ($self->{parsingList})
{
- if ($self->{isName})
+ if ($self->{isName} eq 1)
{
- $origtext =~ /^(.*?)\s*\((.*?)\)\s*$/;
- $self->{itemsList}[$self->{itemIdx}]->{name} = $1;
- $self->{itemsList}[$self->{itemIdx}]->{platform} = $2;
- $self->{itemsList}[$self->{itemIdx}]->{url} = $self->{itemsList}[$self->{itemIdx}]->{url} . 'tpfplatformtpf' . $self->{itemsList}[$self->{itemIdx}]->{platform};
+ # Enleve les blancs en debut de chaine
+ $origtext =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $origtext =~ s/\s+$//;
+
+ $self->{itemsList}[$self->{itemIdx}]->{name} = $origtext;
$self->{isName} = 0;
}
- elsif ($self->{isDate})
+ elsif ($self->{isPlatform} eq 2)
{
- $origtext =~ /^\s*Release Date:\s*(.*?)\s*$/ms;
- $self->{itemsList}[$self->{itemIdx}]->{released} = $1;
- $self->{isDate} = 0;
+ # Enleve les blancs en debut de chaine
+ $origtext =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $origtext =~ s/\s+$//;
+
+ if ($self->{itemsList}[$self->{itemIdx}]->{platform} eq '')
+ {
+ $self->{itemsList}[$self->{itemIdx}]->{platform} = $origtext;
+ }
+ else
+ {
+ $self->{itemsList}[$self->{itemIdx}]->{platform} .= ','.$origtext;
+ }
+
+ $self->{isPlatform} = 1;
}
}
elsif ($self->{parsingTips})
{
- if (($self->{isSection} eq 1) && $self->{inside}->{h2})
- {
- $self->{section} = 'Codes' if $origtext =~ /Cheat Codes$/;
- $self->{section} = 'Unlockables' if $origtext =~ /Unlockables$/;
- $self->{section} = 'Secrets' if $origtext =~ /Secrets$/;
- $self->{section} = 'Secrets' if $origtext =~ /Easter Eggs$/;
+ if (($self->{isSection}) && $self->{inside}->{h2})
+ {
+ $self->{section} = 'Codes' if $origtext =~ /^Cheat Codes/i;
+ $self->{section} = 'Codes' if $origtext =~ /cheats/i;
+ $self->{section} = 'Unlockables' if $origtext =~ /^Unlockables/i;
+ $self->{section} = 'Unlockables' if $origtext =~ /^Achievements/i;
+ $self->{section} = 'Unlockables' if $origtext =~ /^Trophies/i;
+ $self->{section} = 'Unlockables' if $origtext =~ /^Steam Achievements/i;
+ $self->{section} = 'Secrets' if $origtext =~ /^Secrets/i;
+ $self->{section} = 'Secrets' if $origtext =~ /^Easter Eggs/i;
+
+ $self->{section} = 'Secrets' if $self->{section} eq '';
+ $self->{section} = '' if $origtext =~ /Walkthrough/i;
+ $self->{section} = '' if $origtext =~ /FAQ/i;
$self->{isSection} = 0;
+
}
elsif (($self->{section} eq 'Codes') || ($self->{section} eq 'Unlockables'))
{
@@ -283,12 +291,18 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{isDesc} = 0;
}
}
- elsif ($self->{section} eq 'Secrets')
+
+ if ($self->{section} eq 'Secrets')
{
$origtext =~ s/^\s*//;
$origtext =~ s/\s*$//;
return if !$origtext;
- $self->{curInfo}->{secrets} .= "\n" if $self->{curInfo}->{secrets};
+ # Un peu de mise en page
+ $self->{curInfo}->{secrets} .= "\n\n" if (($self->{curInfo}->{secrets}) && ($self->{inside}->{h2}));
+ $self->{curInfo}->{secrets} .= "\n" if (($self->{curInfo}->{secrets}) && (! $self->{inside}->{td}) && (! $self->{inside}->{h2}) && ($origtext ne 'Effect'));
+ $self->{curInfo}->{secrets} .= "\t\t\t" if (($self->{curInfo}->{secrets}) && ($self->{inside}->{td}));
+ $self->{curInfo}->{secrets} .= "\t\t\t" if (($self->{curInfo}->{secrets}) && ($origtext eq 'Effect'));
+
$self->{curInfo}->{secrets} .= $origtext;
}
}
@@ -299,34 +313,82 @@ use GCPlugins::GCgames::GCgamesCommon;
$origtext =~ s/\n//g;
$self->{curInfo}->{name} = $origtext;
$self->{curInfo}->{platform} = $self->{url_plateforme};
- $self->{curInfo}->{exclusive} = 1;
+ $self->{curInfo}->{released} = $self->{url_release};
$self->{isName} = 0;
}
- elsif ($self->{isRating} eq 2)
+ elsif ($self->{isPlatform})
+ {
+ $self->{curInfo}->{platform} = $origtext;
+ $self->{isPlatform} = 0;
+ }
+ elsif (($origtext eq 'Published By:') && ($self->{isGame}))
+ {
+ $self->{isEditor} = 1;
+ }
+ elsif (($origtext eq 'Developed By:')&& ($self->{isGame}))
+ {
+ $self->{isDeveloper} = 1;
+ }
+ elsif (($origtext eq 'Genre:')&& ($self->{isGame}))
+ {
+ $self->{isGenre} = 1;
+ }
+ elsif ($self->{isRating})
{
+ # Enleve les blancs en debut de chaine
+ $origtext =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $origtext =~ s/\s+$//;
+
$self->{curInfo}->{ratingpress} = $origtext;
$self->{isRating} = 0;
}
+ elsif ($self->{isDesc})
+ {
+ # Enleve les blancs en debut de chaine
+ $origtext =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $origtext =~ s/\s+$//;
+ $self->{curInfo}->{description} = $origtext;
+ $self->{isDesc} = 0;
+ }
else
{
$origtext =~ s/^\s*//;
$origtext =~ s/\s*$//;
return if !$origtext;
- if ($self->{isReleased} eq 2)
+ if (($self->{isEditor}) && ($origtext ne ','))
{
- $origtext =~ s/ .$//;
- $self->{curInfo}->{released} = $origtext;
- $self->{isReleased} = 0;
+ if ($self->{curInfo}->{editor} ne '')
+ {
+ $self->{curInfo}->{editor} = $self->{curInfo}->{editor} . ','.$origtext;
+ }
+ else
+ {
+ $self->{curInfo}->{editor} = $origtext;
+ }
}
- elsif ($self->{isEditor} eq 2)
+ elsif (($self->{isDeveloper}) && ($origtext ne ','))
{
- $self->{curInfo}->{editor} = $origtext;
- $self->{isEditor} = 0;
+ if ($self->{curInfo}->{developer} ne '')
+ {
+ $self->{curInfo}->{developer} = $self->{curInfo}->{developer} . ','.$origtext;
+ }
+ else
+ {
+ $self->{curInfo}->{developer} = $origtext;
+ }
}
- elsif ($self->{isDeveloper} eq 2)
+ elsif (($self->{isGenre}) && ($origtext ne ','))
{
- $self->{curInfo}->{developer} = $origtext;
- $self->{isDeveloper} = 0;
+ if ($self->{curInfo}->{genre} ne '')
+ {
+ $self->{curInfo}->{genre} = $self->{curInfo}->{genre} . ','.$origtext;
+ }
+ else
+ {
+ $self->{curInfo}->{genre} = $origtext;
+ }
}
elsif ($self->{isPlayers} eq 2)
{
@@ -359,7 +421,7 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{isName} = 0;
$self->{isGame} = 0;
- $self->{isDate} = 0;
+ $self->{isPlatform} = 0;
$self->{isCheat} = 0;
$self->{isDesc} = 0;
$self->{isTip} = 0;
@@ -372,10 +434,10 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{isReleased} = 0;
$self->{isPlayers} = 0;
$self->{isBox} = 0;
- $self->{isExclu} = 0;
- $self->{url_plateforme} = '';
+ $self->{isScreen} = 0;
$self->{urlTips} = "";
- $self->{SaveUrl} = "";
+ $self->{url_plateforme} = '';
+ $self->{url_release} = '';
return $self;
}
@@ -386,22 +448,26 @@ use GCPlugins::GCgames::GCgamesCommon;
if ($self->{parsingTips})
{
- $html =~ s|<b>(.*?)</b>|$1|g;
- $html =~ s|<i>(.*?)</i>|$1|g;
+ my $found = index($html,"Cheats For " . $self->{curInfo}->{platform});
+ if ( $found >= 0 )
+ {
+ $html = substr($html, $found + length('Cheats For ' . $self->{curInfo}->{platform}),length($html)- $found -length('Cheats For ' . $self->{curInfo}->{platform}) );
+ $found = index($html,"\"tab-pane \"");
+ if ( $found >= 0 )
+ {
+ $html = substr($html, 0, $found);
+ }
+ }
+ $html =~ s|</h2>||;
+
## It takes too much time
# $html =~ s|<li class="guideAct"><a href="(.+)">Go to Online Walkthrough|'<tpfdebuttpf>' . $self->RecupSolution($1) . '<tpffintpf>'|ge;
}
elsif ($self->{parsingList})
{
- $html =~ s|Release Date|<tpfdatetpf>Release Date|g;
}
else
{
- my $found = index($html,"Similar Games");
- if ( $found >= 0 )
- {
- $html = substr($html, 0, $found);
- }
}
return $html;
@@ -440,18 +506,27 @@ use GCPlugins::GCgames::GCgamesCommon;
my ($self, $word) = @_;
#return 'http://www.gamespot.com/search.html?qs='.$word.'&sub=g&stype=11&type=11';
- return 'http://www.gamespot.com/pages/search/solr_search_ajax.php?q='.$word.'&type=game&offset=0&tags_only=false&sort=false';
+ #return 'http://www.gamespot.com/pages/search/solr_search_ajax.php?q='.$word.'&type=game&offset=0&tags_only=false&sort=false';
+ #return 'http://www.gamespot.com/search/?qs='.$word.'&filter=summary';
#return 'http://www.gamespot.com/search.html?qs=' .$word. '&tag=masthead%3Bsearch';
+ return 'http://www.gamespot.com/search/?indices[0]=game&page=1&q='.$word;
}
sub getItemUrl
{
my ($self, $url) = @_;
+
my $found = index($url,"tpfplatformtpf");
if ( $found >= 0 )
{
$self->{url_plateforme} = substr($url, $found +length('tpfplatformtpf'),length($url)- $found -length('tpfplatformtpf'));
$url = substr($url, 0,$found);
+ $found = index($self->{url_plateforme},"tpfreleasetpf");
+ if ( $found >= 0 )
+ {
+ $self->{url_release} = substr($self->{url_plateforme}, $found +length('tpfreleasetpf'),length($self->{url_plateforme})- $found -length('tpfreleasetpf'));
+ $self->{url_plateforme} = substr($self->{url_plateforme}, 0, $found);
+ }
}
return 'http://www.gamespot.com' . $url
diff --git a/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoCom.pm b/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoCom.pm
index 560a582..52d0e59 100644
--- a/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoCom.pm
+++ b/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoCom.pm
@@ -2,7 +2,7 @@ package GCPlugins::GCgames::GCJeuxVideoCom;
###################################################
#
-# Copyright 2005-2010 Tian
+# Copyright 2005-2016 Tian
#
# This file is part of GCstar.
#
@@ -32,57 +32,159 @@ use GCPlugins::GCgames::GCgamesCommon;
use base 'GCPlugins::GCgames::GCgamesPluginsBase';
+ sub decryptUrl
+ {
+ my ($self, $src) = @_;
+ my $n = '0A12B34C56D78E9F';
+ my $res = 'http://www.jeuxvideo.com';
+ my $s = reverse $src;
+ my ($c, $l);
+ while (length $s)
+ {
+ $l = index $n, chop $s;
+ $c = index $n, chop $s;
+ my $car = $l * 16 + $c;
+ $res .= chr $car;
+ }
+ return $res;
+ }
+
+ sub getPlatformName
+ {
+ my ($self, $platform) = @_;
+ $platform =~ s/^360$/Xbox 360/;
+ $platform =~ s/^32X$/Mega Drive 32X/;
+ $platform =~ s/^3DS$/Nintendo 3DS/;
+ $platform =~ s/^C64$/Commodore 64/;
+ $platform =~ s/^CPC$/Amstrad CPC/;
+ $platform =~ s/^DCAST$/Dreamcast/;
+ $platform =~ s/^DS$/Nintendo DS/;
+ $platform =~ s/^G.GEAR$/Game Gear/;
+ $platform =~ s/^GB$/Game Boy/;
+ $platform =~ s/^GBA$/Game Boy Advance/;
+ $platform =~ s/^Giz$/Gizmondo/;
+ $platform =~ s/^MD$/Mega Drive/;
+ $platform =~ s/^MS$/Master System/;
+ $platform =~ s/^N64$/Nintendo 64/;
+ $platform =~ s/^NEO$/Neo Geo/;
+ $platform =~ s/^New 3DS$/New Nintendo 3DS/;
+ $platform =~ s/^NGAGE$/N-Gage/;
+ $platform =~ s/^NGC$/Gamecube/;
+ $platform =~ s/^ONE$/Xbox One/;
+ $platform =~ s/^PC ENG$/PC Engine/;
+ $platform =~ s/^PS1$/PlayStation/;
+ $platform =~ s/^PS2$/PlayStation 2/;
+ $platform =~ s/^PS3$/PlayStation 3/;
+ $platform =~ s/^PS4$/PlayStation 4/;
+ $platform =~ s/^SNES$/Super Nintendo/;
+ $platform =~ s/^ST$/Atari ST/;
+ $platform =~ s/^V.BOY$/Virtual Boy/;
+ $platform =~ s/^Vita$/PS Vita/;
+ $platform =~ s/^WiiU$/Wii U/;
+ return $platform;
+ }
+
+ sub loadMultipleResults
+ {
+ my ($self, $url) = @_;
+ my $page = $self->loadPage($url); $page =~ /<div\s+class="game-top-version-dispo">(.*?)<\/div>/s;
+ my $tabs = $1;
+ $page =~ /<strong>Sortie\s+France\s+:\s+<\/strong>(.*)/i;
+ my $released = $1;
+ $page =~ /<h1\s+class="highlight">(.*?)<\/h1>/i;
+ my $name = $1;
+ $name =~ s/&#039;/'/g;
+ $name =~ s/&amp;/&/g;
+ my @lines = split /\n/, $tabs;
+ foreach my $line (@lines)
+ {
+ if ($line =~ /href="([^"]*)".*?>([0-9a-zA-Z_. -]*)<\/a>/)
+ {
+ my $url = $1;
+ my $platform = $self->getPlatformName($2);
+ $self->{itemIdx}++;
+ $self->{itemsList}[$self->{itemIdx}]->{url} = 'http://www.jeuxvideo.com'.$url;
+ $self->{itemsList}[$self->{itemIdx}]->{name} = $name;
+ $self->{itemsList}[$self->{itemIdx}]->{platform} = $platform;
+ $self->{itemsList}[$self->{itemIdx}]->{released} = $released;
+ }
+ elsif ($line =~ /<span class="label-support active-mach-version label-.*" itemprop="device" content=".*">([0-9a-zA-Z_. -]*)<\/span>/)
+ {
+ # for some reason, it ends with a / but it's not a multi-platform game
+ $self->{itemIdx}++;
+ $name =~ s/ sur $1$//e;
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $url;
+ $self->{itemsList}[$self->{itemIdx}]->{name} = $name;
+ $self->{itemsList}[$self->{itemIdx}]->{platform} = $self->getPlatformName($1);
+ $self->{itemsList}[$self->{itemIdx}]->{released} = $released;
+ }
+ }
+ }
+
sub start
{
my ($self, $tagname, $attr, $attrseq, $origtext) = @_;
$self->{inside}->{$tagname}++;
- return if $self->{parsingEnded};
if ($self->{parsingList})
{
- if (($tagname eq 'div') && (($attr->{id} eq 'new_mc') || ($attr->{id} eq 'old_mc')))
+ if ($tagname eq 'span')
{
- $self->{inResults} = 1;
- }
- elsif ($self->{inResults})
- {
- if ($tagname eq 'img')
+ if (($attr->{class} =~ /JvCare\s+([0-9A-F]*)\s+lien-jv/) && ($attr->{title} ne ""))
{
- $self->{currentPlatform} = $attr->{alt};
+ my $url = $self->decryptUrl($1);
+ if (! exists $self->{urls}->{$url})
+ {
+ if ($url =~ /\/$/)
+ {
+ #If it ends with a /, it means it's a multi-platform game, and the link points to a common page
+ $self->loadMultipleResults($url);
+ $self->{urls}->{$url} = 1;
+ }
+ else
+ {
+ $self->{itemIdx}++;
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $url;
+ $self->{isGame} = 1;
+ # Note : some game's name contains '-' => not use $attr->{title}
+ $self->{isName} = 1;
+
+ my @array = split(/-/,$attr->{title});
+ if (scalar(@array) ge 3 )
+ {
+ if (!($array[$#array] =~ /date/i))
+ {
+ $self->{itemsList}[$self->{itemIdx}]->{released} = $array[$#array];
+ }
+ }
+
+ $self->{urls}->{$url} = 1;
+ }
+ }
}
- elsif (($tagname eq 'a') && ($attr->{href} =~ /^http/))
+ return if !$self->{isGame};
+ if ($attr->{class} =~ /recherche-aphabetique-item-machine/)
{
- $self->{itemIdx}++;
- $self->{itemsList}[$self->{itemIdx}]->{url} = $attr->{href};
- $self->{itemsList}[$self->{itemIdx}]->{platform} = $self->{currentPlatform};
- $self->{isGame} = 1;
+ $self->{isPlatform} = 1;
}
}
}
elsif ($self->{parsingTips})
{
- if ($tagname eq 'tpfdebuttpf')
+ if ($attr->{class} eq 'rubrique-asl')
{
$self->{isTip} = 1;
}
- elsif ( ($tagname eq 'h3') && ($attr->{class} eq 'titre_bloc') && ($self->{isTip} ne 4))
- {
- $self->{isTip} = 2;
- }
- elsif ( (($tagname eq 'h3') || ($tagname eq 'h4') || ($tagname eq 'h5') ) && ($self->{isTip} ne 3) && ($self->{isTip} ne 4))
- {
- $self->{isTip} = 2;
- }
- elsif ( ($tagname eq 'p') && ($self->{isTip} ne 3) && ($self->{isTip} ne 4))
+ elsif (($tagname eq 'tpfdebuttpf') && ($self->{isTip} eq 2))
{
- $self->{isTip} = 1;
+ $self->{isTip} = 3;
}
- elsif ($tagname eq 'tpfstopsolution')
+ elsif ( (($tagname eq 'p') || ($tagname eq 'h2') || ($tagname eq 'h3')) && (($self->{isTip} eq 3) || ($self->{isTip} eq 4)) )
{
- $self->{isTip} = 4;
+ $self->{curInfo}->{secrets} .= "\n" if $self->{curInfo}->{secrets};
}
- elsif ($tagname eq 'tpffintpf')
+ elsif (($tagname eq 'tpffintpf') && ($self->{isTip} ne 0))
{
- $self->{isTip} = 3;
+ $self->{isTip} = 2;
}
elsif ($tagname eq 'head')
{
@@ -93,71 +195,78 @@ use GCPlugins::GCgames::GCgamesCommon;
}
else
{
- if (($tagname eq 'meta') && ($attr->{property} eq 'og:image'))
+ if ($tagname eq 'span')
{
- my $cover = $attr->{content};
- $cover =~ s|(http://[^/]*)/([^i])|$1/images/$2|;
- if ($self->{bigPics})
+ if ($attr->{class} =~ 'label-support active')
{
- $cover =~ s/-p(-|\.)/-g$1/;
- $cover =~ s/t(\.jpg)/$1/;
+ $self->{is} = 'platform';
}
- my $back = $cover;
- if (!($back =~ s/-avant(-|\.)/-arriere$1/))
+ elsif ($attr->{itemprop} eq 'description')
{
- $back =~ s/f(t?\.jpg)/r$1/;
+ $self->{is} = 'description';
}
- $self->{curInfo}->{boxpic} = $cover;
- $self->{curInfo}->{backpic} = $back;
- }
- elsif (($tagname eq 'li') && ($attr->{class} eq 'note_redac'))
- {
- $self->{is} = 'ratingpress';
- }
- elsif ( ($tagname eq 'div') && ($attr->{class} eq 'series_images') )
- {
- $self->{inScreenshots} = 1;
- }
- elsif ( ($tagname eq 'img') && ($self->{inScreenshots}) )
- {
- if (! $self->{curInfo}->{screenshot1})
+ elsif ($attr->{itemprop} eq 'genre')
+ {
+ $self->{is} = 'genre';
+ }
+ elsif ($attr->{class} eq 'recto-jaquette actif')
{
- $self->{curInfo}->{screenshot1} = $attr->{src};
- $self->{curInfo}->{screenshot1} =~ s/.gif/.jpg/;
- $self->{curInfo}->{screenshot1} =~ s/_m\.jpg/\.jpg/;
+ $self->{is} = 'boxpic';
}
- elsif (! $self->{curInfo}->{screenshot2})
+ elsif ($attr->{class} eq 'verso-jaquette actif')
{
- $self->{curInfo}->{screenshot2} = $attr->{src};
- $self->{curInfo}->{screenshot2} =~ s/.gif/.jpg/;
- $self->{curInfo}->{screenshot2} =~ s/_m\.jpg/\.jpg/;
- $self->{isScreen} = 0;
+ $self->{is} = 'backpic';
+ }
+ elsif (($attr->{'data-modal'} eq 'image') && $self->{is})
+ {
+ $self->{curInfo}->{$self->{is}} = 'http:'.$attr->{'data-selector'};
+ $self->{is} = '';
}
}
- elsif (($attr->{href} =~ m^/(etajvhtm|cheats)/^) && ! ($self->{urlTips}))
+ elsif ($tagname eq 'div')
{
- $self->{urlTips} = $attr->{href};
+ if ($attr->{class} eq 'game-top-title')
+ {
+ $self->{is} = 'name';
+ }
+ elsif ($attr->{class} eq 'bloc-note-redac')
+ {
+ $self->{is} = 'ratingpress';
+ }
+ elsif ($attr->{class} eq 'bloc-img-fiche')
+ {
+ $self->{is} = 'screenshot1';
+ }
+ elsif ($attr->{class} eq 'bloc-all-support')
+ {
+ $self->{curInfo}->{exclusive} = 0;
+ }
}
- elsif (($attr->{href} =~ m/test.htm/) && ! ($self->{curInfo}->{players}))
+ elsif ($tagname eq 'img')
{
- my $html = $self->loadPage($attr->{href});
-
- my $found = index($html,"<li><strong>Multijoueurs :</strong>");
- if ( $found >= 0 )
+ if ($self->{is} =~ /screenshot/)
{
- $html = substr($html, $found +length('<li><strong>Multijoueurs :</strong>'),length($html)- $found -length('<li><strong>Multijoueurs :</strong>'));
- $self->{curInfo}->{players} = substr($html, 0, index($html, "<"));
-
- # Enleve les blancs en debut de chaine
- $self->{curInfo}->{players} =~ s/^\s+//;
- # Enleve les blancs en fin de chaine
- $self->{curInfo}->{players} =~ s/\s+$//;
-
- $self->{curInfo}->{players} =~ s/-/1/;
- $self->{curInfo}->{players} =~ s/non/1/i;
- $self->{curInfo}->{players} =~ s/oui/Multijoueurs/i;
+ (my $src = 'http:'.$attr->{'data-srcset'}) =~ s/medias-sm/medias/;
+ $self->{curInfo}->{$self->{is}} = $src;
+ if ($self->{is} eq 'screenshot1')
+ {
+ $self->{is} = 'screenshot2';
+ }
+ else
+ {
+ $self->{is} = '';
+ }
}
}
+ elsif (($tagname eq 'h2') && ($attr->{class} =~ /titre-bloc/))
+ {
+ $self->{isTip} = 1;
+ }
+ elsif (($self->{isTip} eq 2) && ($attr->{href} =~ /wiki/i))
+ {
+ $self->{urlTips} = "http://www.jeuxvideo.com/" . $attr->{href};
+ $self->{isTip} = 0;
+ }
}
}
@@ -166,27 +275,33 @@ use GCPlugins::GCgames::GCgamesCommon;
my ($self, $tagname) = @_;
$self->{inside}->{$tagname}--;
- return if $self->{parsingEnded};
- if ($self->{parsingList})
- {
- if ($tagname eq 'div')
- {
- $self->{inResults} = 0;
- }
- }
}
sub text
{
my ($self, $origtext) = @_;
- return if $self->{parsingEnded};
if ($self->{parsingList})
{
- if ($self->{isGame})
+ return if !$self->{isGame};
+ if ($self->{isPlatform})
{
+ if ($self->{itemsList}[$self->{itemIdx}]->{platform} eq "" )
+ {
+ # Enleve le " - " présent en début de chaîne
+ $origtext =~ s/- //;
+ $self->{itemsList}[$self->{itemIdx}]->{platform} = $self->getPlatformName($origtext);
+ }
+ $self->{isPlatform} = 0;
+ }
+ elsif ($self->{isName})
+ {
+ # Enleve les blancs en debut de chaine
+ $origtext =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $origtext =~ s/\s+$//;
$self->{itemsList}[$self->{itemIdx}]->{name} = $origtext;
- $self->{isGame} = 0;
+ $self->{isName} = 0;
}
}
elsif ($self->{parsingTips})
@@ -194,71 +309,86 @@ use GCPlugins::GCgames::GCgamesCommon;
# Enleve les blancs en debut de chaine
$origtext =~ s/^\s+//;
# Enleve les blancs en fin de chaine
- $origtext =~ s/\s+$//;
- if ($self->{isTip} eq 2)
+# $origtext =~ s/\s+$//;
+# There are problems with some texts if ended blanks are removed
+ if ($self->{isTip} eq 1)
+ {
+ $origtext =~ s|Gameboy|Game Boy|gi;
+ $origtext =~ s|Megadrive|Mega Drive|gi;
+ $origtext =~ s|PlayStation Portable|PSP|gi;
+ $origtext =~ s|PlayStation Vita|PS Vita|gi;
+
+ if (($origtext =~ /$self->{curInfo}->{platform}/i) || ($origtext =~ /astuce/i) || ($origtext =~ /renseignement/i) || ($origtext =~ /campagne/i))
+ {
+ $self->{isTip} = 2;
+ }
+ else
+ {
+ $self->{isTip} = 0;
+ }
+ }
+ elsif ($self->{isTip} eq 4)
{
- $self->{curInfo}->{secrets} .= "\n\n" if $self->{curInfo}->{secrets};
$self->{curInfo}->{secrets} .= $origtext;
- $self->{isTip} = 0;
}
- elsif ($self->{isTip} eq 1)
+ elsif ($self->{isTip} eq 3)
{
chomp($origtext);
if ( ($self->{curInfo}->{secrets}) && ($origtext ne "") )
{
- $self->{curInfo}->{secrets} .= "\n"
+ $self->{curInfo}->{secrets} .= "\n\n"
}
$self->{curInfo}->{secrets} .= $origtext;
- $self->{isTip} = 0;
+ $self->{isTip} = 4;
}
}
else
{
- if ($self->{inside}->{h1})
+ $origtext =~ s/^\s*//;
+ if ($self->{is} && $origtext)
{
- if ($self->{inside}->{a})
+ if ($self->{is} eq 'genre')
{
- $self->{curInfo}->{name} = $origtext;
- $self->{curInfo}->{exclusive} = 1;
+ $self->{curInfo}->{$self->{is}} .= "$origtext,";
}
- elsif ($self->{inside}->{span})
+ else
{
- if ($origtext !~ /^Fiche /)
- {
- $origtext =~ s/^\s*-?\s*//;
- $self->{curInfo}->{platform} = $origtext;
- }
+ $self->{curInfo}->{$self->{is}} = $origtext;
}
+ $self->{curInfo}->{$self->{is}} =~ s/Non/1/i if $self->{is} eq 'players';
+ $self->{curInfo}->{$self->{is}} = int($self->{curInfo}->{$self->{is}} / 2) if $self->{is} eq 'ratingpress';
+ $self->{curInfo}->{$self->{is}} =~ s/\s+$// if $self->{is} eq 'released';
+ $self->{curInfo}->{$self->{is}} = $self->getPlatformName($self->{curInfo}->{$self->{is}}) if $self->{is} eq 'platform';
+ $self->{is} = '';
}
- elsif ($self->{inside}->{strong})
- {
- $self->{is} = 'released' if ($origtext =~ /Sortie :/) || ($origtext =~ /Sortie France :/);
- $self->{is} = 'genre' if $origtext =~ /Type :/;
- $self->{is} = 'description' if $origtext =~ /Descriptif :/;
- $self->{is} = 'editor' if $origtext =~ /Editeur :/;
- $self->{is} = 'developer' if $origtext =~ /D.*?veloppeur :/;
- $self->{is} = 'players' if $origtext =~ /Multijoueurs :/;
- $self->{curInfo}->{exclusive} = 0 if $origtext =~ /Existe aussi sur :/;
- }
- elsif ($self->{is})
+ else
{
- $origtext =~ s/^\s*//;
- $origtext =~ s/\n$//;
- if ($origtext)
+ if ($self->{isTip} eq 1)
{
- if ($self->{is} eq 'players')
- {
- $origtext =~ s/-/1/;
- $origtext =~ s/non/1/i;
- $origtext =~ s/oui/Multijoueurs/i;
- }
- if ($self->{is} eq 'ratingpress')
- {
- $origtext =~ m|(\d*)/20|;
- $origtext = int($1 / 2);
- }
- $self->{curInfo}->{$self->{is}} = $origtext;
- $self->{is} = '';
+ if (($origtext =~ /wiki/i) || ($origtext =~ /etajv/i))
+ {
+ $self->{isTip} = 2;
+ }
+ else
+ {
+ $self->{isTip} = 0;
+ }
+ }
+ elsif ($origtext eq 'Editeur(s) / Développeur(s) : ')
+ {
+ $self->{is} = 'editor';
+ }
+ elsif ($origtext =~ /^\s*\|\s*$/)
+ {
+ $self->{is} = 'developer' if ! $self->{curInfo}->{developer};
+ }
+ elsif ($origtext eq 'Sortie France : ')
+ {
+ $self->{is} = 'released';
+ }
+ elsif ($origtext eq 'Nombre maximum de joueurs : ')
+ {
+ $self->{is} = 'players';
}
}
}
@@ -279,7 +409,8 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{hasField} = {
name => 1,
- platform => 1
+ platform => 1,
+ released => 1
};
$self->{isTip} = 0;
@@ -293,49 +424,24 @@ use GCPlugins::GCgames::GCgamesCommon;
my ($self, $html) = @_;
if ($self->{parsingList})
{
- $self->{parsingEnded} = 0;
- $self->{inResults} = 0;
$self->{isGame} = 0;
+ $self->{isName} = 0;
+ $self->{isReleased} = 0;
+ $self->{isPlatform} = 0;
+ $self->{urls} = {};
+ $html =~ s/<\/?b>//ge;
}
elsif ($self->{parsingTips})
{
- $html =~ s|<h4 class="lien_base"><a href="(.+)">Les astuces d|$self->RecupTips($1)|ge;
- $html =~ s|<h4 class="lien_base"><a href="(.+)">La solution d|$self->RecupSolution($1)|ge;
- $html =~ s|<h5><a href="(.+)">||gi;
- $html =~ s|<h3 class="titre_bloc"><span>Plus d'infos</span></h3>|<tpfstopsolution>|gi;
- $html =~ s|<div id="boxes_v">|<tpffintpf>|gi;
- $html =~ s|<p class="lien_base">|<tpffintpf>|gi;
- $html =~ s|<div class="player_article">|<tpffintpf>|gi;
- $html =~ s|</object>|<tpfdebuttpf>|gi;
- $html =~ s|<p class="title_bar">|<tpffintpf>|gi;
- $html =~ s|<div class="bloc3" id="astuces_ajout"><h3 class="titre_bloc">|<tpffintpf>|gi;
- $html =~ s|<br />|<p>|gi;
- $html =~ s|<kbd>|<p>|gi;
- $html =~ s|</kbd>||gi;
- $html =~ s|<b>||gi;
- $html =~ s|</b>||gi;
- $html =~ s|<span>||gi;
- $html =~ s|<img src="../pics/psx/cercle.gif"\s*(alt="CERCLE")?\s*/>|Cercle|gi;
- $html =~ s|<img src="../pics/psx/croix.gif"\s*(alt="CROIX")?\s*/>|Croix|gi;
- $html =~ s|<img src="../pics/psx/carre.gif"\s*(alt="CARRE")?\s*/>|Carr.|gi;
- $html =~ s|<img src="../pics/psx/triangle.gif"\s*(alt="TRIANGLE")?\s*/>|Triangle|gi;
- $html =~ s|<img src="http://image.jeuxvideo.com/pics/btajv/psx/cercle.gif"\s*(alt="CERCLE")?\s*/>|Cercle|gi;
- $html =~ s|<img src="http://image.jeuxvideo.com/pics/btajv/psx/croix.gif"\s*(alt="CROIX")?\s*/>|Croix|gi;
- $html =~ s|<img src="http://image.jeuxvideo.com/pics/btajv/psx/carre.gif"\s*(alt="CARRE")?\s*/>|Carr.|gi;
- $html =~ s|<img src="http://image.jeuxvideo.com/pics/btajv/psx/triangle.gif"\s*(alt="TRIANGLE")?\s*/>|Triangle|gi;
- $html =~ s|\x{92}|'|gi;
- $html =~ s|&#146;|'|gi;
- $html =~ s|&#149;|*|gi;
- $html =~ s|&#156;|oe|gi;
- $html =~ s|&#133;|...|gi;
- $html =~ s|\x{85}|...|gi;
- $html =~ s|\x{8C}|OE|gi;
- $html =~ s|\x{9C}|oe|gi;
+ $html =~ s|<a data-jvcode="HTMLBLOCK" href="(.+)">|$self->RecupTips("http://www.jeuxvideo.com" . $1)|ge;
+ $html =~ s|Chargement du lecteur vid(.)o...|<p>"Une video est disponible"</p>|gi;
+ $html =~ s|Partager sur :||gi;
+ $html =~ s|<img src="//www.jeuxvideo.com/img/keys/(.+?).gif" alt="(.+?)" />|$2|gi;
}
else
{
$self->{is} = '';
- $self->{inScreenshots} = 0;
+ $self->{curInfo}->{exclusive} = 1;
}
return $html;
}
@@ -345,74 +451,32 @@ use GCPlugins::GCgames::GCgamesCommon;
my ($self, $url) = @_;
my $html = $self->loadPage($url);
- my $savenexturl = '';
-
- my $found = index($html,"<p class=\"astuces_suiv\"> <a href=\"");
- if ( $found >= 0 )
- {
- $savenexturl = substr($html, $found +length('<p class="astuces_suiv"> <a href="'),length($html)- $found -length('<p class="astuces_suiv"> <a href="'));
- $savenexturl = substr($savenexturl, 0, index($savenexturl, "\""));
- }
-
- $found = index($html,"<div id=\"astuce_detail\" class=\"astuce\">");
- if ( $found >= 0 )
- {
- $html = substr($html, $found +length('<div id="astuce_detail" class="astuce">'),length($html)- $found -length('<div id="astuce_detail" class="astuce">'));
- $html = substr($html, 0, index($html, "<div id=\"barre_outils_v2\">"));
- if ( $savenexturl ne "" )
- {
- $html .= $self->RecupTips($savenexturl);
- }
- }
- else
- {
- $html = '';
- }
- return "<tpfdebuttpf>" . $html . "<tpffintpf>";
- }
-
- sub RecupSolution
- {
- my ($self, $url) = @_;
-
- my $html = $self->loadPage($url);
- my $savenexturl = '';
- my $found = index($html,"<p class=\"astuces_suiv\"><a href=\"");
+ my $found = index($html,"<h2 class=\"titre-bloc\">");
if ( $found >= 0 )
{
- $savenexturl = substr($html, $found +length('<p class="astuces_suiv"><a href="'),length($html)- $found -length('<p class="astuces_suiv"><a href="'));
- $savenexturl = substr($savenexturl, 0, index($savenexturl, "\""));
+ $html = substr($html, $found +length('<h2 class="titre-bloc">'),length($html)- $found -length('<h2 class="titre-bloc">'));
+ $found = index($html,"<div class=\"bloc-lien-revision\">");
+ if ( $found >= 0 )
+ {
+ $html = substr($html, 0, $found);
+ }
}
- $found = index($html,"<div id=\"astuce_detail\" class=\"soluce\">");
- if ( $found >= 0 )
- {
- $html = substr($html, $found +length('<div id="astuce_detail" class="soluce">'),length($html)- $found -length('<div id="astuce_detail" class="soluce">'));
- $html = substr($html, 0, index($html, "<div id=\"barre_outils_v2\">"));
- if ( $savenexturl ne "" )
- {
- $html .= $self->RecupSolution($savenexturl);
- }
- }
- else
- {
- $html = '';
- }
return "<tpfdebuttpf>" . $html . "<tpffintpf>";
}
-
+
sub getSearchUrl
{
my ($self, $word) = @_;
$word =~ s/\+/ /g;
- return 'http://www.jeuxvideo.com/recherche/jeux/'.$word.'.htm';
+ return 'http://www.jeuxvideo.com/recherche.php?q='.$word.'&m=9';
}
sub getItemUrl
{
my ($self, $url) = @_;
-
+
return $url if $url;
return 'http://www.jeuxvideo.com/';
}
@@ -432,12 +496,6 @@ use GCPlugins::GCgames::GCgamesCommon;
return 'FR';
}
- sub getCharset
- {
- my $self = shift;
-
- return "ISO-8859-1";
- }
sub isPreferred
{
return 1;
diff --git a/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoFr.pm b/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoFr.pm
index bec266f..e81d116 100644
--- a/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoFr.pm
+++ b/lib/gcstar/GCPlugins/GCgames/GCJeuxVideoFr.pm
@@ -2,7 +2,7 @@ package GCPlugins::GCgames::GCJeuxVideoFr;
###################################################
#
-# Copyright 2005-2011 Tian
+# Copyright 2005-2014 Tian
#
# This file is part of GCstar.
#
@@ -69,6 +69,18 @@ use GCPlugins::GCgames::GCgamesCommon;
}
elsif ($self->{parsingTips})
{
+ if ($tagname eq 'tpfdebuttpf')
+ {
+ $self->{isTip} = 1;
+ }
+ elsif (($tagname eq 'p') && ($self->{isTip} ne 0 ))
+ {
+ $self->{isTip} = 2;
+ }
+ elsif ($tagname eq 'tpffintpf')
+ {
+ $self->{isTip} = 0;
+ }
}
else
{
@@ -235,6 +247,26 @@ use GCPlugins::GCgames::GCgamesCommon;
}
elsif ($self->{parsingTips})
{
+ # Enleve les blancs en debut de chaine
+ $origtext =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $origtext =~ s/\s+$//;
+ if ($self->{isTip} eq 2)
+ {
+ chomp($origtext);
+ $self->{curInfo}->{secrets} .= "\n" if $self->{curInfo}->{secrets};
+ $self->{curInfo}->{secrets} .= $origtext;
+ $self->{isTip} = 1;
+ }
+ elsif ($self->{isTip} eq 1)
+ {
+ chomp($origtext);
+ if ( ($self->{curInfo}->{secrets}) && ($origtext ne "") )
+ {
+ $self->{curInfo}->{secrets} .= ""
+ }
+ $self->{curInfo}->{secrets} .= $origtext;
+ }
}
else
{
@@ -358,6 +390,8 @@ use GCPlugins::GCgames::GCgamesCommon;
}
elsif ($self->{parsingTips})
{
+ $html =~ s|<option value="(.+)">|$self->RecupSolution($1)|e;
+ $html =~ s|<br />|<p>|gi;
}
else
{
@@ -369,6 +403,41 @@ use GCPlugins::GCgames::GCgamesCommon;
return $html;
}
+ sub RecupSolution
+ {
+ my ($self, $url) = @_;
+
+ my $html = $self->loadPage('http://www.jeuxvideo.fr'.$url);
+ my $savenexturl = '';
+
+ my $found = index($html,"<a class=\"pull-right\" href=\"");
+ if ( $found >= 0 )
+ {
+ $savenexturl = substr($html, $found +length('<a class="pull-right" href="'),length($html)- $found -length('<a class="pull-right" href="'));
+ $savenexturl = substr($savenexturl, 0, index($savenexturl, "\""));
+ }
+
+ $found = index($html,"<ul class=\"walkthrough-breadcrumb\">");
+ if ( $found >= 0 )
+ {
+ $html = substr($html, $found +length('<ul class="walkthrough-breadcrumb">'),length($html)- $found -length('<ul class="walkthrough-breadcrumb">'));
+ $html = substr($html, 0, index($html, "<div class=\"select-toc pull-right\">"));
+ if ( $savenexturl ne "" )
+ {
+ $html .= $self->RecupSolution($savenexturl);
+ }
+ }
+ else
+ {
+ $html = '';
+ if ( $savenexturl ne "" )
+ {
+ $html .= $self->RecupSolution($savenexturl);
+ }
+ }
+ return "<tpfdebuttpf>" . $html . "<tpffintpf>";
+ }
+
sub getSearchUrl
{
my ($self, $word) = @_;
@@ -387,10 +456,11 @@ use GCPlugins::GCgames::GCgamesCommon;
$url = substr($url, 0,$found);
}
- $self->{url_screenshot} = 'http://www.jeuxvideo.fr' . $url . 'image-photo/';
- $self->{url_tips} = 'http://www.jeuxvideo.fr' . $url . 'astuce-code/';
+ $self->{url_screenshot} = $url . 'image-photo/';
+ $self->{url_tips} = $url . 'astuce-code/';
+ $self->{url_tips} = $url . 'soluce/';
- return 'http://www.jeuxvideo.fr' . $url;
+ return $url;
}
sub getName
diff --git a/lib/gcstar/GCPlugins/GCgames/GCMobyGames.pm b/lib/gcstar/GCPlugins/GCgames/GCMobyGames.pm
index c6650c3..d6c7ace 100644
--- a/lib/gcstar/GCPlugins/GCgames/GCMobyGames.pm
+++ b/lib/gcstar/GCPlugins/GCgames/GCMobyGames.pm
@@ -2,7 +2,7 @@ package GCPlugins::GCgames::GCMobyGames;
###################################################
#
-# Copyright 2005-2011 Christian Jodar
+# Copyright 2005-2015 Christian Jodar
#
# This file is part of GCstar.
#
@@ -37,37 +37,35 @@ use GCPlugins::GCgames::GCgamesCommon;
{
my ($self, $html_ini) = @_;
my $answer = "";
- my @tmpAnswer = ();
my $html = $self->loadPage($html_ini, 0, 1);
- $html =~ s|<pre>||gi;
- $html =~ s|</pre>||gi;
+ $html =~ s|<ul>||gi;
+ $html =~ s|</ul>||gi;
$html =~ s|<b>||gi;
$html =~ s|</b>||gi;
- my $found = index($html,"class=\"sbL sbB sbT\">");
+ $html =~ s|<li>||gi;
+ $html =~ s|</li>||gi;
+ $html =~ s|</h3>||gi;
+ $html =~ s|<hr />||gi;
+ $html =~ s|<br>|\n|gi;
+ $html =~ s|<p>|\n|gi;
+ $html =~ s|</p>||gi;
+ $html =~ s|<pre>||gi;
+ $html =~ s|</pre>||gi;
+ $html =~ s|</td>||gi;
+ $html =~ s|</tr>||gi;
+ my $found = index($html,"sbR sbL sbB\">");
if ( $found >= 0 )
{
- $answer = substr($html, $found + length("class=\"sbL sbB sbT\">"),length($html)- $found -length("class=\"sbL sbB sbT\">") );
- $answer = substr($answer, 0, index($answer,"</td><td align="));
-
- $tmpAnswer[0] = decode_entities($answer);
-
- $found = index($html,"class=\"sbR sbL sbB\"><p>");
- if ( $found >= 0 )
- {
- my $html2 = substr($html, $found + length("class=\"sbR sbL sbB\"><p>"),length($html)- $found -length("class=\"sbR sbL sbB\"><p>") );
- $html2 = substr($html2, 0, index($html2,"</p>"));
- $html2 =~ s/<br>/\n/gi;
- $html2 =~ s|<p>|\n|gi;
- $html2 =~ s|</p>||gi;
-
- $tmpAnswer[1] = decode_entities($html2);
- }
+ $answer = substr($html, $found + length('sbR sbL sbB">'),length($html)- $found -length('sbR sbL sbB">') );
+ $answer = substr($answer, 0, index($answer,"</table>"));
+ $answer = decode_entities($answer);
}
- return @tmpAnswer;
+ return $answer;
}
+
sub extractPlayer
{
my ($self, $html_ini, $word) = @_;
@@ -93,7 +91,7 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{inside}->{$tagname}++;
if ($self->{parsingList})
{
- if ( !$self->{insideSearchImage}
+ if ( $self->{insideSearchImage}
&& ($tagname eq 'a')
&& ( substr($attr->{href},0,6) eq '/game/' ) )
{
@@ -127,15 +125,16 @@ use GCPlugins::GCgames::GCgamesCommon;
{
$self->{isGame} = 0;
}
- elsif ($tagname eq 'div')
+ elsif ( ($tagname eq 'div') && ($attr->{class} eq 'searchData'))
{
- if ($attr->{class} eq 'searchResult')
+ $self->{insideSearchImage} = 1;
+ }
+ elsif ($tagname eq 'br')
+ {
+ if ($attr->{clear} eq 'all')
{
$self->{currentName} = '';
- }
- elsif ($attr->{class} eq 'searchImage')
- {
- $self->{insideSearchImage} = 1;
+ $self->{insideSearchImage} = 0;
}
}
elsif ($tagname eq 'em')
@@ -145,66 +144,20 @@ use GCPlugins::GCgames::GCgamesCommon;
}
elsif ($self->{parsingTips})
{
- if (($tagname eq 'table') && ($attr->{summary} eq 'List of Tips and Tricks'))
- {
- $self->{isSectionTips} = 2;
- }
- elsif ( ($tagname eq 'b') && ($self->{isSectionTips} eq '2') )
+ if (($tagname eq 'tr') && ($attr->{class} eq 'mb2'))
{
$self->{isSectionTips} = 1;
}
- elsif ( ($tagname eq 'tr') && (($attr->{class} eq 'mb1') || ($attr->{class} eq 'mb2')) )
+ elsif ( ($tagname eq 'a') && ($self->{isSectionTips}) )
{
- $self->{isTip} = 1 if ($self->{isTip} eq 2);
- $self->{isCode} = 1 if ($self->{isCode} eq 2);
- }
- elsif ( ($tagname eq 'a') && ($self->{isTip} eq 1))
- {
- my @tips = $self->extractTips('http://www.mobygames.com'.$attr->{href}.'');
- if ($tips[0] =~ m/unlock/i)
- {
- $Text::Wrap::columns = 80;
- $tips[1] = Text::Wrap::wrap('', '', $tips[1]);
- #$self->{tmpCheatLine} = [];
- #push @{$self->{tmpCheatLine}}, @tips;
- push @{$self->{curInfo}->{unlockable}}, \@tips;
- }
- else
- {
- my $answer = $tips[0];
- $answer .= "\n";
- $answer .= $tips[1];
- if ( ($self->{curInfo}->{secrets}) && ($answer ne "") )
- {
- $self->{curInfo}->{secrets} .= "\n\n\n"
- }
- $self->{curInfo}->{secrets} .= $answer;
- }
- $self->{isTip} = 2;
- }
- elsif ( ($tagname eq 'a') && ($self->{isCode} eq 1))
- {
- my @tips = $self->extractTips('http://www.mobygames.com'.$attr->{href}.'');
- @tips = reverse(@tips);
- $Text::Wrap::columns = 80;
- $tips[1] = Text::Wrap::wrap('', '', $tips[1]);
- #$self->{tmpCheatLine} = [];
- #push @{$self->{tmpCheatLine}}, @tips;
- push @{$self->{curInfo}->{code}}, \@tips;
-
- $self->{isCode} = 2;
-
+ $self->{tip_wait} = $self->extractTips('http://www.mobygames.com'.$attr->{href});
}
elsif ($tagname eq 'br')
{
- $self->{isTip} = 3;
- $self->{isCode} = 3;
$self->{isSectionTips} = 0;
}
elsif ($tagname eq 'head')
{
- $self->{isTip} = 0;
- $self->{isCode} = 0;
$self->{isSectionTips} = 0;
}
@@ -212,17 +165,13 @@ use GCPlugins::GCgames::GCgamesCommon;
else
{
- if ($tagname eq 'div')
+ if ( ($tagname eq 'h1') && ($attr->{class} eq 'niceHeaderTitle') )
{
- for ($attr->{id})
- {
- /^gameTitle$/ && ($self->{isName} = 1, last);
- /^gamePlatform/ && ($self->{isPlatform} = 1, last);
- #/^coreGameCover/ && ($self->{isBox} = 1, last);
- /^coreGameRelease/ && ($self->{isEditor} = 1, last);
- }
-
- if ($attr->{class} =~ m/scoreBoxBig/)
+ $self->{isName} = 1;
+ }
+ elsif ($tagname eq 'div')
+ {
+ if ($attr->{class} =~ m/scoreBoxBig/i)
{
$self->{isRating} = 1;
}
@@ -232,19 +181,20 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{isGenre} = 0;
}
- $self->{isDescription} = 0;
+ if ($attr->{class} ne 'listing-detail')
+ {
+ $self->{isDescription} = 0;
+ $self->{isExclusive} = 0;
+ }
}
- elsif ( ($tagname eq 'a') && ($self->{isName}) )
+ elsif ($tagname eq 'tpfdescriptiontpf')
{
- $self->{is} = 'name';
- $self->{curInfo}->{exclusive} = 1;
- $self->{isName} = 0;
+ $self->{isDescription} = 1;
}
- elsif ( ($tagname eq 'a') && ($self->{isPlatform}) )
+ elsif ( ($tagname eq 'a') && ($attr->{class} eq 'edit') )
{
- $self->{is} = 'platform';
- $self->{isPlatform} = 0;
+ $self->{isDescription} = 0;
}
elsif ( ($tagname eq 'a') && ($self->{isEditor}) )
{
@@ -256,6 +206,25 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{is} = 'developer';
$self->{isDeveloper} = 0;
}
+ elsif ( ($tagname eq 'a') && ($self->{isExclusive}) )
+ {
+ if ($self->{isExclusive} eq 1)
+ {
+ $self->{isExclusive} = $self->{isExclusive} + 1;
+ }
+ else
+ {
+ $self->{curInfo}->{exclusive} = 0;
+ $self->{isExclusive} = 0;
+ }
+ }
+ elsif ( ($tagname eq 'a') && ($self->{isName}) )
+ {
+ $self->{is} = 'name';
+ $self->{curInfo}->{platform} = $self->{url_plateforme};
+ $self->{curInfo}->{exclusive} = 1;
+ $self->{isName} = 0;
+ }
elsif ( ($tagname eq 'a') && ($self->{isDate}) )
{
$self->{is} = 'released';
@@ -275,9 +244,9 @@ use GCPlugins::GCgames::GCgamesCommon;
# From here we try to get back cover
my $covers = $self->loadPage($self->{rootUrl}.'/cover-art', 0, 1);
$covers =~ m|<img alt=".*?Back Cover".*?src="([^"]*)"|;
- $self->{curInfo}->{backpic} = $1;
- $self->{curInfo}->{backpic} =~ s|/small/|/large/|
- if $self->{bigPics};
+ $self->{curInfo}->{backpic} = $1;
+ $self->{curInfo}->{backpic} =~ s|/small/|/large/|
+ if $self->{bigPics};
}
}
elsif ($tagname eq 'html')
@@ -332,10 +301,6 @@ use GCPlugins::GCgames::GCgamesCommon;
{
my ($self, $tagname) = @_;
$self->{inside}->{$tagname}--;
- if ($self->{parsingList} && ($tagname eq 'div'))
- {
- $self->{insideSearchImage} = 0;
- }
}
sub text
@@ -359,6 +324,7 @@ use GCPlugins::GCgames::GCgamesCommon;
elsif ($self->{isPlatform})
{
$self->{itemsList}[$self->{itemIdx}]->{platform} = $origtext;
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $self->{itemsList}[$self->{itemIdx}]->{url} . 'tpfplatformtpf' . $self->{itemsList}[$self->{itemIdx}]->{platform};
$self->{isPlatform} = 0;
}
elsif ($self->{isGameName})
@@ -377,6 +343,7 @@ use GCPlugins::GCgames::GCgamesCommon;
{
$self->{previous} =~ s/[\s\(]*$//g;
$self->{itemsList}[$self->{itemIdx}]->{platform} = $self->{previous};
+ $self->{itemsList}[$self->{itemIdx}]->{url} = $self->{itemsList}[$self->{itemIdx}]->{url} . 'tpfplatformtpf' . $self->{itemsList}[$self->{itemIdx}]->{platform};
}
}
$self->{isDate} = 0;
@@ -385,20 +352,53 @@ use GCPlugins::GCgames::GCgamesCommon;
}
elsif ($self->{parsingTips})
{
- if ($self->{isSectionTips} eq 1)
+ if ($self->{tip_wait} ne '')
{
- if ($origtext =~ m/General Hints\/Tips/i)
- {
- $self->{isTip} = 2;
- $self->{isCode} = 0;
- }
- elsif ($origtext =~ m/Cheats\/Codes/i)
+ $self->{isUnlock} = 1 if $origtext =~ /Unlockables/i;
+ $self->{isUnlock} = 1 if $origtext =~ /Achievement/i;
+ $self->{isCode} = 1 if $origtext =~ /Cheat/i;
+ }
+ if (($self->{isCode}) || ($self->{isUnlock}))
+ {
+ $Text::Wrap::columns = 80;
+ $self->{tip_wait} = Text::Wrap::wrap('', '', $self->{tip_wait});
+
+ my @array = split(/\n/,$self->{tip_wait});
+ my $element;
+
+ foreach $element (@array)
{
- $self->{isTip} = 0;
- $self->{isCode} = 2;
+ if (($element =~ m/:/i) && !($element =~ m/type one of the following code/i))
+ {
+ $self->{tmpCheatLine} = [];
+ $self->{tmpCheatLine}[0] = substr($element, 0, index($element,":") );
+ $self->{tmpCheatLine}[1] = substr($element, index($element,":") + length(":"),length($element)- index($element,":") -length(":") );
+
+ # Enleve les blancs en debut de chaine
+ $self->{tmpCheatLine}[0] =~ s/^\s+//;
+ $self->{tmpCheatLine}[1] =~ s/^\s+//;
+ # Enleve les blancs en fin de chaine
+ $self->{tmpCheatLine}[0] =~ s/\s+$//;
+ $self->{tmpCheatLine}[1] =~ s/\s+$//;
+
+ push @{$self->{curInfo}->{code}}, $self->{tmpCheatLine} if ($self->{isCode});
+ push @{$self->{curInfo}->{unlockable}}, $self->{tmpCheatLine} if ($self->{isUnlock});
+ $self->{tmpCheatLine} = [];
+ }
}
- $self->{isSectionTips} = 2;
- }
+ $self->{tip_wait} = '';
+ $self->{isCode} = 0;
+ $self->{isUnlock} = 0;
+ }
+ else
+ {
+ if ($self->{curInfo}->{secrets})
+ {
+ $self->{curInfo}->{secrets} .= "\n\n";
+ }
+ $self->{curInfo}->{secrets} .= $self->{tip_wait};
+ $self->{tip_wait} = '';
+ }
}
else
{
@@ -423,6 +423,13 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{is} = '';
}
+ elsif ($self->{isName} eq 3)
+ {
+ $self->{curInfo}->{name} = $origtext;
+ $self->{curInfo}->{platform} = $self->{url_plateforme};
+ $self->{curInfo}->{exclusive} = 1;
+ $self->{isName} = 0;
+ }
elsif ($self->{isRating})
{
$self->{curInfo}->{ratingpress} = int($origtext/10+0.5);
@@ -432,9 +439,17 @@ use GCPlugins::GCgames::GCgamesCommon;
{
$self->{curInfo}->{description} .= $origtext;
}
+ elsif ($origtext eq 'Published by')
+ {
+ $self->{isEditor} = 1;
+ }
elsif ($origtext eq 'Developed by')
{
- $self->{isDeveloper} = 1
+ $self->{isDeveloper} = 1;
+ }
+ elsif ($origtext eq 'Platforms')
+ {
+ $self->{isExclusive} = 1;
}
elsif ( ($origtext eq 'Also For') || (($origtext eq 'Platforms')))
{
@@ -485,11 +500,13 @@ use GCPlugins::GCgames::GCgamesCommon;
$self->{isDate} = 0;
$self->{isGenre} = 0;
$self->{isDescription} = 0;
- $self->{isBox} = 0;
$self->{isSectionTips} = 0;
- $self->{isTip} = 0;
$self->{isCode} = 0;
+ $self->{isUnlock} = 0;
$self->{is} = '';
+ $self->{url_plateforme} = '';
+ $self->{isExclusive} = 0;
+ $self->{tip_wait} = '';
return $self;
}
@@ -497,7 +514,36 @@ use GCPlugins::GCgames::GCgamesCommon;
sub preProcess
{
my ($self, $html) = @_;
+
$self->{rootUrl} = $self->{loadedUrl};
+
+ if ($self->{parsingTips})
+ {
+ }
+ elsif ($self->{parsingList})
+ {
+ }
+ else
+ {
+ my $found = index($html,"<meta name=\"description\" content=\"");
+ if ( $found >= 0 )
+ {
+ my $rech_description = substr($html, $found,length($html)- $found);
+ $found = index($rech_description,"..");
+ if ( $found >= 0 )
+ {
+ $rech_description = substr($rech_description, index($rech_description,"for ".$self->{url_plateforme})+length("for ".$self->{url_plateforme}), $found-index($rech_description,"for ".$self->{url_plateforme})-length("for ".$self->{url_plateforme}));
+ $rech_description = substr($rech_description, index($rech_description,";")+1, length($rech_description)-index($rech_description,";")-1);
+ # Enleve les blancs en debut de chaine
+ $rech_description =~ s/^\s+//;
+ }
+
+ $html =~ s|<i>||g;
+ $html =~ s|</i>||g;
+ $html =~ s|$rech_description|<tpfdescriptiontpf>$rech_description</tpfdescriptiontpf>|g;
+
+ }
+ }
return $html;
}
@@ -510,6 +556,13 @@ use GCPlugins::GCgames::GCgamesCommon;
sub getItemUrl
{
my ($self, $url) = @_;
+
+ my $found = index($url,"tpfplatformtpf");
+ if ( $found >= 0 )
+ {
+ $self->{url_plateforme} = substr($url, $found +length('tpfplatformtpf'),length($url)- $found -length('tpfplatformtpf'));
+ $url = substr($url, 0,$found);
+ }
return $url if $url;
return 'http://www.mobygames.com/';
diff --git a/lib/gcstar/GCStats.pm b/lib/gcstar/GCStats.pm
index 439c6d1..4cf18a8 100644
--- a/lib/gcstar/GCStats.pm
+++ b/lib/gcstar/GCStats.pm
@@ -66,6 +66,7 @@ BEGIN {
{
my ($self, $items, $sort, $type, $useNumbers) = @_;
my %stats;
+ $self->{yMax} = 0;
foreach my $item(@$items)
{
if (ref($item) eq 'ARRAY')
@@ -94,7 +95,9 @@ BEGIN {
$val = $key;
$val .= ' ('.$stats{$key}.')' if $useNumbers;
push @val1, $val;
- push @val2, $stats{$key};
+ my $stat = $stats{$key};
+ push @val2, $stat;
+ $self->{yMax} = $stat if $stat > $self->{yMax};
}
$self->{data} = [\@val1, \@val2];
}
@@ -155,6 +158,7 @@ BEGIN {
$_ += $prev;
$prev = $_;
}
+ $self->{yMax} = $prev;
}
# Transform dates into numbers of days
# Reference is the 1st one as they are ordered
@@ -171,6 +175,7 @@ BEGIN {
@refDate = Date::Calc::Add_Delta_Days(@refDate, -1);
$self->{data}->[0]->[0] = sprintf('%d/%02d/%02d', @refDate);
}
+ @refDate = GCPreProcess::completePartialDate(@refDate);
my $prev = -1;
my @newDates;
my $dateFormat = $self->{parent}->{options}->dateFormat;
@@ -183,6 +188,7 @@ BEGIN {
next;
}
my @cmpDate = split m|/|, $date;
+ @cmpDate = GCPreProcess::completePartialDate(@cmpDate);
my $diff = Date::Calc::Delta_Days(@refDate, @cmpDate);
if ($diff > $prev + 1)
{
@@ -245,8 +251,9 @@ BEGIN {
l_margin => 20,
r_margin => 20,
text_space => 20,
+ y_max_value => $self->{yMax},
+ y_number_format => "%d",
);
-
my $gd = $graph->plot($self->{data});
# Now, resample the graph down to the desired size, effectively anti-aliasing the sharp edges
@@ -300,6 +307,15 @@ BEGIN {
$self->{accumulateOption}->setValue(1);
$self->{useNumberOption} = new GCCheckBox($parent->{lang}->{StatsDisplayNumber});
$self->{useNumberOption}->setValue(0);
+
+ $self->{groupDatesByChoices} = [
+ {value => 'days', displayed => 'Days'},
+ {value => 'months', displayed => 'Months'},
+ {value => 'years', displayed => 'Years'},
+ ];
+ $self->{groupDatesByOption} = new GCMenuList($self->{groupDatesByChoices});
+ $self->{groupDatesByOption}->setValue('days');
+ my $groupDatesByLabel = new GCLabel('Group dates by');
my $widthLabel = new GCLabel($parent->{lang}->{StatsWidth});
$self->{widthOption} = new GCCheckedText('0-9');
@@ -334,6 +350,8 @@ BEGIN {
$table->attach($self->{sortByNumberOption}, 3, 5, 1, 2, 'fill', 'fill', 0, 0);
$table->attach($self->{accumulateOption}, 3, 5, 1, 2, 'fill', 'fill', 0, 0);
$table->attach($self->{useNumberOption}, 6, 8, 1, 2, 'fill', 'fill', 0, 0);
+ $table->attach($groupDatesByLabel, 9, 10, 1, 2, 'fill', 'fill', 0, 0);
+ $table->attach($self->{groupDatesByOption}, 10, 11, 1, 2, 'fill', 'fill', 0, 0);
$self->{image} = Gtk2::Image->new;
@@ -412,6 +430,7 @@ BEGIN {
my $accumulate = $self->{accumulateOption}->getValue;
my $useNumber = ($graphType =~ /pie/) && $self->{useNumberOption}->getValue;
my $showValues = ($graphType !~ /pie/) && $self->{useNumberOption}->getValue;
+ my $groupDatesBy = $self->{groupDatesByOption}->getValue;
my $width = $self->{widthOption}->getValue;
my $height = $self->{heightOption}->getValue;
my $fontSize = $self->{fontOption}->getValue;
@@ -420,7 +439,10 @@ BEGIN {
my @valuesList;
if ($type eq 'date')
{
- @valuesList = map {GCPreProcess::reverseDate($_->{$sortField})} @{$self->{data}};
+ @valuesList = map {GCPreProcess::cutReversedDate(
+ GCPreProcess::reverseDate($_->{$sortField}),
+ $self->{groupDatesByOption}->getValue)}
+ @{$self->{data}};
}
else
{
diff --git a/lib/gcstar/GCUtils.pm b/lib/gcstar/GCUtils.pm
index cc0e0d9..1921363 100644
--- a/lib/gcstar/GCUtils.pm
+++ b/lib/gcstar/GCUtils.pm
@@ -317,6 +317,23 @@ sub RtfToString
return $text;
}
+ sub cutReversedDate
+ {
+ my ($date, $group) = @_;
+ return $date if $group eq 'days';
+ $date =~ m|([0-9]{4})/([0-9]{2})/([0-9]{2})|;
+ my $result = $1;
+ $result .= "/$2" if $group eq 'months';
+ return $result;
+ }
+
+ sub completePartialDate
+ {
+ my (@date) = @_;
+ push @date, "01" while @date < 3;
+ return @date;
+ }
+
# Useful to compare date
sub reverseDate
{
diff --git a/packages/fedora/gcstar.spec b/packages/fedora/gcstar.spec
index 2244363..2845e56 100644
--- a/packages/fedora/gcstar.spec
+++ b/packages/fedora/gcstar.spec
@@ -1,5 +1,5 @@
Name: gcstar
-Version: 1.7.0
+Version: 1.7.1
Release: 4%{?dist}
Summary: Personal collections manager
diff --git a/packages/rpm/gcstar.spec b/packages/rpm/gcstar.spec
index b4df656..5c90035 100644
--- a/packages/rpm/gcstar.spec
+++ b/packages/rpm/gcstar.spec
@@ -1,7 +1,7 @@
# Initial spec file created by autospec ver. 0.8 with rpm 3 compatibility
Summary: GCstar, Collection manager
Name: gcstar
-Version: 1.7.0
+Version: 1.7.1
Release: 1
Group: Applications/Databases
License: GPL
diff --git a/packages/win32/gcstar.nsi b/packages/win32/gcstar.nsi
index e426da2..f531336 100644
--- a/packages/win32/gcstar.nsi
+++ b/packages/win32/gcstar.nsi
@@ -3,7 +3,7 @@
; Helper defines
!define PRODUCT_NAME "GCstar"
-!define PRODUCT_VERSION "1.7.0"
+!define PRODUCT_VERSION "1.7.1"
!define PRODUCT_PUBLISHER "Tian"
!define PRODUCT_WEB_SITE "http://www.gcstar.org/"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_NAME}"
diff --git a/share/applications/gcstar.desktop b/share/applications/gcstar.desktop
index aa6a46d..c7a146e 100644
--- a/share/applications/gcstar.desktop
+++ b/share/applications/gcstar.desktop
@@ -15,4 +15,4 @@ Terminal=false
StartupNotify=true
Type=Application
Categories=Office;
-MimeType=application/x-gcstar
+MimeType=application/x-gcstar;
diff --git a/share/gcstar/logos/Peri_main_logo.svg b/share/gcstar/logos/Peri_main_logo.svg
index 98bff66..bcb11ee 100644
--- a/share/gcstar/logos/Peri_main_logo.svg
+++ b/share/gcstar/logos/Peri_main_logo.svg
@@ -1,1960 +1,4132 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
- <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
- <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
- <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
- <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
- <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
- <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
- <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
- <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
- <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
- <!ENTITY ns_svg "http://www.w3.org/2000/svg">
- <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
-]>
-<svg version="1.1"
- xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" i:viewOrigin="-192 208" i:rulerOrigin="0 0" i:pageBounds="0 16 16 0"
- xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" width="401" height="401"
- viewBox="0 0 401 401" overflow="visible" enable-background="new 0 0 401 401" xml:space="preserve">
-<metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
-<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="3.1.1-111">
- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <rdf:Description rdf:about=""
- xmlns:dc="http://purl.org/dc/elements/1.1/">
- <dc:format>image/svg+xml</dc:format>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xap="http://ns.adobe.com/xap/1.0/"
- xmlns:xapGImg="http://ns.adobe.com/xap/1.0/g/img/">
- <xap:CreatorTool>Adobe Illustrator CS2</xap:CreatorTool>
- <xap:CreateDate>2005-11-07T17:36:23+01:00</xap:CreateDate>
- <xap:ModifyDate>2005-11-07T17:36:23+01:00</xap:ModifyDate>
- <xap:MetadataDate>2005-11-07T17:36:23+01:00</xap:MetadataDate>
- <xap:Thumbnails>
- <rdf:Alt>
- <rdf:li rdf:parseType="Resource">
- <xapGImg:width>256</xapGImg:width>
- <xapGImg:height>256</xapGImg:height>
- <xapGImg:format>JPEG</xapGImg:format>
- <xapGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB&#xA;UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE&#xA;1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ&#xA;qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy&#xA;obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp&#xA;0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo&#xA;+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;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&#xA;VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVU3t4JDV41Y+JArhEigxCmdPsz/uofQSP1HD&#xA;xlHAGv0dadkP3nDxlHAG/wBH247H78HGV4A2LKAdj9+PEU8AXC1hH7P4nHiKeELhDEOi4LWl4AHQ&#xA;UwJdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir&#xA;sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs&#xA;VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV&#xA;dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd&#xA;irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi&#xA;rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir&#xA;sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs&#xA;VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV&#xA;dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd&#xA;irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi&#xA;rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir&#xA;sVdirsVdirsVdirsVdir/9k=</xapGImg:image>
- </rdf:li>
- </rdf:Alt>
- </xap:Thumbnails>
- </rdf:Description>
- <rdf:Description rdf:about=""
- xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/">
- <xapMM:DocumentID>uuid:0D242DA2AC4FDA11B312AE4ADC8A7260</xapMM:DocumentID>
- <xapMM:InstanceID>uuid:0E242DA2AC4FDA11B312AE4ADC8A7260</xapMM:InstanceID>
- </rdf:Description>
- </rdf:RDF>
-</x:xmpmeta>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<?xpacket end="w"?>
- </metadata>
-<switch>
- <foreignObject requiredExtensions="&ns_ai;" x="0" y="0" width="1" height="1">
- <i:pgfRef xlink:href="#adobe_illustrator_pgf">
- </i:pgfRef>
- </foreignObject>
- <g i:extraneous="self">
- <g id="Calque_1" i:layer="yes" i:editable="no" i:dimmedPercent="50" i:rgbTrio="#4F008000FFFF">
- <rect x="0.5" y="0.5" fill="none" stroke="#FFFFFF" width="400" height="400"/>
- </g>
- <g id="logo_x5F_GCfilms" i:layer="yes" i:editable="no" i:dimmedPercent="50" i:rgbTrio="#FFFF4F004F00">
- <g>
-
- <linearGradient id="XMLID_84_" gradientUnits="userSpaceOnUse" x1="464.9299" y1="-455.522" x2="289.7179" y2="-477.1064" gradientTransform="matrix(1 0.0046 0.0046 -1 -289.3605 -205.7951)">
- <stop offset="0.0056" style="stop-color:#FFFFFF"/>
- <stop offset="0.3072" style="stop-color:#ECF2F9"/>
- <stop offset="0.9175" style="stop-color:#BAD2EA"/>
- <stop offset="1" style="stop-color:#B3CDE8"/>
- <a:midPointStop offset="0.0056" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.3072" style="stop-color:#ECF2F9"/>
- <a:midPointStop offset="0.5" style="stop-color:#ECF2F9"/>
- <a:midPointStop offset="0.9175" style="stop-color:#BAD2EA"/>
- <a:midPointStop offset="0.5" style="stop-color:#BAD2EA"/>
- <a:midPointStop offset="1" style="stop-color:#B3CDE8"/>
- </linearGradient>
- <path fill="url(#XMLID_84_)" d="M132.352,262.551c-0.012,2.467-21.148,4.367-47.21,4.246
- c-26.062-0.119-47.18-2.217-47.168-4.684c0.011-2.465,21.148-4.367,47.209-4.246
- C111.244,257.986,132.363,260.085,132.352,262.551z"/>
- <g>
- <path i:knockout="Off" fill="#FFFFFF" d="M382.129,194.818c-0.992-0.993-2.266-1.519-3.683-1.519
- c-1.016,0-1.948,0.281-2.759,0.803c0.052-0.266,0.105-0.531,0.138-0.805c0.443-3.673-0.979-6.05-2.966-7.64
- c0.496-0.16,1.005-0.387,1.528-0.697c2.944-1.732,4.224-5.028,3.029-7.834c-1.1-2.572-3.624-3.624-4.839-4.127
- c-6.059-2.543-12.757-2.287-18.363,0.707c-1.276,0.684-2.379,1.47-3.321,2.341c-0.437-0.839-1.059-1.624-1.913-2.322
- l-0.15-0.151c-0.003-0.001-0.246-0.175-0.246-0.175c-3.16-2.265-7.138-2.194-9.854-1.945c-1.664,0.154-3.25,0.48-4.724,0.972
- c0.006-0.001-0.263,0.088-0.263,0.088c-0.935,0.314-1.729,0.576-2.373,0.6c-0.152-0.062-0.398-0.181-0.577-0.267
- c-0.349-0.168-0.782-0.379-1.283-0.567c-1.665-0.637-3.439-1.031-5.246-1.159c-1.841-0.127-3.566,0.015-5.144,0.425
- c-0.665,0.171-1.284,0.387-1.785,0.561c-0.64,0.22-1.181,0.407-1.568,0.444c-0.457,0.044-1.206-0.069-1.932-0.18
- c-1.948-0.291-4.549-0.655-7.141,0.711c0.2-0.6,0.337-1.019,0.335-1.016l0.002-0.008c0.396-1.18,1.129-3.378,0.407-5.71
- c-0.903-2.919-3.816-4.531-7.25-4.008c-1.454,0.22-3.237,0.865-4.82,2.506c-0.434-0.769-1.052-1.444-1.854-1.976
- c-1.959-1.303-4.627-1.34-7.063-0.147c-2.898-2.799-8.086-1.713-8.138-1.701c-2.988,0.662-5.713,2.35-8.115,5.016
- c-0.836,0.927-1.536,1.924-2.151,2.802c-0.299,0.423-0.585,0.819-0.864,1.195c-0.86-3.145-3.153-5.964-6.404-7.795l0.002,0.002
- c-4.699-2.65-10.969-3.066-17.653-1.173c-4.856,1.378-9.38,4.144-13.091,8c-1.12,1.165-2.144,2.423-3.085,3.743
- c-0.002-0.98-0.152-2.006-0.48-3.051c-0.946-2.998-3.185-5.618-6.307-7.38c-4.703-2.646-10.971-3.06-17.649-1.168
- c-9.6,2.723-17.588,10.789-20.851,21.051c-2.234,7.024-1.416,13.599,2.244,18.038c4.392,5.332,11.449,5.824,15.265,5.642
- c5.93-0.277,11.632-2.402,16.484-6.139c1.841-1.416,4.039-3.252,5.949-5.485c0.56,2.188,1.534,4.166,2.911,5.837
- c4.391,5.33,11.446,5.825,15.266,5.646c5.89-0.281,11.556-2.375,16.385-6.059c0.637-0.487,1.499-1.147,2.36-1.97
- c-0.337,2.125-0.206,4.698,1.823,6.607c1.183,1.111,2.753,1.69,4.426,1.623c2.536-0.102,4.772-1.61,6.026-2.989
- c0.316-0.349,0.593-0.714,0.855-1.084c0.617,1.684,1.92,2.989,3.636,3.568c2.76,0.941,5.786-0.19,7.426-1.637
- c0.429-0.378,0.796-0.783,1.14-1.193c0.116,0.24,0.249,0.483,0.407,0.719c0.908,1.373,2.34,2.279,4.027,2.543
- c2.508,0.39,4.961-0.719,6.298-1.791c0.622-0.492,1.145-1.053,1.597-1.633c0.674,1.559,1.854,2.396,2.757,2.831
- c3.46,1.656,7.563,0.003,9.964-4.022c0.727-1.216,1.135-2.466,1.46-3.472c0.002-0.009,0.141-0.422,0.141-0.422
- c-0.005,0.016,1.434-4.307,1.434-4.307c0.164-0.49,0.341-1.033,0.531-1.648c0.515-1.621,1.045-3.305,1.785-4.614
- c0.723-1.282,2.437-2.394,3.775-2.177c-0.114,0.588-0.373,1.314-0.629,2.022c-0.123,0.34-0.265,0.735-0.399,1.135l0.073,0.012
- c-0.286,0.646-0.531,1.366-0.782,2.124l-0.702,2.114c-0.003,0.013-0.221,0.677-0.221,0.677c-0.317,0.979-0.69,2.13-1.027,3.272
- l-0.149,0.505v0.02c-0.459,1.639-0.995,4.134,0.349,6.506c0.843,1.488,2.236,2.495,3.928,2.844
- c2.467,0.51,4.897-0.49,6.347-1.596c2.698-2.045,3.688-5.325,4.344-7.496c-0.002,0.002,0.119-0.398,0.119-0.398
- c0.435-1.424,0.908-2.881,1.368-4.291l0.063-0.193c0.004-0.012,1.063-3.304,1.063-3.304c0.538-1.708,1.132-2.983,2.305-3.718
- c0.512-0.322,1.243-0.559,1.801-0.536c-0.045,0.328-0.153,0.847-0.41,1.658c0.004-0.003-0.041,0.135-0.041,0.135
- c-0.714,2.261-1.524,4.826-2.377,7.265c-1.499,4.281-1.449,7.458,0.155,9.712c1.164,1.637,3.003,2.533,5.177,2.521
- c2.955-0.005,4.942-1.676,6.289-3.574c0.764,0.866,1.649,1.558,2.496,2.029c4.323,2.388,10.096,2.638,17.16,0.747
- c3.296-0.879,6.737-2.86,9.002-5.737c0.144,1.13,0.633,2.182,1.455,3.004c0.986,0.986,2.284,1.529,3.654,1.529
- c1.377,0,2.687-0.544,3.687-1.532c0.964-0.95,1.495-2.247,1.495-3.65C383.628,197.085,383.096,195.784,382.129,194.818z"/>
- <path i:knockout="Off" fill="#FFFFFF" d="M137.419,202.284c0.012,0.025,0.019,0.053,0.031,0.078
- c0.008,0.016,0.021,0.031,0.029,0.051L137.419,202.284z"/>
- <path i:knockout="Off" fill="#FFFFFF" d="M172.476,136.879l-0.01-0.01l-0.007-0.009c-0.003-0.001-0.012-0.013-0.018-0.017
- c-0.307-0.407-0.639-0.819-1.039-1.286c-2.015-2.348-4.362-4.217-6.967-5.568l0.067,0.035l-0.207-0.126
- c-0.005-0.002-0.032-0.014-0.066-0.029c-0.063-0.038-0.129-0.077-0.226-0.127c-0.187-0.098-0.359-0.178-0.497-0.244
- c-0.061-0.027-0.116-0.054-0.158-0.075l-0.013-0.006c-0.125-0.06-0.138-0.066-0.138-0.066l-0.1-0.049
- c-0.093-0.049-0.246-0.132-0.441-0.217l-0.078-0.034c-0.116-0.046-0.195-0.076-0.195-0.076l-0.034-0.013
- c-1.978-0.85-4.147-1.408-6.378-1.627c-2.538-0.282-5.249-0.133-8.012,0.451c-0.076,0.016-0.371,0.078-0.371,0.078
- c-0.114,0.023-0.262,0.062-0.387,0.088l-1.649-0.15l-0.247-0.039c-1.03-0.165-2.025-0.29-2.958-0.369
- c-13.499-1.652-31.593,1.844-40.393,27.953c-0.722,2.144-2.493,7.979-4.733,15.367l-2.848,9.363
- c-9.089,0.619-15.507,2.667-19.093,6.104c-1.508,1.314-2.433,3.182-2.534,5.167c-0.028,0.561,0.034,1.132,0.149,1.723
- c0.405,3.66,3.474,6.563,7.207,6.778c2.252,0.132,4.439-0.712,6.002-2.313l0.079-0.064c-0.068,0.072-0.112,0.105-0.113,0.106
- c0.267-0.199,1.246-0.629,3.218-1.06c-0.076,0.244-0.338,1.074-0.338,1.074l-1.156,3.656l-0.056-0.111
- c0.005-0.016-2.783,8.315-2.783,8.315l-0.299,0.893l-0.09,0.271c0.017-0.047-0.049,0.142-0.049,0.142l-0.596,1.711l0.015,0.023
- c-0.514,1.5-0.709,1.998-0.781,2.159c-0.521,1.124-1.351,2.135-2.405,2.926c-1.049,0.763-2.435,1.394-4.193,1.899l-0.563,0.155
- c-1.674,0.457-4.205,1.144-5.874,3.504c-1.94,2.755-1.774,6.442,0.397,8.966c1.95,2.276,5.118,3.228,8.473,2.543
- c2.214-0.45,4.518-1.197,6.846-2.226c0.004,0,0.222-0.099,0.222-0.099c0.842-0.371,1.734-0.77,2.623-1.252
- c0.404,0.377,0.825,0.734,1.264,1.075c-0.85,1.118-1.378,2.436-1.519,3.831c-0.204,2.029,0.392,4.006,1.675,5.571
- c1.268,1.545,3.057,2.504,5.038,2.696c1.297,0.134,2.624-0.084,3.823-0.634l-0.02,0.04c4.696-2.093,8.683-4.902,11.849-8.358
- c1.53-1.721,2.89-3.618,4.083-5.681l-0.048-0.035c0.219-0.309,0.422-0.62,0.596-0.943c1.171-2.165,2.154-4.488,2.921-6.9
- l0.324-1.018l0.056-0.021c0.118-0.034,0.683-1.813,0.683-1.813l0.023-0.075l2.144-6.741l0.006,0.004
- c0.004,0,1.072-3.381,1.072-3.381c0.032-0.1,0.065-0.194,0.097-0.293c0.198,0.256,0.36,0.483,0.522,0.715
- c0.359,0.515,0.766,1.097,1.452,1.761c2.832,2.741,6.75,3.37,9.785,1.594l-0.042,0.029c0.031-0.016,0.051-0.031,0.081-0.049
- c0.013-0.009,0.028-0.013,0.042-0.02l0.382-0.231l0.094-0.095c0.011-0.006,0.028-0.018,0.036-0.023
- c0.205-0.137,0.456-0.304,0.737-0.555c2.534-2.259,3.174-5.932,1.611-9.156c-0.468-1.027-1.11-1.945-1.919-2.729
- c-0.076-0.076-0.146-0.129-0.221-0.195c-0.31-0.36-0.632-0.732-0.984-1.124c-0.45-0.516-1.005-1.139-1.64-1.819
- c0.083,0.007,0.167,0.021,0.25,0.031c0.639,0.363,1.265,0.697,1.89,0.981c2.786,1.269,5.753,1.987,8.823,2.14
- c0.046,0.002,0.138,0.006,0.138,0.006l0.206,0.011c0.12,0.008,0.29,0.011,0.44,0.014c4.102,0.101,8.095-0.795,11.998-2.663
- c0.223-0.104,0.423-0.218,0.569-0.3c0.052-0.03,0.108-0.061,0.135-0.075c0.523-0.26,1.099-0.568,1.66-0.891
- c8.19-4.73,14.806-13.263,18.146-23.411c4.192-12.732,2.521-26.267-4.359-35.322L172.476,136.879z"/>
- <path i:knockout="Off" fill="#FFFFFF" d="M75.22,186.231c0.019-0.02,0.042-0.035,0.062-0.052
- c0.056-0.048,0.106-0.102,0.164-0.151L75.22,186.231z"/>
- </g>
- <g i:knockout="Off">
- <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" fill="#1C86EE" d="M378.447,194.799
- c-1.01,0-1.897,0.374-2.583,1.07c-0.707,0.716-1.09,1.645-1.09,2.612c0,0.979,0.373,1.887,1.079,2.593
- c0.707,0.707,1.625,1.09,2.594,1.09s1.907-0.383,2.633-1.1c0.686-0.676,1.049-1.574,1.049-2.583
- c0-0.999-0.363-1.907-1.06-2.603C380.364,195.173,379.455,194.799,378.447,194.799z M378.456,195.465
- c0.827,0,1.563,0.313,2.139,0.888c0.565,0.565,0.867,1.312,0.867,2.128c0,0.828-0.292,1.554-0.857,2.108
- c-0.595,0.586-1.361,0.898-2.148,0.898c-0.797,0-1.544-0.313-2.118-0.889c-0.576-0.574-0.898-1.331-0.898-2.118
- c0-0.796,0.322-1.553,0.898-2.138C376.903,195.768,377.628,195.465,378.456,195.465z"/>
- <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" fill="#1C86EE" d="M378.408,197.87
- c-0.208-0.38-0.563-0.531-0.975-0.531c-0.6,0-1.076,0.424-1.076,1.142c0,0.73,0.448,1.143,1.097,1.143
- c0.416,0,0.771-0.229,0.967-0.576l-0.457-0.232c-0.102,0.245-0.258,0.318-0.453,0.318c-0.338,0-0.494-0.282-0.494-0.653
- c0-0.371,0.132-0.652,0.494-0.652c0.098,0,0.294,0.053,0.408,0.297L378.408,197.87z"/>
- <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" fill="#1C86EE" d="M380.533,197.87
- c-0.209-0.38-0.563-0.531-0.976-0.531c-0.6,0-1.076,0.424-1.076,1.142c0,0.73,0.448,1.143,1.097,1.143
- c0.417,0,0.771-0.229,0.967-0.576l-0.456-0.232c-0.103,0.245-0.258,0.318-0.453,0.318c-0.338,0-0.494-0.282-0.494-0.653
- c0-0.371,0.131-0.652,0.494-0.652c0.098,0,0.293,0.053,0.408,0.297L380.533,197.87z"/>
- </g>
- <g>
-
- <linearGradient id="XMLID_85_" gradientUnits="userSpaceOnUse" x1="82.4421" y1="213.8887" x2="91.0083" y2="222.7718" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1178" style="stop-color:#ECF5FE"/>
- <stop offset="0.3575" style="stop-color:#BADAFA"/>
- <stop offset="0.6939" style="stop-color:#6AB0F4"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_85_)" d="M97.208,231.683c3.602,1.103,7.555,0.707,10.867-1.08
- c1.632-0.882,3.25-2.056,4.142-3.703c1.081-2,1.966-4.106,2.653-6.271c-4.832,1.115-9.986,0.685-14.652-0.941
- c-4.633-1.616-9.5-4.569-11.809-9.063c-0.321,0.947-1.531,4.669-1.945,5.562c-0.792,1.71-2.017,3.176-3.524,4.308
- c-1.608,1.17-3.471,1.94-5.377,2.486c-1.624,0.465-3.423,0.787-4.465,2.261c-0.957,1.36-0.906,3.219,0.186,4.487
- c1.236,1.442,3.21,1.708,4.981,1.346c2.086-0.423,4.157-1.131,6.104-1.989c1.708-0.754,3.539-1.53,4.886-2.868
- c1.017,1.453,2.308,2.703,3.788,3.678c0.737,0.483,1.521,0.899,2.339,1.235C95.835,231.316,97.235,231.689,97.208,231.683"/>
-
- <linearGradient id="XMLID_86_" gradientUnits="userSpaceOnUse" x1="115.2771" y1="131.5142" x2="122.2609" y2="160.4007" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0.0056" style="stop-color:#FFF7FF"/>
- <stop offset="0.1382" style="stop-color:#CEDFFB"/>
- <stop offset="0.3023" style="stop-color:#98C4F7"/>
- <stop offset="0.4629" style="stop-color:#6CAEF4"/>
- <stop offset="0.6163" style="stop-color:#499CF1"/>
- <stop offset="0.7607" style="stop-color:#3090F0"/>
- <stop offset="0.8924" style="stop-color:#2189EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.0056" style="stop-color:#FFF7FF"/>
- <a:midPointStop offset="0.3352" style="stop-color:#FFF7FF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_86_)" d="M174.29,149.629c-1.714-7.276-6.044-13.546-11.979-16.661
- c-3.138-1.648-6.722-2.417-10.608-1.985c-0.358,0.04-0.717,0.091-1.078,0.152c-0.242,0.04-0.483,0.089-0.727,0.138
- c-0.104,0.023-0.212,0.042-0.322,0.065c-0.307,0.069-0.621,0.147-0.936,0.229c-0.029,0.01-0.059,0.017-0.09,0.026
- c-0.338,0.091-0.683,0.191-1.028,0.304c-1.88,0.6-3.813,1.472-5.786,2.662c-5.366,3.238-9.574,7.509-12.657,12.308
- c-0.151,0.236-0.292,0.479-0.44,0.717c1.438-3.934,3.367-6.72,4.865-8.309c2.655-2.812,6.597-6.066,11.229-7.917
- c-0.965-0.154-1.87-0.265-2.694-0.336c-16.241-1.984-29.679,4.871-36.627,25.485c-1.065,3.159-4.568,14.885-8.373,27.337
- c-6.443,0.292-15.021,1.456-19.092,5.352c-0.837,0.676-1.397,1.674-1.465,2.815c-0.129,2.188,1.589,4.067,3.834,4.196
- c1.246,0.071,2.389-0.406,3.186-1.22l0.007,0.009c1.323-1.434,5.837-2.443,10.998-2.917c-0.134,0.431-0.267,0.859-0.397,1.287
- c-0.442,1.389-0.881,2.777-1.316,4.167c-0.602,1.911-1.2,3.823-1.81,5.731c-0.303,0.951-0.611,1.905-0.92,2.856
- c-0.084,2.672,1.574,5.437,4.7,7.801c4.804,3.633,13.475,6.386,21.173,3.853c0.85-2.676,1.984-6.246,3.24-10.188h0.005
- c0.696-2.201,1.439-4.089,2.211-5.711c1.441,1.307,2.868,2.746,4.129,4.135c0.804,1.016,1.028,1.547,1.742,2.239
- c1.935,1.872,4.539,2.157,6.21,0.46c1.669-1.694,1.458-4.585-0.474-6.458c-0.092-0.088-0.188-0.171-0.286-0.251
- c-1.414-1.656-3.803-4.287-6.628-6.747c3.402-2.957,6.864-2.728,9.392-1.856c0.032,0.019,0.059,0.038,0.089,0.055
- c6.097,3.571,13.021,3.274,19.294,0.276c5.137-2.454,9.604-6.613,13.015-11.663c3.114-4.612,5.332-9.944,6.476-15.453
- C175.528,160.928,175.568,155.044,174.29,149.629z M166.707,179.95c-6.425,9.176-17.576,14.066-26.006,7.692
- c-12.5-9.453-10.592-33.814,5.362-45.217c11.903-8.513,22.89-1.746,26.018,9.706
- C174.475,160.894,172.172,172.143,166.707,179.95z"/>
-
- <linearGradient id="XMLID_87_" gradientUnits="userSpaceOnUse" x1="82.511" y1="213.6699" x2="91.1143" y2="222.5916" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1178" style="stop-color:#ECF5FE"/>
- <stop offset="0.3575" style="stop-color:#BADAFA"/>
- <stop offset="0.6939" style="stop-color:#6AB0F4"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_87_)" d="M97.208,231.683c-0.78,0.461-1.603,0.911-2.521,1.331
- c-0.141,0.049-0.275,0.11-0.407,0.171c-0.532,0.316-1.014,0.678-1.408,1.124c-0.442,0.568-0.739,1.263-0.817,2.034
- c-0.216,2.152,1.325,4.066,3.442,4.273c0.693,0.069,1.36-0.051,1.952-0.323l0.012,0.025c4.799-2.137,8.215-4.84,10.646-7.491
- c1.379-1.554,2.576-3.248,3.614-5.042C108.151,231.624,102.563,233.318,97.208,231.683z"/>
-
- <linearGradient id="XMLID_88_" gradientUnits="userSpaceOnUse" x1="97.8445" y1="229.5684" x2="100.5151" y2="232.3378" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1178" style="stop-color:#ECF5FE"/>
- <stop offset="0.3575" style="stop-color:#BADAFA"/>
- <stop offset="0.6939" style="stop-color:#6AB0F4"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_88_)" d="M97.208,231.683c-0.78,0.461-1.603,0.911-2.521,1.331
- c-0.141,0.049-0.275,0.11-0.407,0.171c-0.532,0.316-1.014,0.678-1.408,1.124c-0.442,0.568-0.739,1.263-0.817,2.034
- c-0.216,2.152,1.325,4.066,3.442,4.273c0.693,0.069,1.36-0.051,1.952-0.323l0.012,0.025c4.799-2.137,8.215-4.84,10.646-7.491
- c1.379-1.554,2.576-3.248,3.614-5.042C108.151,231.624,102.563,233.318,97.208,231.683z"/>
-
- <linearGradient id="XMLID_89_" gradientUnits="userSpaceOnUse" x1="86.2268" y1="180.4746" x2="90.0388" y2="190.0047" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1178" style="stop-color:#ECF5FE"/>
- <stop offset="0.3575" style="stop-color:#BADAFA"/>
- <stop offset="0.6939" style="stop-color:#6AB0F4"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_89_)" d="M80.06,195.488c1.182,0.06,2.266-0.403,3.015-1.18l0.009,0.008
- c1.958-2.153,11.391-3.375,18.972-3.165l0.375,0.009c0.002,0,0.373-0.061,0.373-0.061s2.002-1.694,1.503-4.469
- c-0.498-2.775-2.037-3.083-2.037-3.083c-4.407-0.126-18.958-0.094-24.512,5.298c-0.79,0.648-1.314,1.6-1.37,2.685
- C76.281,193.609,77.927,195.382,80.06,195.488z"/>
-
- <linearGradient id="XMLID_90_" gradientUnits="userSpaceOnUse" x1="127.3293" y1="216.0127" x2="127.9639" y2="198.5599" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.1178" style="stop-color:#ECF5FE"/>
- <stop offset="0.3575" style="stop-color:#BADAFA"/>
- <stop offset="0.6939" style="stop-color:#6AB0F4"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.548" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_90_)" d="M133.174,202.521c-0.088-0.091-0.181-0.177-0.277-0.255
- c-1.757-2.147-5.078-5.911-8.921-8.913c-0.851,2.681-1.738,5.475-2.613,8.229c1.429,1.349,2.841,2.821,4.083,4.247
- c0.773,1.021,0.979,1.543,1.681,2.249c1.888,1.897,4.523,2.296,6.283,0.726C135.168,207.235,135.064,204.421,133.174,202.521z"
- />
- <g>
- <g i:knockout="On" a:adobe-knockout="true">
-
- <radialGradient id="XMLID_91_" cx="155.7458" cy="161.2598" r="52.7172" gradientTransform="matrix(1.0169 0.0102 0.0047 1.0111 -2.8353 -3.7854)" gradientUnits="userSpaceOnUse">
- <stop offset="0.118" style="stop-color:#1C86EE"/>
- <stop offset="0.5169" style="stop-color:#80D1FF"/>
- <stop offset="0.6036" style="stop-color:#5BB5F9"/>
- <stop offset="0.7215" style="stop-color:#2E93F1"/>
- <stop offset="0.7809" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#80D1FF"/>
- <a:midPointStop offset="0.4474" style="stop-color:#80D1FF"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
- </radialGradient>
- <path i:knockout="Off" fill="url(#XMLID_91_)" a:adobe-knockout="false" d="M173.478,171.201
- c-6.066,18.417-22.996,29.434-37.141,22.992c-13.995-6.372-18.005-26.599-9.819-43.702
- c7.471-15.623,22.702-23.197,34.678-18.066C173.273,137.604,179.011,154.404,173.478,171.201z"/>
-
- <linearGradient id="XMLID_92_" gradientUnits="userSpaceOnUse" x1="153.156" y1="186.3149" x2="129.7401" y2="75.1286" gradientTransform="matrix(1.0119 0.0089 0.0036 1.008 -1.7908 -3.1402)">
- <stop offset="0" style="stop-color:#1C86EE"/>
- <stop offset="0.118" style="stop-color:#1C86EE"/>
- <stop offset="0.5169" style="stop-color:#7DCFFE"/>
- <stop offset="0.5989" style="stop-color:#5BB5F8"/>
- <stop offset="0.7199" style="stop-color:#2D93F1"/>
- <stop offset="0.7809" style="stop-color:#1C86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#7DCFFE"/>
- <a:midPointStop offset="0.4474" style="stop-color:#7DCFFE"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_92_)" a:adobe-knockout="false" d="M173.443,171.214
- c-6.034,18.341-22.859,29.278-36.93,22.872c-13.924-6.337-17.989-26.464-9.914-43.532
- c7.385-15.642,22.567-23.264,34.547-18.128C173.225,137.607,178.962,154.435,173.443,171.214z"/>
-
- <linearGradient id="XMLID_93_" gradientUnits="userSpaceOnUse" x1="151.5535" y1="187.2744" x2="136.4717" y2="76.2394" gradientTransform="matrix(1.007 0.0076 0.0025 1.0049 -0.7472 -2.493)">
- <stop offset="0" style="stop-color:#1D86EE"/>
- <stop offset="0.118" style="stop-color:#1D86EE"/>
- <stop offset="0.5169" style="stop-color:#7ACCFE"/>
- <stop offset="0.594" style="stop-color:#5BB5F9"/>
- <stop offset="0.7182" style="stop-color:#2D93F1"/>
- <stop offset="0.7809" style="stop-color:#1C86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#7ACCFE"/>
- <a:midPointStop offset="0.4474" style="stop-color:#7ACCFE"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_93_)" a:adobe-knockout="false" d="M173.407,171.227
- c-6.001,18.265-22.723,29.122-36.719,22.752c-13.853-6.303-17.973-26.33-10.008-43.363
- c7.299-15.662,22.432-23.331,34.416-18.191C173.177,137.612,178.913,154.466,173.407,171.227z"/>
-
- <linearGradient id="XMLID_94_" gradientUnits="userSpaceOnUse" x1="149.8308" y1="188.0806" x2="142.9579" y2="78.1492" gradientTransform="matrix(1.002 0.0063 0.0014 1.0019 0.2973 -1.8467)">
- <stop offset="0" style="stop-color:#1D87EE"/>
- <stop offset="0.118" style="stop-color:#1D87EE"/>
- <stop offset="0.5169" style="stop-color:#77CAFD"/>
- <stop offset="0.5887" style="stop-color:#5BB5F8"/>
- <stop offset="0.7165" style="stop-color:#2D93F1"/>
- <stop offset="0.7809" style="stop-color:#1C86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#77CAFD"/>
- <a:midPointStop offset="0.4474" style="stop-color:#77CAFD"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_94_)" a:adobe-knockout="false" d="M173.372,171.24
- c-5.968,18.188-22.585,28.966-36.508,22.632c-13.782-6.268-17.957-26.195-10.103-43.193
- c7.213-15.681,22.296-23.397,34.284-18.253C173.129,137.616,178.864,154.497,173.372,171.24z"/>
-
- <linearGradient id="XMLID_95_" gradientUnits="userSpaceOnUse" x1="148.0081" y1="188.7188" x2="149.1006" y2="80.8275" gradientTransform="matrix(0.9971 0.0051 2.741814e-004 0.9988 1.3409 -1.201)">
- <stop offset="0" style="stop-color:#1E87EE"/>
- <stop offset="0.118" style="stop-color:#1D87EE"/>
- <stop offset="0.5169" style="stop-color:#74C8FD"/>
- <stop offset="0.5831" style="stop-color:#5BB5F9"/>
- <stop offset="0.7146" style="stop-color:#2D93F1"/>
- <stop offset="0.7809" style="stop-color:#1C86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#74C8FD"/>
- <a:midPointStop offset="0.4474" style="stop-color:#74C8FD"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_95_)" a:adobe-knockout="false" d="M173.336,171.253
- c-5.936,18.112-22.449,28.81-36.298,22.512c-13.71-6.233-17.94-26.061-10.197-43.024c7.127-15.7,22.161-23.464,34.153-18.315
- C173.081,137.62,178.815,154.527,173.336,171.253z"/>
-
- <linearGradient id="XMLID_96_" gradientUnits="userSpaceOnUse" x1="146.1008" y1="189.1719" x2="154.7993" y2="84.218" gradientTransform="matrix(0.9921 0.0038 -8.322702e-004 0.9957 2.385 -0.5547)">
- <stop offset="0" style="stop-color:#1E87EE"/>
- <stop offset="0.118" style="stop-color:#1E87EE"/>
- <stop offset="0.5169" style="stop-color:#71C5FC"/>
- <stop offset="0.5772" style="stop-color:#5BB5F8"/>
- <stop offset="0.7126" style="stop-color:#2D93F1"/>
- <stop offset="0.7809" style="stop-color:#1C86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#71C5FC"/>
- <a:midPointStop offset="0.4474" style="stop-color:#71C5FC"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_96_)" a:adobe-knockout="false" d="M173.301,171.267
- c-5.903,18.036-22.312,28.654-36.087,22.392c-13.64-6.198-17.924-25.926-10.292-42.854
- c7.041-15.719,22.026-23.531,34.021-18.378C173.033,137.624,178.766,154.558,173.301,171.267z"/>
-
- <linearGradient id="XMLID_97_" gradientUnits="userSpaceOnUse" x1="144.1335" y1="189.4263" x2="159.97" y2="88.2441" gradientTransform="matrix(0.9872 0.0025 -0.0019 0.9926 3.4291 0.0906)">
- <stop offset="0" style="stop-color:#1E87EE"/>
- <stop offset="0.118" style="stop-color:#1E87EE"/>
- <stop offset="0.5169" style="stop-color:#6EC3FC"/>
- <stop offset="0.5686" style="stop-color:#5CB5F9"/>
- <stop offset="0.7098" style="stop-color:#2E93F1"/>
- <stop offset="0.7809" style="stop-color:#1D86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#6EC3FC"/>
- <a:midPointStop offset="0.4474" style="stop-color:#6EC3FC"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_97_)" a:adobe-knockout="false" d="M173.265,171.28
- c-5.871,17.96-22.175,28.498-35.876,22.272c-13.569-6.164-17.908-25.791-10.387-42.686
- c6.955-15.738,21.891-23.597,33.891-18.44C172.985,137.628,178.717,154.588,173.265,171.28z"/>
-
- <linearGradient id="XMLID_98_" gradientUnits="userSpaceOnUse" x1="142.1311" y1="189.4775" x2="164.5387" y2="92.8278" gradientTransform="matrix(0.9822 0.0012 -0.003 0.9896 4.4727 0.7373)">
- <stop offset="0" style="stop-color:#1F88EE"/>
- <stop offset="0.118" style="stop-color:#1E87EE"/>
- <stop offset="0.5169" style="stop-color:#6BC1FB"/>
- <stop offset="0.5616" style="stop-color:#5CB5F8"/>
- <stop offset="0.7074" style="stop-color:#2E93F1"/>
- <stop offset="0.7809" style="stop-color:#1D86EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#6BC1FB"/>
- <a:midPointStop offset="0.4474" style="stop-color:#6BC1FB"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D86EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_98_)" a:adobe-knockout="false" d="M173.23,171.293
- c-5.837,17.884-22.038,28.342-35.666,22.152c-13.498-6.129-17.892-25.656-10.481-42.516
- c6.869-15.757,21.755-23.664,33.759-18.502C172.937,137.632,178.668,154.619,173.23,171.293z"/>
-
- <linearGradient id="XMLID_99_" gradientUnits="userSpaceOnUse" x1="140.115" y1="189.3169" x2="168.4442" y2="97.8604" gradientTransform="matrix(0.9772 -7.098209e-005 -0.0042 0.9865 5.5168 1.3831)">
- <stop offset="0" style="stop-color:#1F88EE"/>
- <stop offset="0.118" style="stop-color:#1F88EE"/>
- <stop offset="0.5169" style="stop-color:#68BEFB"/>
- <stop offset="0.5541" style="stop-color:#5CB5F9"/>
- <stop offset="0.7049" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#68BEFB"/>
- <a:midPointStop offset="0.4474" style="stop-color:#68BEFB"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_99_)" a:adobe-knockout="false" d="M173.195,171.306
- c-5.805,17.808-21.902,28.186-35.455,22.033c-13.427-6.095-17.876-25.522-10.577-42.347
- c6.784-15.777,21.621-23.731,33.628-18.564C172.889,137.636,178.619,154.65,173.195,171.306z"/>
-
- <linearGradient id="XMLID_100_" gradientUnits="userSpaceOnUse" x1="138.1189" y1="188.9487" x2="171.6521" y2="103.2424" gradientTransform="matrix(0.9723 -0.0014 -0.0053 0.9834 6.5608 2.0294)">
- <stop offset="0" style="stop-color:#1F88EE"/>
- <stop offset="0.118" style="stop-color:#1F88EE"/>
- <stop offset="0.5169" style="stop-color:#65BCFA"/>
- <stop offset="0.546" style="stop-color:#5CB5F8"/>
- <stop offset="0.7022" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#65BCFA"/>
- <a:midPointStop offset="0.4474" style="stop-color:#65BCFA"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_100_)" a:adobe-knockout="false" d="M173.159,171.319
- c-5.772,17.731-21.765,28.03-35.244,21.913c-13.356-6.06-17.86-25.387-10.671-42.177
- c6.698-15.796,21.485-23.797,33.497-18.626C172.841,137.64,178.571,154.681,173.159,171.319z"/>
-
- <linearGradient id="XMLID_101_" gradientUnits="userSpaceOnUse" x1="136.1531" y1="188.3687" x2="174.126" y2="108.8494" gradientTransform="matrix(0.9673 -0.0026 -0.0064 0.9803 7.6049 2.6751)">
- <stop offset="0" style="stop-color:#2088EE"/>
- <stop offset="0.118" style="stop-color:#2088EE"/>
- <stop offset="0.5169" style="stop-color:#62BAFA"/>
- <stop offset="0.5373" style="stop-color:#5CB5F9"/>
- <stop offset="0.6993" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#62BAFA"/>
- <a:midPointStop offset="0.4474" style="stop-color:#62BAFA"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_101_)" a:adobe-knockout="false" d="M173.123,171.333
- c-5.74,17.655-21.628,27.874-35.033,21.793c-13.285-6.025-17.844-25.252-10.766-42.008
- c6.612-15.815,21.35-23.864,33.366-18.689C172.793,137.644,178.521,154.711,173.123,171.333z"/>
-
- <linearGradient id="XMLID_102_" gradientUnits="userSpaceOnUse" x1="134.2507" y1="187.5918" x2="175.8687" y2="114.579" gradientTransform="matrix(0.9624 -0.0039 -0.0075 0.9772 8.6485 3.3214)">
- <stop offset="0" style="stop-color:#2088EE"/>
- <stop offset="0.118" style="stop-color:#2088EE"/>
- <stop offset="0.5169" style="stop-color:#5FB7F9"/>
- <stop offset="0.5279" style="stop-color:#5CB5F8"/>
- <stop offset="0.6962" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#5FB7F9"/>
- <a:midPointStop offset="0.4474" style="stop-color:#5FB7F9"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_102_)" a:adobe-knockout="false" d="M173.088,171.346
- c-5.708,17.579-21.491,27.718-34.823,21.673c-13.214-5.99-17.828-25.118-10.861-41.838
- c6.526-15.834,21.215-23.931,33.234-18.751C172.744,137.648,178.472,154.742,173.088,171.346z"/>
-
- <linearGradient id="XMLID_103_" gradientUnits="userSpaceOnUse" x1="132.4299" y1="186.6201" x2="176.8879" y2="120.3128" gradientTransform="matrix(0.9574 -0.0052 -0.0086 0.9742 9.6931 3.9672)">
- <stop offset="0" style="stop-color:#2189EE"/>
- <stop offset="0.118" style="stop-color:#2088EE"/>
- <stop offset="0.5169" style="stop-color:#5CB5F8"/>
- <stop offset="0.5176" style="stop-color:#5CB5F8"/>
- <stop offset="0.6927" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2088EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#5CB5F8"/>
- <a:midPointStop offset="0.4474" style="stop-color:#5CB5F8"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_103_)" a:adobe-knockout="false" d="M173.052,171.359
- c-5.674,17.503-21.354,27.562-34.612,21.553c-13.143-5.956-17.811-24.983-10.955-41.669
- c6.44-15.854,21.08-23.997,33.103-18.813C172.697,137.652,178.424,154.772,173.052,171.359z"/>
-
- <linearGradient id="XMLID_104_" gradientUnits="userSpaceOnUse" x1="130.7205" y1="185.4746" x2="177.2194" y2="125.9561" gradientTransform="matrix(0.9524 -0.0065 -0.0097 0.9711 10.7367 4.6134)">
- <stop offset="0" style="stop-color:#2189EE"/>
- <stop offset="0.118" style="stop-color:#2189EE"/>
- <stop offset="0.5169" style="stop-color:#59B3F8"/>
- <stop offset="0.689" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#59B3F8"/>
- <a:midPointStop offset="0.4474" style="stop-color:#59B3F8"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_104_)" a:adobe-knockout="false" d="M173.017,171.372
- c-5.642,17.427-21.217,27.405-34.401,21.433c-13.072-5.921-17.795-24.848-11.05-41.5
- c6.354-15.873,20.944-24.064,32.972-18.876C172.649,137.656,178.375,154.803,173.017,171.372z"/>
-
- <linearGradient id="XMLID_105_" gradientUnits="userSpaceOnUse" x1="129.1306" y1="184.166" x2="176.8978" y2="131.4056" gradientTransform="matrix(0.9475 -0.0078 -0.0108 0.968 11.7807 5.2592)">
- <stop offset="0" style="stop-color:#2189EE"/>
- <stop offset="0.118" style="stop-color:#2189EE"/>
- <stop offset="0.5169" style="stop-color:#56B0F7"/>
- <stop offset="0.6849" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#56B0F7"/>
- <a:midPointStop offset="0.4474" style="stop-color:#56B0F7"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_105_)" a:adobe-knockout="false" d="M172.982,171.385
- c-5.609,17.351-21.081,27.25-34.191,21.313c-13.001-5.886-17.779-24.714-11.145-41.331
- c6.268-15.892,20.809-24.131,32.84-18.938C172.6,137.66,178.325,154.834,172.982,171.385z"/>
-
- <linearGradient id="XMLID_106_" gradientUnits="userSpaceOnUse" x1="127.675" y1="182.7129" x2="175.9801" y2="136.5743" gradientTransform="matrix(0.9425 -0.0091 -0.0119 0.9649 12.8248 5.9054)">
- <stop offset="0" style="stop-color:#2289EE"/>
- <stop offset="0.118" style="stop-color:#2189EE"/>
- <stop offset="0.5169" style="stop-color:#53AEF7"/>
- <stop offset="0.6803" style="stop-color:#2E94F1"/>
- <stop offset="0.7809" style="stop-color:#1D87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2289EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2289EE"/>
- <a:midPointStop offset="0.118" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#2189EE"/>
- <a:midPointStop offset="0.5169" style="stop-color:#53AEF7"/>
- <a:midPointStop offset="0.4474" style="stop-color:#53AEF7"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1D87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_106_)" a:adobe-knockout="false" d="M172.946,171.398
- c-5.577,17.274-20.944,27.093-33.98,21.193c-12.93-5.852-17.763-24.579-11.239-41.161c6.182-15.911,20.674-24.197,32.709-19
- C172.552,137.664,178.277,154.865,172.946,171.398z"/>
-
- <linearGradient id="XMLID_107_" gradientUnits="userSpaceOnUse" x1="126.3665" y1="181.1421" x2="174.5361" y2="141.3942" gradientTransform="matrix(0.9376 -0.0103 -0.013 0.9619 13.8689 6.5512)">
- <stop offset="0" style="stop-color:#228AEF"/>
- <stop offset="0.118" style="stop-color:#2289EF"/>
- <stop offset="0.5169" style="stop-color:#4FACF6"/>
- <stop offset="0.6716" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#228AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#228AEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#2289EF"/>
- <a:midPointStop offset="0.5" style="stop-color:#2289EF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#4FACF6"/>
- <a:midPointStop offset="0.4474" style="stop-color:#4FACF6"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_107_)" a:adobe-knockout="false" d="M172.91,171.412
- c-5.543,17.198-20.807,26.938-33.769,21.074c-12.859-5.817-17.746-24.444-11.334-40.992
- c6.097-15.931,20.539-24.264,32.578-19.063C172.504,137.668,178.228,154.896,172.91,171.412z"/>
-
- <linearGradient id="XMLID_108_" gradientUnits="userSpaceOnUse" x1="125.2053" y1="179.4717" x2="172.6345" y2="145.8021" gradientTransform="matrix(0.9326 -0.0116 -0.0141 0.9588 14.9125 7.1975)">
- <stop offset="0" style="stop-color:#238AEF"/>
- <stop offset="0.118" style="stop-color:#2289EF"/>
- <stop offset="0.5169" style="stop-color:#4CAAF6"/>
- <stop offset="0.6656" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#2289EF"/>
- <a:midPointStop offset="0.5" style="stop-color:#2289EF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#4CAAF6"/>
- <a:midPointStop offset="0.4474" style="stop-color:#4CAAF6"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_108_)" a:adobe-knockout="false" d="M172.875,171.425
- c-5.511,17.122-20.67,26.781-33.558,20.954c-12.788-5.782-17.73-24.31-11.429-40.822
- c6.011-15.95,20.404-24.331,32.447-19.125C172.456,137.672,178.179,154.926,172.875,171.425z"/>
-
- <linearGradient id="XMLID_109_" gradientUnits="userSpaceOnUse" x1="124.1907" y1="177.7261" x2="170.3514" y2="149.7558" gradientTransform="matrix(0.9277 -0.0129 -0.0152 0.9557 15.9566 7.8433)">
- <stop offset="0" style="stop-color:#238AEF"/>
- <stop offset="0.118" style="stop-color:#2289EF"/>
- <stop offset="0.5169" style="stop-color:#49A7F5"/>
- <stop offset="0.6587" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#2289EF"/>
- <a:midPointStop offset="0.5" style="stop-color:#2289EF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#49A7F5"/>
- <a:midPointStop offset="0.4474" style="stop-color:#49A7F5"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_109_)" a:adobe-knockout="false" d="M172.84,171.438
- c-5.479,17.045-20.533,26.625-33.348,20.834c-12.717-5.748-17.714-24.175-11.523-40.653
- c5.925-15.969,20.269-24.397,32.315-19.187C172.408,137.676,178.13,154.957,172.84,171.438z"/>
-
- <linearGradient id="XMLID_110_" gradientUnits="userSpaceOnUse" x1="123.3127" y1="175.9224" x2="167.7589" y2="153.2217" gradientTransform="matrix(0.9227 -0.0142 -0.0163 0.9526 17.0007 8.4895)">
- <stop offset="0" style="stop-color:#238AEF"/>
- <stop offset="0.118" style="stop-color:#238AEF"/>
- <stop offset="0.5169" style="stop-color:#46A5F5"/>
- <stop offset="0.6509" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#46A5F5"/>
- <a:midPointStop offset="0.4474" style="stop-color:#46A5F5"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_110_)" a:adobe-knockout="false" d="M172.804,171.451
- c-5.446,16.969-20.396,26.469-33.137,20.714c-12.646-5.713-17.698-24.04-11.618-40.483
- c5.839-15.989,20.133-24.464,32.184-19.249C172.36,137.68,178.081,154.988,172.804,171.451z"/>
-
- <linearGradient id="XMLID_111_" gradientUnits="userSpaceOnUse" x1="122.5662" y1="174.0825" x2="164.934" y2="156.1875" gradientTransform="matrix(0.9177 -0.0155 -0.0174 0.9496 18.0448 9.1353)">
- <stop offset="0" style="stop-color:#248BEF"/>
- <stop offset="0.118" style="stop-color:#238AEF"/>
- <stop offset="0.5169" style="stop-color:#43A3F4"/>
- <stop offset="0.6422" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#248BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#248BEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#43A3F4"/>
- <a:midPointStop offset="0.4474" style="stop-color:#43A3F4"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_111_)" a:adobe-knockout="false" d="M172.768,171.464
- c-5.413,16.893-20.259,26.313-32.926,20.594c-12.575-5.678-17.681-23.906-11.712-40.314
- c5.753-16.008,19.998-24.531,32.053-19.312C172.312,137.684,178.032,155.018,172.768,171.464z"/>
-
- <linearGradient id="XMLID_112_" gradientUnits="userSpaceOnUse" x1="121.9314" y1="172.2173" x2="161.9359" y2="158.6452" gradientTransform="matrix(0.9128 -0.0168 -0.0185 0.9465 19.0888 9.7816)">
- <stop offset="0" style="stop-color:#248BEF"/>
- <stop offset="0.118" style="stop-color:#238AEF"/>
- <stop offset="0.5169" style="stop-color:#40A0F3"/>
- <stop offset="0.6318" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#248BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#248BEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#238AEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#40A0F3"/>
- <a:midPointStop offset="0.4474" style="stop-color:#40A0F3"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_112_)" a:adobe-knockout="false" d="M172.733,171.478
- c-5.38,16.817-20.123,26.157-32.716,20.474c-12.504-5.643-17.665-23.771-11.807-40.145
- c5.667-16.027,19.863-24.597,31.921-19.374C172.264,137.688,177.983,155.049,172.733,171.478z"/>
-
- <linearGradient id="XMLID_113_" gradientUnits="userSpaceOnUse" x1="121.3962" y1="170.3374" x2="158.8235" y2="160.6005" gradientTransform="matrix(0.9078 -0.018 -0.0196 0.9434 20.1324 10.4274)">
- <stop offset="0" style="stop-color:#258BEF"/>
- <stop offset="0.118" style="stop-color:#248AEF"/>
- <stop offset="0.5169" style="stop-color:#3D9EF3"/>
- <stop offset="0.6196" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#248AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#248AEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#3D9EF3"/>
- <a:midPointStop offset="0.4474" style="stop-color:#3D9EF3"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_113_)" a:adobe-knockout="false" d="M172.698,171.491
- c-5.348,16.741-19.986,26.001-32.505,20.354c-12.433-5.609-17.649-23.637-11.902-39.976
- c5.581-16.046,19.728-24.664,31.79-19.436C172.216,137.692,177.934,155.08,172.698,171.491z"/>
-
- <linearGradient id="XMLID_114_" gradientUnits="userSpaceOnUse" x1="120.9348" y1="168.4482" x2="155.6342" y2="162.0641" gradientTransform="matrix(0.9029 -0.0193 -0.0207 0.9403 21.1765 11.0736)">
- <stop offset="0" style="stop-color:#258BEF"/>
- <stop offset="0.118" style="stop-color:#248AEF"/>
- <stop offset="0.5169" style="stop-color:#3A9CF2"/>
- <stop offset="0.6049" style="stop-color:#2F94F0"/>
- <stop offset="0.7809" style="stop-color:#1E87EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#248AEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#248AEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#3A9CF2"/>
- <a:midPointStop offset="0.4474" style="stop-color:#3A9CF2"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E87EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_114_)" a:adobe-knockout="false" d="M172.662,171.504
- c-5.315,16.665-19.849,25.845-32.294,20.234c-12.362-5.574-17.633-23.501-11.997-39.806
- c5.495-16.065,19.592-24.73,31.659-19.498C172.168,137.696,177.885,155.11,172.662,171.504z"/>
-
- <linearGradient id="XMLID_115_" gradientUnits="userSpaceOnUse" x1="120.5334" y1="166.5493" x2="152.4035" y2="163.0492" gradientTransform="matrix(0.8979 -0.0206 -0.0219 0.9372 22.2201 11.7194)">
- <stop offset="0" style="stop-color:#258BEF"/>
- <stop offset="0.118" style="stop-color:#258BEF"/>
- <stop offset="0.5169" style="stop-color:#3799F2"/>
- <stop offset="0.5869" style="stop-color:#2F94F1"/>
- <stop offset="0.7809" style="stop-color:#1E88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#3799F2"/>
- <a:midPointStop offset="0.4474" style="stop-color:#3799F2"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_115_)" a:adobe-knockout="false" d="M172.627,171.517
- c-5.283,16.588-19.712,25.689-32.083,20.115c-12.292-5.54-17.617-23.367-12.092-39.637
- c5.41-16.085,19.458-24.798,31.528-19.561C172.12,137.7,177.836,155.141,172.627,171.517z"/>
-
- <linearGradient id="XMLID_116_" gradientUnits="userSpaceOnUse" x1="120.1799" y1="164.6333" x2="149.1568" y2="163.5659" gradientTransform="matrix(0.8929 -0.0219 -0.023 0.9342 23.2647 12.3657)">
- <stop offset="0" style="stop-color:#268CEF"/>
- <stop offset="0.118" style="stop-color:#258BEF"/>
- <stop offset="0.5169" style="stop-color:#3497F1"/>
- <stop offset="0.5645" style="stop-color:#2F94F0"/>
- <stop offset="0.7809" style="stop-color:#1E88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#3497F1"/>
- <a:midPointStop offset="0.4474" style="stop-color:#3497F1"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1E88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1E88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_116_)" a:adobe-knockout="false" d="M172.591,171.53
- c-5.25,16.512-19.575,25.533-31.873,19.995c-12.22-5.504-17.601-23.232-12.187-39.467
- c5.324-16.104,19.322-24.864,31.396-19.623C172.072,137.704,177.787,155.172,172.591,171.53z"/>
-
- <linearGradient id="XMLID_117_" gradientUnits="userSpaceOnUse" x1="119.8655" y1="162.6899" x2="145.9115" y2="163.6213" gradientTransform="matrix(0.888 -0.0232 -0.0241 0.9311 24.3083 13.0119)">
- <stop offset="0" style="stop-color:#268CEF"/>
- <stop offset="0.118" style="stop-color:#258BEF"/>
- <stop offset="0.5169" style="stop-color:#3195F1"/>
- <stop offset="0.5239" style="stop-color:#3095F1"/>
- <stop offset="0.7809" style="stop-color:#1F88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#3195F1"/>
- <a:midPointStop offset="0.4474" style="stop-color:#3195F1"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_117_)" a:adobe-knockout="false" d="M172.555,171.543
- c-5.217,16.436-19.438,25.377-31.662,19.875c-12.149-5.47-17.584-23.098-12.281-39.298
- c5.238-16.123,19.187-24.931,31.266-19.685C172.024,137.708,177.738,155.203,172.555,171.543z"/>
-
- <linearGradient id="XMLID_118_" gradientUnits="userSpaceOnUse" x1="119.5852" y1="160.7065" x2="142.6797" y2="163.2177" gradientTransform="matrix(0.883 -0.0245 -0.0252 0.928 25.3524 13.6577)">
- <stop offset="0" style="stop-color:#268CEF"/>
- <stop offset="0.118" style="stop-color:#268BEF"/>
- <stop offset="0.5169" style="stop-color:#2E92F0"/>
- <stop offset="0.7809" style="stop-color:#1F88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#268BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#268BEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#2E92F0"/>
- <a:midPointStop offset="0.4474" style="stop-color:#2E92F0"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_118_)" a:adobe-knockout="false" d="M172.52,171.557
- c-5.185,16.36-19.302,25.221-31.451,19.755c-12.079-5.435-17.568-22.963-12.376-39.128
- c5.152-16.143,19.052-24.998,31.134-19.747C171.976,137.712,177.689,155.233,172.52,171.557z"/>
-
- <linearGradient id="XMLID_119_" gradientUnits="userSpaceOnUse" x1="119.3435" y1="158.6733" x2="139.4767" y2="162.3551" gradientTransform="matrix(0.8781 -0.0257 -0.0263 0.9249 26.3965 14.304)">
- <stop offset="0" style="stop-color:#278CEF"/>
- <stop offset="0.118" style="stop-color:#268BEF"/>
- <stop offset="0.5169" style="stop-color:#2B90F0"/>
- <stop offset="0.7809" style="stop-color:#1F88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#278CEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#278CEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#268BEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#268BEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#2B90F0"/>
- <a:midPointStop offset="0.4474" style="stop-color:#2B90F0"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_119_)" a:adobe-knockout="false" d="M172.485,171.57
- c-5.152,16.284-19.165,25.065-31.241,19.635c-12.007-5.401-17.552-22.829-12.47-38.959
- c5.066-16.162,18.917-25.064,31.003-19.81C171.927,137.716,177.64,155.264,172.485,171.57z"/>
-
- <linearGradient id="XMLID_120_" gradientUnits="userSpaceOnUse" x1="119.1467" y1="156.5752" x2="136.3165" y2="161.0223" gradientTransform="matrix(0.8731 -0.027 -0.0274 0.9219 27.44 14.9498)">
- <stop offset="0" style="stop-color:#278DEF"/>
- <stop offset="0.118" style="stop-color:#268CEF"/>
- <stop offset="0.5169" style="stop-color:#288EEF"/>
- <stop offset="0.7809" style="stop-color:#1F88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#278DEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#278DEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#268CEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#288EEF"/>
- <a:midPointStop offset="0.4474" style="stop-color:#288EEF"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_120_)" a:adobe-knockout="false" d="M172.449,171.583
- c-5.119,16.208-19.028,24.909-31.03,19.515c-11.936-5.366-17.536-22.694-12.565-38.79
- c4.98-16.181,18.781-25.131,30.872-19.872C171.88,137.72,177.592,155.294,172.449,171.583z"/>
-
- <linearGradient id="XMLID_121_" gradientUnits="userSpaceOnUse" x1="119.0105" y1="154.4019" x2="133.2236" y2="159.2068" gradientTransform="matrix(0.8682 -0.0283 -0.0285 0.9188 28.4846 15.5965)">
- <stop offset="0" style="stop-color:#288DEF"/>
- <stop offset="0.118" style="stop-color:#278CEF"/>
- <stop offset="0.5169" style="stop-color:#258BEF"/>
- <stop offset="0.7809" style="stop-color:#1F88EE"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#288DEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#288DEF"/>
- <a:midPointStop offset="0.118" style="stop-color:#278CEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#278CEF"/>
- <a:midPointStop offset="0.5169" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.4474" style="stop-color:#258BEF"/>
- <a:midPointStop offset="0.7809" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1F88EE"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_121_)" a:adobe-knockout="false" d="M172.414,171.596
- c-5.086,16.131-18.892,24.753-30.819,19.396c-11.865-5.332-17.52-22.559-12.66-38.621c4.894-16.2,18.646-25.198,30.74-19.934
- C171.831,137.725,177.542,155.325,172.414,171.596z"/>
-
- <linearGradient id="XMLID_122_" gradientUnits="userSpaceOnUse" x1="118.9534" y1="152.1465" x2="130.2265" y2="156.8936" gradientTransform="matrix(0.8632 -0.0296 -0.0296 0.9157 29.5282 16.2423)">
- <stop offset="0" style="stop-color:#288DEF"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#288DEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#288DEF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_122_)" a:adobe-knockout="false" d="M172.378,171.609
- c-5.054,16.055-18.754,24.597-30.608,19.275c-11.794-5.296-17.503-22.424-12.754-38.451
- c4.808-16.219,18.511-25.264,30.609-19.996C171.783,137.729,177.493,155.356,172.378,171.609z"/>
- </g>
- </g>
- <g i:knockout="On" a:adobe-knockout="true">
-
- <linearGradient id="XMLID_123_" gradientUnits="userSpaceOnUse" x1="123.4993" y1="153.2236" x2="133.7782" y2="157.5521" gradientTransform="matrix(0.9353 -0.0269 -0.0269 0.9832 16.7265 6.8872)">
- <stop offset="0" style="stop-color:#288DEF"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#288DEF"/>
- <a:midPointStop offset="0.5" style="stop-color:#288DEF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_123_)" a:adobe-knockout="false" d="M173.429,171.119
- c-5.866,18.006-22.17,28.784-35.066,22.997c-12.833-5.761-16.029-25.442-7.991-42.314
- c7.276-15.275,20.611-23.793,31.373-19.106C172.549,137.399,179.088,153.876,173.429,171.119z"/>
-
- <linearGradient id="XMLID_124_" gradientUnits="userSpaceOnUse" x1="123.5725" y1="153.0771" x2="135.24" y2="158.0536" gradientTransform="matrix(0.9373 -0.0258 -0.0258 0.9833 16.1743 6.7037)">
- <stop offset="0" style="stop-color:#2F91EF"/>
- <stop offset="0.0169" style="stop-color:#2F91EF"/>
- <stop offset="0.1966" style="stop-color:#2B8FEF"/>
- <stop offset="0.6471" style="stop-color:#258BEF"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#2F91EF"/>
- <a:midPointStop offset="0.5" style="stop-color:#2F91EF"/>
- <a:midPointStop offset="0.0169" style="stop-color:#2F91EF"/>
- <a:midPointStop offset="0.5" style="stop-color:#2F91EF"/>
- <a:midPointStop offset="0.1966" style="stop-color:#2B8FEF"/>
- <a:midPointStop offset="0.6441" style="stop-color:#2B8FEF"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_124_)" a:adobe-knockout="false" d="M173.38,171.184
- c-5.875,17.927-22.109,28.601-34.94,22.809c-12.754-5.759-15.965-25.325-8.007-42.12c7.222-15.252,20.551-23.762,31.32-19.078
- C172.578,137.502,179.056,153.991,173.38,171.184z"/>
-
- <linearGradient id="XMLID_125_" gradientUnits="userSpaceOnUse" x1="123.6511" y1="152.9263" x2="136.6876" y2="158.5575" gradientTransform="matrix(0.9393 -0.0247 -0.0247 0.9833 15.622 6.521)">
- <stop offset="0" style="stop-color:#3694F0"/>
- <stop offset="0.0169" style="stop-color:#3694F0"/>
- <stop offset="0.1966" style="stop-color:#3092F0"/>
- <stop offset="0.5721" style="stop-color:#2A8FEF"/>
- <stop offset="1" style="stop-color:#1C87EE"/>
- <a:midPointStop offset="0" style="stop-color:#3694F0"/>
- <a:midPointStop offset="0.5" style="stop-color:#3694F0"/>
- <a:midPointStop offset="0.0169" style="stop-color:#3694F0"/>
- <a:midPointStop offset="0.5" style="stop-color:#3694F0"/>
- <a:midPointStop offset="0.1966" style="stop-color:#3092F0"/>
- <a:midPointStop offset="0.6441" style="stop-color:#3092F0"/>
- <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_125_)" a:adobe-knockout="false" d="M173.33,171.248
- c-5.885,17.848-22.048,28.418-34.813,22.621c-12.677-5.756-15.903-25.208-8.024-41.925
- c7.168-15.229,20.492-23.732,31.268-19.05C172.608,137.605,179.023,154.106,173.33,171.248z"/>
-
- <linearGradient id="XMLID_126_" gradientUnits="userSpaceOnUse" x1="123.7273" y1="152.7769" x2="138.114" y2="159.0699" gradientTransform="matrix(0.9413 -0.0236 -0.0236 0.9834 15.0696 6.3374)">
- <stop offset="0" style="stop-color:#3D98F0"/>
- <stop offset="0.0169" style="stop-color:#3D98F0"/>
- <stop offset="0.1966" style="stop-color:#3595F0"/>
- <stop offset="0.5225" style="stop-color:#2F92F0"/>
- <stop offset="0.9596" style="stop-color:#1E88EE"/>
- <stop offset="1" style="stop-color:#1C87EE"/>
- <a:midPointStop offset="0" style="stop-color:#3D98F0"/>
- <a:midPointStop offset="0.5" style="stop-color:#3D98F0"/>
- <a:midPointStop offset="0.0169" style="stop-color:#3D98F0"/>
- <a:midPointStop offset="0.5" style="stop-color:#3D98F0"/>
- <a:midPointStop offset="0.1966" style="stop-color:#3595F0"/>
- <a:midPointStop offset="0.6441" style="stop-color:#3595F0"/>
- <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_126_)" a:adobe-knockout="false" d="M173.281,171.313
- c-5.894,17.77-21.987,28.235-34.687,22.434c-12.599-5.754-15.839-25.09-8.04-41.731c7.114-15.207,20.432-23.701,31.215-19.021
- C172.637,137.708,178.991,154.221,173.281,171.313z"/>
-
- <linearGradient id="XMLID_127_" gradientUnits="userSpaceOnUse" x1="123.803" y1="152.6226" x2="139.5216" y2="159.5844" gradientTransform="matrix(0.9433 -0.0226 -0.0226 0.9834 14.5173 6.1537)">
- <stop offset="0" style="stop-color:#449CF1"/>
- <stop offset="0.0169" style="stop-color:#449CF1"/>
- <stop offset="0.1966" style="stop-color:#3998F1"/>
- <stop offset="0.4933" style="stop-color:#3394F0"/>
- <stop offset="0.8911" style="stop-color:#228AEF"/>
- <stop offset="1" style="stop-color:#1C87EE"/>
- <a:midPointStop offset="0" style="stop-color:#449CF1"/>
- <a:midPointStop offset="0.5" style="stop-color:#449CF1"/>
- <a:midPointStop offset="0.0169" style="stop-color:#449CF1"/>
- <a:midPointStop offset="0.5" style="stop-color:#449CF1"/>
- <a:midPointStop offset="0.1966" style="stop-color:#3998F1"/>
- <a:midPointStop offset="0.6441" style="stop-color:#3998F1"/>
- <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_127_)" a:adobe-knockout="false" d="M173.232,171.377
- c-5.903,17.691-21.925,28.052-34.561,22.246c-12.521-5.751-15.776-24.973-8.057-41.536
- c7.061-15.184,20.372-23.671,31.163-18.994C172.666,137.811,178.959,154.336,173.232,171.377z"/>
-
- <linearGradient id="XMLID_128_" gradientUnits="userSpaceOnUse" x1="123.8835" y1="152.4751" x2="140.9147" y2="160.112" gradientTransform="matrix(0.9453 -0.0215 -0.0215 0.9835 13.9645 5.9706)">
- <stop offset="0" style="stop-color:#4B9FF1"/>
- <stop offset="0.0169" style="stop-color:#4B9FF1"/>
- <stop offset="0.1966" style="stop-color:#3E9BF1"/>
- <stop offset="0.4648" style="stop-color:#3897F0"/>
- <stop offset="0.8243" style="stop-color:#278DEF"/>
- <stop offset="1" style="stop-color:#1C87EE"/>
- <a:midPointStop offset="0" style="stop-color:#4B9FF1"/>
- <a:midPointStop offset="0.5" style="stop-color:#4B9FF1"/>
- <a:midPointStop offset="0.0169" style="stop-color:#4B9FF1"/>
- <a:midPointStop offset="0.5" style="stop-color:#4B9FF1"/>
- <a:midPointStop offset="0.1966" style="stop-color:#3E9BF1"/>
- <a:midPointStop offset="0.6441" style="stop-color:#3E9BF1"/>
- <a:midPointStop offset="1" style="stop-color:#1C87EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_128_)" a:adobe-knockout="false" d="M173.182,171.441
- c-5.913,17.612-21.864,27.869-34.434,22.058c-12.444-5.75-15.713-24.855-8.073-41.342c7.007-15.161,20.312-23.64,31.11-18.965
- C172.696,137.914,178.926,154.451,173.182,171.441z"/>
-
- <linearGradient id="XMLID_129_" gradientUnits="userSpaceOnUse" x1="123.9617" y1="152.3184" x2="142.2882" y2="160.6375" gradientTransform="matrix(0.9472 -0.0204 -0.0204 0.9836 13.4122 5.7875)">
- <stop offset="0" style="stop-color:#52A3F2"/>
- <stop offset="0.0169" style="stop-color:#52A3F2"/>
- <stop offset="0.1966" style="stop-color:#439DF2"/>
- <stop offset="0.4425" style="stop-color:#3D9AF1"/>
- <stop offset="0.772" style="stop-color:#2C91F0"/>
- <stop offset="1" style="stop-color:#1C88EE"/>
- <a:midPointStop offset="0" style="stop-color:#52A3F2"/>
- <a:midPointStop offset="0.5" style="stop-color:#52A3F2"/>
- <a:midPointStop offset="0.0169" style="stop-color:#52A3F2"/>
- <a:midPointStop offset="0.5" style="stop-color:#52A3F2"/>
- <a:midPointStop offset="0.1966" style="stop-color:#439DF2"/>
- <a:midPointStop offset="0.6441" style="stop-color:#439DF2"/>
- <a:midPointStop offset="1" style="stop-color:#1C88EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_129_)" a:adobe-knockout="false" d="M173.133,171.505
- c-5.922,17.534-21.803,27.687-34.308,21.871c-12.366-5.747-15.65-24.738-8.089-41.147
- c6.953-15.138,20.252-23.61,31.058-18.938C172.725,138.017,178.894,154.565,173.133,171.505z"/>
-
- <linearGradient id="XMLID_130_" gradientUnits="userSpaceOnUse" x1="124.0432" y1="152.1655" x2="143.646" y2="161.1728" gradientTransform="matrix(0.9492 -0.0193 -0.0193 0.9836 12.8599 5.6043)">
- <stop offset="0" style="stop-color:#59A7F2"/>
- <stop offset="0.0169" style="stop-color:#59A7F2"/>
- <stop offset="0.1966" style="stop-color:#48A0F2"/>
- <stop offset="0.4243" style="stop-color:#429DF1"/>
- <stop offset="0.7295" style="stop-color:#3193F0"/>
- <stop offset="1" style="stop-color:#1C88EE"/>
- <a:midPointStop offset="0" style="stop-color:#59A7F2"/>
- <a:midPointStop offset="0.5" style="stop-color:#59A7F2"/>
- <a:midPointStop offset="0.0169" style="stop-color:#59A7F2"/>
- <a:midPointStop offset="0.5" style="stop-color:#59A7F2"/>
- <a:midPointStop offset="0.1966" style="stop-color:#48A0F2"/>
- <a:midPointStop offset="0.6441" style="stop-color:#48A0F2"/>
- <a:midPointStop offset="1" style="stop-color:#1C88EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_130_)" a:adobe-knockout="false" d="M173.083,171.57
- c-5.931,17.455-21.742,27.504-34.182,21.683c-12.288-5.745-15.587-24.621-8.106-40.953
- c6.899-15.115,20.192-23.579,31.005-18.909C172.754,138.12,178.862,154.681,173.083,171.57z"/>
-
- <linearGradient id="XMLID_131_" gradientUnits="userSpaceOnUse" x1="124.1233" y1="152.0103" x2="144.9854" y2="161.7125" gradientTransform="matrix(0.9512 -0.0182 -0.0182 0.9837 12.3071 5.4207)">
- <stop offset="0" style="stop-color:#5FAAF3"/>
- <stop offset="0.0169" style="stop-color:#5FAAF3"/>
- <stop offset="0.1966" style="stop-color:#4DA3F3"/>
- <stop offset="0.4093" style="stop-color:#47A0F2"/>
- <stop offset="0.695" style="stop-color:#3696F1"/>
- <stop offset="1" style="stop-color:#1C88EE"/>
- <a:midPointStop offset="0" style="stop-color:#5FAAF3"/>
- <a:midPointStop offset="0.5" style="stop-color:#5FAAF3"/>
- <a:midPointStop offset="0.0169" style="stop-color:#5FAAF3"/>
- <a:midPointStop offset="0.5" style="stop-color:#5FAAF3"/>
- <a:midPointStop offset="0.1966" style="stop-color:#4DA3F3"/>
- <a:midPointStop offset="0.6441" style="stop-color:#4DA3F3"/>
- <a:midPointStop offset="1" style="stop-color:#1C88EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_131_)" a:adobe-knockout="false" d="M173.033,171.634
- c-5.94,17.376-21.68,27.321-34.055,21.495c-12.21-5.742-15.524-24.503-8.122-40.757c6.845-15.093,20.132-23.549,30.953-18.881
- C172.784,138.223,178.829,154.795,173.033,171.634z"/>
-
- <linearGradient id="XMLID_132_" gradientUnits="userSpaceOnUse" x1="124.2048" y1="151.8516" x2="146.3088" y2="162.2551" gradientTransform="matrix(0.9532 -0.0171 -0.0171 0.9838 11.7547 5.2376)">
- <stop offset="0" style="stop-color:#66AEF3"/>
- <stop offset="0.0169" style="stop-color:#66AEF3"/>
- <stop offset="0.1966" style="stop-color:#52A6F3"/>
- <stop offset="0.3966" style="stop-color:#4CA3F2"/>
- <stop offset="0.6652" style="stop-color:#3B9AF1"/>
- <stop offset="0.9717" style="stop-color:#1F8BEE"/>
- <stop offset="1" style="stop-color:#1C89EE"/>
- <a:midPointStop offset="0" style="stop-color:#66AEF3"/>
- <a:midPointStop offset="0.5" style="stop-color:#66AEF3"/>
- <a:midPointStop offset="0.0169" style="stop-color:#66AEF3"/>
- <a:midPointStop offset="0.5" style="stop-color:#66AEF3"/>
- <a:midPointStop offset="0.1966" style="stop-color:#52A6F3"/>
- <a:midPointStop offset="0.6441" style="stop-color:#52A6F3"/>
- <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_132_)" a:adobe-knockout="false" d="M172.984,171.699
- c-5.95,17.298-21.619,27.138-33.929,21.308c-12.132-5.74-15.46-24.386-8.138-40.563c6.791-15.07,20.073-23.519,30.9-18.854
- C172.813,138.326,178.797,154.91,172.984,171.699z"/>
-
- <linearGradient id="XMLID_133_" gradientUnits="userSpaceOnUse" x1="124.2874" y1="151.6953" x2="147.6169" y2="162.8068" gradientTransform="matrix(0.9552 -0.0161 -0.0161 0.9838 11.2024 5.0544)">
- <stop offset="0" style="stop-color:#6DB2F4"/>
- <stop offset="0.0169" style="stop-color:#6DB2F4"/>
- <stop offset="0.1966" style="stop-color:#57A9F4"/>
- <stop offset="0.3857" style="stop-color:#51A6F3"/>
- <stop offset="0.6397" style="stop-color:#409CF2"/>
- <stop offset="0.9294" style="stop-color:#248DEF"/>
- <stop offset="1" style="stop-color:#1C89EE"/>
- <a:midPointStop offset="0" style="stop-color:#6DB2F4"/>
- <a:midPointStop offset="0.5" style="stop-color:#6DB2F4"/>
- <a:midPointStop offset="0.0169" style="stop-color:#6DB2F4"/>
- <a:midPointStop offset="0.5" style="stop-color:#6DB2F4"/>
- <a:midPointStop offset="0.1966" style="stop-color:#57A9F4"/>
- <a:midPointStop offset="0.6441" style="stop-color:#57A9F4"/>
- <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_133_)" a:adobe-knockout="false" d="M172.935,171.763
- c-5.959,17.219-21.558,26.955-33.803,21.12c-12.055-5.737-15.398-24.268-8.155-40.368
- c6.737-15.047,20.013-23.488,30.848-18.825C172.843,138.429,178.764,155.025,172.935,171.763z"/>
-
- <linearGradient id="XMLID_134_" gradientUnits="userSpaceOnUse" x1="124.3708" y1="151.5381" x2="148.9081" y2="163.3634" gradientTransform="matrix(0.9572 -0.015 -0.015 0.9839 10.6496 4.8708)">
- <stop offset="0" style="stop-color:#74B5F4"/>
- <stop offset="0.0169" style="stop-color:#74B5F4"/>
- <stop offset="0.1966" style="stop-color:#5CACF4"/>
- <stop offset="0.3761" style="stop-color:#56A9F3"/>
- <stop offset="0.6173" style="stop-color:#459FF2"/>
- <stop offset="0.8925" style="stop-color:#2990EF"/>
- <stop offset="1" style="stop-color:#1C89EE"/>
- <a:midPointStop offset="0" style="stop-color:#74B5F4"/>
- <a:midPointStop offset="0.5" style="stop-color:#74B5F4"/>
- <a:midPointStop offset="0.0169" style="stop-color:#74B5F4"/>
- <a:midPointStop offset="0.5" style="stop-color:#74B5F4"/>
- <a:midPointStop offset="0.1966" style="stop-color:#5CACF4"/>
- <a:midPointStop offset="0.6441" style="stop-color:#5CACF4"/>
- <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_134_)" a:adobe-knockout="false" d="M172.885,171.828
- c-5.968,17.14-21.496,26.772-33.676,20.932c-11.977-5.735-15.334-24.151-8.171-40.174
- c6.683-15.025,19.953-23.458,30.795-18.797C172.872,138.532,178.732,155.14,172.885,171.828z"/>
-
- <linearGradient id="XMLID_135_" gradientUnits="userSpaceOnUse" x1="124.4534" y1="151.3784" x2="150.1816" y2="163.9236" gradientTransform="matrix(0.9592 -0.0139 -0.0139 0.9839 10.0978 4.6877)">
- <stop offset="0" style="stop-color:#7BB9F4"/>
- <stop offset="0.0169" style="stop-color:#7BB9F4"/>
- <stop offset="0.1966" style="stop-color:#60AFF4"/>
- <stop offset="0.3694" style="stop-color:#5AACF3"/>
- <stop offset="0.6015" style="stop-color:#49A2F2"/>
- <stop offset="0.8663" style="stop-color:#2D92EF"/>
- <stop offset="1" style="stop-color:#1C89EE"/>
- <a:midPointStop offset="0" style="stop-color:#7BB9F4"/>
- <a:midPointStop offset="0.5" style="stop-color:#7BB9F4"/>
- <a:midPointStop offset="0.0169" style="stop-color:#7BB9F4"/>
- <a:midPointStop offset="0.5" style="stop-color:#7BB9F4"/>
- <a:midPointStop offset="0.1966" style="stop-color:#60AFF4"/>
- <a:midPointStop offset="0.6441" style="stop-color:#60AFF4"/>
- <a:midPointStop offset="1" style="stop-color:#1C89EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_135_)" a:adobe-knockout="false" d="M172.836,171.892
- c-5.978,17.062-21.435,26.589-33.55,20.745c-11.899-5.733-15.271-24.034-8.188-39.979
- c6.63-15.002,19.893-23.427,30.743-18.769C172.901,138.635,178.699,155.255,172.836,171.892z"/>
-
- <linearGradient id="XMLID_136_" gradientUnits="userSpaceOnUse" x1="124.5378" y1="151.2192" x2="151.441" y2="164.4907" gradientTransform="matrix(0.9612 -0.0128 -0.0128 0.984 9.5455 4.5045)">
- <stop offset="0" style="stop-color:#82BDF5"/>
- <stop offset="0.0169" style="stop-color:#82BDF5"/>
- <stop offset="0.1966" style="stop-color:#65B2F5"/>
- <stop offset="0.3618" style="stop-color:#5FAFF4"/>
- <stop offset="0.5837" style="stop-color:#4EA5F3"/>
- <stop offset="0.8368" style="stop-color:#3296F0"/>
- <stop offset="1" style="stop-color:#1C8AEE"/>
- <a:midPointStop offset="0" style="stop-color:#82BDF5"/>
- <a:midPointStop offset="0.5" style="stop-color:#82BDF5"/>
- <a:midPointStop offset="0.0169" style="stop-color:#82BDF5"/>
- <a:midPointStop offset="0.5" style="stop-color:#82BDF5"/>
- <a:midPointStop offset="0.1966" style="stop-color:#65B2F5"/>
- <a:midPointStop offset="0.6441" style="stop-color:#65B2F5"/>
- <a:midPointStop offset="1" style="stop-color:#1C8AEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_136_)" a:adobe-knockout="false" d="M172.786,171.957
- c-5.987,16.983-21.374,26.406-33.424,20.557c-11.822-5.73-15.208-23.916-8.204-39.785
- c6.576-14.979,19.833-23.396,30.69-18.741C172.93,138.737,178.667,155.37,172.786,171.957z"/>
-
- <linearGradient id="XMLID_137_" gradientUnits="userSpaceOnUse" x1="124.6213" y1="151.0547" x2="152.6828" y2="165.0581" gradientTransform="matrix(0.9632 -0.0117 -0.0117 0.9841 8.9927 4.3209)">
- <stop offset="0" style="stop-color:#89C0F5"/>
- <stop offset="0.0169" style="stop-color:#89C0F5"/>
- <stop offset="0.1966" style="stop-color:#6AB5F5"/>
- <stop offset="0.355" style="stop-color:#64B2F4"/>
- <stop offset="0.5677" style="stop-color:#53A8F3"/>
- <stop offset="0.8103" style="stop-color:#3799F0"/>
- <stop offset="1" style="stop-color:#1C8AEE"/>
- <a:midPointStop offset="0" style="stop-color:#89C0F5"/>
- <a:midPointStop offset="0.5" style="stop-color:#89C0F5"/>
- <a:midPointStop offset="0.0169" style="stop-color:#89C0F5"/>
- <a:midPointStop offset="0.5" style="stop-color:#89C0F5"/>
- <a:midPointStop offset="0.1966" style="stop-color:#6AB5F5"/>
- <a:midPointStop offset="0.6441" style="stop-color:#6AB5F5"/>
- <a:midPointStop offset="1" style="stop-color:#1C8AEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_137_)" a:adobe-knockout="false" d="M172.737,172.021
- c-5.996,16.904-21.313,26.223-33.297,20.369c-11.744-5.728-15.145-23.799-8.22-39.59
- c6.522-14.957,19.773-23.366,30.638-18.713C172.96,138.84,178.635,155.485,172.737,172.021z"/>
-
- <linearGradient id="XMLID_138_" gradientUnits="userSpaceOnUse" x1="124.7058" y1="150.8931" x2="153.9094" y2="165.6344" gradientTransform="matrix(0.9652 -0.0106 -0.0106 0.9841 8.4403 4.1378)">
- <stop offset="0" style="stop-color:#90C4F6"/>
- <stop offset="0.0169" style="stop-color:#90C4F6"/>
- <stop offset="0.1966" style="stop-color:#6FB8F6"/>
- <stop offset="0.3489" style="stop-color:#69B5F5"/>
- <stop offset="0.5534" style="stop-color:#58ABF4"/>
- <stop offset="0.7867" style="stop-color:#3C9CF1"/>
- <stop offset="1" style="stop-color:#1C8AEE"/>
- <a:midPointStop offset="0" style="stop-color:#90C4F6"/>
- <a:midPointStop offset="0.5" style="stop-color:#90C4F6"/>
- <a:midPointStop offset="0.0169" style="stop-color:#90C4F6"/>
- <a:midPointStop offset="0.5" style="stop-color:#90C4F6"/>
- <a:midPointStop offset="0.1966" style="stop-color:#6FB8F6"/>
- <a:midPointStop offset="0.6441" style="stop-color:#6FB8F6"/>
- <a:midPointStop offset="1" style="stop-color:#1C8AEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_138_)" a:adobe-knockout="false" d="M172.687,172.085
- c-6.005,16.825-21.251,26.04-33.171,20.181c-11.666-5.726-15.082-23.681-8.237-39.396
- c6.468-14.934,19.713-23.335,30.585-18.685C172.989,138.943,178.602,155.6,172.687,172.085z"/>
-
- <linearGradient id="XMLID_139_" gradientUnits="userSpaceOnUse" x1="124.7927" y1="150.7305" x2="155.1227" y2="166.2156" gradientTransform="matrix(0.9671 -0.0096 -0.0096 0.9842 7.888 3.9546)">
- <stop offset="0" style="stop-color:#97C8F6"/>
- <stop offset="0.0169" style="stop-color:#97C8F6"/>
- <stop offset="0.1966" style="stop-color:#74BAF6"/>
- <stop offset="0.3433" style="stop-color:#6EB7F5"/>
- <stop offset="0.5404" style="stop-color:#5DAEF4"/>
- <stop offset="0.7662" style="stop-color:#419FF1"/>
- <stop offset="1" style="stop-color:#1C8BEE"/>
- <a:midPointStop offset="0" style="stop-color:#97C8F6"/>
- <a:midPointStop offset="0.5" style="stop-color:#97C8F6"/>
- <a:midPointStop offset="0.0169" style="stop-color:#97C8F6"/>
- <a:midPointStop offset="0.5" style="stop-color:#97C8F6"/>
- <a:midPointStop offset="0.1966" style="stop-color:#74BAF6"/>
- <a:midPointStop offset="0.6441" style="stop-color:#74BAF6"/>
- <a:midPointStop offset="1" style="stop-color:#1C8BEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_139_)" a:adobe-knockout="false" d="M172.638,172.149
- c-6.015,16.747-21.19,25.857-33.045,19.994c-11.588-5.723-15.019-23.564-8.253-39.201
- c6.414-14.911,19.654-23.305,30.533-18.657C173.018,139.046,178.57,155.715,172.638,172.149z"/>
-
- <linearGradient id="XMLID_140_" gradientUnits="userSpaceOnUse" x1="124.8782" y1="150.5669" x2="156.3197" y2="166.802" gradientTransform="matrix(0.9691 -0.0085 -0.0085 0.9842 7.3352 3.7715)">
- <stop offset="0" style="stop-color:#9ECCF7"/>
- <stop offset="0.0169" style="stop-color:#9ECCF7"/>
- <stop offset="0.1966" style="stop-color:#79BDF7"/>
- <stop offset="0.3383" style="stop-color:#73BAF6"/>
- <stop offset="0.5286" style="stop-color:#62B1F5"/>
- <stop offset="0.7466" style="stop-color:#46A1F2"/>
- <stop offset="0.9837" style="stop-color:#1F8DEE"/>
- <stop offset="1" style="stop-color:#1C8BEE"/>
- <a:midPointStop offset="0" style="stop-color:#9ECCF7"/>
- <a:midPointStop offset="0.5" style="stop-color:#9ECCF7"/>
- <a:midPointStop offset="0.0169" style="stop-color:#9ECCF7"/>
- <a:midPointStop offset="0.5" style="stop-color:#9ECCF7"/>
- <a:midPointStop offset="0.1966" style="stop-color:#79BDF7"/>
- <a:midPointStop offset="0.6441" style="stop-color:#79BDF7"/>
- <a:midPointStop offset="1" style="stop-color:#1C8BEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_140_)" a:adobe-knockout="false" d="M172.589,172.214
- c-6.024,16.668-21.129,25.674-32.918,19.806c-11.511-5.721-14.956-23.446-8.27-39.006c6.36-14.888,19.594-23.274,30.48-18.628
- C173.048,139.149,178.537,155.83,172.589,172.214z"/>
-
- <linearGradient id="XMLID_141_" gradientUnits="userSpaceOnUse" x1="124.9661" y1="150.3999" x2="157.5024" y2="167.3901" gradientTransform="matrix(0.9711 -0.0074 -0.0074 0.9843 6.7829 3.5878)">
- <stop offset="0" style="stop-color:#A5CFF7"/>
- <stop offset="0.0169" style="stop-color:#A5CFF7"/>
- <stop offset="0.1966" style="stop-color:#7EC0F7"/>
- <stop offset="0.3337" style="stop-color:#78BDF6"/>
- <stop offset="0.5178" style="stop-color:#67B3F5"/>
- <stop offset="0.7287" style="stop-color:#4BA4F2"/>
- <stop offset="0.958" style="stop-color:#248FEF"/>
- <stop offset="1" style="stop-color:#1C8BEE"/>
- <a:midPointStop offset="0" style="stop-color:#A5CFF7"/>
- <a:midPointStop offset="0.5" style="stop-color:#A5CFF7"/>
- <a:midPointStop offset="0.0169" style="stop-color:#A5CFF7"/>
- <a:midPointStop offset="0.5" style="stop-color:#A5CFF7"/>
- <a:midPointStop offset="0.1966" style="stop-color:#7EC0F7"/>
- <a:midPointStop offset="0.6441" style="stop-color:#7EC0F7"/>
- <a:midPointStop offset="1" style="stop-color:#1C8BEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_141_)" a:adobe-knockout="false" d="M172.539,172.278
- c-6.033,16.589-21.067,25.492-32.792,19.619c-11.433-5.718-14.893-23.329-8.286-38.812
- c6.306-14.865,19.534-23.244,30.427-18.601C173.077,139.252,178.505,155.945,172.539,172.278z"/>
-
- <linearGradient id="XMLID_142_" gradientUnits="userSpaceOnUse" x1="125.054" y1="150.2329" x2="158.6707" y2="167.9843" gradientTransform="matrix(0.9731 -0.0063 -0.0063 0.9844 6.2306 3.4052)">
- <stop offset="0" style="stop-color:#ACD3F8"/>
- <stop offset="0.0169" style="stop-color:#ACD3F8"/>
- <stop offset="0.1966" style="stop-color:#83C3F8"/>
- <stop offset="0.3294" style="stop-color:#7DC0F7"/>
- <stop offset="0.5078" style="stop-color:#6CB7F6"/>
- <stop offset="0.7122" style="stop-color:#50A8F3"/>
- <stop offset="0.9344" style="stop-color:#2993EF"/>
- <stop offset="1" style="stop-color:#1C8CEE"/>
- <a:midPointStop offset="0" style="stop-color:#ACD3F8"/>
- <a:midPointStop offset="0.5" style="stop-color:#ACD3F8"/>
- <a:midPointStop offset="0.0169" style="stop-color:#ACD3F8"/>
- <a:midPointStop offset="0.5" style="stop-color:#ACD3F8"/>
- <a:midPointStop offset="0.1966" style="stop-color:#83C3F8"/>
- <a:midPointStop offset="0.6441" style="stop-color:#83C3F8"/>
- <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_142_)" a:adobe-knockout="false" d="M172.49,172.343
- c-6.042,16.511-21.006,25.309-32.666,19.431c-11.355-5.716-14.83-23.211-8.302-38.617
- c6.252-14.842,19.474-23.213,30.375-18.572C173.106,139.355,178.472,156.06,172.49,172.343z"/>
-
- <linearGradient id="XMLID_143_" gradientUnits="userSpaceOnUse" x1="125.1428" y1="150.0654" x2="159.8252" y2="168.5836" gradientTransform="matrix(0.9751 -0.0052 -0.0052 0.9844 5.6782 3.2215)">
- <stop offset="0" style="stop-color:#B3D7F8"/>
- <stop offset="0.0169" style="stop-color:#B3D7F8"/>
- <stop offset="0.1966" style="stop-color:#87C6F8"/>
- <stop offset="0.3262" style="stop-color:#81C3F7"/>
- <stop offset="0.5004" style="stop-color:#70B9F6"/>
- <stop offset="0.6998" style="stop-color:#54AAF3"/>
- <stop offset="0.9166" style="stop-color:#2D95F0"/>
- <stop offset="1" style="stop-color:#1C8CEE"/>
- <a:midPointStop offset="0" style="stop-color:#B3D7F8"/>
- <a:midPointStop offset="0.5" style="stop-color:#B3D7F8"/>
- <a:midPointStop offset="0.0169" style="stop-color:#B3D7F8"/>
- <a:midPointStop offset="0.5" style="stop-color:#B3D7F8"/>
- <a:midPointStop offset="0.1966" style="stop-color:#87C6F8"/>
- <a:midPointStop offset="0.6441" style="stop-color:#87C6F8"/>
- <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_143_)" a:adobe-knockout="false" d="M172.44,172.407
- c-6.052,16.432-20.945,25.125-32.54,19.243c-11.277-5.714-14.767-23.094-8.319-38.423
- c6.199-14.819,19.415-23.183,30.323-18.544C173.135,139.458,178.44,156.175,172.44,172.407z"/>
-
- <linearGradient id="XMLID_144_" gradientUnits="userSpaceOnUse" x1="125.2317" y1="149.897" x2="160.9635" y2="169.187" gradientTransform="matrix(0.9771 -0.0041 -0.0041 0.9845 5.1254 3.0379)">
- <stop offset="0" style="stop-color:#BADAF8"/>
- <stop offset="0.0169" style="stop-color:#BADAF8"/>
- <stop offset="0.1966" style="stop-color:#8CC9F8"/>
- <stop offset="0.3225" style="stop-color:#86C6F7"/>
- <stop offset="0.4917" style="stop-color:#75BCF6"/>
- <stop offset="0.6855" style="stop-color:#59ADF3"/>
- <stop offset="0.896" style="stop-color:#3298F0"/>
- <stop offset="1" style="stop-color:#1C8CEE"/>
- <a:midPointStop offset="0" style="stop-color:#BADAF8"/>
- <a:midPointStop offset="0.5" style="stop-color:#BADAF8"/>
- <a:midPointStop offset="0.0169" style="stop-color:#BADAF8"/>
- <a:midPointStop offset="0.5" style="stop-color:#BADAF8"/>
- <a:midPointStop offset="0.1966" style="stop-color:#8CC9F8"/>
- <a:midPointStop offset="0.6441" style="stop-color:#8CC9F8"/>
- <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_144_)" a:adobe-knockout="false" d="M172.39,172.472
- c-6.061,16.354-20.884,24.942-32.413,19.056c-11.199-5.711-14.703-22.977-8.335-38.229
- c6.145-14.797,19.354-23.152,30.27-18.516C173.165,139.561,178.408,156.29,172.39,172.472z"/>
-
- <linearGradient id="XMLID_145_" gradientUnits="userSpaceOnUse" x1="125.324" y1="149.729" x2="162.0907" y2="169.7964" gradientTransform="matrix(0.9791 -0.0031 -0.0031 0.9845 4.5731 2.8548)">
- <stop offset="0" style="stop-color:#C1DEF9"/>
- <stop offset="0.0169" style="stop-color:#C1DEF9"/>
- <stop offset="0.1966" style="stop-color:#91CCF9"/>
- <stop offset="0.3191" style="stop-color:#8BC9F8"/>
- <stop offset="0.4836" style="stop-color:#7ABFF7"/>
- <stop offset="0.6721" style="stop-color:#5EB0F4"/>
- <stop offset="0.877" style="stop-color:#379BF1"/>
- <stop offset="1" style="stop-color:#1C8CEE"/>
- <a:midPointStop offset="0" style="stop-color:#C1DEF9"/>
- <a:midPointStop offset="0.5" style="stop-color:#C1DEF9"/>
- <a:midPointStop offset="0.0169" style="stop-color:#C1DEF9"/>
- <a:midPointStop offset="0.5" style="stop-color:#C1DEF9"/>
- <a:midPointStop offset="0.1966" style="stop-color:#91CCF9"/>
- <a:midPointStop offset="0.6441" style="stop-color:#91CCF9"/>
- <a:midPointStop offset="1" style="stop-color:#1C8CEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_145_)" a:adobe-knockout="false" d="M172.341,172.536
- c-6.07,16.274-20.822,24.76-32.287,18.868c-11.122-5.709-14.641-22.859-8.352-38.034
- c6.091-14.774,19.294-23.122,30.217-18.488C173.194,139.664,178.375,156.405,172.341,172.536z"/>
-
- <linearGradient id="XMLID_146_" gradientUnits="userSpaceOnUse" x1="125.4158" y1="149.5596" x2="163.204" y2="170.4103" gradientTransform="matrix(0.9811 -0.002 -0.002 0.9846 4.0208 2.6716)">
- <stop offset="0" style="stop-color:#C8E2F9"/>
- <stop offset="0.0169" style="stop-color:#C8E2F9"/>
- <stop offset="0.1966" style="stop-color:#96CFF9"/>
- <stop offset="0.3158" style="stop-color:#90CCF8"/>
- <stop offset="0.4761" style="stop-color:#7FC2F7"/>
- <stop offset="0.6597" style="stop-color:#63B3F4"/>
- <stop offset="0.8591" style="stop-color:#3C9EF1"/>
- <stop offset="1" style="stop-color:#1C8DEE"/>
- <a:midPointStop offset="0" style="stop-color:#C8E2F9"/>
- <a:midPointStop offset="0.5" style="stop-color:#C8E2F9"/>
- <a:midPointStop offset="0.0169" style="stop-color:#C8E2F9"/>
- <a:midPointStop offset="0.5" style="stop-color:#C8E2F9"/>
- <a:midPointStop offset="0.1966" style="stop-color:#96CFF9"/>
- <a:midPointStop offset="0.6441" style="stop-color:#96CFF9"/>
- <a:midPointStop offset="1" style="stop-color:#1C8DEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_146_)" a:adobe-knockout="false" d="M172.292,172.601
- c-6.08,16.196-20.761,24.577-32.161,18.68c-11.044-5.707-14.577-22.742-8.368-37.839c6.037-14.751,19.235-23.091,30.165-18.46
- C173.223,139.767,178.343,156.52,172.292,172.601z"/>
-
- <linearGradient id="XMLID_147_" gradientUnits="userSpaceOnUse" x1="125.5081" y1="149.3862" x2="164.3029" y2="171.0255" gradientTransform="matrix(0.9831 -8.870935e-004 -8.870935e-004 0.9847 3.4679 2.4885)">
- <stop offset="0" style="stop-color:#CEE5FA"/>
- <stop offset="0.0169" style="stop-color:#CEE5FA"/>
- <stop offset="0.1966" style="stop-color:#9BD2FA"/>
- <stop offset="0.3129" style="stop-color:#95CFF9"/>
- <stop offset="0.4691" style="stop-color:#84C5F8"/>
- <stop offset="0.6481" style="stop-color:#68B6F5"/>
- <stop offset="0.8425" style="stop-color:#41A1F1"/>
- <stop offset="1" style="stop-color:#1C8DEE"/>
- <a:midPointStop offset="0" style="stop-color:#CEE5FA"/>
- <a:midPointStop offset="0.5" style="stop-color:#CEE5FA"/>
- <a:midPointStop offset="0.0169" style="stop-color:#CEE5FA"/>
- <a:midPointStop offset="0.5" style="stop-color:#CEE5FA"/>
- <a:midPointStop offset="0.1966" style="stop-color:#9BD2FA"/>
- <a:midPointStop offset="0.6441" style="stop-color:#9BD2FA"/>
- <a:midPointStop offset="1" style="stop-color:#1C8DEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_147_)" a:adobe-knockout="false" d="M172.242,172.665
- c-6.089,16.117-20.7,24.394-32.034,18.492c-10.966-5.704-14.514-22.625-8.384-37.644
- c5.983-14.729,19.175-23.061,30.112-18.432C173.253,139.87,178.31,156.634,172.242,172.665z"/>
-
- <linearGradient id="XMLID_148_" gradientUnits="userSpaceOnUse" x1="125.5979" y1="149.2148" x2="165.3848" y2="171.6476" gradientTransform="matrix(0.9851 1.967764e-004 1.967764e-004 0.9847 2.9156 2.3048)">
- <stop offset="0" style="stop-color:#D5E9FA"/>
- <stop offset="0.0169" style="stop-color:#D5E9FA"/>
- <stop offset="0.1966" style="stop-color:#A0D5FA"/>
- <stop offset="0.31" style="stop-color:#9AD2F9"/>
- <stop offset="0.4625" style="stop-color:#89C8F8"/>
- <stop offset="0.6372" style="stop-color:#6DB9F5"/>
- <stop offset="0.8269" style="stop-color:#46A4F2"/>
- <stop offset="1" style="stop-color:#1C8DEE"/>
- <a:midPointStop offset="0" style="stop-color:#D5E9FA"/>
- <a:midPointStop offset="0.5" style="stop-color:#D5E9FA"/>
- <a:midPointStop offset="0.0169" style="stop-color:#D5E9FA"/>
- <a:midPointStop offset="0.5" style="stop-color:#D5E9FA"/>
- <a:midPointStop offset="0.1966" style="stop-color:#A0D5FA"/>
- <a:midPointStop offset="0.6441" style="stop-color:#A0D5FA"/>
- <a:midPointStop offset="1" style="stop-color:#1C8DEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_148_)" a:adobe-knockout="false" d="M172.193,172.729
- c-6.098,16.039-20.639,24.21-31.908,18.305c-10.889-5.702-14.451-22.507-8.4-37.45c5.929-14.706,19.115-23.03,30.06-18.404
- C173.282,139.973,178.278,156.75,172.193,172.729z"/>
-
- <linearGradient id="XMLID_149_" gradientUnits="userSpaceOnUse" x1="125.6917" y1="149.0425" x2="166.4561" y2="172.2738" gradientTransform="matrix(0.987 0.0013 0.0013 0.9848 2.3638 2.1222)">
- <stop offset="0" style="stop-color:#DCEDFB"/>
- <stop offset="0.0169" style="stop-color:#DCEDFB"/>
- <stop offset="0.1966" style="stop-color:#A5D7FB"/>
- <stop offset="0.3074" style="stop-color:#9FD4FA"/>
- <stop offset="0.4564" style="stop-color:#8ECBF9"/>
- <stop offset="0.627" style="stop-color:#72BCF6"/>
- <stop offset="0.8135" style="stop-color:#4BA7F2"/>
- <stop offset="1" style="stop-color:#1C8EEE"/>
- <a:midPointStop offset="0" style="stop-color:#DCEDFB"/>
- <a:midPointStop offset="0.5" style="stop-color:#DCEDFB"/>
- <a:midPointStop offset="0.0169" style="stop-color:#DCEDFB"/>
- <a:midPointStop offset="0.5" style="stop-color:#DCEDFB"/>
- <a:midPointStop offset="0.1966" style="stop-color:#A5D7FB"/>
- <a:midPointStop offset="0.6441" style="stop-color:#A5D7FB"/>
- <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_149_)" a:adobe-knockout="false" d="M172.143,172.793
- c-6.107,15.96-20.578,24.028-31.782,18.117c-10.811-5.699-14.388-22.39-8.417-37.255c5.875-14.683,19.055-23,30.007-18.376
- C173.312,140.076,178.246,156.864,172.143,172.793z"/>
-
- <linearGradient id="XMLID_150_" gradientUnits="userSpaceOnUse" x1="125.7878" y1="148.8711" x2="167.5164" y2="172.9064" gradientTransform="matrix(0.989 0.0024 0.0024 0.9849 1.8114 1.9385)">
- <stop offset="0" style="stop-color:#E3F0FB"/>
- <stop offset="0.0169" style="stop-color:#E3F0FB"/>
- <stop offset="0.1966" style="stop-color:#AADAFB"/>
- <stop offset="0.3049" style="stop-color:#A4D7FA"/>
- <stop offset="0.4505" style="stop-color:#93CEF9"/>
- <stop offset="0.6173" style="stop-color:#77BFF6"/>
- <stop offset="0.7999" style="stop-color:#50AAF3"/>
- <stop offset="0.9933" style="stop-color:#1E8FEE"/>
- <stop offset="1" style="stop-color:#1C8EEE"/>
- <a:midPointStop offset="0" style="stop-color:#E3F0FB"/>
- <a:midPointStop offset="0.5" style="stop-color:#E3F0FB"/>
- <a:midPointStop offset="0.0169" style="stop-color:#E3F0FB"/>
- <a:midPointStop offset="0.5" style="stop-color:#E3F0FB"/>
- <a:midPointStop offset="0.1966" style="stop-color:#AADAFB"/>
- <a:midPointStop offset="0.6441" style="stop-color:#AADAFB"/>
- <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_150_)" a:adobe-knockout="false" d="M172.094,172.858
- c-6.117,15.881-20.516,23.845-31.655,17.93c-10.733-5.697-14.325-22.272-8.433-37.061
- c5.821-14.661,18.995-22.969,29.955-18.348C173.341,140.179,178.213,156.979,172.094,172.858z"/>
-
- <linearGradient id="XMLID_151_" gradientUnits="userSpaceOnUse" x1="125.8831" y1="148.6938" x2="168.5633" y2="173.5392" gradientTransform="matrix(0.991 0.0034 0.0034 0.9849 1.2586 1.7549)">
- <stop offset="0" style="stop-color:#EAF4FC"/>
- <stop offset="0.0169" style="stop-color:#EAF4FC"/>
- <stop offset="0.1966" style="stop-color:#AEDDFC"/>
- <stop offset="0.303" style="stop-color:#A8DAFB"/>
- <stop offset="0.446" style="stop-color:#97D0FA"/>
- <stop offset="0.6099" style="stop-color:#7BC1F7"/>
- <stop offset="0.7893" style="stop-color:#54ACF3"/>
- <stop offset="0.9793" style="stop-color:#2291EF"/>
- <stop offset="1" style="stop-color:#1C8EEE"/>
- <a:midPointStop offset="0" style="stop-color:#EAF4FC"/>
- <a:midPointStop offset="0.5" style="stop-color:#EAF4FC"/>
- <a:midPointStop offset="0.0169" style="stop-color:#EAF4FC"/>
- <a:midPointStop offset="0.5" style="stop-color:#EAF4FC"/>
- <a:midPointStop offset="0.1966" style="stop-color:#AEDDFC"/>
- <a:midPointStop offset="0.6441" style="stop-color:#AEDDFC"/>
- <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_151_)" a:adobe-knockout="false" d="M172.044,172.922
- c-6.126,15.803-20.455,23.662-31.529,17.742c-10.655-5.694-14.262-22.155-8.45-36.866
- c5.768-14.638,18.936-22.939,29.902-18.32C173.37,140.282,178.181,157.094,172.044,172.922z"/>
-
- <linearGradient id="XMLID_152_" gradientUnits="userSpaceOnUse" x1="125.9778" y1="148.521" x2="169.594" y2="174.1801" gradientTransform="matrix(0.993 0.0045 0.0045 0.985 0.7063 1.5718)">
- <stop offset="0" style="stop-color:#F1F8FC"/>
- <stop offset="0.0169" style="stop-color:#F1F8FC"/>
- <stop offset="0.1966" style="stop-color:#B3E0FC"/>
- <stop offset="0.3008" style="stop-color:#ADDDFB"/>
- <stop offset="0.4408" style="stop-color:#9CD3FA"/>
- <stop offset="0.6013" style="stop-color:#80C4F7"/>
- <stop offset="0.7769" style="stop-color:#59AFF4"/>
- <stop offset="0.9628" style="stop-color:#2794EF"/>
- <stop offset="1" style="stop-color:#1C8EEE"/>
- <a:midPointStop offset="0" style="stop-color:#F1F8FC"/>
- <a:midPointStop offset="0.5" style="stop-color:#F1F8FC"/>
- <a:midPointStop offset="0.0169" style="stop-color:#F1F8FC"/>
- <a:midPointStop offset="0.5" style="stop-color:#F1F8FC"/>
- <a:midPointStop offset="0.1966" style="stop-color:#B3E0FC"/>
- <a:midPointStop offset="0.6441" style="stop-color:#B3E0FC"/>
- <a:midPointStop offset="1" style="stop-color:#1C8EEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_152_)" a:adobe-knockout="false" d="M171.995,172.987
- c-6.135,15.724-20.394,23.479-31.403,17.554c-10.577-5.692-14.198-22.038-8.466-36.671
- c5.713-14.615,18.875-22.908,29.85-18.292C173.4,140.384,178.149,157.209,171.995,172.987z"/>
-
- <linearGradient id="XMLID_153_" gradientUnits="userSpaceOnUse" x1="126.0779" y1="148.3438" x2="170.6163" y2="174.8215" gradientTransform="matrix(0.995 0.0056 0.0056 0.985 0.154 1.3886)">
- <stop offset="0" style="stop-color:#F8FBFD"/>
- <stop offset="0.0169" style="stop-color:#F8FBFD"/>
- <stop offset="0.1966" style="stop-color:#B8E3FD"/>
- <stop offset="0.2987" style="stop-color:#B2E0FC"/>
- <stop offset="0.4358" style="stop-color:#A1D7FB"/>
- <stop offset="0.593" style="stop-color:#85C7F8"/>
- <stop offset="0.765" style="stop-color:#5EB2F4"/>
- <stop offset="0.9471" style="stop-color:#2C98F0"/>
- <stop offset="1" style="stop-color:#1C8FEE"/>
- <a:midPointStop offset="0" style="stop-color:#F8FBFD"/>
- <a:midPointStop offset="0.5" style="stop-color:#F8FBFD"/>
- <a:midPointStop offset="0.0169" style="stop-color:#F8FBFD"/>
- <a:midPointStop offset="0.5" style="stop-color:#F8FBFD"/>
- <a:midPointStop offset="0.1966" style="stop-color:#B8E3FD"/>
- <a:midPointStop offset="0.6441" style="stop-color:#B8E3FD"/>
- <a:midPointStop offset="1" style="stop-color:#1C8FEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_153_)" a:adobe-knockout="false" d="M171.945,173.051
- c-6.145,15.645-20.332,23.296-31.276,17.366c-10.5-5.689-14.136-21.92-8.482-36.477c5.66-14.592,18.816-22.878,29.797-18.264
- C173.429,140.487,178.116,157.324,171.945,173.051z"/>
-
- <linearGradient id="XMLID_154_" gradientUnits="userSpaceOnUse" x1="126.175" y1="148.168" x2="171.6249" y2="175.4708" gradientTransform="matrix(0.997 0.0067 0.0067 0.9851 -0.3988 1.2055)">
- <stop offset="0.0169" style="stop-color:#FFFFFD"/>
- <stop offset="0.1966" style="stop-color:#BDE6FD"/>
- <stop offset="0.2966" style="stop-color:#B7E3FC"/>
- <stop offset="0.4311" style="stop-color:#A6D9FB"/>
- <stop offset="0.5851" style="stop-color:#8ACAF8"/>
- <stop offset="0.7538" style="stop-color:#63B5F5"/>
- <stop offset="0.9323" style="stop-color:#319AF0"/>
- <stop offset="1" style="stop-color:#1C8FEE"/>
- <a:midPointStop offset="0.0169" style="stop-color:#FFFFFD"/>
- <a:midPointStop offset="0.5" style="stop-color:#FFFFFD"/>
- <a:midPointStop offset="0.1966" style="stop-color:#BDE6FD"/>
- <a:midPointStop offset="0.6441" style="stop-color:#BDE6FD"/>
- <a:midPointStop offset="1" style="stop-color:#1C8FEE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_154_)" a:adobe-knockout="false" d="M171.896,173.116
- c-6.154,15.566-20.271,23.113-31.15,17.179c-10.422-5.688-14.072-21.803-8.499-36.282
- c5.605-14.569,18.756-22.847,29.745-18.235C173.458,140.59,178.084,157.439,171.896,173.116z"/>
- </g>
-
- <linearGradient id="XMLID_155_" gradientUnits="userSpaceOnUse" x1="164.9543" y1="202.2217" x2="149.6072" y2="161.9356" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0.0169" style="stop-color:#FFFFFF"/>
- <stop offset="0.0405" style="stop-color:#FFF8D8"/>
- <stop offset="0.0716" style="stop-color:#FFF0AB"/>
- <stop offset="0.1058" style="stop-color:#FFE982"/>
- <stop offset="0.1424" style="stop-color:#FFE35F"/>
- <stop offset="0.182" style="stop-color:#FFDD41"/>
- <stop offset="0.2257" style="stop-color:#FFD929"/>
- <stop offset="0.2749" style="stop-color:#FFD617"/>
- <stop offset="0.3331" style="stop-color:#FFD40A"/>
- <stop offset="0.4089" style="stop-color:#FFD202"/>
- <stop offset="0.5674" style="stop-color:#FFD200"/>
- <stop offset="1" style="stop-color:#FF8B00"/>
- <a:midPointStop offset="0.0169" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.1657" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.5674" style="stop-color:#FFD200"/>
- <a:midPointStop offset="0.5" style="stop-color:#FFD200"/>
- <a:midPointStop offset="1" style="stop-color:#FF8B00"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_155_)" d="M146.963,187.534c4.335,0.355,8.602-1.261,12.088-3.753
- c2.567-1.832,4.755-4.097,6.448-6.695c0.013-0.017,0.02-0.032,0.032-0.047c0.335-0.515,0.649-1.043,0.947-1.583
- c0.002-0.008,0.007-0.018,0.012-0.026c0.595-1.093,1.106-2.237,1.526-3.425c1.907-5.378,2.463-11.103,1.254-16.71
- c-1.074-4.971-3.68-9.773-7.839-12.81c-1.984-1.447-4.13-2.335-6.593-2.491c-2.774-0.178-5.532,0.516-8.021,1.722
- c-0.292,0.19-0.583,0.382-0.873,0.591c-9.198,6.574-13.717,17.453-13.508,27.301c0.333,5.737,2.45,11.024,6.418,14.594
- C141.177,186.048,143.957,187.287,146.963,187.534z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M152.871,163.726c0.6-3.865-0.522-7.005-2.662-6.849
- c-2.314,0.169-4.753,4.052-5.243,8.456c-0.463,4.194,1.088,6.84,3.284,6.14C150.298,170.817,152.301,167.43,152.871,163.726z"
- />
- <path i:knockout="Off" fill="#1C86EE" d="M162.636,162.831c-0.229-0.074-0.595-0.122-1.02,0.095
- c-1.451,0.724-2.662,4.385-2.89,5.114c-0.319,1.026-1.306,4.479-0.473,5.754c0.22,0.333,0.541,0.539,0.91,0.59
- c0.917,0.124,1.58-0.733,1.997-1.385c0.242-0.378,0.491-0.838,0.734-1.364c0.351-0.751,0.686-1.621,0.961-2.508
- C163.516,167.019,164.369,163.397,162.636,162.831z"/>
-
- <linearGradient id="XMLID_156_" gradientUnits="userSpaceOnUse" x1="157.2424" y1="146.5264" x2="154.0309" y2="160.3349" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#FFFFFF"/>
- <stop offset="0.4169" style="stop-color:#FFFFFD"/>
- <stop offset="0.6466" style="stop-color:#FFFFF5"/>
- <stop offset="0.8302" style="stop-color:#FFFFE7"/>
- <stop offset="0.9894" style="stop-color:#FFFFD4"/>
- <stop offset="1" style="stop-color:#FFFFD2"/>
- <a:midPointStop offset="0" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="0.8136" style="stop-color:#FFFFFF"/>
- <a:midPointStop offset="1" style="stop-color:#FFFFD2"/>
- </linearGradient>
- <path i:knockout="Off" opacity="0.75" fill="url(#XMLID_156_)" d="M141.049,150.84c-3.562,6.513-3.258,7.708,7.139,8.935
- c7.664,1.236,11.396,3.66,15.189,5.776c2.492,1.122,4.064,3.785,5.62,1.77c2.158-3.913,1.6-13.077-3.001-19.51
- C158.905,138.266,146.682,142.015,141.049,150.84z"/>
-
- <linearGradient id="XMLID_157_" gradientUnits="userSpaceOnUse" x1="174.7786" y1="143.7949" x2="142.9488" y2="191.5393" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0.0056" style="stop-color:#1C86EE"/>
- <stop offset="0.3764" style="stop-color:#FCFFFC"/>
- <stop offset="0.437" style="stop-color:#F0F9FB"/>
- <stop offset="0.5465" style="stop-color:#D0E7F9"/>
- <stop offset="0.6924" style="stop-color:#9DCCF6"/>
- <stop offset="0.8669" style="stop-color:#56A6F2"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.0056" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.5" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0.3764" style="stop-color:#FCFFFC"/>
- <a:midPointStop offset="0.5763" style="stop-color:#FCFFFC"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_157_)" d="M171.884,152.011c-1.553-5.683-5.044-10.198-9.621-12.281
- c2.69,1.772,4.894,4.438,6.383,7.697c0.524,1.133,0.966,2.337,1.31,3.598c1.867,6.835,0.87,15.174-2.249,22.22
- c0.136-0.382,0.264-0.767,0.388-1.158c-0.129,0.322-0.261,0.641-0.4,0.953c0.01-0.018,0.02-0.034,0.027-0.051
- c-0.985,2.716-2.309,5.289-3.931,7.549c-4.159,5.805-10.422,9.747-16.525,9.768c6.978,0.854,14.433-3.608,19.244-10.475
- C171.976,172.024,174.278,160.775,171.884,152.011z"/>
-
- <linearGradient id="XMLID_158_" gradientUnits="userSpaceOnUse" x1="187.4504" y1="142.1313" x2="164.2581" y2="156.7162" gradientTransform="matrix(1 0.0046 -0.0046 1 1.194 -1.0432)">
- <stop offset="0" style="stop-color:#CDF0FC"/>
- <stop offset="0.0783" style="stop-color:#C1E9FB"/>
- <stop offset="0.2197" style="stop-color:#A1D6F9"/>
- <stop offset="0.408" style="stop-color:#6EB7F4"/>
- <stop offset="0.6339" style="stop-color:#278DEF"/>
- <stop offset="0.6685" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#CDF0FC"/>
- <a:midPointStop offset="0.5763" style="stop-color:#CDF0FC"/>
- <a:midPointStop offset="0.6685" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_158_)" d="M164.172,141.119c-1.251-1.094-2.555-1.922-4.174-2.326
- c-1.721-0.43-3.498-0.503-5.252-0.271c-2.867,0.38-5.571,1.604-7.956,3.206c2.497-1.214,5.264-1.912,8.048-1.733
- c2.463,0.156,4.609,1.043,6.593,2.491c4.159,3.037,6.765,7.839,7.839,12.81c1.209,5.607,0.653,11.332-1.254,16.71
- c-0.419,1.188-0.931,2.332-1.526,3.425c-0.005,0.008-0.01,0.018-0.012,0.026c-0.298,0.54-0.612,1.069-0.947,1.583
- c-0.012,0.015-0.019,0.03-0.032,0.047c-1.693,2.599-3.881,4.864-6.448,6.695c-3.487,2.492-7.753,4.108-12.088,3.753
- c-3.006-0.247-5.786-1.486-8.109-3.333c-4.351-3.915-6.502-9.888-6.484-16.264c-0.254,7.866,2.438,15.275,8.14,19.584
- c2.119,1.604,4.413,2.494,6.758,2.782c3.801-0.011,7.666-1.546,11.044-4.104c4.957-3.631,8.622-9.341,10.458-14.954
- C171.896,161.679,172.442,148.35,164.172,141.119z"/>
- </g>
- <g>
- <path i:knockout="Off" fill="#1C86EE" d="M374.069,178.561c-0.518-1.209-1.943-1.804-2.892-2.197l0,0
- c-5.054-2.121-10.609-1.918-15.247,0.558c-2.162,1.159-3.67,2.625-4.479,4.36c-1.121,2.403-0.544,4.625,1.627,6.257
- c1.782,1.344,3.916,1.957,5.948,2.472c2.727,0.688,4.185,1.78,4.465,3.334c0.336,1.868-2.13,3.869-3.915,4.377
- c-2.181,0.618-4.308,0.205-5.683-1.104c-0.185-0.176-0.364-0.368-0.558-0.57c-0.627-0.659-1.334-1.405-2.301-1.709
- c-1.347-0.427-2.814,0.161-3.671,0.928c-0.735,0.661-1.07,1.479-0.969,2.361c0.159,1.401,1.395,2.667,2.545,3.305
- c3.47,1.917,8.33,2.054,14.451,0.416c3.881-1.036,8.297-4.134,8.815-8.484c0.578-4.775-4.066-5.914-7.461-6.744
- c-0.476-0.117-0.923-0.225-1.346-0.339c-1.201-0.327-3.317-1.071-3.959-2.365c-0.252-0.51-0.25-1.06,0.008-1.683
- c0.848-2.061,3.841-2.931,5.852-2.302c0.743,0.23,1.438,0.76,2.173,1.318c1.413,1.071,3.013,2.287,5.056,1.076
- C373.666,181.157,374.587,179.784,374.069,178.561z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M347.107,185.276c0.838-2.559,2.233-6.842-0.644-8.913l-0.273,0.378l0.273-0.381
- c-2.172-1.555-5.265-1.475-7.4-1.277c-1.379,0.127-2.694,0.396-3.9,0.8l-0.27,0.09c-1.246,0.419-2.42,0.814-3.707,0.793
- c-0.68-0.012-1.313-0.315-1.98-0.64c-0.314-0.151-0.638-0.307-0.976-0.434c-1.359-0.522-2.783-0.835-4.225-0.938
- c-1.434-0.099-2.77,0.006-3.973,0.318c-0.513,0.132-1.015,0.305-1.498,0.473c-0.822,0.285-1.597,0.554-2.424,0.631
- c-0.888,0.085-1.829-0.053-2.821-0.205c-1.745-0.26-3.555-0.532-5.178,0.471c-2.08,1.279-2.789,3.631-3.419,5.706
- c-0.123,0.414-0.243,0.806-0.373,1.189l-0.715,2.152l-2.154,6.479c0,0-0.567,1.636-0.567,1.636
- c-0.486,1.382-0.987,2.81-1.335,4.26c-0.215,0.915-0.79,3.34,0.968,4.18c1.994,0.954,4.081-0.618,5.264-2.601
- c0.522-0.872,0.831-1.827,1.131-2.751l0.138-0.413l1.44-4.322c0.176-0.522,0.349-1.061,0.512-1.583
- c0.571-1.813,1.164-3.685,2.087-5.318c1.573-2.787,5.328-4.991,8.656-3.695c1.48,0.577,2.222,2.113,1.892,3.915
- c-0.164,0.891-0.488,1.788-0.8,2.656c-0.126,0.348-0.257,0.709-0.375,1.065c0-0.001-1.401,4.227-1.401,4.227l-0.218,0.664
- c-0.337,1.037-0.683,2.111-0.997,3.175c0,0.002-0.031,0.111-0.031,0.111c-0.346,1.185-0.822,2.807-0.093,4.093
- c0.318,0.563,0.837,0.931,1.492,1.067c1.182,0.243,2.59-0.309,3.4-0.923c1.763-1.337,2.485-3.735,3.065-5.657l0.122-0.4
- c0.462-1.524,0.964-3.063,1.45-4.552l1.061-3.292c0.638-2.021,1.592-4.279,3.836-5.688c1.438-0.904,3.823-1.608,5.817-0.617
- c2.174,1.083,1.719,3.6,0.988,5.918c-0.732,2.33-1.563,4.969-2.454,7.511c-0.734,2.092-1.383,4.896-0.317,6.393
- c0.471,0.662,1.208,0.995,2.189,0.99c3.044-0.005,4.46-3.898,5.145-5.767c0.883-2.428,1.67-4.931,2.436-7.353l1.134-3.557
- L347.107,185.276z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M303.573,170.912L303.573,170.912c0.318-0.958,0.758-2.27,0.384-3.487
- c-0.366-1.18-1.568-1.734-3.222-1.482c-1.99,0.3-3.494,1.76-4.475,4.338c-1.388,3.639-2.576,7.433-3.73,11.1l-1.695,5.323
- c0,0.003-2.808,8.527-2.808,8.527c-0.082,0.258-0.195,0.556-0.312,0.873c-0.595,1.588-1.414,3.764-0.416,5.264
- c0.348,0.525,0.886,0.857,1.557,0.962c1.188,0.187,2.64-0.379,3.459-1.033c1.376-1.093,2.119-2.739,2.668-4.206
- c0.347-0.936,0.632-1.902,0.905-2.835l0.382-1.281c0.491-1.585,1.033-3.189,1.559-4.74l0.738-2.202l3.164-9.55L303.573,170.912
- z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M277.81,180.669c0.863-0.629,1.755-1.276,2.476-2.125l-0.358-0.301l0.358,0.3
- c0.911-1.073,0.336-2.331-0.084-3.25c-0.059-0.129-0.115-0.256-0.167-0.375c-0.488-1.143-0.618-2.146-0.382-2.98
- c0.305-1.075,1.21-1.617,2.17-2.19c0.991-0.592,2.014-1.204,2.471-2.429c0.338-0.916,0.052-1.52-0.249-1.865
- c-1.092-1.256-4.009-1.08-4.948-0.874c-2.221,0.493-4.303,1.802-6.188,3.895c-0.698,0.775-1.31,1.65-1.905,2.496
- c-0.859,1.22-1.747,2.484-2.875,3.413c-0.188,0.155-0.389,0.304-0.603,0.463c-0.722,0.538-1.54,1.147-1.945,2.065
- c-0.516,1.162-0.032,2.259,0.392,3.227c0.098,0.223,0.19,0.435,0.269,0.639c0.667,1.755,0.507,3.067-0.026,4.873
- c-0.423,1.43-0.904,2.874-1.368,4.27l-0.203,0.608c-0.263,0.805-0.563,1.617-0.846,2.402c-0.333,0.902-0.674,1.833-0.972,2.765
- l-0.055,0.166c-0.501,1.555-1.433,4.441,0.079,5.865c0.47,0.443,1.09,0.663,1.785,0.636c1.309-0.053,2.718-0.966,3.472-1.796
- c1.068-1.176,1.72-2.629,2.265-4.023c0.805-2.062,1.455-4.212,2.085-6.292c0.416-1.375,0.849-2.802,1.316-4.182
- c0.465-1.36,0.929-2.575,1.902-3.63C276.292,181.769,277.03,181.235,277.81,180.669z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M288.105,181.76c0.083-0.25,0.202-0.528,0.324-0.823
- c0.411-0.992,0.877-2.119,0.693-3.14h0.001c-0.124-0.724-0.484-1.281-1.042-1.606c-1.065-0.62-2.455-0.224-3.004-0.026
- c-1.848,0.672-3.002,1.91-3.743,4.016l-1.5,4.156l-1.475,4.076l-0.869,2.563c-0.484,1.436-0.979,2.921-1.53,4.354l-0.11,0.288
- c-0.532,1.372-1.197,3.081-0.886,4.665c0.171,0.868,0.702,1.497,1.497,1.766c1.273,0.432,2.955-0.13,3.851-0.918
- c1.775-1.576,2.488-3.801,3.173-5.956c0.14-0.436,0.285-0.886,0.436-1.32l1.614-4.665l1.284-3.709L288.105,181.76z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M287.126,170.453l-0.06-0.033c0.801,0.536,1.919,0.518,3.075-0.053
- c1.077-0.531,2.196-1.592,2.273-2.767c0.03-0.476-0.102-1.155-0.915-1.695c-1.119-0.745-2.646-0.381-3.702,0.207
- c-1.235,0.688-2.013,1.726-1.981,2.654C285.834,169.261,286.073,169.956,287.126,170.453z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M263.784,171.393c-0.5-2.365-2.247-4.543-4.795-5.978v0.001
- c-3.849-2.169-9.13-2.466-14.868-0.841c-4.233,1.202-8.194,3.629-11.456,7.019c-3.144,3.269-5.534,7.291-6.912,11.633
- c-1.854,5.821-1.277,11.148,1.578,14.613c3.38,4.106,9.147,4.468,12.279,4.322c5.15-0.246,10.108-2.085,14.349-5.318
- c1.531-1.168,4.385-3.341,4.204-5.813c-0.037-0.514-0.276-0.958-0.692-1.279c-0.674-0.522-1.683-0.627-2.386-0.502
- c-1.226,0.227-2.24,1.058-3.138,1.79l-0.449,0.362c-1.908,1.507-3.986,3.035-6.548,3.733c-2.5,0.678-5.005,0.737-7.057,0.17
- c-5.951-1.649-4.499-9.141-3.911-11.397c1.328-5.108,4.568-9.584,8.658-11.978c3.939-2.302,10.393-2.634,13.36,0.57
- c0.397,0.433,0.725,1.006,1.04,1.56c0.81,1.421,1.727,3.034,4.082,2.331C263.346,175.725,264.317,173.904,263.784,171.393z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M218.376,165.557c-3.85-2.166-9.13-2.463-14.866-0.837
- c-8.435,2.393-15.473,9.535-18.37,18.648c-1.854,5.823-1.276,11.152,1.58,14.616c3.381,4.105,9.145,4.468,12.277,4.32
- c5.189-0.244,10.181-2.105,14.439-5.385c3.166-2.436,7.522-6.221,8.751-10.965c0.56-2.147,0.171-3.742-1.091-4.484
- c-0.788-0.464-1.762-0.532-2.617-0.594c-0.191-0.013-0.373-0.026-0.547-0.044c-1.563-0.15-2.854-0.183-4.066-0.103
- c-3.681,0.245-5.999,1.249-6.891,2.989c-1.021,2.007,0.73,3.055,2.009,3.818c0.6,0.359,1.222,0.73,1.529,1.137
- c0.83,1.084-0.178,2.822-1.055,3.723c-1.199,1.227-2.729,2.139-4.538,2.711c-1.364,0.431-6.073,1.677-9.396-0.416
- c-3.129-1.971-2.963-6.216-2.586-8.572c0.588-3.669,2.018-6.985,4.144-9.583l-0.363-0.296l0.363,0.295
- c1.919-2.348,3.799-3.947,5.751-4.891c2.163-1.048,4.733-1.465,7.433-1.205c1.816,0.175,4.261,0.805,5.594,2.798
- c0.215,0.317,0.393,0.659,0.583,1.02c0.336,0.633,0.683,1.288,1.229,1.834c1.149,1.147,2.866,0.466,3.6,0.174
- c2.104-0.838,2.382-3.322,1.723-5.41C222.328,168.742,220.688,166.86,218.376,165.557z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M374.069,178.561c-0.518-1.209-1.943-1.804-2.892-2.197l0,0
- c-5.054-2.121-10.609-1.918-15.247,0.558c-2.162,1.159-3.67,2.625-4.479,4.36c-1.121,2.403-0.544,4.625,1.627,6.257
- c1.782,1.344,3.916,1.957,5.948,2.472c2.727,0.688,4.185,1.78,4.465,3.334c0.336,1.868-2.13,3.869-3.915,4.377
- c-2.181,0.618-4.308,0.205-5.683-1.104c-0.185-0.176-0.364-0.368-0.558-0.57c-0.627-0.659-1.334-1.405-2.301-1.709
- c-1.347-0.427-2.814,0.161-3.671,0.928c-0.735,0.661-1.07,1.479-0.969,2.361c0.159,1.401,1.395,2.667,2.545,3.305
- c3.47,1.917,8.33,2.054,14.451,0.416c3.881-1.036,8.297-4.134,8.815-8.484c0.578-4.775-4.066-5.914-7.461-6.744
- c-0.476-0.117-0.923-0.225-1.346-0.339c-1.201-0.327-3.317-1.071-3.959-2.365c-0.252-0.51-0.25-1.06,0.008-1.683
- c0.848-2.061,3.841-2.931,5.852-2.302c0.743,0.23,1.438,0.76,2.173,1.318c1.413,1.071,3.013,2.287,5.056,1.076
- C373.666,181.157,374.587,179.784,374.069,178.561z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M347.107,185.276c0.838-2.559,2.233-6.842-0.644-8.913v-0.003
- c-2.172-1.555-5.265-1.475-7.4-1.277c-1.379,0.127-2.694,0.396-3.9,0.8l-0.27,0.09c-1.246,0.419-2.42,0.814-3.707,0.793
- c-0.68-0.012-1.313-0.315-1.98-0.64c-0.314-0.151-0.638-0.307-0.976-0.434c-1.359-0.522-2.783-0.835-4.225-0.938
- c-1.434-0.099-2.77,0.006-3.973,0.318c-0.513,0.132-1.015,0.305-1.498,0.473c-0.822,0.285-1.597,0.554-2.424,0.631
- c-0.888,0.085-1.829-0.053-2.821-0.205c-1.745-0.26-3.555-0.532-5.178,0.471c-2.08,1.279-2.789,3.631-3.419,5.706
- c-0.123,0.414-0.243,0.806-0.373,1.189l-0.715,2.152l-2.154,6.479c0,0-0.567,1.636-0.567,1.636
- c-0.486,1.382-0.987,2.81-1.335,4.26c-0.215,0.915-0.79,3.34,0.968,4.18c1.994,0.954,4.081-0.618,5.264-2.601
- c0.522-0.872,0.831-1.827,1.131-2.751l0.138-0.413l1.44-4.322c0.176-0.522,0.349-1.061,0.512-1.583
- c0.571-1.813,1.164-3.685,2.087-5.318c1.573-2.787,5.328-4.991,8.656-3.695c1.48,0.577,2.222,2.113,1.892,3.915
- c-0.164,0.891-0.488,1.788-0.8,2.656c-0.126,0.348-0.257,0.709-0.375,1.065c0-0.001-1.401,4.227-1.401,4.227l-0.218,0.664
- c-0.337,1.037-0.683,2.111-0.997,3.175c0,0.002-0.031,0.111-0.031,0.111c-0.346,1.185-0.822,2.807-0.093,4.093
- c0.318,0.563,0.837,0.931,1.492,1.067c1.182,0.243,2.59-0.309,3.4-0.923c1.763-1.337,2.485-3.735,3.065-5.657l0.122-0.4
- c0.462-1.524,0.964-3.063,1.45-4.552l1.061-3.292c0.638-2.021,1.592-4.279,3.836-5.688c1.438-0.904,3.823-1.608,5.817-0.617
- c2.174,1.083,1.719,3.6,0.988,5.918c-0.732,2.33-1.563,4.969-2.454,7.511c-0.734,2.092-1.383,4.896-0.317,6.393
- c0.471,0.662,1.208,0.995,2.189,0.99c3.044-0.005,4.46-3.898,5.145-5.767c0.883-2.428,1.67-4.931,2.436-7.353l1.134-3.557
- L347.107,185.276z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M303.573,170.912L303.573,170.912c0.318-0.958,0.758-2.27,0.384-3.487
- c-0.366-1.18-1.568-1.734-3.222-1.482c-1.99,0.3-3.494,1.76-4.475,4.338c-1.388,3.639-2.576,7.433-3.73,11.1l-1.695,5.323
- c0,0.003-2.808,8.527-2.808,8.527c-0.082,0.258-0.195,0.556-0.312,0.873c-0.595,1.588-1.414,3.764-0.416,5.264
- c0.348,0.525,0.886,0.857,1.557,0.962c1.188,0.187,2.64-0.379,3.459-1.033c1.376-1.093,2.119-2.739,2.668-4.206
- c0.347-0.936,0.632-1.902,0.905-2.835l0.382-1.281c0.491-1.585,1.033-3.189,1.559-4.74l0.738-2.202l3.164-9.55L303.573,170.912
- z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M277.81,180.669c0.863-0.629,1.755-1.276,2.476-2.125v-0.001
- c0.911-1.073,0.336-2.331-0.084-3.25c-0.059-0.129-0.115-0.256-0.167-0.375c-0.488-1.143-0.618-2.146-0.382-2.98
- c0.305-1.075,1.21-1.617,2.17-2.19c0.991-0.592,2.014-1.204,2.471-2.429c0.338-0.916,0.052-1.52-0.249-1.865
- c-1.092-1.256-4.009-1.08-4.948-0.874c-2.221,0.493-4.303,1.802-6.188,3.895c-0.698,0.775-1.31,1.65-1.905,2.496
- c-0.859,1.22-1.747,2.484-2.875,3.413c-0.188,0.155-0.389,0.304-0.603,0.463c-0.722,0.538-1.54,1.147-1.945,2.065
- c-0.516,1.162-0.032,2.259,0.392,3.227c0.098,0.223,0.19,0.435,0.269,0.639c0.667,1.755,0.507,3.067-0.026,4.873
- c-0.423,1.43-0.904,2.874-1.368,4.27l-0.203,0.608c-0.263,0.805-0.563,1.617-0.846,2.402c-0.333,0.902-0.674,1.833-0.972,2.765
- l-0.055,0.166c-0.501,1.555-1.433,4.441,0.079,5.865c0.47,0.443,1.09,0.663,1.785,0.636c1.309-0.053,2.718-0.966,3.472-1.796
- c1.068-1.176,1.72-2.629,2.265-4.023c0.805-2.062,1.455-4.212,2.085-6.292c0.416-1.375,0.849-2.802,1.316-4.182
- c0.465-1.36,0.929-2.575,1.902-3.63C276.292,181.769,277.03,181.235,277.81,180.669z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M288.105,181.76c0.083-0.25,0.202-0.528,0.324-0.823
- c0.411-0.992,0.877-2.119,0.693-3.14h0.001c-0.124-0.724-0.484-1.281-1.042-1.606c-1.065-0.62-2.455-0.224-3.004-0.026
- c-1.848,0.672-3.002,1.91-3.743,4.016l-1.5,4.156l-1.475,4.076l-0.869,2.563c-0.484,1.436-0.979,2.921-1.53,4.354l-0.11,0.288
- c-0.532,1.372-1.197,3.081-0.886,4.665c0.171,0.868,0.702,1.497,1.497,1.766c1.273,0.432,2.955-0.13,3.851-0.918
- c1.775-1.576,2.488-3.801,3.173-5.956c0.14-0.436,0.285-0.886,0.436-1.32l1.614-4.665l1.284-3.709L288.105,181.76z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M287.126,170.453l-0.06-0.033c0.801,0.536,1.919,0.518,3.075-0.053
- c1.077-0.531,2.196-1.592,2.273-2.767c0.03-0.476-0.102-1.155-0.915-1.695c-1.119-0.745-2.646-0.381-3.702,0.207
- c-1.235,0.688-2.013,1.726-1.981,2.654C285.834,169.261,286.073,169.956,287.126,170.453z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M263.784,171.393c-0.5-2.365-2.247-4.543-4.795-5.978v0.001
- c-3.849-2.169-9.13-2.466-14.868-0.841c-4.233,1.202-8.194,3.629-11.456,7.019c-3.144,3.269-5.534,7.291-6.912,11.633
- c-1.854,5.821-1.277,11.148,1.578,14.613c3.38,4.106,9.147,4.468,12.279,4.322c5.15-0.246,10.108-2.085,14.349-5.318
- c1.531-1.168,4.385-3.341,4.204-5.813c-0.037-0.514-0.276-0.958-0.692-1.279c-0.674-0.522-1.683-0.627-2.386-0.502
- c-1.226,0.227-2.24,1.058-3.138,1.79l-0.449,0.362c-1.908,1.507-3.986,3.035-6.548,3.733c-2.5,0.678-5.005,0.737-7.057,0.17
- c-5.951-1.649-4.499-9.141-3.911-11.397c1.328-5.108,4.568-9.584,8.658-11.978c3.939-2.302,10.393-2.634,13.36,0.57
- c0.397,0.433,0.725,1.006,1.04,1.56c0.81,1.421,1.727,3.034,4.082,2.331C263.346,175.725,264.317,173.904,263.784,171.393z"/>
- <path i:knockout="Off" fill="#1C86EE" d="M218.376,165.557c-3.85-2.166-9.13-2.463-14.866-0.837
- c-8.435,2.393-15.473,9.535-18.37,18.648c-1.854,5.823-1.276,11.152,1.58,14.616c3.381,4.105,9.145,4.468,12.277,4.32
- c5.189-0.244,10.181-2.105,14.439-5.385c3.166-2.436,7.522-6.221,8.751-10.965c0.56-2.147,0.171-3.742-1.091-4.484
- c-0.788-0.464-1.762-0.532-2.617-0.594c-0.191-0.013-0.373-0.026-0.547-0.044c-1.563-0.15-2.854-0.183-4.066-0.103
- c-3.681,0.245-5.999,1.249-6.891,2.989c-1.021,2.007,0.73,3.055,2.009,3.818c0.6,0.359,1.222,0.73,1.529,1.137
- c0.83,1.084-0.178,2.822-1.055,3.723c-1.199,1.227-2.729,2.139-4.538,2.711c-1.364,0.431-6.073,1.677-9.396-0.416
- c-3.129-1.971-2.963-6.216-2.586-8.572c0.588-3.669,2.018-6.985,4.144-9.583l-0.363-0.296l0.363,0.295
- c1.919-2.348,3.799-3.947,5.751-4.891c2.163-1.048,4.733-1.465,7.433-1.205c1.816,0.175,4.261,0.805,5.594,2.798
- c0.215,0.317,0.393,0.659,0.583,1.02c0.336,0.633,0.683,1.288,1.229,1.834c1.149,1.147,2.866,0.466,3.6,0.174
- c2.104-0.838,2.382-3.322,1.723-5.41C222.328,168.742,220.688,166.86,218.376,165.557z"/>
-
- <linearGradient id="XMLID_159_" gradientUnits="userSpaceOnUse" x1="365.386" y1="171.939" x2="344.2614" y2="240.946" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_159_)" d="M359.018,181.556c0.949-2.313,4.176-3.272,6.421-2.571
- c2.354,0.732,4.128,4.052,6.852,2.441c0.854-0.505,1.794-1.634,1.348-2.683c-0.435-1.008-1.702-1.561-2.639-1.948
- c-4.786-2.01-10.259-1.912-14.848,0.538c-1.771,0.949-3.412,2.29-4.278,4.146c-1.052,2.253-0.464,4.222,1.485,5.688
- c1.706,1.285,3.739,1.875,5.782,2.392c0.822,0.207,1.726,0.503,2.54,0.938c3.183-0.361,6.069-0.898,8.662-1.623
- c-1.773-1.543-4.819-2.036-7.065-2.646C361.214,185.67,357.886,184.306,359.018,181.556z"/>
-
- <linearGradient id="XMLID_160_" gradientUnits="userSpaceOnUse" x1="332.6799" y1="161.3398" x2="311.5294" y2="230.4315" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_160_)" d="M346.19,176.741c-1.972-1.413-4.771-1.407-7.085-1.193
- c-1.288,0.118-2.566,0.37-3.795,0.779c-1.364,0.456-2.669,0.93-4.135,0.906c-1.128-0.019-2.087-0.716-3.11-1.104
- c-1.31-0.502-2.694-0.809-4.093-0.907c-1.272-0.089-2.581-0.018-3.821,0.303c-1.347,0.347-2.599,0.985-3.993,1.119
- c-2.551,0.244-5.455-1.25-7.801,0.198c-2.307,1.42-2.799,4.262-3.594,6.646c-0.255,0.77-0.51,1.536-0.763,2.305
- c1.946,0.332,3.863,0.65,5.77,0.95c0.271-0.656,0.565-1.295,0.911-1.911c1.718-3.05,5.729-5.265,9.233-3.901
- c1.829,0.714,2.521,2.577,2.179,4.434c-0.189,1.035-0.569,2.04-0.929,3.039c2.079,0.272,4.121,0.521,6.127,0.747
- c0.193-0.593,0.389-1.183,0.576-1.776c0.755-2.402,1.832-4.563,4.029-5.943c1.803-1.132,4.296-1.623,6.274-0.638
- c2.585,1.285,1.929,4.247,1.227,6.475c-0.306,0.971-0.612,1.938-0.925,2.902c2.224,0.15,4.383,0.266,6.479,0.339
- c0.567-1.771,1.115-3.544,1.691-5.308C347.444,182.748,348.816,178.631,346.19,176.741z"/>
-
- <linearGradient id="XMLID_161_" gradientUnits="userSpaceOnUse" x1="305.2522" y1="152.4683" x2="283.8183" y2="222.4857" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_161_)" d="M303.511,167.562c-0.36-1.168-1.658-1.318-2.708-1.16
- c-2.174,0.331-3.378,2.125-4.105,4.043c-1.647,4.329-3.001,8.8-4.402,13.228c2.078,0.396,4.143,0.781,6.18,1.15
- c1.551-4.686,3.104-9.371,4.657-14.06C303.464,169.768,303.835,168.61,303.511,167.562z"/>
-
- <linearGradient id="XMLID_162_" gradientUnits="userSpaceOnUse" x1="282.7883" y1="146.2827" x2="261.7765" y2="214.9215" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_162_)" d="M279.927,178.243c0.826-0.975,0.095-2.17-0.32-3.141
- c-0.439-1.024-0.714-2.195-0.402-3.291c0.683-2.417,3.825-2.43,4.651-4.655c0.899-2.427-3.341-2.408-4.659-2.118
- c-2.379,0.526-4.335,1.965-5.941,3.75c-1.693,1.88-2.862,4.337-4.831,5.957c-0.851,0.697-1.952,1.309-2.418,2.357
- c-0.159,0.36-0.194,0.717-0.163,1.073c3.784,0.841,7.536,1.658,11.248,2.442C278.087,179.879,279.129,179.187,279.927,178.243z
- "/>
-
- <linearGradient id="XMLID_163_" gradientUnits="userSpaceOnUse" x1="294.2581" y1="149.7964" x2="273.247" y2="218.4326" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_163_)" d="M288.667,177.878c-0.3-1.753-2.064-1.77-3.43-1.273
- c-1.848,0.669-2.814,1.892-3.462,3.73c-0.136,0.391-0.282,0.781-0.419,1.171c1.991,0.41,3.965,0.805,5.93,1.195
- c0.127-0.365,0.251-0.729,0.375-1.092C288.038,180.528,288.873,179.048,288.667,177.878z"/>
-
- <linearGradient id="XMLID_164_" gradientUnits="userSpaceOnUse" x1="294.8293" y1="149.333" x2="273.1385" y2="220.19" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_164_)" d="M291.243,166.296c-2.219-1.479-7.096,2.231-3.918,3.736
- C289.356,171.395,293.643,167.891,291.243,166.296z"/>
-
- <linearGradient id="XMLID_165_" gradientUnits="userSpaceOnUse" x1="257.8372" y1="137.8828" x2="236.4768" y2="207.6601" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_165_)" d="M242.406,171.526c3.845-2.247,10.615-2.931,13.935,0.658
- c1.487,1.604,1.817,4.604,4.648,3.759c2.125-0.636,2.779-2.368,2.34-4.456c-0.527-2.486-2.408-4.449-4.566-5.666
- c-4.369-2.46-9.845-2.12-14.514-0.796c-4.294,1.217-8.162,3.684-11.25,6.893c-1.124,1.173-2.15,2.446-3.067,3.792
- c2.661-0.205,5.331-0.341,8.002-0.394C239.215,173.815,240.714,172.516,242.406,171.526z"/>
-
- <linearGradient id="XMLID_166_" gradientUnits="userSpaceOnUse" x1="220.092" y1="126.3511" x2="198.8581" y2="195.7153" gradientTransform="matrix(1 -0.0016 0.0016 1 -0.2417 0.4947)">
- <stop offset="0" style="stop-color:#F7FFFF"/>
- <stop offset="0.1124" style="stop-color:#D9E8ED"/>
- <stop offset="1" style="stop-color:#1C86EE"/>
- <a:midPointStop offset="0" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.5" style="stop-color:#F7FFFF"/>
- <a:midPointStop offset="0.1124" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="0.5" style="stop-color:#D9E8ED"/>
- <a:midPointStop offset="1" style="stop-color:#1C86EE"/>
- </linearGradient>
- <path i:knockout="Off" fill="url(#XMLID_166_)" d="M202.628,171.224c2.365-1.145,5.081-1.499,7.681-1.248
- c2.254,0.217,4.628,1.04,5.939,3.001c0.608,0.912,0.968,1.997,1.755,2.782c0.843,0.846,2.133,0.456,3.095,0.073
- c1.95-0.775,1.994-3.115,1.453-4.837c-0.691-2.197-2.432-3.919-4.403-5.03c-4.367-2.459-9.84-2.12-14.513-0.797
- c-8.675,2.462-15.359,9.874-18.052,18.339c-0.124,0.4-0.238,0.807-0.346,1.218c2.617-0.811,5.346-1.61,8.161-2.383
- c0.751-2.209,1.853-4.303,3.32-6.103C198.358,174.236,200.281,172.357,202.628,171.224z"/>
- </g>
- </g>
- </g>
- </g>
-</switch>
-<i:pgf id="adobe_illustrator_pgf">
- <![CDATA[
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
+
+<svg
+ xmlns:ns1="http://ns.adobe.com/AdobeIllustrator/10.0/"
+ xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
+ xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/"
+ xmlns:xapGImg="http://ns.adobe.com/xap/1.0/g/img/"
+ xmlns:xap="http://ns.adobe.com/xap/1.0/"
+ xmlns:x="adobe:ns:meta/"
+ 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:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.1"
+ ns1:viewOrigin="-192 208"
+ ns1:rulerOrigin="0 0"
+ ns1:pageBounds="0 16 16 0"
+ width="401"
+ height="401"
+ viewBox="0 0 401 401"
+ overflow="visible"
+ enable-background="new 0 0 401 401"
+ xml:space="preserve"
+ id="svg2"
+ inkscape:version="0.91 r13725"
+ sodipodi:docname="Peri_main_logo.svg"><defs
+ id="defs1361"><linearGradient
+ id="XMLID_84_"
+ gradientUnits="userSpaceOnUse"
+ x1="464.9299"
+ y1="-455.522"
+ x2="289.7179"
+ y2="-477.10641"
+ gradientTransform="matrix(1,0.0046,0.0046,-1,-289.3605,-205.7951)"><stop
+ offset="0.0056"
+ style="stop-color:#FFFFFF"
+ id="stop17" /><stop
+ offset="0.3072"
+ style="stop-color:#ECF2F9"
+ id="stop19" /><stop
+ offset="0.9175"
+ style="stop-color:#BAD2EA"
+ id="stop21" /><stop
+ offset="1"
+ style="stop-color:#B3CDE8"
+ id="stop23" /><a:midPointStop
+ offset="0.0056"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.3072"
+ style="stop-color:#ECF2F9" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#ECF2F9" /><a:midPointStop
+ offset="0.9175"
+ style="stop-color:#BAD2EA" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#BAD2EA" /><a:midPointStop
+ offset="1"
+ style="stop-color:#B3CDE8" /></linearGradient><linearGradient
+ inkscape:collect="always"
+ xlink:href="#XMLID_142_"
+ id="linearGradient9815"
+ x1="210.2579"
+ y1="116.09147"
+ x2="387.99854"
+ y2="116.09147"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-40.249662,99.122288)" /></defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1873"
+ inkscape:window-height="954"
+ id="namedview1359"
+ showgrid="false"
+ showguides="false"
+ inkscape:zoom="1.6646105"
+ inkscape:cx="219.84292"
+ inkscape:cy="294.47704"
+ inkscape:window-x="0"
+ inkscape:window-y="64"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><metadata
+ id="metadata4"><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?><x:xmpmeta
+ x:xmptk="3.1.1-111"><metadata><rdf:RDF><rdf:Description
+ rdf:about=""><dc:format>image/svg+xml</dc:format></rdf:Description><rdf:Description
+ rdf:about=""><xap:CreatorTool>Adobe Illustrator CS2</xap:CreatorTool><xap:CreateDate>2005-11-07T17:36:23+01:00</xap:CreateDate><xap:ModifyDate>2005-11-07T17:36:23+01:00</xap:ModifyDate><xap:MetadataDate>2005-11-07T17:36:23+01:00</xap:MetadataDate><xap:Thumbnails><rdf:Alt><rdf:li
+ rdf:parseType="Resource"><xapGImg:width>256</xapGImg:width><xapGImg:height>256</xapGImg:height><xapGImg:format>JPEG</xapGImg:format><xapGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
+AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
+DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
+Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER
+AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
+AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
+UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
+1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
+qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
+obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
+0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
++DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7
+FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F
+XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX
+Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY
+q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
+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
+wG3COqcfc1p7Vrm37I12efoI4x3np8XSdvdm6bH64ngl/NA2PuG1efTyY9+XXkC58wX8d5eRMmiw
+Nyldqr6xU/3aHwqPiI6fPM7tTtIYI8MT+8P2ef6nW9jdjy1MhKY/dDn5+Q/T+t79nEPozsVdirsV
+dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVSnV/Kfl3WLu
+C81KxS5uLcUidy1KA8qMoIVxXswOZWDW5cUTGEqBcHU9m4M8xPJHilH8b948imkUUUMSRRIscUah
+Y41AVVVRQAAbAAZjEkmzzcyMREAAUAuwMnYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq
+7FXYq7FXYq7FXYq7FXYqhX1SzQkc+RHgCcmMZYHIFP8AS9t2Vz9A/rh8Mo8UO/SsR6I34Y+GV8QL
+hqSH9g/fg4F8RcNQQ/sHHgTxrxexnsfwwcKeJcLmI+IwcKeJUV1boa4KS3irsVdirsVdirsVdirs
+VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVU3t4JDV41Y+JArhEigxCmdPsz/uofQSP1HD
+xlHAGv0dadkP3nDxlHAG/wBH247H78HGV4A2LKAdj9+PEU8AXC1hH7P4nHiKeELhDEOi4LWl4AHQ
+UwJdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir
+sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs
+VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV
+dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd
+irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi
+rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir
+sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs
+VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsV
+dirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVd
+irsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdi
+rsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir
+sVdirsVdirsVdirsVdir/9k=</xapGImg:image></rdf:li></rdf:Alt></xap:Thumbnails></rdf:Description><rdf:Description
+ rdf:about=""><xapMM:DocumentID>uuid:0D242DA2AC4FDA11B312AE4ADC8A7260</xapMM:DocumentID><xapMM:InstanceID>uuid:0E242DA2AC4FDA11B312AE4ADC8A7260</xapMM:InstanceID></rdf:Description><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></x:xmpmeta><?xpacket end="w"?></metadata><g
+ id="Calque_1"
+ ns1:layer="yes"
+ ns1:editable="no"
+ ns1:dimmedPercent="50"
+ ns1:rgbTrio="#4F008000FFFF"><rect
+ x="0.5"
+ y="0.5"
+ width="400"
+ height="400"
+ id="rect11"
+ style="fill:none;stroke:#ffffff" /></g><path
+ d="m 132.352,262.551 c -0.012,2.467 -21.148,4.367 -47.21,4.246 -26.062,-0.119 -47.18,-2.217 -47.168,-4.684 0.011,-2.465 21.148,-4.367 47.209,-4.246 26.061,0.119 47.18,2.218 47.169,4.684 z"
+ id="path25"
+ style="fill:url(#XMLID_84_)"
+ inkscape:connector-curvature="0" /><g
+ id="g27"
+ inkscape:export-filename="/home/tian/Images/GCstar/HeaderAndroid.png"
+ inkscape:export-xdpi="266.62347"
+ inkscape:export-ydpi="266.62347"
+ transform="matrix(0.77452222,0,0,0.77452222,103.32079,210.07056)"><path
+ ns1:knockout="Off"
+ d="m 382.129,194.818 c -0.992,-0.993 -2.266,-1.519 -3.683,-1.519 -1.016,0 -1.948,0.281 -2.759,0.803 0.052,-0.266 0.105,-0.531 0.138,-0.805 0.443,-3.673 -0.979,-6.05 -2.966,-7.64 0.496,-0.16 1.005,-0.387 1.528,-0.697 2.944,-1.732 4.224,-5.028 3.029,-7.834 -1.1,-2.572 -3.624,-3.624 -4.839,-4.127 -6.059,-2.543 -12.757,-2.287 -18.363,0.707 -1.276,0.684 -2.379,1.47 -3.321,2.341 -0.437,-0.839 -1.059,-1.624 -1.913,-2.322 l -0.15,-0.151 c -0.003,-0.001 -0.246,-0.175 -0.246,-0.175 -3.16,-2.265 -7.138,-2.194 -9.854,-1.945 -1.664,0.154 -3.25,0.48 -4.724,0.972 0.006,-10e-4 -0.263,0.088 -0.263,0.088 -0.935,0.314 -1.729,0.576 -2.373,0.6 -0.152,-0.062 -0.398,-0.181 -0.577,-0.267 -0.349,-0.168 -0.782,-0.379 -1.283,-0.567 -1.665,-0.637 -3.439,-1.031 -5.246,-1.159 -1.841,-0.127 -3.566,0.015 -5.144,0.425 -0.665,0.171 -1.284,0.387 -1.785,0.561 -0.64,0.22 -1.181,0.407 -1.568,0.444 -0.457,0.044 -1.206,-0.069 -1.932,-0.18 -1.948,-0.291 -4.549,-0.655 -7.141,0.711 0.2,-0.6 0.337,-1.019 0.335,-1.016 l 0.002,-0.008 c 0.396,-1.18 1.129,-3.378 0.407,-5.71 -0.903,-2.919 -3.816,-4.531 -7.25,-4.008 -1.454,0.22 -3.237,0.865 -4.82,2.506 -0.434,-0.769 -1.052,-1.444 -1.854,-1.976 -1.959,-1.303 -4.627,-1.34 -7.063,-0.147 -2.898,-2.799 -8.086,-1.713 -8.138,-1.701 -2.988,0.662 -5.713,2.35 -8.115,5.016 -0.836,0.927 -1.536,1.924 -2.151,2.802 -0.299,0.423 -0.585,0.819 -0.864,1.195 -0.86,-3.145 -3.153,-5.964 -6.404,-7.795 l 0.002,0.002 c -4.699,-2.65 -10.969,-3.066 -17.653,-1.173 -4.856,1.378 -9.38,4.144 -13.091,8 -1.12,1.165 -2.144,2.423 -3.085,3.743 -0.002,-0.98 -0.152,-2.006 -0.48,-3.051 -0.946,-2.998 -3.185,-5.618 -6.307,-7.38 -4.703,-2.646 -10.971,-3.06 -17.649,-1.168 -9.6,2.723 -17.588,10.789 -20.851,21.051 -2.234,7.024 -1.416,13.599 2.244,18.038 4.392,5.332 11.449,5.824 15.265,5.642 5.93,-0.277 11.632,-2.402 16.484,-6.139 1.841,-1.416 4.039,-3.252 5.949,-5.485 0.56,2.188 1.534,4.166 2.911,5.837 4.391,5.33 11.446,5.825 15.266,5.646 5.89,-0.281 11.556,-2.375 16.385,-6.059 0.637,-0.487 1.499,-1.147 2.36,-1.97 -0.337,2.125 -0.206,4.698 1.823,6.607 1.183,1.111 2.753,1.69 4.426,1.623 2.536,-0.102 4.772,-1.61 6.026,-2.989 0.316,-0.349 0.593,-0.714 0.855,-1.084 0.617,1.684 1.92,2.989 3.636,3.568 2.76,0.941 5.786,-0.19 7.426,-1.637 0.429,-0.378 0.796,-0.783 1.14,-1.193 0.116,0.24 0.249,0.483 0.407,0.719 0.908,1.373 2.34,2.279 4.027,2.543 2.508,0.39 4.961,-0.719 6.298,-1.791 0.622,-0.492 1.145,-1.053 1.597,-1.633 0.674,1.559 1.854,2.396 2.757,2.831 3.46,1.656 7.563,0.003 9.964,-4.022 0.727,-1.216 1.135,-2.466 1.46,-3.472 0.002,-0.009 0.141,-0.422 0.141,-0.422 -0.005,0.016 1.434,-4.307 1.434,-4.307 0.164,-0.49 0.341,-1.033 0.531,-1.648 0.515,-1.621 1.045,-3.305 1.785,-4.614 0.723,-1.282 2.437,-2.394 3.775,-2.177 -0.114,0.588 -0.373,1.314 -0.629,2.022 -0.123,0.34 -0.265,0.735 -0.399,1.135 l 0.073,0.012 c -0.286,0.646 -0.531,1.366 -0.782,2.124 l -0.702,2.114 c -0.003,0.013 -0.221,0.677 -0.221,0.677 -0.317,0.979 -0.69,2.13 -1.027,3.272 l -0.149,0.505 0,0.02 c -0.459,1.639 -0.995,4.134 0.349,6.506 0.843,1.488 2.236,2.495 3.928,2.844 2.467,0.51 4.897,-0.49 6.347,-1.596 2.698,-2.045 3.688,-5.325 4.344,-7.496 -0.002,0.002 0.119,-0.398 0.119,-0.398 0.435,-1.424 0.908,-2.881 1.368,-4.291 l 0.063,-0.193 c 0.004,-0.012 1.063,-3.304 1.063,-3.304 0.538,-1.708 1.132,-2.983 2.305,-3.718 0.512,-0.322 1.243,-0.559 1.801,-0.536 -0.045,0.328 -0.153,0.847 -0.41,1.658 0.004,-0.003 -0.041,0.135 -0.041,0.135 -0.714,2.261 -1.524,4.826 -2.377,7.265 -1.499,4.281 -1.449,7.458 0.155,9.712 1.164,1.637 3.003,2.533 5.177,2.521 2.955,-0.005 4.942,-1.676 6.289,-3.574 0.764,0.866 1.649,1.558 2.496,2.029 4.323,2.388 10.096,2.638 17.16,0.747 3.296,-0.879 6.737,-2.86 9.002,-5.737 0.144,1.13 0.633,2.182 1.455,3.004 0.986,0.986 2.284,1.529 3.654,1.529 1.377,0 2.687,-0.544 3.687,-1.532 0.964,-0.95 1.495,-2.247 1.495,-3.65 -0.002,-1.397 -0.534,-2.698 -1.501,-3.664 z"
+ id="path29"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff" /><path
+ ns1:knockout="Off"
+ d="m 137.419,202.284 c 0.012,0.025 0.019,0.053 0.031,0.078 0.008,0.016 0.021,0.031 0.029,0.051 l -0.06,-0.129 z"
+ id="path31"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff" /><path
+ ns1:knockout="Off"
+ d="m 172.476,136.879 -0.01,-0.01 -0.007,-0.009 c -0.003,-0.001 -0.012,-0.013 -0.018,-0.017 -0.307,-0.407 -0.639,-0.819 -1.039,-1.286 -2.015,-2.348 -4.362,-4.217 -6.967,-5.568 l 0.067,0.035 -0.207,-0.126 c -0.005,-0.002 -0.032,-0.014 -0.066,-0.029 -0.063,-0.038 -0.129,-0.077 -0.226,-0.127 -0.187,-0.098 -0.359,-0.178 -0.497,-0.244 -0.061,-0.027 -0.116,-0.054 -0.158,-0.075 l -0.013,-0.006 c -0.125,-0.06 -0.138,-0.066 -0.138,-0.066 l -0.1,-0.049 c -0.093,-0.049 -0.246,-0.132 -0.441,-0.217 l -0.078,-0.034 c -0.116,-0.046 -0.195,-0.076 -0.195,-0.076 l -0.034,-0.013 c -1.978,-0.85 -4.147,-1.408 -6.378,-1.627 -2.538,-0.282 -5.249,-0.133 -8.012,0.451 -0.076,0.016 -0.371,0.078 -0.371,0.078 -0.114,0.023 -0.262,0.062 -0.387,0.088 l -1.649,-0.15 -0.247,-0.039 c -1.03,-0.165 -2.025,-0.29 -2.958,-0.369 -13.499,-1.652 -31.593,1.844 -40.393,27.953 -0.722,2.144 -2.493,7.979 -4.733,15.367 l -2.848,9.363 c -9.089,0.619 -15.507,2.667 -19.093,6.104 -1.508,1.314 -2.433,3.182 -2.534,5.167 -0.028,0.561 0.034,1.132 0.149,1.723 0.405,3.66 3.474,6.563 7.207,6.778 2.252,0.132 4.439,-0.712 6.002,-2.313 l 0.079,-0.064 c -0.068,0.072 -0.112,0.105 -0.113,0.106 0.267,-0.199 1.246,-0.629 3.218,-1.06 -0.076,0.244 -0.338,1.074 -0.338,1.074 l -1.156,3.656 -0.056,-0.111 c 0.005,-0.016 -2.783,8.315 -2.783,8.315 l -0.299,0.893 -0.09,0.271 c 0.017,-0.047 -0.049,0.142 -0.049,0.142 l -0.596,1.711 0.015,0.023 c -0.514,1.5 -0.709,1.998 -0.781,2.159 -0.521,1.124 -1.351,2.135 -2.405,2.926 -1.049,0.763 -2.435,1.394 -4.193,1.899 l -0.563,0.155 c -1.674,0.457 -4.205,1.144 -5.874,3.504 -1.94,2.755 -1.774,6.442 0.397,8.966 1.95,2.276 5.118,3.228 8.473,2.543 2.214,-0.45 4.518,-1.197 6.846,-2.226 0.004,0 0.222,-0.099 0.222,-0.099 0.842,-0.371 1.734,-0.77 2.623,-1.252 0.404,0.377 0.825,0.734 1.264,1.075 -0.85,1.118 -1.378,2.436 -1.519,3.831 -0.204,2.029 0.392,4.006 1.675,5.571 1.268,1.545 3.057,2.504 5.038,2.696 1.297,0.134 2.624,-0.084 3.823,-0.634 l -0.02,0.04 c 4.696,-2.093 8.683,-4.902 11.849,-8.358 1.53,-1.721 2.89,-3.618 4.083,-5.681 l -0.048,-0.035 c 0.219,-0.309 0.422,-0.62 0.596,-0.943 1.171,-2.165 2.154,-4.488 2.921,-6.9 l 0.324,-1.018 0.056,-0.021 c 0.118,-0.034 0.683,-1.813 0.683,-1.813 l 0.023,-0.075 2.144,-6.741 0.006,0.004 c 0.004,0 1.072,-3.381 1.072,-3.381 0.032,-0.1 0.065,-0.194 0.097,-0.293 0.198,0.256 0.36,0.483 0.522,0.715 0.359,0.515 0.766,1.097 1.452,1.761 2.832,2.741 6.75,3.37 9.785,1.594 l -0.042,0.029 c 0.031,-0.016 0.051,-0.031 0.081,-0.049 0.013,-0.009 0.028,-0.013 0.042,-0.02 l 0.382,-0.231 0.094,-0.095 c 0.011,-0.006 0.028,-0.018 0.036,-0.023 0.205,-0.137 0.456,-0.304 0.737,-0.555 2.534,-2.259 3.174,-5.932 1.611,-9.156 -0.468,-1.027 -1.11,-1.945 -1.919,-2.729 -0.076,-0.076 -0.146,-0.129 -0.221,-0.195 -0.31,-0.36 -0.632,-0.732 -0.984,-1.124 -0.45,-0.516 -1.005,-1.139 -1.64,-1.819 0.083,0.007 0.167,0.021 0.25,0.031 0.639,0.363 1.265,0.697 1.89,0.981 2.786,1.269 5.753,1.987 8.823,2.14 0.046,0.002 0.138,0.006 0.138,0.006 l 0.206,0.011 c 0.12,0.008 0.29,0.011 0.44,0.014 4.102,0.101 8.095,-0.795 11.998,-2.663 0.223,-0.104 0.423,-0.218 0.569,-0.3 0.052,-0.03 0.108,-0.061 0.135,-0.075 0.523,-0.26 1.099,-0.568 1.66,-0.891 8.19,-4.73 14.806,-13.263 18.146,-23.411 4.192,-12.732 2.521,-26.267 -4.359,-35.322 l -0.104,-0.136 z"
+ id="path33"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff" /><path
+ ns1:knockout="Off"
+ d="m 75.22,186.231 c 0.019,-0.02 0.042,-0.035 0.062,-0.052 0.056,-0.048 0.106,-0.102 0.164,-0.151 l -0.226,0.203 z"
+ id="path35"
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff" /></g><g
+ ns1:knockout="Off"
+ id="g37"
+ transform="translate(-95.517842,-148.9838)"><path
+ ns1:knockout="Off"
+ d="m 378.447,194.799 c -1.01,0 -1.897,0.374 -2.583,1.07 -0.707,0.716 -1.09,1.645 -1.09,2.612 0,0.979 0.373,1.887 1.079,2.593 0.707,0.707 1.625,1.09 2.594,1.09 0.969,0 1.907,-0.383 2.633,-1.1 0.686,-0.676 1.049,-1.574 1.049,-2.583 0,-0.999 -0.363,-1.907 -1.06,-2.603 -0.705,-0.705 -1.614,-1.079 -2.622,-1.079 z m 0.009,0.666 c 0.827,0 1.563,0.313 2.139,0.888 0.565,0.565 0.867,1.312 0.867,2.128 0,0.828 -0.292,1.554 -0.857,2.108 -0.595,0.586 -1.361,0.898 -2.148,0.898 -0.797,0 -1.544,-0.313 -2.118,-0.889 -0.576,-0.574 -0.898,-1.331 -0.898,-2.118 0,-0.796 0.322,-1.553 0.898,-2.138 0.564,-0.574 1.289,-0.877 2.117,-0.877 z"
+ id="path39"
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#1c86ee;fill-rule:evenodd" /><path
+ ns1:knockout="Off"
+ d="m 378.408,197.87 c -0.208,-0.38 -0.563,-0.531 -0.975,-0.531 -0.6,0 -1.076,0.424 -1.076,1.142 0,0.73 0.448,1.143 1.097,1.143 0.416,0 0.771,-0.229 0.967,-0.576 l -0.457,-0.232 c -0.102,0.245 -0.258,0.318 -0.453,0.318 -0.338,0 -0.494,-0.282 -0.494,-0.653 0,-0.371 0.132,-0.652 0.494,-0.652 0.098,0 0.294,0.053 0.408,0.297 l 0.489,-0.256 z"
+ id="path41"
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#1c86ee;fill-rule:evenodd" /><path
+ ns1:knockout="Off"
+ d="m 380.533,197.87 c -0.209,-0.38 -0.563,-0.531 -0.976,-0.531 -0.6,0 -1.076,0.424 -1.076,1.142 0,0.73 0.448,1.143 1.097,1.143 0.417,0 0.771,-0.229 0.967,-0.576 l -0.456,-0.232 c -0.103,0.245 -0.258,0.318 -0.453,0.318 -0.338,0 -0.494,-0.282 -0.494,-0.653 0,-0.371 0.131,-0.652 0.494,-0.652 0.098,0 0.293,0.053 0.408,0.297 l 0.489,-0.256 z"
+ id="path43"
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#1c86ee;fill-rule:evenodd" /></g><g
+ id="g45"><linearGradient
+ id="XMLID_85_"
+ gradientUnits="userSpaceOnUse"
+ x1="82.442101"
+ y1="213.8887"
+ x2="91.008301"
+ y2="222.7718"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#FFFFFF"
+ id="stop48" /><stop
+ offset="0.1178"
+ style="stop-color:#ECF5FE"
+ id="stop50" /><stop
+ offset="0.3575"
+ style="stop-color:#BADAFA"
+ id="stop52" /><stop
+ offset="0.6939"
+ style="stop-color:#6AB0F4"
+ id="stop54" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop56" /><a:midPointStop
+ offset="0"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.548"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 97.208,231.683 c 3.602,1.103 7.555,0.707 10.867,-1.08 1.632,-0.882 3.25,-2.056 4.142,-3.703 1.081,-2 1.966,-4.106 2.653,-6.271 -4.832,1.115 -9.986,0.685 -14.652,-0.941 -4.633,-1.616 -9.5,-4.569 -11.809,-9.063 -0.321,0.947 -1.531,4.669 -1.945,5.562 -0.792,1.71 -2.017,3.176 -3.524,4.308 -1.608,1.17 -3.471,1.94 -5.377,2.486 -1.624,0.465 -3.423,0.787 -4.465,2.261 -0.957,1.36 -0.906,3.219 0.186,4.487 1.236,1.442 3.21,1.708 4.981,1.346 2.086,-0.423 4.157,-1.131 6.104,-1.989 1.708,-0.754 3.539,-1.53 4.886,-2.868 1.017,1.453 2.308,2.703 3.788,3.678 0.737,0.483 1.521,0.899 2.339,1.235 0.453,0.185 1.853,0.558 1.826,0.552"
+ id="path58"
+ style="fill:url(#XMLID_85_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_86_"
+ gradientUnits="userSpaceOnUse"
+ x1="115.2771"
+ y1="131.51421"
+ x2="122.2609"
+ y2="160.4007"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0.0056"
+ style="stop-color:#FFF7FF"
+ id="stop61" /><stop
+ offset="0.1382"
+ style="stop-color:#CEDFFB"
+ id="stop63" /><stop
+ offset="0.3023"
+ style="stop-color:#98C4F7"
+ id="stop65" /><stop
+ offset="0.4629"
+ style="stop-color:#6CAEF4"
+ id="stop67" /><stop
+ offset="0.6163"
+ style="stop-color:#499CF1"
+ id="stop69" /><stop
+ offset="0.7607"
+ style="stop-color:#3090F0"
+ id="stop71" /><stop
+ offset="0.8924"
+ style="stop-color:#2189EE"
+ id="stop73" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop75" /><a:midPointStop
+ offset="0.0056"
+ style="stop-color:#FFF7FF" /><a:midPointStop
+ offset="0.3352"
+ style="stop-color:#FFF7FF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 174.29,149.629 c -1.714,-7.276 -6.044,-13.546 -11.979,-16.661 -3.138,-1.648 -6.722,-2.417 -10.608,-1.985 -0.358,0.04 -0.717,0.091 -1.078,0.152 -0.242,0.04 -0.483,0.089 -0.727,0.138 -0.104,0.023 -0.212,0.042 -0.322,0.065 -0.307,0.069 -0.621,0.147 -0.936,0.229 -0.029,0.01 -0.059,0.017 -0.09,0.026 -0.338,0.091 -0.683,0.191 -1.028,0.304 -1.88,0.6 -3.813,1.472 -5.786,2.662 -5.366,3.238 -9.574,7.509 -12.657,12.308 -0.151,0.236 -0.292,0.479 -0.44,0.717 1.438,-3.934 3.367,-6.72 4.865,-8.309 2.655,-2.812 6.597,-6.066 11.229,-7.917 -0.965,-0.154 -1.87,-0.265 -2.694,-0.336 -16.241,-1.984 -29.679,4.871 -36.627,25.485 -1.065,3.159 -4.568,14.885 -8.373,27.337 -6.443,0.292 -15.021,1.456 -19.092,5.352 -0.837,0.676 -1.397,1.674 -1.465,2.815 -0.129,2.188 1.589,4.067 3.834,4.196 1.246,0.071 2.389,-0.406 3.186,-1.22 l 0.007,0.009 c 1.323,-1.434 5.837,-2.443 10.998,-2.917 -0.134,0.431 -0.267,0.859 -0.397,1.287 -0.442,1.389 -0.881,2.777 -1.316,4.167 -0.602,1.911 -1.2,3.823 -1.81,5.731 -0.303,0.951 -0.611,1.905 -0.92,2.856 -0.084,2.672 1.574,5.437 4.7,7.801 4.804,3.633 13.475,6.386 21.173,3.853 0.85,-2.676 1.984,-6.246 3.24,-10.188 l 0.005,0 c 0.696,-2.201 1.439,-4.089 2.211,-5.711 1.441,1.307 2.868,2.746 4.129,4.135 0.804,1.016 1.028,1.547 1.742,2.239 1.935,1.872 4.539,2.157 6.21,0.46 1.669,-1.694 1.458,-4.585 -0.474,-6.458 -0.092,-0.088 -0.188,-0.171 -0.286,-0.251 -1.414,-1.656 -3.803,-4.287 -6.628,-6.747 3.402,-2.957 6.864,-2.728 9.392,-1.856 0.032,0.019 0.059,0.038 0.089,0.055 6.097,3.571 13.021,3.274 19.294,0.276 5.137,-2.454 9.604,-6.613 13.015,-11.663 3.114,-4.612 5.332,-9.944 6.476,-15.453 1.176,-5.684 1.216,-11.568 -0.062,-16.983 z m -7.583,30.321 c -6.425,9.176 -17.576,14.066 -26.006,7.692 -12.5,-9.453 -10.592,-33.814 5.362,-45.217 11.903,-8.513 22.89,-1.746 26.018,9.706 2.394,8.763 0.091,20.012 -5.374,27.819 z"
+ id="path77"
+ style="fill:url(#XMLID_86_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_87_"
+ gradientUnits="userSpaceOnUse"
+ x1="82.511002"
+ y1="213.66991"
+ x2="91.114304"
+ y2="222.5916"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#FFFFFF"
+ id="stop80" /><stop
+ offset="0.1178"
+ style="stop-color:#ECF5FE"
+ id="stop82" /><stop
+ offset="0.3575"
+ style="stop-color:#BADAFA"
+ id="stop84" /><stop
+ offset="0.6939"
+ style="stop-color:#6AB0F4"
+ id="stop86" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop88" /><a:midPointStop
+ offset="0"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.548"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 97.208,231.683 c -0.78,0.461 -1.603,0.911 -2.521,1.331 -0.141,0.049 -0.275,0.11 -0.407,0.171 -0.532,0.316 -1.014,0.678 -1.408,1.124 -0.442,0.568 -0.739,1.263 -0.817,2.034 -0.216,2.152 1.325,4.066 3.442,4.273 0.693,0.069 1.36,-0.051 1.952,-0.323 l 0.012,0.025 c 4.799,-2.137 8.215,-4.84 10.646,-7.491 1.379,-1.554 2.576,-3.248 3.614,-5.042 -3.57,3.839 -9.158,5.533 -14.513,3.898 z"
+ id="path90"
+ style="fill:url(#XMLID_87_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_88_"
+ gradientUnits="userSpaceOnUse"
+ x1="97.844498"
+ y1="229.56841"
+ x2="100.5151"
+ y2="232.3378"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#FFFFFF"
+ id="stop93" /><stop
+ offset="0.1178"
+ style="stop-color:#ECF5FE"
+ id="stop95" /><stop
+ offset="0.3575"
+ style="stop-color:#BADAFA"
+ id="stop97" /><stop
+ offset="0.6939"
+ style="stop-color:#6AB0F4"
+ id="stop99" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop101" /><a:midPointStop
+ offset="0"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.548"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 97.208,231.683 c -0.78,0.461 -1.603,0.911 -2.521,1.331 -0.141,0.049 -0.275,0.11 -0.407,0.171 -0.532,0.316 -1.014,0.678 -1.408,1.124 -0.442,0.568 -0.739,1.263 -0.817,2.034 -0.216,2.152 1.325,4.066 3.442,4.273 0.693,0.069 1.36,-0.051 1.952,-0.323 l 0.012,0.025 c 4.799,-2.137 8.215,-4.84 10.646,-7.491 1.379,-1.554 2.576,-3.248 3.614,-5.042 -3.57,3.839 -9.158,5.533 -14.513,3.898 z"
+ id="path103"
+ style="fill:url(#XMLID_88_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_89_"
+ gradientUnits="userSpaceOnUse"
+ x1="86.226799"
+ y1="180.47459"
+ x2="90.038803"
+ y2="190.0047"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#FFFFFF"
+ id="stop106" /><stop
+ offset="0.1178"
+ style="stop-color:#ECF5FE"
+ id="stop108" /><stop
+ offset="0.3575"
+ style="stop-color:#BADAFA"
+ id="stop110" /><stop
+ offset="0.6939"
+ style="stop-color:#6AB0F4"
+ id="stop112" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop114" /><a:midPointStop
+ offset="0"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.548"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 80.06,195.488 c 1.182,0.06 2.266,-0.403 3.015,-1.18 l 0.009,0.008 c 1.958,-2.153 11.391,-3.375 18.972,-3.165 l 0.375,0.009 c 0.002,0 0.373,-0.061 0.373,-0.061 0,0 2.002,-1.694 1.503,-4.469 -0.498,-2.775 -2.037,-3.083 -2.037,-3.083 -4.407,-0.126 -18.958,-0.094 -24.512,5.298 -0.79,0.648 -1.314,1.6 -1.37,2.685 -0.107,2.079 1.539,3.852 3.672,3.958 z"
+ id="path116"
+ style="fill:url(#XMLID_89_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_90_"
+ gradientUnits="userSpaceOnUse"
+ x1="127.3293"
+ y1="216.0127"
+ x2="127.9639"
+ y2="198.55991"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#FFFFFF"
+ id="stop119" /><stop
+ offset="0.1178"
+ style="stop-color:#ECF5FE"
+ id="stop121" /><stop
+ offset="0.3575"
+ style="stop-color:#BADAFA"
+ id="stop123" /><stop
+ offset="0.6939"
+ style="stop-color:#6AB0F4"
+ id="stop125" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop127" /><a:midPointStop
+ offset="0"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.548"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 133.174,202.521 c -0.088,-0.091 -0.181,-0.177 -0.277,-0.255 -1.757,-2.147 -5.078,-5.911 -8.921,-8.913 -0.851,2.681 -1.738,5.475 -2.613,8.229 1.429,1.349 2.841,2.821 4.083,4.247 0.773,1.021 0.979,1.543 1.681,2.249 1.888,1.897 4.523,2.296 6.283,0.726 1.758,-1.569 1.654,-4.383 -0.236,-6.283 z"
+ id="path129"
+ style="fill:url(#XMLID_90_)"
+ inkscape:connector-curvature="0" /><g
+ id="g131"><g
+ ns1:knockout="On"
+ a:adobe-knockout="true"
+ id="g133"><radialGradient
+ id="XMLID_91_"
+ cx="155.7458"
+ cy="161.2598"
+ r="52.717201"
+ gradientTransform="matrix(1.0169,0.0102,0.0047,1.0111,-2.8353,-3.7854)"
+ gradientUnits="userSpaceOnUse"><stop
+ offset="0.118"
+ style="stop-color:#1C86EE"
+ id="stop136" /><stop
+ offset="0.5169"
+ style="stop-color:#80D1FF"
+ id="stop138" /><stop
+ offset="0.6036"
+ style="stop-color:#5BB5F9"
+ id="stop140" /><stop
+ offset="0.7215"
+ style="stop-color:#2E93F1"
+ id="stop142" /><stop
+ offset="0.7809"
+ style="stop-color:#1C86EE"
+ id="stop144" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#80D1FF" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#80D1FF" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1C86EE" /></radialGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.478,171.201 c -6.066,18.417 -22.996,29.434 -37.141,22.992 -13.995,-6.372 -18.005,-26.599 -9.819,-43.702 7.471,-15.623 22.702,-23.197 34.678,-18.066 12.077,5.179 17.815,21.979 12.282,38.776 z"
+ id="path146"
+ style="fill:url(#XMLID_91_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_92_"
+ gradientUnits="userSpaceOnUse"
+ x1="153.15601"
+ y1="186.3149"
+ x2="129.7401"
+ y2="75.128601"
+ gradientTransform="matrix(1.0119,0.0089,0.0036,1.008,-1.7908,-3.1402)"><stop
+ offset="0"
+ style="stop-color:#1C86EE"
+ id="stop149" /><stop
+ offset="0.118"
+ style="stop-color:#1C86EE"
+ id="stop151" /><stop
+ offset="0.5169"
+ style="stop-color:#7DCFFE"
+ id="stop153" /><stop
+ offset="0.5989"
+ style="stop-color:#5BB5F8"
+ id="stop155" /><stop
+ offset="0.7199"
+ style="stop-color:#2D93F1"
+ id="stop157" /><stop
+ offset="0.7809"
+ style="stop-color:#1C86EE"
+ id="stop159" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop161" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#7DCFFE" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#7DCFFE" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.443,171.214 c -6.034,18.341 -22.859,29.278 -36.93,22.872 -13.924,-6.337 -17.989,-26.464 -9.914,-43.532 7.385,-15.642 22.567,-23.264 34.547,-18.128 12.079,5.181 17.816,22.009 12.297,38.788 z"
+ id="path163"
+ style="fill:url(#XMLID_92_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_93_"
+ gradientUnits="userSpaceOnUse"
+ x1="151.5535"
+ y1="187.2744"
+ x2="136.47169"
+ y2="76.239403"
+ gradientTransform="matrix(1.007,0.0076,0.0025,1.0049,-0.7472,-2.493)"><stop
+ offset="0"
+ style="stop-color:#1D86EE"
+ id="stop166" /><stop
+ offset="0.118"
+ style="stop-color:#1D86EE"
+ id="stop168" /><stop
+ offset="0.5169"
+ style="stop-color:#7ACCFE"
+ id="stop170" /><stop
+ offset="0.594"
+ style="stop-color:#5BB5F9"
+ id="stop172" /><stop
+ offset="0.7182"
+ style="stop-color:#2D93F1"
+ id="stop174" /><stop
+ offset="0.7809"
+ style="stop-color:#1C86EE"
+ id="stop176" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop178" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#7ACCFE" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#7ACCFE" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.407,171.227 c -6.001,18.265 -22.723,29.122 -36.719,22.752 -13.853,-6.303 -17.973,-26.33 -10.008,-43.363 7.299,-15.662 22.432,-23.331 34.416,-18.191 12.081,5.187 17.817,22.041 12.311,38.802 z"
+ id="path180"
+ style="fill:url(#XMLID_93_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_94_"
+ gradientUnits="userSpaceOnUse"
+ x1="149.8308"
+ y1="188.0806"
+ x2="142.9579"
+ y2="78.1492"
+ gradientTransform="matrix(1.002,0.0063,0.0014,1.0019,0.2973,-1.8467)"><stop
+ offset="0"
+ style="stop-color:#1D87EE"
+ id="stop183" /><stop
+ offset="0.118"
+ style="stop-color:#1D87EE"
+ id="stop185" /><stop
+ offset="0.5169"
+ style="stop-color:#77CAFD"
+ id="stop187" /><stop
+ offset="0.5887"
+ style="stop-color:#5BB5F8"
+ id="stop189" /><stop
+ offset="0.7165"
+ style="stop-color:#2D93F1"
+ id="stop191" /><stop
+ offset="0.7809"
+ style="stop-color:#1C86EE"
+ id="stop193" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop195" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#77CAFD" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#77CAFD" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.372,171.24 c -5.968,18.188 -22.585,28.966 -36.508,22.632 -13.782,-6.268 -17.957,-26.195 -10.103,-43.193 7.213,-15.681 22.296,-23.397 34.284,-18.253 12.084,5.19 17.819,22.071 12.327,38.814 z"
+ id="path197"
+ style="fill:url(#XMLID_94_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_95_"
+ gradientUnits="userSpaceOnUse"
+ x1="148.0081"
+ y1="188.7188"
+ x2="149.1006"
+ y2="80.827499"
+ gradientTransform="matrix(0.9971,0.0051,2.741814e-4,0.9988,1.3409,-1.201)"><stop
+ offset="0"
+ style="stop-color:#1E87EE"
+ id="stop200" /><stop
+ offset="0.118"
+ style="stop-color:#1D87EE"
+ id="stop202" /><stop
+ offset="0.5169"
+ style="stop-color:#74C8FD"
+ id="stop204" /><stop
+ offset="0.5831"
+ style="stop-color:#5BB5F9"
+ id="stop206" /><stop
+ offset="0.7146"
+ style="stop-color:#2D93F1"
+ id="stop208" /><stop
+ offset="0.7809"
+ style="stop-color:#1C86EE"
+ id="stop210" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop212" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#74C8FD" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#74C8FD" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.336,171.253 c -5.936,18.112 -22.449,28.81 -36.298,22.512 -13.71,-6.233 -17.94,-26.061 -10.197,-43.024 7.127,-15.7 22.161,-23.464 34.153,-18.315 12.087,5.194 17.821,22.101 12.342,38.827 z"
+ id="path214"
+ style="fill:url(#XMLID_95_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_96_"
+ gradientUnits="userSpaceOnUse"
+ x1="146.1008"
+ y1="189.17191"
+ x2="154.7993"
+ y2="84.218002"
+ gradientTransform="matrix(0.9921,0.0038,-8.322702e-4,0.9957,2.385,-0.5547)"><stop
+ offset="0"
+ style="stop-color:#1E87EE"
+ id="stop217" /><stop
+ offset="0.118"
+ style="stop-color:#1E87EE"
+ id="stop219" /><stop
+ offset="0.5169"
+ style="stop-color:#71C5FC"
+ id="stop221" /><stop
+ offset="0.5772"
+ style="stop-color:#5BB5F8"
+ id="stop223" /><stop
+ offset="0.7126"
+ style="stop-color:#2D93F1"
+ id="stop225" /><stop
+ offset="0.7809"
+ style="stop-color:#1C86EE"
+ id="stop227" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop229" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#71C5FC" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#71C5FC" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.301,171.267 c -5.903,18.036 -22.312,28.654 -36.087,22.392 -13.64,-6.198 -17.924,-25.926 -10.292,-42.854 7.041,-15.719 22.026,-23.531 34.021,-18.378 12.09,5.197 17.823,22.131 12.358,38.84 z"
+ id="path231"
+ style="fill:url(#XMLID_96_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_97_"
+ gradientUnits="userSpaceOnUse"
+ x1="144.1335"
+ y1="189.4263"
+ x2="159.97"
+ y2="88.244102"
+ gradientTransform="matrix(0.9872,0.0025,-0.0019,0.9926,3.4291,0.0906)"><stop
+ offset="0"
+ style="stop-color:#1E87EE"
+ id="stop234" /><stop
+ offset="0.118"
+ style="stop-color:#1E87EE"
+ id="stop236" /><stop
+ offset="0.5169"
+ style="stop-color:#6EC3FC"
+ id="stop238" /><stop
+ offset="0.5686"
+ style="stop-color:#5CB5F9"
+ id="stop240" /><stop
+ offset="0.7098"
+ style="stop-color:#2E93F1"
+ id="stop242" /><stop
+ offset="0.7809"
+ style="stop-color:#1D86EE"
+ id="stop244" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop246" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#6EC3FC" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#6EC3FC" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.265,171.28 c -5.871,17.96 -22.175,28.498 -35.876,22.272 -13.569,-6.164 -17.908,-25.791 -10.387,-42.686 6.955,-15.738 21.891,-23.597 33.891,-18.44 12.092,5.202 17.824,22.162 12.372,38.854 z"
+ id="path248"
+ style="fill:url(#XMLID_97_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_98_"
+ gradientUnits="userSpaceOnUse"
+ x1="142.1311"
+ y1="189.47749"
+ x2="164.5387"
+ y2="92.827797"
+ gradientTransform="matrix(0.9822,0.0012,-0.003,0.9896,4.4727,0.7373)"><stop
+ offset="0"
+ style="stop-color:#1F88EE"
+ id="stop251" /><stop
+ offset="0.118"
+ style="stop-color:#1E87EE"
+ id="stop253" /><stop
+ offset="0.5169"
+ style="stop-color:#6BC1FB"
+ id="stop255" /><stop
+ offset="0.5616"
+ style="stop-color:#5CB5F8"
+ id="stop257" /><stop
+ offset="0.7074"
+ style="stop-color:#2E93F1"
+ id="stop259" /><stop
+ offset="0.7809"
+ style="stop-color:#1D86EE"
+ id="stop261" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop263" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#6BC1FB" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#6BC1FB" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D86EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.23,171.293 c -5.837,17.884 -22.038,28.342 -35.666,22.152 -13.498,-6.129 -17.892,-25.656 -10.481,-42.516 6.869,-15.757 21.755,-23.664 33.759,-18.502 12.095,5.205 17.826,22.192 12.388,38.866 z"
+ id="path265"
+ style="fill:url(#XMLID_98_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_99_"
+ gradientUnits="userSpaceOnUse"
+ x1="140.11501"
+ y1="189.31689"
+ x2="168.4442"
+ y2="97.860397"
+ gradientTransform="matrix(0.9772,-7.098209e-5,-0.0042,0.9865,5.5168,1.3831)"><stop
+ offset="0"
+ style="stop-color:#1F88EE"
+ id="stop268" /><stop
+ offset="0.118"
+ style="stop-color:#1F88EE"
+ id="stop270" /><stop
+ offset="0.5169"
+ style="stop-color:#68BEFB"
+ id="stop272" /><stop
+ offset="0.5541"
+ style="stop-color:#5CB5F9"
+ id="stop274" /><stop
+ offset="0.7049"
+ style="stop-color:#2E94F1"
+ id="stop276" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop278" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop280" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#68BEFB" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#68BEFB" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.195,171.306 c -5.805,17.808 -21.902,28.186 -35.455,22.033 -13.427,-6.095 -17.876,-25.522 -10.577,-42.347 6.784,-15.777 21.621,-23.731 33.628,-18.564 12.098,5.208 17.828,22.222 12.404,38.878 z"
+ id="path282"
+ style="fill:url(#XMLID_99_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_100_"
+ gradientUnits="userSpaceOnUse"
+ x1="138.1189"
+ y1="188.9487"
+ x2="171.6521"
+ y2="103.2424"
+ gradientTransform="matrix(0.9723,-0.0014,-0.0053,0.9834,6.5608,2.0294)"><stop
+ offset="0"
+ style="stop-color:#1F88EE"
+ id="stop285" /><stop
+ offset="0.118"
+ style="stop-color:#1F88EE"
+ id="stop287" /><stop
+ offset="0.5169"
+ style="stop-color:#65BCFA"
+ id="stop289" /><stop
+ offset="0.546"
+ style="stop-color:#5CB5F8"
+ id="stop291" /><stop
+ offset="0.7022"
+ style="stop-color:#2E94F1"
+ id="stop293" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop295" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop297" /><a:midPointStop
+ offset="0"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#65BCFA" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#65BCFA" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.159,171.319 c -5.772,17.731 -21.765,28.03 -35.244,21.913 -13.356,-6.06 -17.86,-25.387 -10.671,-42.177 6.698,-15.796 21.485,-23.797 33.497,-18.626 12.1,5.211 17.83,22.252 12.418,38.89 z"
+ id="path299"
+ style="fill:url(#XMLID_100_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_101_"
+ gradientUnits="userSpaceOnUse"
+ x1="136.15311"
+ y1="188.3687"
+ x2="174.12601"
+ y2="108.8494"
+ gradientTransform="matrix(0.9673,-0.0026,-0.0064,0.9803,7.6049,2.6751)"><stop
+ offset="0"
+ style="stop-color:#2088EE"
+ id="stop302" /><stop
+ offset="0.118"
+ style="stop-color:#2088EE"
+ id="stop304" /><stop
+ offset="0.5169"
+ style="stop-color:#62BAFA"
+ id="stop306" /><stop
+ offset="0.5373"
+ style="stop-color:#5CB5F9"
+ id="stop308" /><stop
+ offset="0.6993"
+ style="stop-color:#2E94F1"
+ id="stop310" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop312" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop314" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#62BAFA" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#62BAFA" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.123,171.333 c -5.74,17.655 -21.628,27.874 -35.033,21.793 -13.285,-6.025 -17.844,-25.252 -10.766,-42.008 6.612,-15.815 21.35,-23.864 33.366,-18.689 12.103,5.215 17.831,22.282 12.433,38.904 z"
+ id="path316"
+ style="fill:url(#XMLID_101_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_102_"
+ gradientUnits="userSpaceOnUse"
+ x1="134.2507"
+ y1="187.5918"
+ x2="175.8687"
+ y2="114.579"
+ gradientTransform="matrix(0.9624,-0.0039,-0.0075,0.9772,8.6485,3.3214)"><stop
+ offset="0"
+ style="stop-color:#2088EE"
+ id="stop319" /><stop
+ offset="0.118"
+ style="stop-color:#2088EE"
+ id="stop321" /><stop
+ offset="0.5169"
+ style="stop-color:#5FB7F9"
+ id="stop323" /><stop
+ offset="0.5279"
+ style="stop-color:#5CB5F8"
+ id="stop325" /><stop
+ offset="0.6962"
+ style="stop-color:#2E94F1"
+ id="stop327" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop329" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop331" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#5FB7F9" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#5FB7F9" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.088,171.346 c -5.708,17.579 -21.491,27.718 -34.823,21.673 -13.214,-5.99 -17.828,-25.118 -10.861,-41.838 6.526,-15.834 21.215,-23.931 33.234,-18.751 12.106,5.218 17.834,22.312 12.45,38.916 z"
+ id="path333"
+ style="fill:url(#XMLID_102_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_103_"
+ gradientUnits="userSpaceOnUse"
+ x1="132.4299"
+ y1="186.6201"
+ x2="176.88789"
+ y2="120.3128"
+ gradientTransform="matrix(0.9574,-0.0052,-0.0086,0.9742,9.6931,3.9672)"><stop
+ offset="0"
+ style="stop-color:#2189EE"
+ id="stop336" /><stop
+ offset="0.118"
+ style="stop-color:#2088EE"
+ id="stop338" /><stop
+ offset="0.5169"
+ style="stop-color:#5CB5F8"
+ id="stop340" /><stop
+ offset="0.5176"
+ style="stop-color:#5CB5F8"
+ id="stop342" /><stop
+ offset="0.6927"
+ style="stop-color:#2E94F1"
+ id="stop344" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop346" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop348" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2088EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#5CB5F8" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#5CB5F8" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.052,171.359 c -5.674,17.503 -21.354,27.562 -34.612,21.553 -13.143,-5.956 -17.811,-24.983 -10.955,-41.669 6.44,-15.854 21.08,-23.997 33.103,-18.813 12.109,5.222 17.836,22.342 12.464,38.929 z"
+ id="path350"
+ style="fill:url(#XMLID_103_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_104_"
+ gradientUnits="userSpaceOnUse"
+ x1="130.7205"
+ y1="185.47459"
+ x2="177.21941"
+ y2="125.9561"
+ gradientTransform="matrix(0.9524,-0.0065,-0.0097,0.9711,10.7367,4.6134)"><stop
+ offset="0"
+ style="stop-color:#2189EE"
+ id="stop353" /><stop
+ offset="0.118"
+ style="stop-color:#2189EE"
+ id="stop355" /><stop
+ offset="0.5169"
+ style="stop-color:#59B3F8"
+ id="stop357" /><stop
+ offset="0.689"
+ style="stop-color:#2E94F1"
+ id="stop359" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop361" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop363" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#59B3F8" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#59B3F8" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.017,171.372 c -5.642,17.427 -21.217,27.405 -34.401,21.433 -13.072,-5.921 -17.795,-24.848 -11.05,-41.5 6.354,-15.873 20.944,-24.064 32.972,-18.876 12.111,5.227 17.837,22.374 12.479,38.943 z"
+ id="path365"
+ style="fill:url(#XMLID_104_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_105_"
+ gradientUnits="userSpaceOnUse"
+ x1="129.1306"
+ y1="184.166"
+ x2="176.8978"
+ y2="131.40559"
+ gradientTransform="matrix(0.9475,-0.0078,-0.0108,0.968,11.7807,5.2592)"><stop
+ offset="0"
+ style="stop-color:#2189EE"
+ id="stop368" /><stop
+ offset="0.118"
+ style="stop-color:#2189EE"
+ id="stop370" /><stop
+ offset="0.5169"
+ style="stop-color:#56B0F7"
+ id="stop372" /><stop
+ offset="0.6849"
+ style="stop-color:#2E94F1"
+ id="stop374" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop376" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop378" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#56B0F7" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#56B0F7" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.982,171.385 c -5.609,17.351 -21.081,27.25 -34.191,21.313 -13.001,-5.886 -17.779,-24.714 -11.145,-41.331 6.268,-15.892 20.809,-24.131 32.84,-18.938 12.114,5.231 17.839,22.405 12.496,38.956 z"
+ id="path380"
+ style="fill:url(#XMLID_105_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_106_"
+ gradientUnits="userSpaceOnUse"
+ x1="127.675"
+ y1="182.71291"
+ x2="175.9801"
+ y2="136.5743"
+ gradientTransform="matrix(0.9425,-0.0091,-0.0119,0.9649,12.8248,5.9054)"><stop
+ offset="0"
+ style="stop-color:#2289EE"
+ id="stop383" /><stop
+ offset="0.118"
+ style="stop-color:#2189EE"
+ id="stop385" /><stop
+ offset="0.5169"
+ style="stop-color:#53AEF7"
+ id="stop387" /><stop
+ offset="0.6803"
+ style="stop-color:#2E94F1"
+ id="stop389" /><stop
+ offset="0.7809"
+ style="stop-color:#1D87EE"
+ id="stop391" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop393" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2289EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2289EE" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2189EE" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#53AEF7" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#53AEF7" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1D87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.946,171.398 c -5.577,17.274 -20.944,27.093 -33.98,21.193 -12.93,-5.852 -17.763,-24.579 -11.239,-41.161 6.182,-15.911 20.674,-24.197 32.709,-19 12.116,5.234 17.841,22.435 12.51,38.968 z"
+ id="path395"
+ style="fill:url(#XMLID_106_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_107_"
+ gradientUnits="userSpaceOnUse"
+ x1="126.3665"
+ y1="181.14211"
+ x2="174.5361"
+ y2="141.3942"
+ gradientTransform="matrix(0.9376,-0.0103,-0.013,0.9619,13.8689,6.5512)"><stop
+ offset="0"
+ style="stop-color:#228AEF"
+ id="stop398" /><stop
+ offset="0.118"
+ style="stop-color:#2289EF"
+ id="stop400" /><stop
+ offset="0.5169"
+ style="stop-color:#4FACF6"
+ id="stop402" /><stop
+ offset="0.6716"
+ style="stop-color:#2F94F1"
+ id="stop404" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop406" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop408" /><a:midPointStop
+ offset="0"
+ style="stop-color:#228AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#228AEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2289EF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2289EF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#4FACF6" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#4FACF6" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.91,171.412 c -5.543,17.198 -20.807,26.938 -33.769,21.074 -12.859,-5.817 -17.746,-24.444 -11.334,-40.992 6.097,-15.931 20.539,-24.264 32.578,-19.063 12.119,5.237 17.843,22.465 12.525,38.981 z"
+ id="path410"
+ style="fill:url(#XMLID_107_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_108_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.2053"
+ y1="179.47169"
+ x2="172.63451"
+ y2="145.80209"
+ gradientTransform="matrix(0.9326,-0.0116,-0.0141,0.9588,14.9125,7.1975)"><stop
+ offset="0"
+ style="stop-color:#238AEF"
+ id="stop413" /><stop
+ offset="0.118"
+ style="stop-color:#2289EF"
+ id="stop415" /><stop
+ offset="0.5169"
+ style="stop-color:#4CAAF6"
+ id="stop417" /><stop
+ offset="0.6656"
+ style="stop-color:#2F94F1"
+ id="stop419" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop421" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop423" /><a:midPointStop
+ offset="0"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2289EF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2289EF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#4CAAF6" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#4CAAF6" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.875,171.425 c -5.511,17.122 -20.67,26.781 -33.558,20.954 -12.788,-5.782 -17.73,-24.31 -11.429,-40.822 6.011,-15.95 20.404,-24.331 32.447,-19.125 12.121,5.24 17.844,22.494 12.54,38.993 z"
+ id="path425"
+ style="fill:url(#XMLID_108_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_109_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.1907"
+ y1="177.7261"
+ x2="170.35139"
+ y2="149.7558"
+ gradientTransform="matrix(0.9277,-0.0129,-0.0152,0.9557,15.9566,7.8433)"><stop
+ offset="0"
+ style="stop-color:#238AEF"
+ id="stop428" /><stop
+ offset="0.118"
+ style="stop-color:#2289EF"
+ id="stop430" /><stop
+ offset="0.5169"
+ style="stop-color:#49A7F5"
+ id="stop432" /><stop
+ offset="0.6587"
+ style="stop-color:#2F94F1"
+ id="stop434" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop436" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop438" /><a:midPointStop
+ offset="0"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#2289EF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2289EF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#49A7F5" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#49A7F5" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.84,171.438 c -5.479,17.045 -20.533,26.625 -33.348,20.834 -12.717,-5.748 -17.714,-24.175 -11.523,-40.653 5.925,-15.969 20.269,-24.397 32.315,-19.187 12.124,5.244 17.846,22.525 12.556,39.006 z"
+ id="path440"
+ style="fill:url(#XMLID_109_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_110_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.3127"
+ y1="175.92239"
+ x2="167.7589"
+ y2="153.22169"
+ gradientTransform="matrix(0.9227,-0.0142,-0.0163,0.9526,17.0007,8.4895)"><stop
+ offset="0"
+ style="stop-color:#238AEF"
+ id="stop443" /><stop
+ offset="0.118"
+ style="stop-color:#238AEF"
+ id="stop445" /><stop
+ offset="0.5169"
+ style="stop-color:#46A5F5"
+ id="stop447" /><stop
+ offset="0.6509"
+ style="stop-color:#2F94F1"
+ id="stop449" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop451" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop453" /><a:midPointStop
+ offset="0"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#46A5F5" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#46A5F5" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.804,171.451 c -5.446,16.969 -20.396,26.469 -33.137,20.714 -12.646,-5.713 -17.698,-24.04 -11.618,-40.483 5.839,-15.989 20.133,-24.464 32.184,-19.249 12.127,5.247 17.848,22.555 12.571,39.018 z"
+ id="path455"
+ style="fill:url(#XMLID_110_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_111_"
+ gradientUnits="userSpaceOnUse"
+ x1="122.5662"
+ y1="174.0825"
+ x2="164.93401"
+ y2="156.1875"
+ gradientTransform="matrix(0.9177,-0.0155,-0.0174,0.9496,18.0448,9.1353)"><stop
+ offset="0"
+ style="stop-color:#248BEF"
+ id="stop458" /><stop
+ offset="0.118"
+ style="stop-color:#238AEF"
+ id="stop460" /><stop
+ offset="0.5169"
+ style="stop-color:#43A3F4"
+ id="stop462" /><stop
+ offset="0.6422"
+ style="stop-color:#2F94F1"
+ id="stop464" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop466" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop468" /><a:midPointStop
+ offset="0"
+ style="stop-color:#248BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#248BEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#43A3F4" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#43A3F4" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.768,171.464 c -5.413,16.893 -20.259,26.313 -32.926,20.594 -12.575,-5.678 -17.681,-23.906 -11.712,-40.314 5.753,-16.008 19.998,-24.531 32.053,-19.312 12.129,5.252 17.849,22.586 12.585,39.032 z"
+ id="path470"
+ style="fill:url(#XMLID_111_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_112_"
+ gradientUnits="userSpaceOnUse"
+ x1="121.9314"
+ y1="172.2173"
+ x2="161.9359"
+ y2="158.6452"
+ gradientTransform="matrix(0.9128,-0.0168,-0.0185,0.9465,19.0888,9.7816)"><stop
+ offset="0"
+ style="stop-color:#248BEF"
+ id="stop473" /><stop
+ offset="0.118"
+ style="stop-color:#238AEF"
+ id="stop475" /><stop
+ offset="0.5169"
+ style="stop-color:#40A0F3"
+ id="stop477" /><stop
+ offset="0.6318"
+ style="stop-color:#2F94F1"
+ id="stop479" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop481" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop483" /><a:midPointStop
+ offset="0"
+ style="stop-color:#248BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#248BEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#238AEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#40A0F3" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#40A0F3" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.733,171.478 c -5.38,16.817 -20.123,26.157 -32.716,20.474 -12.504,-5.643 -17.665,-23.771 -11.807,-40.145 5.667,-16.027 19.863,-24.597 31.921,-19.374 12.133,5.255 17.852,22.616 12.602,39.045 z"
+ id="path485"
+ style="fill:url(#XMLID_112_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_113_"
+ gradientUnits="userSpaceOnUse"
+ x1="121.3962"
+ y1="170.3374"
+ x2="158.8235"
+ y2="160.60049"
+ gradientTransform="matrix(0.9078,-0.018,-0.0196,0.9434,20.1324,10.4274)"><stop
+ offset="0"
+ style="stop-color:#258BEF"
+ id="stop488" /><stop
+ offset="0.118"
+ style="stop-color:#248AEF"
+ id="stop490" /><stop
+ offset="0.5169"
+ style="stop-color:#3D9EF3"
+ id="stop492" /><stop
+ offset="0.6196"
+ style="stop-color:#2F94F1"
+ id="stop494" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop496" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop498" /><a:midPointStop
+ offset="0"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#248AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#248AEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#3D9EF3" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#3D9EF3" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.698,171.491 c -5.348,16.741 -19.986,26.001 -32.505,20.354 -12.433,-5.609 -17.649,-23.637 -11.902,-39.976 5.581,-16.046 19.728,-24.664 31.79,-19.436 12.135,5.259 17.853,22.647 12.617,39.058 z"
+ id="path500"
+ style="fill:url(#XMLID_113_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_114_"
+ gradientUnits="userSpaceOnUse"
+ x1="120.9348"
+ y1="168.4482"
+ x2="155.6342"
+ y2="162.0641"
+ gradientTransform="matrix(0.9029,-0.0193,-0.0207,0.9403,21.1765,11.0736)"><stop
+ offset="0"
+ style="stop-color:#258BEF"
+ id="stop503" /><stop
+ offset="0.118"
+ style="stop-color:#248AEF"
+ id="stop505" /><stop
+ offset="0.5169"
+ style="stop-color:#3A9CF2"
+ id="stop507" /><stop
+ offset="0.6049"
+ style="stop-color:#2F94F0"
+ id="stop509" /><stop
+ offset="0.7809"
+ style="stop-color:#1E87EE"
+ id="stop511" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop513" /><a:midPointStop
+ offset="0"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#248AEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#248AEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#3A9CF2" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#3A9CF2" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E87EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.662,171.504 c -5.315,16.665 -19.849,25.845 -32.294,20.234 -12.362,-5.574 -17.633,-23.501 -11.997,-39.806 5.495,-16.065 19.592,-24.73 31.659,-19.498 12.138,5.262 17.855,22.676 12.632,39.07 z"
+ id="path515"
+ style="fill:url(#XMLID_114_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_115_"
+ gradientUnits="userSpaceOnUse"
+ x1="120.5334"
+ y1="166.5493"
+ x2="152.4035"
+ y2="163.04919"
+ gradientTransform="matrix(0.8979,-0.0206,-0.0219,0.9372,22.2201,11.7194)"><stop
+ offset="0"
+ style="stop-color:#258BEF"
+ id="stop518" /><stop
+ offset="0.118"
+ style="stop-color:#258BEF"
+ id="stop520" /><stop
+ offset="0.5169"
+ style="stop-color:#3799F2"
+ id="stop522" /><stop
+ offset="0.5869"
+ style="stop-color:#2F94F1"
+ id="stop524" /><stop
+ offset="0.7809"
+ style="stop-color:#1E88EE"
+ id="stop526" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop528" /><a:midPointStop
+ offset="0"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#3799F2" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#3799F2" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.627,171.517 c -5.283,16.588 -19.712,25.689 -32.083,20.115 -12.292,-5.54 -17.617,-23.367 -12.092,-39.637 5.41,-16.085 19.458,-24.798 31.528,-19.561 12.14,5.266 17.856,22.707 12.647,39.083 z"
+ id="path530"
+ style="fill:url(#XMLID_115_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_116_"
+ gradientUnits="userSpaceOnUse"
+ x1="120.1799"
+ y1="164.6333"
+ x2="149.1568"
+ y2="163.5659"
+ gradientTransform="matrix(0.8929,-0.0219,-0.023,0.9342,23.2647,12.3657)"><stop
+ offset="0"
+ style="stop-color:#268CEF"
+ id="stop533" /><stop
+ offset="0.118"
+ style="stop-color:#258BEF"
+ id="stop535" /><stop
+ offset="0.5169"
+ style="stop-color:#3497F1"
+ id="stop537" /><stop
+ offset="0.5645"
+ style="stop-color:#2F94F0"
+ id="stop539" /><stop
+ offset="0.7809"
+ style="stop-color:#1E88EE"
+ id="stop541" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop543" /><a:midPointStop
+ offset="0"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#3497F1" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#3497F1" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1E88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1E88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.591,171.53 c -5.25,16.512 -19.575,25.533 -31.873,19.995 -12.22,-5.504 -17.601,-23.232 -12.187,-39.467 5.324,-16.104 19.322,-24.864 31.396,-19.623 12.145,5.269 17.86,22.737 12.664,39.095 z"
+ id="path545"
+ style="fill:url(#XMLID_116_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_117_"
+ gradientUnits="userSpaceOnUse"
+ x1="119.8655"
+ y1="162.6899"
+ x2="145.9115"
+ y2="163.62131"
+ gradientTransform="matrix(0.888,-0.0232,-0.0241,0.9311,24.3083,13.0119)"><stop
+ offset="0"
+ style="stop-color:#268CEF"
+ id="stop548" /><stop
+ offset="0.118"
+ style="stop-color:#258BEF"
+ id="stop550" /><stop
+ offset="0.5169"
+ style="stop-color:#3195F1"
+ id="stop552" /><stop
+ offset="0.5239"
+ style="stop-color:#3095F1"
+ id="stop554" /><stop
+ offset="0.7809"
+ style="stop-color:#1F88EE"
+ id="stop556" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop558" /><a:midPointStop
+ offset="0"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#3195F1" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#3195F1" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.555,171.543 c -5.217,16.436 -19.438,25.377 -31.662,19.875 -12.149,-5.47 -17.584,-23.098 -12.281,-39.298 5.238,-16.123 19.187,-24.931 31.266,-19.685 12.146,5.273 17.86,22.768 12.677,39.108 z"
+ id="path560"
+ style="fill:url(#XMLID_117_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_118_"
+ gradientUnits="userSpaceOnUse"
+ x1="119.5852"
+ y1="160.7065"
+ x2="142.6797"
+ y2="163.2177"
+ gradientTransform="matrix(0.883,-0.0245,-0.0252,0.928,25.3524,13.6577)"><stop
+ offset="0"
+ style="stop-color:#268CEF"
+ id="stop563" /><stop
+ offset="0.118"
+ style="stop-color:#268BEF"
+ id="stop565" /><stop
+ offset="0.5169"
+ style="stop-color:#2E92F0"
+ id="stop567" /><stop
+ offset="0.7809"
+ style="stop-color:#1F88EE"
+ id="stop569" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop571" /><a:midPointStop
+ offset="0"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#268BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#268BEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#2E92F0" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#2E92F0" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.52,171.557 c -5.185,16.36 -19.302,25.221 -31.451,19.755 -12.079,-5.435 -17.568,-22.963 -12.376,-39.128 5.152,-16.143 19.052,-24.998 31.134,-19.747 12.149,5.275 17.862,22.796 12.693,39.12 z"
+ id="path573"
+ style="fill:url(#XMLID_118_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_119_"
+ gradientUnits="userSpaceOnUse"
+ x1="119.3435"
+ y1="158.67329"
+ x2="139.4767"
+ y2="162.3551"
+ gradientTransform="matrix(0.8781,-0.0257,-0.0263,0.9249,26.3965,14.304)"><stop
+ offset="0"
+ style="stop-color:#278CEF"
+ id="stop576" /><stop
+ offset="0.118"
+ style="stop-color:#268BEF"
+ id="stop578" /><stop
+ offset="0.5169"
+ style="stop-color:#2B90F0"
+ id="stop580" /><stop
+ offset="0.7809"
+ style="stop-color:#1F88EE"
+ id="stop582" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop584" /><a:midPointStop
+ offset="0"
+ style="stop-color:#278CEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#278CEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#268BEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#268BEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#2B90F0" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#2B90F0" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.485,171.57 c -5.152,16.284 -19.165,25.065 -31.241,19.635 -12.007,-5.401 -17.552,-22.829 -12.47,-38.959 5.066,-16.162 18.917,-25.064 31.003,-19.81 12.15,5.28 17.863,22.828 12.708,39.134 z"
+ id="path586"
+ style="fill:url(#XMLID_119_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_120_"
+ gradientUnits="userSpaceOnUse"
+ x1="119.1467"
+ y1="156.5752"
+ x2="136.3165"
+ y2="161.02229"
+ gradientTransform="matrix(0.8731,-0.027,-0.0274,0.9219,27.44,14.9498)"><stop
+ offset="0"
+ style="stop-color:#278DEF"
+ id="stop589" /><stop
+ offset="0.118"
+ style="stop-color:#268CEF"
+ id="stop591" /><stop
+ offset="0.5169"
+ style="stop-color:#288EEF"
+ id="stop593" /><stop
+ offset="0.7809"
+ style="stop-color:#1F88EE"
+ id="stop595" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop597" /><a:midPointStop
+ offset="0"
+ style="stop-color:#278DEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#278DEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#268CEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#288EEF" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#288EEF" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.449,171.583 c -5.119,16.208 -19.028,24.909 -31.03,19.515 -11.936,-5.366 -17.536,-22.694 -12.565,-38.79 4.98,-16.181 18.781,-25.131 30.872,-19.872 12.154,5.284 17.866,22.858 12.723,39.147 z"
+ id="path599"
+ style="fill:url(#XMLID_120_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_121_"
+ gradientUnits="userSpaceOnUse"
+ x1="119.0105"
+ y1="154.4019"
+ x2="133.2236"
+ y2="159.2068"
+ gradientTransform="matrix(0.8682,-0.0283,-0.0285,0.9188,28.4846,15.5965)"><stop
+ offset="0"
+ style="stop-color:#288DEF"
+ id="stop602" /><stop
+ offset="0.118"
+ style="stop-color:#278CEF"
+ id="stop604" /><stop
+ offset="0.5169"
+ style="stop-color:#258BEF"
+ id="stop606" /><stop
+ offset="0.7809"
+ style="stop-color:#1F88EE"
+ id="stop608" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop610" /><a:midPointStop
+ offset="0"
+ style="stop-color:#288DEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#288DEF" /><a:midPointStop
+ offset="0.118"
+ style="stop-color:#278CEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#278CEF" /><a:midPointStop
+ offset="0.5169"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.4474"
+ style="stop-color:#258BEF" /><a:midPointStop
+ offset="0.7809"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1F88EE" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.414,171.596 c -5.086,16.131 -18.892,24.753 -30.819,19.396 -11.865,-5.332 -17.52,-22.559 -12.66,-38.621 4.894,-16.2 18.646,-25.198 30.74,-19.934 12.156,5.288 17.867,22.888 12.739,39.159 z"
+ id="path612"
+ style="fill:url(#XMLID_121_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_122_"
+ gradientUnits="userSpaceOnUse"
+ x1="118.9534"
+ y1="152.1465"
+ x2="130.2265"
+ y2="156.8936"
+ gradientTransform="matrix(0.8632,-0.0296,-0.0296,0.9157,29.5282,16.2423)"><stop
+ offset="0"
+ style="stop-color:#288DEF"
+ id="stop615" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop617" /><a:midPointStop
+ offset="0"
+ style="stop-color:#288DEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#288DEF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.378,171.609 c -5.054,16.055 -18.754,24.597 -30.608,19.275 -11.794,-5.296 -17.503,-22.424 -12.754,-38.451 4.808,-16.219 18.511,-25.264 30.609,-19.996 12.158,5.292 17.868,22.919 12.753,39.172 z"
+ id="path619"
+ style="fill:url(#XMLID_122_)"
+ inkscape:connector-curvature="0" /></g></g><g
+ ns1:knockout="On"
+ a:adobe-knockout="true"
+ id="g621"><linearGradient
+ id="XMLID_123_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.4993"
+ y1="153.2236"
+ x2="133.7782"
+ y2="157.55209"
+ gradientTransform="matrix(0.9353,-0.0269,-0.0269,0.9832,16.7265,6.8872)"><stop
+ offset="0"
+ style="stop-color:#288DEF"
+ id="stop624" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop626" /><a:midPointStop
+ offset="0"
+ style="stop-color:#288DEF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#288DEF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.429,171.119 c -5.866,18.006 -22.17,28.784 -35.066,22.997 -12.833,-5.761 -16.029,-25.442 -7.991,-42.314 7.276,-15.275 20.611,-23.793 31.373,-19.106 10.804,4.703 17.343,21.18 11.684,38.423 z"
+ id="path628"
+ style="fill:url(#XMLID_123_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_124_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.5725"
+ y1="153.0771"
+ x2="135.24001"
+ y2="158.0536"
+ gradientTransform="matrix(0.9373,-0.0258,-0.0258,0.9833,16.1743,6.7037)"><stop
+ offset="0"
+ style="stop-color:#2F91EF"
+ id="stop631" /><stop
+ offset="0.0169"
+ style="stop-color:#2F91EF"
+ id="stop633" /><stop
+ offset="0.1966"
+ style="stop-color:#2B8FEF"
+ id="stop635" /><stop
+ offset="0.6471"
+ style="stop-color:#258BEF"
+ id="stop637" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop639" /><a:midPointStop
+ offset="0"
+ style="stop-color:#2F91EF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2F91EF" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#2F91EF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#2F91EF" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#2B8FEF" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#2B8FEF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.38,171.184 c -5.875,17.927 -22.109,28.601 -34.94,22.809 -12.754,-5.759 -15.965,-25.325 -8.007,-42.12 7.222,-15.252 20.551,-23.762 31.32,-19.078 10.825,4.707 17.303,21.196 11.627,38.389 z"
+ id="path641"
+ style="fill:url(#XMLID_124_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_125_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.6511"
+ y1="152.9263"
+ x2="136.68761"
+ y2="158.5575"
+ gradientTransform="matrix(0.9393,-0.0247,-0.0247,0.9833,15.622,6.521)"><stop
+ offset="0"
+ style="stop-color:#3694F0"
+ id="stop644" /><stop
+ offset="0.0169"
+ style="stop-color:#3694F0"
+ id="stop646" /><stop
+ offset="0.1966"
+ style="stop-color:#3092F0"
+ id="stop648" /><stop
+ offset="0.5721"
+ style="stop-color:#2A8FEF"
+ id="stop650" /><stop
+ offset="1"
+ style="stop-color:#1C87EE"
+ id="stop652" /><a:midPointStop
+ offset="0"
+ style="stop-color:#3694F0" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#3694F0" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#3694F0" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#3694F0" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#3092F0" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#3092F0" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C87EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.33,171.248 c -5.885,17.848 -22.048,28.418 -34.813,22.621 -12.677,-5.756 -15.903,-25.208 -8.024,-41.925 7.168,-15.229 20.492,-23.732 31.268,-19.05 10.847,4.711 17.262,21.212 11.569,38.354 z"
+ id="path654"
+ style="fill:url(#XMLID_125_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_126_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.7273"
+ y1="152.7769"
+ x2="138.114"
+ y2="159.0699"
+ gradientTransform="matrix(0.9413,-0.0236,-0.0236,0.9834,15.0696,6.3374)"><stop
+ offset="0"
+ style="stop-color:#3D98F0"
+ id="stop657" /><stop
+ offset="0.0169"
+ style="stop-color:#3D98F0"
+ id="stop659" /><stop
+ offset="0.1966"
+ style="stop-color:#3595F0"
+ id="stop661" /><stop
+ offset="0.5225"
+ style="stop-color:#2F92F0"
+ id="stop663" /><stop
+ offset="0.9596"
+ style="stop-color:#1E88EE"
+ id="stop665" /><stop
+ offset="1"
+ style="stop-color:#1C87EE"
+ id="stop667" /><a:midPointStop
+ offset="0"
+ style="stop-color:#3D98F0" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#3D98F0" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#3D98F0" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#3D98F0" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#3595F0" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#3595F0" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C87EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.281,171.313 c -5.894,17.77 -21.987,28.235 -34.687,22.434 -12.599,-5.754 -15.839,-25.09 -8.04,-41.731 7.114,-15.207 20.432,-23.701 31.215,-19.021 10.868,4.713 17.222,21.226 11.512,38.318 z"
+ id="path669"
+ style="fill:url(#XMLID_126_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_127_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.803"
+ y1="152.6226"
+ x2="139.52161"
+ y2="159.5844"
+ gradientTransform="matrix(0.9433,-0.0226,-0.0226,0.9834,14.5173,6.1537)"><stop
+ offset="0"
+ style="stop-color:#449CF1"
+ id="stop672" /><stop
+ offset="0.0169"
+ style="stop-color:#449CF1"
+ id="stop674" /><stop
+ offset="0.1966"
+ style="stop-color:#3998F1"
+ id="stop676" /><stop
+ offset="0.4933"
+ style="stop-color:#3394F0"
+ id="stop678" /><stop
+ offset="0.8911"
+ style="stop-color:#228AEF"
+ id="stop680" /><stop
+ offset="1"
+ style="stop-color:#1C87EE"
+ id="stop682" /><a:midPointStop
+ offset="0"
+ style="stop-color:#449CF1" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#449CF1" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#449CF1" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#449CF1" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#3998F1" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#3998F1" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C87EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.232,171.377 c -5.903,17.691 -21.925,28.052 -34.561,22.246 -12.521,-5.751 -15.776,-24.973 -8.057,-41.536 7.061,-15.184 20.372,-23.671 31.163,-18.994 10.889,4.718 17.182,21.243 11.455,38.284 z"
+ id="path684"
+ style="fill:url(#XMLID_127_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_128_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.8835"
+ y1="152.4751"
+ x2="140.9147"
+ y2="160.112"
+ gradientTransform="matrix(0.9453,-0.0215,-0.0215,0.9835,13.9645,5.9706)"><stop
+ offset="0"
+ style="stop-color:#4B9FF1"
+ id="stop687" /><stop
+ offset="0.0169"
+ style="stop-color:#4B9FF1"
+ id="stop689" /><stop
+ offset="0.1966"
+ style="stop-color:#3E9BF1"
+ id="stop691" /><stop
+ offset="0.4648"
+ style="stop-color:#3897F0"
+ id="stop693" /><stop
+ offset="0.8243"
+ style="stop-color:#278DEF"
+ id="stop695" /><stop
+ offset="1"
+ style="stop-color:#1C87EE"
+ id="stop697" /><a:midPointStop
+ offset="0"
+ style="stop-color:#4B9FF1" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#4B9FF1" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#4B9FF1" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#4B9FF1" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#3E9BF1" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#3E9BF1" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C87EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.182,171.441 c -5.913,17.612 -21.864,27.869 -34.434,22.058 -12.444,-5.75 -15.713,-24.855 -8.073,-41.342 7.007,-15.161 20.312,-23.64 31.11,-18.965 10.911,4.722 17.141,21.259 11.397,38.249 z"
+ id="path699"
+ style="fill:url(#XMLID_128_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_129_"
+ gradientUnits="userSpaceOnUse"
+ x1="123.9617"
+ y1="152.31841"
+ x2="142.28819"
+ y2="160.6375"
+ gradientTransform="matrix(0.9472,-0.0204,-0.0204,0.9836,13.4122,5.7875)"><stop
+ offset="0"
+ style="stop-color:#52A3F2"
+ id="stop702" /><stop
+ offset="0.0169"
+ style="stop-color:#52A3F2"
+ id="stop704" /><stop
+ offset="0.1966"
+ style="stop-color:#439DF2"
+ id="stop706" /><stop
+ offset="0.4425"
+ style="stop-color:#3D9AF1"
+ id="stop708" /><stop
+ offset="0.772"
+ style="stop-color:#2C91F0"
+ id="stop710" /><stop
+ offset="1"
+ style="stop-color:#1C88EE"
+ id="stop712" /><a:midPointStop
+ offset="0"
+ style="stop-color:#52A3F2" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#52A3F2" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#52A3F2" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#52A3F2" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#439DF2" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#439DF2" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C88EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.133,171.505 c -5.922,17.534 -21.803,27.687 -34.308,21.871 -12.366,-5.747 -15.65,-24.738 -8.089,-41.147 6.953,-15.138 20.252,-23.61 31.058,-18.938 10.931,4.726 17.1,21.274 11.339,38.214 z"
+ id="path714"
+ style="fill:url(#XMLID_129_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_130_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.0432"
+ y1="152.1655"
+ x2="143.646"
+ y2="161.17281"
+ gradientTransform="matrix(0.9492,-0.0193,-0.0193,0.9836,12.8599,5.6043)"><stop
+ offset="0"
+ style="stop-color:#59A7F2"
+ id="stop717" /><stop
+ offset="0.0169"
+ style="stop-color:#59A7F2"
+ id="stop719" /><stop
+ offset="0.1966"
+ style="stop-color:#48A0F2"
+ id="stop721" /><stop
+ offset="0.4243"
+ style="stop-color:#429DF1"
+ id="stop723" /><stop
+ offset="0.7295"
+ style="stop-color:#3193F0"
+ id="stop725" /><stop
+ offset="1"
+ style="stop-color:#1C88EE"
+ id="stop727" /><a:midPointStop
+ offset="0"
+ style="stop-color:#59A7F2" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#59A7F2" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#59A7F2" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#59A7F2" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#48A0F2" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#48A0F2" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C88EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.083,171.57 c -5.931,17.455 -21.742,27.504 -34.182,21.683 -12.288,-5.745 -15.587,-24.621 -8.106,-40.953 6.899,-15.115 20.192,-23.579 31.005,-18.909 10.954,4.729 17.062,21.29 11.283,38.179 z"
+ id="path729"
+ style="fill:url(#XMLID_130_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_131_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.1233"
+ y1="152.0103"
+ x2="144.9854"
+ y2="161.71249"
+ gradientTransform="matrix(0.9512,-0.0182,-0.0182,0.9837,12.3071,5.4207)"><stop
+ offset="0"
+ style="stop-color:#5FAAF3"
+ id="stop732" /><stop
+ offset="0.0169"
+ style="stop-color:#5FAAF3"
+ id="stop734" /><stop
+ offset="0.1966"
+ style="stop-color:#4DA3F3"
+ id="stop736" /><stop
+ offset="0.4093"
+ style="stop-color:#47A0F2"
+ id="stop738" /><stop
+ offset="0.695"
+ style="stop-color:#3696F1"
+ id="stop740" /><stop
+ offset="1"
+ style="stop-color:#1C88EE"
+ id="stop742" /><a:midPointStop
+ offset="0"
+ style="stop-color:#5FAAF3" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#5FAAF3" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#5FAAF3" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#5FAAF3" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#4DA3F3" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#4DA3F3" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C88EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 173.033,171.634 c -5.94,17.376 -21.68,27.321 -34.055,21.495 -12.21,-5.742 -15.524,-24.503 -8.122,-40.757 6.845,-15.093 20.132,-23.549 30.953,-18.881 10.975,4.732 17.02,21.304 11.224,38.143 z"
+ id="path744"
+ style="fill:url(#XMLID_131_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_132_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.2048"
+ y1="151.85159"
+ x2="146.30881"
+ y2="162.2551"
+ gradientTransform="matrix(0.9532,-0.0171,-0.0171,0.9838,11.7547,5.2376)"><stop
+ offset="0"
+ style="stop-color:#66AEF3"
+ id="stop747" /><stop
+ offset="0.0169"
+ style="stop-color:#66AEF3"
+ id="stop749" /><stop
+ offset="0.1966"
+ style="stop-color:#52A6F3"
+ id="stop751" /><stop
+ offset="0.3966"
+ style="stop-color:#4CA3F2"
+ id="stop753" /><stop
+ offset="0.6652"
+ style="stop-color:#3B9AF1"
+ id="stop755" /><stop
+ offset="0.9717"
+ style="stop-color:#1F8BEE"
+ id="stop757" /><stop
+ offset="1"
+ style="stop-color:#1C89EE"
+ id="stop759" /><a:midPointStop
+ offset="0"
+ style="stop-color:#66AEF3" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#66AEF3" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#66AEF3" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#66AEF3" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#52A6F3" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#52A6F3" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C89EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.984,171.699 c -5.95,17.298 -21.619,27.138 -33.929,21.308 -12.132,-5.74 -15.46,-24.386 -8.138,-40.563 6.791,-15.07 20.073,-23.519 30.9,-18.854 10.996,4.736 16.98,21.32 11.167,38.109 z"
+ id="path761"
+ style="fill:url(#XMLID_132_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_133_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.2874"
+ y1="151.6953"
+ x2="147.6169"
+ y2="162.80679"
+ gradientTransform="matrix(0.9552,-0.0161,-0.0161,0.9838,11.2024,5.0544)"><stop
+ offset="0"
+ style="stop-color:#6DB2F4"
+ id="stop764" /><stop
+ offset="0.0169"
+ style="stop-color:#6DB2F4"
+ id="stop766" /><stop
+ offset="0.1966"
+ style="stop-color:#57A9F4"
+ id="stop768" /><stop
+ offset="0.3857"
+ style="stop-color:#51A6F3"
+ id="stop770" /><stop
+ offset="0.6397"
+ style="stop-color:#409CF2"
+ id="stop772" /><stop
+ offset="0.9294"
+ style="stop-color:#248DEF"
+ id="stop774" /><stop
+ offset="1"
+ style="stop-color:#1C89EE"
+ id="stop776" /><a:midPointStop
+ offset="0"
+ style="stop-color:#6DB2F4" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#6DB2F4" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#6DB2F4" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#6DB2F4" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#57A9F4" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#57A9F4" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C89EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.935,171.763 c -5.959,17.219 -21.558,26.955 -33.803,21.12 -12.055,-5.737 -15.398,-24.268 -8.155,-40.368 6.737,-15.047 20.013,-23.488 30.848,-18.825 11.018,4.739 16.939,21.335 11.11,38.073 z"
+ id="path778"
+ style="fill:url(#XMLID_133_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_134_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.3708"
+ y1="151.5381"
+ x2="148.9081"
+ y2="163.3634"
+ gradientTransform="matrix(0.9572,-0.015,-0.015,0.9839,10.6496,4.8708)"><stop
+ offset="0"
+ style="stop-color:#74B5F4"
+ id="stop781" /><stop
+ offset="0.0169"
+ style="stop-color:#74B5F4"
+ id="stop783" /><stop
+ offset="0.1966"
+ style="stop-color:#5CACF4"
+ id="stop785" /><stop
+ offset="0.3761"
+ style="stop-color:#56A9F3"
+ id="stop787" /><stop
+ offset="0.6173"
+ style="stop-color:#459FF2"
+ id="stop789" /><stop
+ offset="0.8925"
+ style="stop-color:#2990EF"
+ id="stop791" /><stop
+ offset="1"
+ style="stop-color:#1C89EE"
+ id="stop793" /><a:midPointStop
+ offset="0"
+ style="stop-color:#74B5F4" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#74B5F4" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#74B5F4" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#74B5F4" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#5CACF4" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#5CACF4" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C89EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.885,171.828 c -5.968,17.14 -21.496,26.772 -33.676,20.932 -11.977,-5.735 -15.334,-24.151 -8.171,-40.174 6.683,-15.025 19.953,-23.458 30.795,-18.797 11.039,4.743 16.899,21.351 11.052,38.039 z"
+ id="path795"
+ style="fill:url(#XMLID_134_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_135_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.4534"
+ y1="151.3784"
+ x2="150.18159"
+ y2="163.9236"
+ gradientTransform="matrix(0.9592,-0.0139,-0.0139,0.9839,10.0978,4.6877)"><stop
+ offset="0"
+ style="stop-color:#7BB9F4"
+ id="stop798" /><stop
+ offset="0.0169"
+ style="stop-color:#7BB9F4"
+ id="stop800" /><stop
+ offset="0.1966"
+ style="stop-color:#60AFF4"
+ id="stop802" /><stop
+ offset="0.3694"
+ style="stop-color:#5AACF3"
+ id="stop804" /><stop
+ offset="0.6015"
+ style="stop-color:#49A2F2"
+ id="stop806" /><stop
+ offset="0.8663"
+ style="stop-color:#2D92EF"
+ id="stop808" /><stop
+ offset="1"
+ style="stop-color:#1C89EE"
+ id="stop810" /><a:midPointStop
+ offset="0"
+ style="stop-color:#7BB9F4" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#7BB9F4" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#7BB9F4" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#7BB9F4" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#60AFF4" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#60AFF4" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C89EE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.836,171.892 c -5.978,17.062 -21.435,26.589 -33.55,20.745 -11.899,-5.733 -15.271,-24.034 -8.188,-39.979 6.63,-15.002 19.893,-23.427 30.743,-18.769 11.06,4.746 16.858,21.366 10.995,38.003 z"
+ id="path812"
+ style="fill:url(#XMLID_135_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_136_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.5378"
+ y1="151.21919"
+ x2="151.44099"
+ y2="164.49071"
+ gradientTransform="matrix(0.9612,-0.0128,-0.0128,0.984,9.5455,4.5045)"><stop
+ offset="0"
+ style="stop-color:#82BDF5"
+ id="stop815" /><stop
+ offset="0.0169"
+ style="stop-color:#82BDF5"
+ id="stop817" /><stop
+ offset="0.1966"
+ style="stop-color:#65B2F5"
+ id="stop819" /><stop
+ offset="0.3618"
+ style="stop-color:#5FAFF4"
+ id="stop821" /><stop
+ offset="0.5837"
+ style="stop-color:#4EA5F3"
+ id="stop823" /><stop
+ offset="0.8368"
+ style="stop-color:#3296F0"
+ id="stop825" /><stop
+ offset="1"
+ style="stop-color:#1C8AEE"
+ id="stop827" /><a:midPointStop
+ offset="0"
+ style="stop-color:#82BDF5" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#82BDF5" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#82BDF5" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#82BDF5" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#65B2F5" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#65B2F5" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8AEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.786,171.957 c -5.987,16.983 -21.374,26.406 -33.424,20.557 -11.822,-5.73 -15.208,-23.916 -8.204,-39.785 6.576,-14.979 19.833,-23.396 30.69,-18.741 11.082,4.749 16.819,21.382 10.938,37.969 z"
+ id="path829"
+ style="fill:url(#XMLID_136_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_137_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.6213"
+ y1="151.0547"
+ x2="152.6828"
+ y2="165.05811"
+ gradientTransform="matrix(0.9632,-0.0117,-0.0117,0.9841,8.9927,4.3209)"><stop
+ offset="0"
+ style="stop-color:#89C0F5"
+ id="stop832" /><stop
+ offset="0.0169"
+ style="stop-color:#89C0F5"
+ id="stop834" /><stop
+ offset="0.1966"
+ style="stop-color:#6AB5F5"
+ id="stop836" /><stop
+ offset="0.355"
+ style="stop-color:#64B2F4"
+ id="stop838" /><stop
+ offset="0.5677"
+ style="stop-color:#53A8F3"
+ id="stop840" /><stop
+ offset="0.8103"
+ style="stop-color:#3799F0"
+ id="stop842" /><stop
+ offset="1"
+ style="stop-color:#1C8AEE"
+ id="stop844" /><a:midPointStop
+ offset="0"
+ style="stop-color:#89C0F5" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#89C0F5" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#89C0F5" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#89C0F5" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#6AB5F5" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#6AB5F5" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8AEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.737,172.021 c -5.996,16.904 -21.313,26.223 -33.297,20.369 -11.744,-5.728 -15.145,-23.799 -8.22,-39.59 6.522,-14.957 19.773,-23.366 30.638,-18.713 11.102,4.753 16.777,21.398 10.879,37.934 z"
+ id="path846"
+ style="fill:url(#XMLID_137_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_138_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.7058"
+ y1="150.8931"
+ x2="153.90939"
+ y2="165.6344"
+ gradientTransform="matrix(0.9652,-0.0106,-0.0106,0.9841,8.4403,4.1378)"><stop
+ offset="0"
+ style="stop-color:#90C4F6"
+ id="stop849" /><stop
+ offset="0.0169"
+ style="stop-color:#90C4F6"
+ id="stop851" /><stop
+ offset="0.1966"
+ style="stop-color:#6FB8F6"
+ id="stop853" /><stop
+ offset="0.3489"
+ style="stop-color:#69B5F5"
+ id="stop855" /><stop
+ offset="0.5534"
+ style="stop-color:#58ABF4"
+ id="stop857" /><stop
+ offset="0.7867"
+ style="stop-color:#3C9CF1"
+ id="stop859" /><stop
+ offset="1"
+ style="stop-color:#1C8AEE"
+ id="stop861" /><a:midPointStop
+ offset="0"
+ style="stop-color:#90C4F6" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#90C4F6" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#90C4F6" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#90C4F6" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#6FB8F6" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#6FB8F6" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8AEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.687,172.085 c -6.005,16.825 -21.251,26.04 -33.171,20.181 -11.666,-5.726 -15.082,-23.681 -8.237,-39.396 6.468,-14.934 19.713,-23.335 30.585,-18.685 11.125,4.758 16.738,21.415 10.823,37.9 z"
+ id="path863"
+ style="fill:url(#XMLID_138_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_139_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.7927"
+ y1="150.7305"
+ x2="155.1227"
+ y2="166.21561"
+ gradientTransform="matrix(0.9671,-0.0096,-0.0096,0.9842,7.888,3.9546)"><stop
+ offset="0"
+ style="stop-color:#97C8F6"
+ id="stop866" /><stop
+ offset="0.0169"
+ style="stop-color:#97C8F6"
+ id="stop868" /><stop
+ offset="0.1966"
+ style="stop-color:#74BAF6"
+ id="stop870" /><stop
+ offset="0.3433"
+ style="stop-color:#6EB7F5"
+ id="stop872" /><stop
+ offset="0.5404"
+ style="stop-color:#5DAEF4"
+ id="stop874" /><stop
+ offset="0.7662"
+ style="stop-color:#419FF1"
+ id="stop876" /><stop
+ offset="1"
+ style="stop-color:#1C8BEE"
+ id="stop878" /><a:midPointStop
+ offset="0"
+ style="stop-color:#97C8F6" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#97C8F6" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#97C8F6" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#97C8F6" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#74BAF6" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#74BAF6" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8BEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.638,172.149 c -6.015,16.747 -21.19,25.857 -33.045,19.994 -11.588,-5.723 -15.019,-23.564 -8.253,-39.201 6.414,-14.911 19.654,-23.305 30.533,-18.657 11.145,4.761 16.697,21.43 10.765,37.864 z"
+ id="path880"
+ style="fill:url(#XMLID_139_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_140_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.8782"
+ y1="150.56689"
+ x2="156.3197"
+ y2="166.802"
+ gradientTransform="matrix(0.9691,-0.0085,-0.0085,0.9842,7.3352,3.7715)"><stop
+ offset="0"
+ style="stop-color:#9ECCF7"
+ id="stop883" /><stop
+ offset="0.0169"
+ style="stop-color:#9ECCF7"
+ id="stop885" /><stop
+ offset="0.1966"
+ style="stop-color:#79BDF7"
+ id="stop887" /><stop
+ offset="0.3383"
+ style="stop-color:#73BAF6"
+ id="stop889" /><stop
+ offset="0.5286"
+ style="stop-color:#62B1F5"
+ id="stop891" /><stop
+ offset="0.7466"
+ style="stop-color:#46A1F2"
+ id="stop893" /><stop
+ offset="0.9837"
+ style="stop-color:#1F8DEE"
+ id="stop895" /><stop
+ offset="1"
+ style="stop-color:#1C8BEE"
+ id="stop897" /><a:midPointStop
+ offset="0"
+ style="stop-color:#9ECCF7" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#9ECCF7" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#9ECCF7" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#9ECCF7" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#79BDF7" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#79BDF7" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8BEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.589,172.214 c -6.024,16.668 -21.129,25.674 -32.918,19.806 -11.511,-5.721 -14.956,-23.446 -8.27,-39.006 6.36,-14.888 19.594,-23.274 30.48,-18.628 11.167,4.763 16.656,21.444 10.708,37.828 z"
+ id="path899"
+ style="fill:url(#XMLID_140_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_141_"
+ gradientUnits="userSpaceOnUse"
+ x1="124.9661"
+ y1="150.3999"
+ x2="157.5024"
+ y2="167.39011"
+ gradientTransform="matrix(0.9711,-0.0074,-0.0074,0.9843,6.7829,3.5878)"><stop
+ offset="0"
+ style="stop-color:#A5CFF7"
+ id="stop902" /><stop
+ offset="0.0169"
+ style="stop-color:#A5CFF7"
+ id="stop904" /><stop
+ offset="0.1966"
+ style="stop-color:#7EC0F7"
+ id="stop906" /><stop
+ offset="0.3337"
+ style="stop-color:#78BDF6"
+ id="stop908" /><stop
+ offset="0.5178"
+ style="stop-color:#67B3F5"
+ id="stop910" /><stop
+ offset="0.7287"
+ style="stop-color:#4BA4F2"
+ id="stop912" /><stop
+ offset="0.958"
+ style="stop-color:#248FEF"
+ id="stop914" /><stop
+ offset="1"
+ style="stop-color:#1C8BEE"
+ id="stop916" /><a:midPointStop
+ offset="0"
+ style="stop-color:#A5CFF7" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#A5CFF7" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#A5CFF7" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#A5CFF7" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#7EC0F7" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#7EC0F7" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8BEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.539,172.278 c -6.033,16.589 -21.067,25.492 -32.792,19.619 -11.433,-5.718 -14.893,-23.329 -8.286,-38.812 6.306,-14.865 19.534,-23.244 30.427,-18.601 11.189,4.768 16.617,21.461 10.651,37.794 z"
+ id="path918"
+ style="fill:url(#XMLID_141_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_142_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.054"
+ y1="150.23289"
+ x2="158.6707"
+ y2="167.9843"
+ gradientTransform="matrix(0.9731,-0.0063,-0.0063,0.9844,6.2306,3.4052)"><stop
+ offset="0"
+ style="stop-color:#ACD3F8"
+ id="stop921" /><stop
+ offset="0.0169"
+ style="stop-color:#ACD3F8"
+ id="stop923" /><stop
+ offset="0.1966"
+ style="stop-color:#83C3F8"
+ id="stop925" /><stop
+ offset="0.3294"
+ style="stop-color:#7DC0F7"
+ id="stop927" /><stop
+ offset="0.5078"
+ style="stop-color:#6CB7F6"
+ id="stop929" /><stop
+ offset="0.7122"
+ style="stop-color:#50A8F3"
+ id="stop931" /><stop
+ offset="0.9344"
+ style="stop-color:#2993EF"
+ id="stop933" /><stop
+ offset="1"
+ style="stop-color:#1C8CEE"
+ id="stop935" /><a:midPointStop
+ offset="0"
+ style="stop-color:#ACD3F8" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#ACD3F8" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#ACD3F8" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#ACD3F8" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#83C3F8" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#83C3F8" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8CEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.49,172.343 c -6.042,16.511 -21.006,25.309 -32.666,19.431 -11.355,-5.716 -14.83,-23.211 -8.302,-38.617 6.252,-14.842 19.474,-23.213 30.375,-18.572 11.209,4.77 16.575,21.475 10.593,37.758 z"
+ id="path937"
+ style="fill:url(#XMLID_142_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_143_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.1428"
+ y1="150.0654"
+ x2="159.8252"
+ y2="168.5836"
+ gradientTransform="matrix(0.9751,-0.0052,-0.0052,0.9844,5.6782,3.2215)"><stop
+ offset="0"
+ style="stop-color:#B3D7F8"
+ id="stop940" /><stop
+ offset="0.0169"
+ style="stop-color:#B3D7F8"
+ id="stop942" /><stop
+ offset="0.1966"
+ style="stop-color:#87C6F8"
+ id="stop944" /><stop
+ offset="0.3262"
+ style="stop-color:#81C3F7"
+ id="stop946" /><stop
+ offset="0.5004"
+ style="stop-color:#70B9F6"
+ id="stop948" /><stop
+ offset="0.6998"
+ style="stop-color:#54AAF3"
+ id="stop950" /><stop
+ offset="0.9166"
+ style="stop-color:#2D95F0"
+ id="stop952" /><stop
+ offset="1"
+ style="stop-color:#1C8CEE"
+ id="stop954" /><a:midPointStop
+ offset="0"
+ style="stop-color:#B3D7F8" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#B3D7F8" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#B3D7F8" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#B3D7F8" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#87C6F8" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#87C6F8" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8CEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.44,172.407 c -6.052,16.432 -20.945,25.125 -32.54,19.243 -11.277,-5.714 -14.767,-23.094 -8.319,-38.423 6.199,-14.819 19.415,-23.183 30.323,-18.544 11.231,4.775 16.536,21.492 10.536,37.724 z"
+ id="path956"
+ style="fill:url(#XMLID_143_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_144_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.2317"
+ y1="149.897"
+ x2="160.9635"
+ y2="169.187"
+ gradientTransform="matrix(0.9771,-0.0041,-0.0041,0.9845,5.1254,3.0379)"><stop
+ offset="0"
+ style="stop-color:#BADAF8"
+ id="stop959" /><stop
+ offset="0.0169"
+ style="stop-color:#BADAF8"
+ id="stop961" /><stop
+ offset="0.1966"
+ style="stop-color:#8CC9F8"
+ id="stop963" /><stop
+ offset="0.3225"
+ style="stop-color:#86C6F7"
+ id="stop965" /><stop
+ offset="0.4917"
+ style="stop-color:#75BCF6"
+ id="stop967" /><stop
+ offset="0.6855"
+ style="stop-color:#59ADF3"
+ id="stop969" /><stop
+ offset="0.896"
+ style="stop-color:#3298F0"
+ id="stop971" /><stop
+ offset="1"
+ style="stop-color:#1C8CEE"
+ id="stop973" /><a:midPointStop
+ offset="0"
+ style="stop-color:#BADAF8" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#BADAF8" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#BADAF8" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#BADAF8" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#8CC9F8" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#8CC9F8" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8CEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.39,172.472 c -6.061,16.354 -20.884,24.942 -32.413,19.056 -11.199,-5.711 -14.703,-22.977 -8.335,-38.229 6.145,-14.797 19.354,-23.152 30.27,-18.516 11.253,4.778 16.496,21.507 10.478,37.689 z"
+ id="path975"
+ style="fill:url(#XMLID_144_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_145_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.324"
+ y1="149.729"
+ x2="162.0907"
+ y2="169.7964"
+ gradientTransform="matrix(0.9791,-0.0031,-0.0031,0.9845,4.5731,2.8548)"><stop
+ offset="0"
+ style="stop-color:#C1DEF9"
+ id="stop978" /><stop
+ offset="0.0169"
+ style="stop-color:#C1DEF9"
+ id="stop980" /><stop
+ offset="0.1966"
+ style="stop-color:#91CCF9"
+ id="stop982" /><stop
+ offset="0.3191"
+ style="stop-color:#8BC9F8"
+ id="stop984" /><stop
+ offset="0.4836"
+ style="stop-color:#7ABFF7"
+ id="stop986" /><stop
+ offset="0.6721"
+ style="stop-color:#5EB0F4"
+ id="stop988" /><stop
+ offset="0.877"
+ style="stop-color:#379BF1"
+ id="stop990" /><stop
+ offset="1"
+ style="stop-color:#1C8CEE"
+ id="stop992" /><a:midPointStop
+ offset="0"
+ style="stop-color:#C1DEF9" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#C1DEF9" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#C1DEF9" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#C1DEF9" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#91CCF9" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#91CCF9" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8CEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.341,172.536 c -6.07,16.274 -20.822,24.76 -32.287,18.868 -11.122,-5.709 -14.641,-22.859 -8.352,-38.034 6.091,-14.774 19.294,-23.122 30.217,-18.488 11.275,4.782 16.456,21.523 10.422,37.654 z"
+ id="path994"
+ style="fill:url(#XMLID_145_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_146_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.4158"
+ y1="149.5596"
+ x2="163.20399"
+ y2="170.41029"
+ gradientTransform="matrix(0.9811,-0.002,-0.002,0.9846,4.0208,2.6716)"><stop
+ offset="0"
+ style="stop-color:#C8E2F9"
+ id="stop997" /><stop
+ offset="0.0169"
+ style="stop-color:#C8E2F9"
+ id="stop999" /><stop
+ offset="0.1966"
+ style="stop-color:#96CFF9"
+ id="stop1001" /><stop
+ offset="0.3158"
+ style="stop-color:#90CCF8"
+ id="stop1003" /><stop
+ offset="0.4761"
+ style="stop-color:#7FC2F7"
+ id="stop1005" /><stop
+ offset="0.6597"
+ style="stop-color:#63B3F4"
+ id="stop1007" /><stop
+ offset="0.8591"
+ style="stop-color:#3C9EF1"
+ id="stop1009" /><stop
+ offset="1"
+ style="stop-color:#1C8DEE"
+ id="stop1011" /><a:midPointStop
+ offset="0"
+ style="stop-color:#C8E2F9" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#C8E2F9" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#C8E2F9" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#C8E2F9" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#96CFF9" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#96CFF9" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8DEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.292,172.601 c -6.08,16.196 -20.761,24.577 -32.161,18.68 -11.044,-5.707 -14.577,-22.742 -8.368,-37.839 6.037,-14.751 19.235,-23.091 30.165,-18.46 11.295,4.785 16.415,21.538 10.364,37.619 z"
+ id="path1013"
+ style="fill:url(#XMLID_146_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_147_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.5081"
+ y1="149.3862"
+ x2="164.3029"
+ y2="171.0255"
+ gradientTransform="matrix(0.9831,-8.870935e-4,-8.870935e-4,0.9847,3.4679,2.4885)"><stop
+ offset="0"
+ style="stop-color:#CEE5FA"
+ id="stop1016" /><stop
+ offset="0.0169"
+ style="stop-color:#CEE5FA"
+ id="stop1018" /><stop
+ offset="0.1966"
+ style="stop-color:#9BD2FA"
+ id="stop1020" /><stop
+ offset="0.3129"
+ style="stop-color:#95CFF9"
+ id="stop1022" /><stop
+ offset="0.4691"
+ style="stop-color:#84C5F8"
+ id="stop1024" /><stop
+ offset="0.6481"
+ style="stop-color:#68B6F5"
+ id="stop1026" /><stop
+ offset="0.8425"
+ style="stop-color:#41A1F1"
+ id="stop1028" /><stop
+ offset="1"
+ style="stop-color:#1C8DEE"
+ id="stop1030" /><a:midPointStop
+ offset="0"
+ style="stop-color:#CEE5FA" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#CEE5FA" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#CEE5FA" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#CEE5FA" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#9BD2FA" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#9BD2FA" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8DEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.242,172.665 c -6.089,16.117 -20.7,24.394 -32.034,18.492 -10.966,-5.704 -14.514,-22.625 -8.384,-37.644 5.983,-14.729 19.175,-23.061 30.112,-18.432 11.317,4.789 16.374,21.553 10.306,37.584 z"
+ id="path1032"
+ style="fill:url(#XMLID_147_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_148_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.5979"
+ y1="149.2148"
+ x2="165.3848"
+ y2="171.6476"
+ gradientTransform="matrix(0.9851,1.967764e-4,1.967764e-4,0.9847,2.9156,2.3048)"><stop
+ offset="0"
+ style="stop-color:#D5E9FA"
+ id="stop1035" /><stop
+ offset="0.0169"
+ style="stop-color:#D5E9FA"
+ id="stop1037" /><stop
+ offset="0.1966"
+ style="stop-color:#A0D5FA"
+ id="stop1039" /><stop
+ offset="0.31"
+ style="stop-color:#9AD2F9"
+ id="stop1041" /><stop
+ offset="0.4625"
+ style="stop-color:#89C8F8"
+ id="stop1043" /><stop
+ offset="0.6372"
+ style="stop-color:#6DB9F5"
+ id="stop1045" /><stop
+ offset="0.8269"
+ style="stop-color:#46A4F2"
+ id="stop1047" /><stop
+ offset="1"
+ style="stop-color:#1C8DEE"
+ id="stop1049" /><a:midPointStop
+ offset="0"
+ style="stop-color:#D5E9FA" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D5E9FA" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#D5E9FA" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D5E9FA" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#A0D5FA" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#A0D5FA" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8DEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.193,172.729 c -6.098,16.039 -20.639,24.21 -31.908,18.305 -10.889,-5.702 -14.451,-22.507 -8.4,-37.45 5.929,-14.706 19.115,-23.03 30.06,-18.404 11.337,4.793 16.333,21.57 10.248,37.549 z"
+ id="path1051"
+ style="fill:url(#XMLID_148_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_149_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.6917"
+ y1="149.0425"
+ x2="166.4561"
+ y2="172.2738"
+ gradientTransform="matrix(0.987,0.0013,0.0013,0.9848,2.3638,2.1222)"><stop
+ offset="0"
+ style="stop-color:#DCEDFB"
+ id="stop1054" /><stop
+ offset="0.0169"
+ style="stop-color:#DCEDFB"
+ id="stop1056" /><stop
+ offset="0.1966"
+ style="stop-color:#A5D7FB"
+ id="stop1058" /><stop
+ offset="0.3074"
+ style="stop-color:#9FD4FA"
+ id="stop1060" /><stop
+ offset="0.4564"
+ style="stop-color:#8ECBF9"
+ id="stop1062" /><stop
+ offset="0.627"
+ style="stop-color:#72BCF6"
+ id="stop1064" /><stop
+ offset="0.8135"
+ style="stop-color:#4BA7F2"
+ id="stop1066" /><stop
+ offset="1"
+ style="stop-color:#1C8EEE"
+ id="stop1068" /><a:midPointStop
+ offset="0"
+ style="stop-color:#DCEDFB" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#DCEDFB" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#DCEDFB" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#DCEDFB" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#A5D7FB" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#A5D7FB" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8EEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.143,172.793 c -6.107,15.96 -20.578,24.028 -31.782,18.117 -10.811,-5.699 -14.388,-22.39 -8.417,-37.255 5.875,-14.683 19.055,-23 30.007,-18.376 11.361,4.797 16.295,21.585 10.192,37.514 z"
+ id="path1070"
+ style="fill:url(#XMLID_149_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_150_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.7878"
+ y1="148.87109"
+ x2="167.5164"
+ y2="172.9064"
+ gradientTransform="matrix(0.989,0.0024,0.0024,0.9849,1.8114,1.9385)"><stop
+ offset="0"
+ style="stop-color:#E3F0FB"
+ id="stop1073" /><stop
+ offset="0.0169"
+ style="stop-color:#E3F0FB"
+ id="stop1075" /><stop
+ offset="0.1966"
+ style="stop-color:#AADAFB"
+ id="stop1077" /><stop
+ offset="0.3049"
+ style="stop-color:#A4D7FA"
+ id="stop1079" /><stop
+ offset="0.4505"
+ style="stop-color:#93CEF9"
+ id="stop1081" /><stop
+ offset="0.6173"
+ style="stop-color:#77BFF6"
+ id="stop1083" /><stop
+ offset="0.7999"
+ style="stop-color:#50AAF3"
+ id="stop1085" /><stop
+ offset="0.9933"
+ style="stop-color:#1E8FEE"
+ id="stop1087" /><stop
+ offset="1"
+ style="stop-color:#1C8EEE"
+ id="stop1089" /><a:midPointStop
+ offset="0"
+ style="stop-color:#E3F0FB" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#E3F0FB" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#E3F0FB" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#E3F0FB" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#AADAFB" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#AADAFB" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8EEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.094,172.858 c -6.117,15.881 -20.516,23.845 -31.655,17.93 -10.733,-5.697 -14.325,-22.272 -8.433,-37.061 5.821,-14.661 18.995,-22.969 29.955,-18.348 11.38,4.8 16.252,21.6 10.133,37.479 z"
+ id="path1091"
+ style="fill:url(#XMLID_150_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_151_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.8831"
+ y1="148.6938"
+ x2="168.56329"
+ y2="173.5392"
+ gradientTransform="matrix(0.991,0.0034,0.0034,0.9849,1.2586,1.7549)"><stop
+ offset="0"
+ style="stop-color:#EAF4FC"
+ id="stop1094" /><stop
+ offset="0.0169"
+ style="stop-color:#EAF4FC"
+ id="stop1096" /><stop
+ offset="0.1966"
+ style="stop-color:#AEDDFC"
+ id="stop1098" /><stop
+ offset="0.303"
+ style="stop-color:#A8DAFB"
+ id="stop1100" /><stop
+ offset="0.446"
+ style="stop-color:#97D0FA"
+ id="stop1102" /><stop
+ offset="0.6099"
+ style="stop-color:#7BC1F7"
+ id="stop1104" /><stop
+ offset="0.7893"
+ style="stop-color:#54ACF3"
+ id="stop1106" /><stop
+ offset="0.9793"
+ style="stop-color:#2291EF"
+ id="stop1108" /><stop
+ offset="1"
+ style="stop-color:#1C8EEE"
+ id="stop1110" /><a:midPointStop
+ offset="0"
+ style="stop-color:#EAF4FC" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#EAF4FC" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#EAF4FC" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#EAF4FC" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#AEDDFC" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#AEDDFC" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8EEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 172.044,172.922 c -6.126,15.803 -20.455,23.662 -31.529,17.742 -10.655,-5.694 -14.262,-22.155 -8.45,-36.866 5.768,-14.638 18.936,-22.939 29.902,-18.32 11.403,4.804 16.214,21.616 10.077,37.444 z"
+ id="path1112"
+ style="fill:url(#XMLID_151_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_152_"
+ gradientUnits="userSpaceOnUse"
+ x1="125.9778"
+ y1="148.521"
+ x2="169.59399"
+ y2="174.1801"
+ gradientTransform="matrix(0.993,0.0045,0.0045,0.985,0.7063,1.5718)"><stop
+ offset="0"
+ style="stop-color:#F1F8FC"
+ id="stop1115" /><stop
+ offset="0.0169"
+ style="stop-color:#F1F8FC"
+ id="stop1117" /><stop
+ offset="0.1966"
+ style="stop-color:#B3E0FC"
+ id="stop1119" /><stop
+ offset="0.3008"
+ style="stop-color:#ADDDFB"
+ id="stop1121" /><stop
+ offset="0.4408"
+ style="stop-color:#9CD3FA"
+ id="stop1123" /><stop
+ offset="0.6013"
+ style="stop-color:#80C4F7"
+ id="stop1125" /><stop
+ offset="0.7769"
+ style="stop-color:#59AFF4"
+ id="stop1127" /><stop
+ offset="0.9628"
+ style="stop-color:#2794EF"
+ id="stop1129" /><stop
+ offset="1"
+ style="stop-color:#1C8EEE"
+ id="stop1131" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F1F8FC" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F1F8FC" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#F1F8FC" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F1F8FC" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#B3E0FC" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#B3E0FC" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8EEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 171.995,172.987 c -6.135,15.724 -20.394,23.479 -31.403,17.554 -10.577,-5.692 -14.198,-22.038 -8.466,-36.671 5.713,-14.615 18.875,-22.908 29.85,-18.292 11.424,4.806 16.173,21.631 10.019,37.409 z"
+ id="path1133"
+ style="fill:url(#XMLID_152_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_153_"
+ gradientUnits="userSpaceOnUse"
+ x1="126.0779"
+ y1="148.3438"
+ x2="170.6163"
+ y2="174.8215"
+ gradientTransform="matrix(0.995,0.0056,0.0056,0.985,0.154,1.3886)"><stop
+ offset="0"
+ style="stop-color:#F8FBFD"
+ id="stop1136" /><stop
+ offset="0.0169"
+ style="stop-color:#F8FBFD"
+ id="stop1138" /><stop
+ offset="0.1966"
+ style="stop-color:#B8E3FD"
+ id="stop1140" /><stop
+ offset="0.2987"
+ style="stop-color:#B2E0FC"
+ id="stop1142" /><stop
+ offset="0.4358"
+ style="stop-color:#A1D7FB"
+ id="stop1144" /><stop
+ offset="0.593"
+ style="stop-color:#85C7F8"
+ id="stop1146" /><stop
+ offset="0.765"
+ style="stop-color:#5EB2F4"
+ id="stop1148" /><stop
+ offset="0.9471"
+ style="stop-color:#2C98F0"
+ id="stop1150" /><stop
+ offset="1"
+ style="stop-color:#1C8FEE"
+ id="stop1152" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F8FBFD" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F8FBFD" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#F8FBFD" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F8FBFD" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#B8E3FD" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#B8E3FD" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8FEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 171.945,173.051 c -6.145,15.645 -20.332,23.296 -31.276,17.366 -10.5,-5.689 -14.136,-21.92 -8.482,-36.477 5.66,-14.592 18.816,-22.878 29.797,-18.264 11.445,4.811 16.132,21.648 9.961,37.375 z"
+ id="path1154"
+ style="fill:url(#XMLID_153_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_154_"
+ gradientUnits="userSpaceOnUse"
+ x1="126.175"
+ y1="148.168"
+ x2="171.62489"
+ y2="175.47079"
+ gradientTransform="matrix(0.997,0.0067,0.0067,0.9851,-0.3988,1.2055)"><stop
+ offset="0.0169"
+ style="stop-color:#FFFFFD"
+ id="stop1157" /><stop
+ offset="0.1966"
+ style="stop-color:#BDE6FD"
+ id="stop1159" /><stop
+ offset="0.2966"
+ style="stop-color:#B7E3FC"
+ id="stop1161" /><stop
+ offset="0.4311"
+ style="stop-color:#A6D9FB"
+ id="stop1163" /><stop
+ offset="0.5851"
+ style="stop-color:#8ACAF8"
+ id="stop1165" /><stop
+ offset="0.7538"
+ style="stop-color:#63B5F5"
+ id="stop1167" /><stop
+ offset="0.9323"
+ style="stop-color:#319AF0"
+ id="stop1169" /><stop
+ offset="1"
+ style="stop-color:#1C8FEE"
+ id="stop1171" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#FFFFFD" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#FFFFFD" /><a:midPointStop
+ offset="0.1966"
+ style="stop-color:#BDE6FD" /><a:midPointStop
+ offset="0.6441"
+ style="stop-color:#BDE6FD" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C8FEE" /></linearGradient><path
+ ns1:knockout="Off"
+ a:adobe-knockout="false"
+ d="m 171.896,173.116 c -6.154,15.566 -20.271,23.113 -31.15,17.179 -10.422,-5.688 -14.072,-21.803 -8.499,-36.282 5.605,-14.569 18.756,-22.847 29.745,-18.235 11.466,4.812 16.092,21.661 9.904,37.338 z"
+ id="path1173"
+ style="fill:url(#XMLID_154_)"
+ inkscape:connector-curvature="0" /></g><linearGradient
+ id="XMLID_155_"
+ gradientUnits="userSpaceOnUse"
+ x1="164.9543"
+ y1="202.22169"
+ x2="149.60719"
+ y2="161.93559"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0.0169"
+ style="stop-color:#FFFFFF"
+ id="stop1176" /><stop
+ offset="0.0405"
+ style="stop-color:#FFF8D8"
+ id="stop1178" /><stop
+ offset="0.0716"
+ style="stop-color:#FFF0AB"
+ id="stop1180" /><stop
+ offset="0.1058"
+ style="stop-color:#FFE982"
+ id="stop1182" /><stop
+ offset="0.1424"
+ style="stop-color:#FFE35F"
+ id="stop1184" /><stop
+ offset="0.182"
+ style="stop-color:#FFDD41"
+ id="stop1186" /><stop
+ offset="0.2257"
+ style="stop-color:#FFD929"
+ id="stop1188" /><stop
+ offset="0.2749"
+ style="stop-color:#FFD617"
+ id="stop1190" /><stop
+ offset="0.3331"
+ style="stop-color:#FFD40A"
+ id="stop1192" /><stop
+ offset="0.4089"
+ style="stop-color:#FFD202"
+ id="stop1194" /><stop
+ offset="0.5674"
+ style="stop-color:#FFD200"
+ id="stop1196" /><stop
+ offset="1"
+ style="stop-color:#FF8B00"
+ id="stop1198" /><a:midPointStop
+ offset="0.0169"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.1657"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.5674"
+ style="stop-color:#FFD200" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#FFD200" /><a:midPointStop
+ offset="1"
+ style="stop-color:#FF8B00" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 146.963,187.534 c 4.335,0.355 8.602,-1.261 12.088,-3.753 2.567,-1.832 4.755,-4.097 6.448,-6.695 0.013,-0.017 0.02,-0.032 0.032,-0.047 0.335,-0.515 0.649,-1.043 0.947,-1.583 0.002,-0.008 0.007,-0.018 0.012,-0.026 0.595,-1.093 1.106,-2.237 1.526,-3.425 1.907,-5.378 2.463,-11.103 1.254,-16.71 -1.074,-4.971 -3.68,-9.773 -7.839,-12.81 -1.984,-1.447 -4.13,-2.335 -6.593,-2.491 -2.774,-0.178 -5.532,0.516 -8.021,1.722 -0.292,0.19 -0.583,0.382 -0.873,0.591 -9.198,6.574 -13.717,17.453 -13.508,27.301 0.333,5.737 2.45,11.024 6.418,14.594 2.323,1.846 5.103,3.085 8.109,3.332 z"
+ id="path1200"
+ style="fill:url(#XMLID_155_)"
+ inkscape:connector-curvature="0" /><path
+ ns1:knockout="Off"
+ d="m 152.871,163.726 c 0.6,-3.865 -0.522,-7.005 -2.662,-6.849 -2.314,0.169 -4.753,4.052 -5.243,8.456 -0.463,4.194 1.088,6.84 3.284,6.14 2.048,-0.656 4.051,-4.043 4.621,-7.747 z"
+ id="path1202"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 162.636,162.831 c -0.229,-0.074 -0.595,-0.122 -1.02,0.095 -1.451,0.724 -2.662,4.385 -2.89,5.114 -0.319,1.026 -1.306,4.479 -0.473,5.754 0.22,0.333 0.541,0.539 0.91,0.59 0.917,0.124 1.58,-0.733 1.997,-1.385 0.242,-0.378 0.491,-0.838 0.734,-1.364 0.351,-0.751 0.686,-1.621 0.961,-2.508 0.661,-2.108 1.514,-5.73 -0.219,-6.296 z"
+ id="path1204"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><linearGradient
+ id="XMLID_156_"
+ gradientUnits="userSpaceOnUse"
+ x1="157.2424"
+ y1="146.5264"
+ x2="154.0309"
+ y2="160.3349"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#FFFFFF"
+ id="stop1207" /><stop
+ offset="0.4169"
+ style="stop-color:#FFFFFD"
+ id="stop1209" /><stop
+ offset="0.6466"
+ style="stop-color:#FFFFF5"
+ id="stop1211" /><stop
+ offset="0.8302"
+ style="stop-color:#FFFFE7"
+ id="stop1213" /><stop
+ offset="0.9894"
+ style="stop-color:#FFFFD4"
+ id="stop1215" /><stop
+ offset="1"
+ style="stop-color:#FFFFD2"
+ id="stop1217" /><a:midPointStop
+ offset="0"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="0.8136"
+ style="stop-color:#FFFFFF" /><a:midPointStop
+ offset="1"
+ style="stop-color:#FFFFD2" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 141.049,150.84 c -3.562,6.513 -3.258,7.708 7.139,8.935 7.664,1.236 11.396,3.66 15.189,5.776 2.492,1.122 4.064,3.785 5.62,1.77 2.158,-3.913 1.6,-13.077 -3.001,-19.51 -7.091,-9.545 -19.314,-5.796 -24.947,3.029 z"
+ id="path1219"
+ style="opacity:0.75;fill:url(#XMLID_156_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_157_"
+ gradientUnits="userSpaceOnUse"
+ x1="174.77859"
+ y1="143.79491"
+ x2="142.94881"
+ y2="191.53931"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0.0056"
+ style="stop-color:#1C86EE"
+ id="stop1222" /><stop
+ offset="0.3764"
+ style="stop-color:#FCFFFC"
+ id="stop1224" /><stop
+ offset="0.437"
+ style="stop-color:#F0F9FB"
+ id="stop1226" /><stop
+ offset="0.5465"
+ style="stop-color:#D0E7F9"
+ id="stop1228" /><stop
+ offset="0.6924"
+ style="stop-color:#9DCCF6"
+ id="stop1230" /><stop
+ offset="0.8669"
+ style="stop-color:#56A6F2"
+ id="stop1232" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1234" /><a:midPointStop
+ offset="0.0056"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#1C86EE" /><a:midPointStop
+ offset="0.3764"
+ style="stop-color:#FCFFFC" /><a:midPointStop
+ offset="0.5763"
+ style="stop-color:#FCFFFC" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 171.884,152.011 c -1.553,-5.683 -5.044,-10.198 -9.621,-12.281 2.69,1.772 4.894,4.438 6.383,7.697 0.524,1.133 0.966,2.337 1.31,3.598 1.867,6.835 0.87,15.174 -2.249,22.22 0.136,-0.382 0.264,-0.767 0.388,-1.158 -0.129,0.322 -0.261,0.641 -0.4,0.953 0.01,-0.018 0.02,-0.034 0.027,-0.051 -0.985,2.716 -2.309,5.289 -3.931,7.549 -4.159,5.805 -10.422,9.747 -16.525,9.768 6.978,0.854 14.433,-3.608 19.244,-10.475 5.466,-7.807 7.768,-19.056 5.374,-27.82 z"
+ id="path1236"
+ style="fill:url(#XMLID_157_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_158_"
+ gradientUnits="userSpaceOnUse"
+ x1="187.45039"
+ y1="142.1313"
+ x2="164.2581"
+ y2="156.7162"
+ gradientTransform="matrix(1,0.0046,-0.0046,1,1.194,-1.0432)"><stop
+ offset="0"
+ style="stop-color:#CDF0FC"
+ id="stop1239" /><stop
+ offset="0.0783"
+ style="stop-color:#C1E9FB"
+ id="stop1241" /><stop
+ offset="0.2197"
+ style="stop-color:#A1D6F9"
+ id="stop1243" /><stop
+ offset="0.408"
+ style="stop-color:#6EB7F4"
+ id="stop1245" /><stop
+ offset="0.6339"
+ style="stop-color:#278DEF"
+ id="stop1247" /><stop
+ offset="0.6685"
+ style="stop-color:#1C86EE"
+ id="stop1249" /><a:midPointStop
+ offset="0"
+ style="stop-color:#CDF0FC" /><a:midPointStop
+ offset="0.5763"
+ style="stop-color:#CDF0FC" /><a:midPointStop
+ offset="0.6685"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 164.172,141.119 c -1.251,-1.094 -2.555,-1.922 -4.174,-2.326 -1.721,-0.43 -3.498,-0.503 -5.252,-0.271 -2.867,0.38 -5.571,1.604 -7.956,3.206 2.497,-1.214 5.264,-1.912 8.048,-1.733 2.463,0.156 4.609,1.043 6.593,2.491 4.159,3.037 6.765,7.839 7.839,12.81 1.209,5.607 0.653,11.332 -1.254,16.71 -0.419,1.188 -0.931,2.332 -1.526,3.425 -0.005,0.008 -0.01,0.018 -0.012,0.026 -0.298,0.54 -0.612,1.069 -0.947,1.583 -0.012,0.015 -0.019,0.03 -0.032,0.047 -1.693,2.599 -3.881,4.864 -6.448,6.695 -3.487,2.492 -7.753,4.108 -12.088,3.753 -3.006,-0.247 -5.786,-1.486 -8.109,-3.333 -4.351,-3.915 -6.502,-9.888 -6.484,-16.264 -0.254,7.866 2.438,15.275 8.14,19.584 2.119,1.604 4.413,2.494 6.758,2.782 3.801,-0.011 7.666,-1.546 11.044,-4.104 4.957,-3.631 8.622,-9.341 10.458,-14.954 3.126,-9.567 3.672,-22.896 -4.598,-30.127 z"
+ id="path1251"
+ style="fill:url(#XMLID_158_)"
+ inkscape:connector-curvature="0" /></g><g
+ id="g1253"
+ transform="translate(-99.723029,-150.78602)"><path
+ ns1:knockout="Off"
+ d="m 374.069,178.561 c -0.518,-1.209 -1.943,-1.804 -2.892,-2.197 l 0,0 c -5.054,-2.121 -10.609,-1.918 -15.247,0.558 -2.162,1.159 -3.67,2.625 -4.479,4.36 -1.121,2.403 -0.544,4.625 1.627,6.257 1.782,1.344 3.916,1.957 5.948,2.472 2.727,0.688 4.185,1.78 4.465,3.334 0.336,1.868 -2.13,3.869 -3.915,4.377 -2.181,0.618 -4.308,0.205 -5.683,-1.104 -0.185,-0.176 -0.364,-0.368 -0.558,-0.57 -0.627,-0.659 -1.334,-1.405 -2.301,-1.709 -1.347,-0.427 -2.814,0.161 -3.671,0.928 -0.735,0.661 -1.07,1.479 -0.969,2.361 0.159,1.401 1.395,2.667 2.545,3.305 3.47,1.917 8.33,2.054 14.451,0.416 3.881,-1.036 8.297,-4.134 8.815,-8.484 0.578,-4.775 -4.066,-5.914 -7.461,-6.744 -0.476,-0.117 -0.923,-0.225 -1.346,-0.339 -1.201,-0.327 -3.317,-1.071 -3.959,-2.365 -0.252,-0.51 -0.25,-1.06 0.008,-1.683 0.848,-2.061 3.841,-2.931 5.852,-2.302 0.743,0.23 1.438,0.76 2.173,1.318 1.413,1.071 3.013,2.287 5.056,1.076 1.138,-0.669 2.059,-2.042 1.541,-3.265 z"
+ id="path1255"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 347.107,185.276 c 0.838,-2.559 2.233,-6.842 -0.644,-8.913 l -0.273,0.378 0.273,-0.381 c -2.172,-1.555 -5.265,-1.475 -7.4,-1.277 -1.379,0.127 -2.694,0.396 -3.9,0.8 l -0.27,0.09 c -1.246,0.419 -2.42,0.814 -3.707,0.793 -0.68,-0.012 -1.313,-0.315 -1.98,-0.64 -0.314,-0.151 -0.638,-0.307 -0.976,-0.434 -1.359,-0.522 -2.783,-0.835 -4.225,-0.938 -1.434,-0.099 -2.77,0.006 -3.973,0.318 -0.513,0.132 -1.015,0.305 -1.498,0.473 -0.822,0.285 -1.597,0.554 -2.424,0.631 -0.888,0.085 -1.829,-0.053 -2.821,-0.205 -1.745,-0.26 -3.555,-0.532 -5.178,0.471 -2.08,1.279 -2.789,3.631 -3.419,5.706 -0.123,0.414 -0.243,0.806 -0.373,1.189 l -0.715,2.152 -2.154,6.479 c 0,0 -0.567,1.636 -0.567,1.636 -0.486,1.382 -0.987,2.81 -1.335,4.26 -0.215,0.915 -0.79,3.34 0.968,4.18 1.994,0.954 4.081,-0.618 5.264,-2.601 0.522,-0.872 0.831,-1.827 1.131,-2.751 l 0.138,-0.413 1.44,-4.322 c 0.176,-0.522 0.349,-1.061 0.512,-1.583 0.571,-1.813 1.164,-3.685 2.087,-5.318 1.573,-2.787 5.328,-4.991 8.656,-3.695 1.48,0.577 2.222,2.113 1.892,3.915 -0.164,0.891 -0.488,1.788 -0.8,2.656 -0.126,0.348 -0.257,0.709 -0.375,1.065 0,-0.001 -1.401,4.227 -1.401,4.227 l -0.218,0.664 c -0.337,1.037 -0.683,2.111 -0.997,3.175 0,0.002 -0.031,0.111 -0.031,0.111 -0.346,1.185 -0.822,2.807 -0.093,4.093 0.318,0.563 0.837,0.931 1.492,1.067 1.182,0.243 2.59,-0.309 3.4,-0.923 1.763,-1.337 2.485,-3.735 3.065,-5.657 l 0.122,-0.4 c 0.462,-1.524 0.964,-3.063 1.45,-4.552 l 1.061,-3.292 c 0.638,-2.021 1.592,-4.279 3.836,-5.688 1.438,-0.904 3.823,-1.608 5.817,-0.617 2.174,1.083 1.719,3.6 0.988,5.918 -0.732,2.33 -1.563,4.969 -2.454,7.511 -0.734,2.092 -1.383,4.896 -0.317,6.393 0.471,0.662 1.208,0.995 2.189,0.99 3.044,-0.005 4.46,-3.898 5.145,-5.767 0.883,-2.428 1.67,-4.931 2.436,-7.353 l 1.134,-3.557 0.022,-0.064 z"
+ id="path1257"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 303.573,170.912 0,0 c 0.318,-0.958 0.758,-2.27 0.384,-3.487 -0.366,-1.18 -1.568,-1.734 -3.222,-1.482 -1.99,0.3 -3.494,1.76 -4.475,4.338 -1.388,3.639 -2.576,7.433 -3.73,11.1 l -1.695,5.323 c 0,0.003 -2.808,8.527 -2.808,8.527 -0.082,0.258 -0.195,0.556 -0.312,0.873 -0.595,1.588 -1.414,3.764 -0.416,5.264 0.348,0.525 0.886,0.857 1.557,0.962 1.188,0.187 2.64,-0.379 3.459,-1.033 1.376,-1.093 2.119,-2.739 2.668,-4.206 0.347,-0.936 0.632,-1.902 0.905,-2.835 l 0.382,-1.281 c 0.491,-1.585 1.033,-3.189 1.559,-4.74 l 0.738,-2.202 3.164,-9.55 1.842,-5.571 z"
+ id="path1259"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 277.81,180.669 c 0.863,-0.629 1.755,-1.276 2.476,-2.125 l -0.358,-0.301 0.358,0.3 c 0.911,-1.073 0.336,-2.331 -0.084,-3.25 -0.059,-0.129 -0.115,-0.256 -0.167,-0.375 -0.488,-1.143 -0.618,-2.146 -0.382,-2.98 0.305,-1.075 1.21,-1.617 2.17,-2.19 0.991,-0.592 2.014,-1.204 2.471,-2.429 0.338,-0.916 0.052,-1.52 -0.249,-1.865 -1.092,-1.256 -4.009,-1.08 -4.948,-0.874 -2.221,0.493 -4.303,1.802 -6.188,3.895 -0.698,0.775 -1.31,1.65 -1.905,2.496 -0.859,1.22 -1.747,2.484 -2.875,3.413 -0.188,0.155 -0.389,0.304 -0.603,0.463 -0.722,0.538 -1.54,1.147 -1.945,2.065 -0.516,1.162 -0.032,2.259 0.392,3.227 0.098,0.223 0.19,0.435 0.269,0.639 0.667,1.755 0.507,3.067 -0.026,4.873 -0.423,1.43 -0.904,2.874 -1.368,4.27 l -0.203,0.608 c -0.263,0.805 -0.563,1.617 -0.846,2.402 -0.333,0.902 -0.674,1.833 -0.972,2.765 l -0.055,0.166 c -0.501,1.555 -1.433,4.441 0.079,5.865 0.47,0.443 1.09,0.663 1.785,0.636 1.309,-0.053 2.718,-0.966 3.472,-1.796 1.068,-1.176 1.72,-2.629 2.265,-4.023 0.805,-2.062 1.455,-4.212 2.085,-6.292 0.416,-1.375 0.849,-2.802 1.316,-4.182 0.465,-1.36 0.929,-2.575 1.902,-3.63 0.616,-0.671 1.354,-1.205 2.134,-1.771 z"
+ id="path1261"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 288.105,181.76 c 0.083,-0.25 0.202,-0.528 0.324,-0.823 0.411,-0.992 0.877,-2.119 0.693,-3.14 l 10e-4,0 c -0.124,-0.724 -0.484,-1.281 -1.042,-1.606 -1.065,-0.62 -2.455,-0.224 -3.004,-0.026 -1.848,0.672 -3.002,1.91 -3.743,4.016 l -1.5,4.156 -1.475,4.076 -0.869,2.563 c -0.484,1.436 -0.979,2.921 -1.53,4.354 l -0.11,0.288 c -0.532,1.372 -1.197,3.081 -0.886,4.665 0.171,0.868 0.702,1.497 1.497,1.766 1.273,0.432 2.955,-0.13 3.851,-0.918 1.775,-1.576 2.488,-3.801 3.173,-5.956 0.14,-0.436 0.285,-0.886 0.436,-1.32 l 1.614,-4.665 1.284,-3.709 1.286,-3.721 z"
+ id="path1263"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 287.126,170.453 -0.06,-0.033 c 0.801,0.536 1.919,0.518 3.075,-0.053 1.077,-0.531 2.196,-1.592 2.273,-2.767 0.03,-0.476 -0.102,-1.155 -0.915,-1.695 -1.119,-0.745 -2.646,-0.381 -3.702,0.207 -1.235,0.688 -2.013,1.726 -1.981,2.654 0.018,0.495 0.257,1.19 1.31,1.687 z"
+ id="path1265"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 263.784,171.393 c -0.5,-2.365 -2.247,-4.543 -4.795,-5.978 l 0,0.001 c -3.849,-2.169 -9.13,-2.466 -14.868,-0.841 -4.233,1.202 -8.194,3.629 -11.456,7.019 -3.144,3.269 -5.534,7.291 -6.912,11.633 -1.854,5.821 -1.277,11.148 1.578,14.613 3.38,4.106 9.147,4.468 12.279,4.322 5.15,-0.246 10.108,-2.085 14.349,-5.318 1.531,-1.168 4.385,-3.341 4.204,-5.813 -0.037,-0.514 -0.276,-0.958 -0.692,-1.279 -0.674,-0.522 -1.683,-0.627 -2.386,-0.502 -1.226,0.227 -2.24,1.058 -3.138,1.79 l -0.449,0.362 c -1.908,1.507 -3.986,3.035 -6.548,3.733 -2.5,0.678 -5.005,0.737 -7.057,0.17 -5.951,-1.649 -4.499,-9.141 -3.911,-11.397 1.328,-5.108 4.568,-9.584 8.658,-11.978 3.939,-2.302 10.393,-2.634 13.36,0.57 0.397,0.433 0.725,1.006 1.04,1.56 0.81,1.421 1.727,3.034 4.082,2.331 2.224,-0.666 3.195,-2.487 2.662,-4.998 z"
+ id="path1267"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 218.376,165.557 c -3.85,-2.166 -9.13,-2.463 -14.866,-0.837 -8.435,2.393 -15.473,9.535 -18.37,18.648 -1.854,5.823 -1.276,11.152 1.58,14.616 3.381,4.105 9.145,4.468 12.277,4.32 5.189,-0.244 10.181,-2.105 14.439,-5.385 3.166,-2.436 7.522,-6.221 8.751,-10.965 0.56,-2.147 0.171,-3.742 -1.091,-4.484 -0.788,-0.464 -1.762,-0.532 -2.617,-0.594 -0.191,-0.013 -0.373,-0.026 -0.547,-0.044 -1.563,-0.15 -2.854,-0.183 -4.066,-0.103 -3.681,0.245 -5.999,1.249 -6.891,2.989 -1.021,2.007 0.73,3.055 2.009,3.818 0.6,0.359 1.222,0.73 1.529,1.137 0.83,1.084 -0.178,2.822 -1.055,3.723 -1.199,1.227 -2.729,2.139 -4.538,2.711 -1.364,0.431 -6.073,1.677 -9.396,-0.416 -3.129,-1.971 -2.963,-6.216 -2.586,-8.572 0.588,-3.669 2.018,-6.985 4.144,-9.583 l -0.363,-0.296 0.363,0.295 c 1.919,-2.348 3.799,-3.947 5.751,-4.891 2.163,-1.048 4.733,-1.465 7.433,-1.205 1.816,0.175 4.261,0.805 5.594,2.798 0.215,0.317 0.393,0.659 0.583,1.02 0.336,0.633 0.683,1.288 1.229,1.834 1.149,1.147 2.866,0.466 3.6,0.174 2.104,-0.838 2.382,-3.322 1.723,-5.41 -0.667,-2.113 -2.307,-3.995 -4.619,-5.298 z"
+ id="path1269"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 374.069,178.561 c -0.518,-1.209 -1.943,-1.804 -2.892,-2.197 l 0,0 c -5.054,-2.121 -10.609,-1.918 -15.247,0.558 -2.162,1.159 -3.67,2.625 -4.479,4.36 -1.121,2.403 -0.544,4.625 1.627,6.257 1.782,1.344 3.916,1.957 5.948,2.472 2.727,0.688 4.185,1.78 4.465,3.334 0.336,1.868 -2.13,3.869 -3.915,4.377 -2.181,0.618 -4.308,0.205 -5.683,-1.104 -0.185,-0.176 -0.364,-0.368 -0.558,-0.57 -0.627,-0.659 -1.334,-1.405 -2.301,-1.709 -1.347,-0.427 -2.814,0.161 -3.671,0.928 -0.735,0.661 -1.07,1.479 -0.969,2.361 0.159,1.401 1.395,2.667 2.545,3.305 3.47,1.917 8.33,2.054 14.451,0.416 3.881,-1.036 8.297,-4.134 8.815,-8.484 0.578,-4.775 -4.066,-5.914 -7.461,-6.744 -0.476,-0.117 -0.923,-0.225 -1.346,-0.339 -1.201,-0.327 -3.317,-1.071 -3.959,-2.365 -0.252,-0.51 -0.25,-1.06 0.008,-1.683 0.848,-2.061 3.841,-2.931 5.852,-2.302 0.743,0.23 1.438,0.76 2.173,1.318 1.413,1.071 3.013,2.287 5.056,1.076 1.138,-0.669 2.059,-2.042 1.541,-3.265 z"
+ id="path1271"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 347.107,185.276 c 0.838,-2.559 2.233,-6.842 -0.644,-8.913 l 0,-0.003 c -2.172,-1.555 -5.265,-1.475 -7.4,-1.277 -1.379,0.127 -2.694,0.396 -3.9,0.8 l -0.27,0.09 c -1.246,0.419 -2.42,0.814 -3.707,0.793 -0.68,-0.012 -1.313,-0.315 -1.98,-0.64 -0.314,-0.151 -0.638,-0.307 -0.976,-0.434 -1.359,-0.522 -2.783,-0.835 -4.225,-0.938 -1.434,-0.099 -2.77,0.006 -3.973,0.318 -0.513,0.132 -1.015,0.305 -1.498,0.473 -0.822,0.285 -1.597,0.554 -2.424,0.631 -0.888,0.085 -1.829,-0.053 -2.821,-0.205 -1.745,-0.26 -3.555,-0.532 -5.178,0.471 -2.08,1.279 -2.789,3.631 -3.419,5.706 -0.123,0.414 -0.243,0.806 -0.373,1.189 l -0.715,2.152 -2.154,6.479 c 0,0 -0.567,1.636 -0.567,1.636 -0.486,1.382 -0.987,2.81 -1.335,4.26 -0.215,0.915 -0.79,3.34 0.968,4.18 1.994,0.954 4.081,-0.618 5.264,-2.601 0.522,-0.872 0.831,-1.827 1.131,-2.751 l 0.138,-0.413 1.44,-4.322 c 0.176,-0.522 0.349,-1.061 0.512,-1.583 0.571,-1.813 1.164,-3.685 2.087,-5.318 1.573,-2.787 5.328,-4.991 8.656,-3.695 1.48,0.577 2.222,2.113 1.892,3.915 -0.164,0.891 -0.488,1.788 -0.8,2.656 -0.126,0.348 -0.257,0.709 -0.375,1.065 0,-0.001 -1.401,4.227 -1.401,4.227 l -0.218,0.664 c -0.337,1.037 -0.683,2.111 -0.997,3.175 0,0.002 -0.031,0.111 -0.031,0.111 -0.346,1.185 -0.822,2.807 -0.093,4.093 0.318,0.563 0.837,0.931 1.492,1.067 1.182,0.243 2.59,-0.309 3.4,-0.923 1.763,-1.337 2.485,-3.735 3.065,-5.657 l 0.122,-0.4 c 0.462,-1.524 0.964,-3.063 1.45,-4.552 l 1.061,-3.292 c 0.638,-2.021 1.592,-4.279 3.836,-5.688 1.438,-0.904 3.823,-1.608 5.817,-0.617 2.174,1.083 1.719,3.6 0.988,5.918 -0.732,2.33 -1.563,4.969 -2.454,7.511 -0.734,2.092 -1.383,4.896 -0.317,6.393 0.471,0.662 1.208,0.995 2.189,0.99 3.044,-0.005 4.46,-3.898 5.145,-5.767 0.883,-2.428 1.67,-4.931 2.436,-7.353 l 1.134,-3.557 0.022,-0.064 z"
+ id="path1273"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 303.573,170.912 0,0 c 0.318,-0.958 0.758,-2.27 0.384,-3.487 -0.366,-1.18 -1.568,-1.734 -3.222,-1.482 -1.99,0.3 -3.494,1.76 -4.475,4.338 -1.388,3.639 -2.576,7.433 -3.73,11.1 l -1.695,5.323 c 0,0.003 -2.808,8.527 -2.808,8.527 -0.082,0.258 -0.195,0.556 -0.312,0.873 -0.595,1.588 -1.414,3.764 -0.416,5.264 0.348,0.525 0.886,0.857 1.557,0.962 1.188,0.187 2.64,-0.379 3.459,-1.033 1.376,-1.093 2.119,-2.739 2.668,-4.206 0.347,-0.936 0.632,-1.902 0.905,-2.835 l 0.382,-1.281 c 0.491,-1.585 1.033,-3.189 1.559,-4.74 l 0.738,-2.202 3.164,-9.55 1.842,-5.571 z"
+ id="path1275"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 277.81,180.669 c 0.863,-0.629 1.755,-1.276 2.476,-2.125 l 0,-0.001 c 0.911,-1.073 0.336,-2.331 -0.084,-3.25 -0.059,-0.129 -0.115,-0.256 -0.167,-0.375 -0.488,-1.143 -0.618,-2.146 -0.382,-2.98 0.305,-1.075 1.21,-1.617 2.17,-2.19 0.991,-0.592 2.014,-1.204 2.471,-2.429 0.338,-0.916 0.052,-1.52 -0.249,-1.865 -1.092,-1.256 -4.009,-1.08 -4.948,-0.874 -2.221,0.493 -4.303,1.802 -6.188,3.895 -0.698,0.775 -1.31,1.65 -1.905,2.496 -0.859,1.22 -1.747,2.484 -2.875,3.413 -0.188,0.155 -0.389,0.304 -0.603,0.463 -0.722,0.538 -1.54,1.147 -1.945,2.065 -0.516,1.162 -0.032,2.259 0.392,3.227 0.098,0.223 0.19,0.435 0.269,0.639 0.667,1.755 0.507,3.067 -0.026,4.873 -0.423,1.43 -0.904,2.874 -1.368,4.27 l -0.203,0.608 c -0.263,0.805 -0.563,1.617 -0.846,2.402 -0.333,0.902 -0.674,1.833 -0.972,2.765 l -0.055,0.166 c -0.501,1.555 -1.433,4.441 0.079,5.865 0.47,0.443 1.09,0.663 1.785,0.636 1.309,-0.053 2.718,-0.966 3.472,-1.796 1.068,-1.176 1.72,-2.629 2.265,-4.023 0.805,-2.062 1.455,-4.212 2.085,-6.292 0.416,-1.375 0.849,-2.802 1.316,-4.182 0.465,-1.36 0.929,-2.575 1.902,-3.63 0.616,-0.671 1.354,-1.205 2.134,-1.771 z"
+ id="path1277"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 288.105,181.76 c 0.083,-0.25 0.202,-0.528 0.324,-0.823 0.411,-0.992 0.877,-2.119 0.693,-3.14 l 10e-4,0 c -0.124,-0.724 -0.484,-1.281 -1.042,-1.606 -1.065,-0.62 -2.455,-0.224 -3.004,-0.026 -1.848,0.672 -3.002,1.91 -3.743,4.016 l -1.5,4.156 -1.475,4.076 -0.869,2.563 c -0.484,1.436 -0.979,2.921 -1.53,4.354 l -0.11,0.288 c -0.532,1.372 -1.197,3.081 -0.886,4.665 0.171,0.868 0.702,1.497 1.497,1.766 1.273,0.432 2.955,-0.13 3.851,-0.918 1.775,-1.576 2.488,-3.801 3.173,-5.956 0.14,-0.436 0.285,-0.886 0.436,-1.32 l 1.614,-4.665 1.284,-3.709 1.286,-3.721 z"
+ id="path1279"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 287.126,170.453 -0.06,-0.033 c 0.801,0.536 1.919,0.518 3.075,-0.053 1.077,-0.531 2.196,-1.592 2.273,-2.767 0.03,-0.476 -0.102,-1.155 -0.915,-1.695 -1.119,-0.745 -2.646,-0.381 -3.702,0.207 -1.235,0.688 -2.013,1.726 -1.981,2.654 0.018,0.495 0.257,1.19 1.31,1.687 z"
+ id="path1281"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 263.784,171.393 c -0.5,-2.365 -2.247,-4.543 -4.795,-5.978 l 0,0.001 c -3.849,-2.169 -9.13,-2.466 -14.868,-0.841 -4.233,1.202 -8.194,3.629 -11.456,7.019 -3.144,3.269 -5.534,7.291 -6.912,11.633 -1.854,5.821 -1.277,11.148 1.578,14.613 3.38,4.106 9.147,4.468 12.279,4.322 5.15,-0.246 10.108,-2.085 14.349,-5.318 1.531,-1.168 4.385,-3.341 4.204,-5.813 -0.037,-0.514 -0.276,-0.958 -0.692,-1.279 -0.674,-0.522 -1.683,-0.627 -2.386,-0.502 -1.226,0.227 -2.24,1.058 -3.138,1.79 l -0.449,0.362 c -1.908,1.507 -3.986,3.035 -6.548,3.733 -2.5,0.678 -5.005,0.737 -7.057,0.17 -5.951,-1.649 -4.499,-9.141 -3.911,-11.397 1.328,-5.108 4.568,-9.584 8.658,-11.978 3.939,-2.302 10.393,-2.634 13.36,0.57 0.397,0.433 0.725,1.006 1.04,1.56 0.81,1.421 1.727,3.034 4.082,2.331 2.224,-0.666 3.195,-2.487 2.662,-4.998 z"
+ id="path1283"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><path
+ ns1:knockout="Off"
+ d="m 218.376,165.557 c -3.85,-2.166 -9.13,-2.463 -14.866,-0.837 -8.435,2.393 -15.473,9.535 -18.37,18.648 -1.854,5.823 -1.276,11.152 1.58,14.616 3.381,4.105 9.145,4.468 12.277,4.32 5.189,-0.244 10.181,-2.105 14.439,-5.385 3.166,-2.436 7.522,-6.221 8.751,-10.965 0.56,-2.147 0.171,-3.742 -1.091,-4.484 -0.788,-0.464 -1.762,-0.532 -2.617,-0.594 -0.191,-0.013 -0.373,-0.026 -0.547,-0.044 -1.563,-0.15 -2.854,-0.183 -4.066,-0.103 -3.681,0.245 -5.999,1.249 -6.891,2.989 -1.021,2.007 0.73,3.055 2.009,3.818 0.6,0.359 1.222,0.73 1.529,1.137 0.83,1.084 -0.178,2.822 -1.055,3.723 -1.199,1.227 -2.729,2.139 -4.538,2.711 -1.364,0.431 -6.073,1.677 -9.396,-0.416 -3.129,-1.971 -2.963,-6.216 -2.586,-8.572 0.588,-3.669 2.018,-6.985 4.144,-9.583 l -0.363,-0.296 0.363,0.295 c 1.919,-2.348 3.799,-3.947 5.751,-4.891 2.163,-1.048 4.733,-1.465 7.433,-1.205 1.816,0.175 4.261,0.805 5.594,2.798 0.215,0.317 0.393,0.659 0.583,1.02 0.336,0.633 0.683,1.288 1.229,1.834 1.149,1.147 2.866,0.466 3.6,0.174 2.104,-0.838 2.382,-3.322 1.723,-5.41 -0.667,-2.113 -2.307,-3.995 -4.619,-5.298 z"
+ id="path1285"
+ inkscape:connector-curvature="0"
+ style="fill:#1c86ee" /><linearGradient
+ id="XMLID_159_"
+ gradientUnits="userSpaceOnUse"
+ x1="365.38599"
+ y1="171.939"
+ x2="344.26141"
+ y2="240.946"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1288" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1290" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1292" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 359.018,181.556 c 0.949,-2.313 4.176,-3.272 6.421,-2.571 2.354,0.732 4.128,4.052 6.852,2.441 0.854,-0.505 1.794,-1.634 1.348,-2.683 -0.435,-1.008 -1.702,-1.561 -2.639,-1.948 -4.786,-2.01 -10.259,-1.912 -14.848,0.538 -1.771,0.949 -3.412,2.29 -4.278,4.146 -1.052,2.253 -0.464,4.222 1.485,5.688 1.706,1.285 3.739,1.875 5.782,2.392 0.822,0.207 1.726,0.503 2.54,0.938 3.183,-0.361 6.069,-0.898 8.662,-1.623 -1.773,-1.543 -4.819,-2.036 -7.065,-2.646 -2.064,-0.558 -5.392,-1.922 -4.26,-4.672 z"
+ id="path1294"
+ style="fill:url(#XMLID_159_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_160_"
+ gradientUnits="userSpaceOnUse"
+ x1="332.6799"
+ y1="161.3398"
+ x2="311.52939"
+ y2="230.4315"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1297" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1299" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1301" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 346.19,176.741 c -1.972,-1.413 -4.771,-1.407 -7.085,-1.193 -1.288,0.118 -2.566,0.37 -3.795,0.779 -1.364,0.456 -2.669,0.93 -4.135,0.906 -1.128,-0.019 -2.087,-0.716 -3.11,-1.104 -1.31,-0.502 -2.694,-0.809 -4.093,-0.907 -1.272,-0.089 -2.581,-0.018 -3.821,0.303 -1.347,0.347 -2.599,0.985 -3.993,1.119 -2.551,0.244 -5.455,-1.25 -7.801,0.198 -2.307,1.42 -2.799,4.262 -3.594,6.646 -0.255,0.77 -0.51,1.536 -0.763,2.305 1.946,0.332 3.863,0.65 5.77,0.95 0.271,-0.656 0.565,-1.295 0.911,-1.911 1.718,-3.05 5.729,-5.265 9.233,-3.901 1.829,0.714 2.521,2.577 2.179,4.434 -0.189,1.035 -0.569,2.04 -0.929,3.039 2.079,0.272 4.121,0.521 6.127,0.747 0.193,-0.593 0.389,-1.183 0.576,-1.776 0.755,-2.402 1.832,-4.563 4.029,-5.943 1.803,-1.132 4.296,-1.623 6.274,-0.638 2.585,1.285 1.929,4.247 1.227,6.475 -0.306,0.971 -0.612,1.938 -0.925,2.902 2.224,0.15 4.383,0.266 6.479,0.339 0.567,-1.771 1.115,-3.544 1.691,-5.308 0.802,-2.454 2.174,-6.571 -0.452,-8.461 z"
+ id="path1303"
+ style="fill:url(#XMLID_160_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_161_"
+ gradientUnits="userSpaceOnUse"
+ x1="305.2522"
+ y1="152.46831"
+ x2="283.8183"
+ y2="222.4857"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1306" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1308" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1310" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 303.511,167.562 c -0.36,-1.168 -1.658,-1.318 -2.708,-1.16 -2.174,0.331 -3.378,2.125 -4.105,4.043 -1.647,4.329 -3.001,8.8 -4.402,13.228 2.078,0.396 4.143,0.781 6.18,1.15 1.551,-4.686 3.104,-9.371 4.657,-14.06 0.331,-0.995 0.702,-2.153 0.378,-3.201 z"
+ id="path1312"
+ style="fill:url(#XMLID_161_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_162_"
+ gradientUnits="userSpaceOnUse"
+ x1="282.7883"
+ y1="146.2827"
+ x2="261.77649"
+ y2="214.92149"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1315" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1317" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1319" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 279.927,178.243 c 0.826,-0.975 0.095,-2.17 -0.32,-3.141 -0.439,-1.024 -0.714,-2.195 -0.402,-3.291 0.683,-2.417 3.825,-2.43 4.651,-4.655 0.899,-2.427 -3.341,-2.408 -4.659,-2.118 -2.379,0.526 -4.335,1.965 -5.941,3.75 -1.693,1.88 -2.862,4.337 -4.831,5.957 -0.851,0.697 -1.952,1.309 -2.418,2.357 -0.159,0.36 -0.194,0.717 -0.163,1.073 3.784,0.841 7.536,1.658 11.248,2.442 0.995,-0.738 2.037,-1.43 2.835,-2.374 z"
+ id="path1321"
+ style="fill:url(#XMLID_162_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_163_"
+ gradientUnits="userSpaceOnUse"
+ x1="294.25809"
+ y1="149.7964"
+ x2="273.24701"
+ y2="218.4326"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1324" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1326" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1328" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 288.667,177.878 c -0.3,-1.753 -2.064,-1.77 -3.43,-1.273 -1.848,0.669 -2.814,1.892 -3.462,3.73 -0.136,0.391 -0.282,0.781 -0.419,1.171 1.991,0.41 3.965,0.805 5.93,1.195 0.127,-0.365 0.251,-0.729 0.375,-1.092 0.377,-1.081 1.212,-2.561 1.006,-3.731 z"
+ id="path1330"
+ style="fill:url(#XMLID_163_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_164_"
+ gradientUnits="userSpaceOnUse"
+ x1="294.82932"
+ y1="149.33299"
+ x2="273.13849"
+ y2="220.19"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1333" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1335" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1337" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 291.243,166.296 c -2.219,-1.479 -7.096,2.231 -3.918,3.736 2.031,1.363 6.318,-2.141 3.918,-3.736 z"
+ id="path1339"
+ style="fill:url(#XMLID_164_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_165_"
+ gradientUnits="userSpaceOnUse"
+ x1="257.83719"
+ y1="137.8828"
+ x2="236.47681"
+ y2="207.6601"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1342" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1344" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1346" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 242.406,171.526 c 3.845,-2.247 10.615,-2.931 13.935,0.658 1.487,1.604 1.817,4.604 4.648,3.759 2.125,-0.636 2.779,-2.368 2.34,-4.456 -0.527,-2.486 -2.408,-4.449 -4.566,-5.666 -4.369,-2.46 -9.845,-2.12 -14.514,-0.796 -4.294,1.217 -8.162,3.684 -11.25,6.893 -1.124,1.173 -2.15,2.446 -3.067,3.792 2.661,-0.205 5.331,-0.341 8.002,-0.394 1.281,-1.501 2.78,-2.8 4.472,-3.79 z"
+ id="path1348"
+ style="fill:url(#XMLID_165_)"
+ inkscape:connector-curvature="0" /><linearGradient
+ id="XMLID_166_"
+ gradientUnits="userSpaceOnUse"
+ x1="220.092"
+ y1="126.3511"
+ x2="198.85809"
+ y2="195.7153"
+ gradientTransform="matrix(1,-0.0016,0.0016,1,-0.2417,0.4947)"><stop
+ offset="0"
+ style="stop-color:#F7FFFF"
+ id="stop1351" /><stop
+ offset="0.1124"
+ style="stop-color:#D9E8ED"
+ id="stop1353" /><stop
+ offset="1"
+ style="stop-color:#1C86EE"
+ id="stop1355" /><a:midPointStop
+ offset="0"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#F7FFFF" /><a:midPointStop
+ offset="0.1124"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="0.5"
+ style="stop-color:#D9E8ED" /><a:midPointStop
+ offset="1"
+ style="stop-color:#1C86EE" /></linearGradient><path
+ ns1:knockout="Off"
+ d="m 202.628,171.224 c 2.365,-1.145 5.081,-1.499 7.681,-1.248 2.254,0.217 4.628,1.04 5.939,3.001 0.608,0.912 0.968,1.997 1.755,2.782 0.843,0.846 2.133,0.456 3.095,0.073 1.95,-0.775 1.994,-3.115 1.453,-4.837 -0.691,-2.197 -2.432,-3.919 -4.403,-5.03 -4.367,-2.459 -9.84,-2.12 -14.513,-0.797 -8.675,2.462 -15.359,9.874 -18.052,18.339 -0.124,0.4 -0.238,0.807 -0.346,1.218 2.617,-0.811 5.346,-1.61 8.161,-2.383 0.751,-2.209 1.853,-4.303 3.32,-6.103 1.64,-2.003 3.563,-3.882 5.91,-5.015 z"
+ id="path1357"
+ style="fill:url(#XMLID_166_)"
+ inkscape:connector-curvature="0" /></g><ns1:pgf
+ id="adobe_illustrator_pgf"><![CDATA[
eJzsve16I8eRJnp+9/P0PcDH411pbVH1/SF5NQcoAJJmJUsjaTz2zng17G5Ios0muSTbtuaO5jrm
xk5kZERm5FdVAYW22880U91ik0CiUKiKeN+INyJ+9pMvv35v/eL22eG98iJbPX3ys58N94fLx9v7
D1b449Wn19evHh7v1Y/e+erdVV5cZOpR60+7b+mRvz7cP1zd3nyAv9O/3avnv/PZ5av7w83j6pPb
@@ -2026,9 +4198,8 @@ sY4UbzFTp6PFKl6sI8Y6ZtxQ1LjCEFTBsWOMHu8xgswx5IEw+JpyepqJWdanOCGcR4osl8Q5c8tY
ydVoYy2ZsGbImjszq9asu1VyBYeTM1Nn/s6snrm+/aLIgAyE6gXOVscVbKxhEPGIjYhSyNU7q5ML
tTptsJrIqqOr8hfsyN+XkysREHAXCqRYj3OWhQqfPDvjlxerekN39OLlqFdQwgwM5LZAILVq/AJu
yazv4B+h1uSI55CI4iIHI1K0VuehH8/qD/34urloq9wRVxz1PPVaqDhvLuo2r1ZeSD3yq8VR6rqI
-R6nh5zJKrULUOqkfpvS9hH40nb8LE/qYgrMJfT+l7yX1De3npH4krf/0iZMWzjEQUA==
- ]]>
- <![CDATA[
+R6nh5zJKrULUOqkfpvS9hH40nb8LE/qYgrMJfT+l7yX1De3npH4krf/0iZMWzjEQUA==
+ ]]><![CDATA[
Ylq4xhC3TPLHUsI6xc9hga4HQmTS/IOXEtZBAh0i4KRwR0nhtUgKm5SwDhnAx5UFKWGZEO4jCWFO
B8tU8AYliRsO4dKfLQVslTxxp4wv/slJqFigoa6MSLEimWKDRp7TyC2afw6tbkhuSXJFTi5jiCdD
B8OhTZ1srtARNRi4bNFNrSn1PKA0ZIsuTSkNcryatNirwmuqRiFLhy5yjWKRjU5FK9kmOMs9WuQc
@@ -2100,9 +4271,8 @@ CFH2M9lAlJ8+cahySJRtO6MtEeXMSPPdpka2rZFPlXdJqizF97b21iPKALXGqXI9iyo7Xd2I/Prd
bWjx0yck4KwoRx0SY5aybwwx3mpiTBnqHKkL0+KKugq2SIo7kqkG1Fg0Uoq1UnKIsRoEit25Y9S4
9zLVE9TYa74r27UOZrlSx4jY0ZJf2FEKHYuAAs8F/gb6k0jR77HiZ6HtPLhUFtoIosEm9KamNZaJ
3gs59JqE81YKrfPQToUrhvxYAM01rm6Vq1/nGuv2I4gw5noWU+GZ3XzT/XtTPXrDnrsu4fUpb2Gi
-UV5uGStTY6Q3RXvH8stIe2HHtCg4RXzdvkJuZ6Ecm8TNzjKfpL/w74D6tVLfqarScw==
- ]]>
- <![CDATA[
+UV5uGStTY6Q3RXvH8stIe2HHtCg4RXzdvkJuZ6Ecm8TNzjKfpL/w74D6tVLfqarScw==
+ ]]><![CDATA[
0F6e9XQmypukvicSXktvA+p7LN0NSK6hvvPJ7hjVnU9uc1RGxZtBZkxtqbQpSW5t7xKDAyrqouHQ
TzMRR/5b/qYRIXb7GySupu1eQ2F3+3cnO3K4vupoRikLeyIJWbAU8+YR2Tsu5JH+gOIkj4ylX7HY
IuSRuQhZUnAyzSt71UgIv8trVL5nTCixwyl+h9TuTSOUPF/YGaPb8JSyjinQHEa5dCseDaxO5YrP
@@ -2174,9 +4344,8 @@ QvJx4L4NoHq0BJzAugvVOWpPEyFVRp8kxzTewhHOShBuobgF5Lr9iv2bIXknBLIb/TfsyB00B7pv
++44mB88/U3A6VSIYB6vETY9p+VoOw2VGcXqC3fiabw08Ufqi1qumrYNvXiXKFxfsMnJR5Ete/1z
YPU6gdXrAKv3Yq3F2nhLYvKdxOMuIkcEU4gSBD8EH+Jyqe7ZOdNjEZfjeI/xQHxvAvH+aJxoIB4r
tttIiyx/kuwuwOaJnsdOxbaPzaWD2FmkzYsqpHOjxuFgOhcLFNjlseQ5rICWqgB7t1RDbVG4xOFW
-o2NmtOoprTrMjiHWAhE4FxIwEm+DUPtAWHznhNoLN9ROIwQYi3OwfZsOthssbuv2HA==
- ]]>
- <![CDATA[
+o2NmtOoprTrMjiHWAhE4FxIwEm+DUPtAWHznhNoLN9ROIwQYi3OwfZsOthssbuv2HA==
+ ]]><![CDATA[
JI4dvMexuCSVjVi1g7UruioLEzrPaXqRh7jh3rCY26hvxnA39QF2A+kCd2NO3UPe3rRUvyzAD6Z7
OhxTEe30BZ6NvbdhOB2vrhT2boJVe6uS2FqsIoav9SAWL0TOGNtF2Sk1jYeykTNHg+XxcLkYWpRQ
1YCtOHZWL2PtRH9e7EBxTqw9EvA+cQ7oSCj8qIrjWXqZoOJ4cc2xwdoj2DqFpqOh7yiallhaNVal
@@ -2248,9 +4417,8 @@ jrp3UkvkjmqCl/2qhYqCKT432uzJ3aHjo2ErWx4V5bTctM68Nu6cJ8Jays/OvNLO3BOrbqgaNebO
7bQ0TkLwV+W4bd9xcw6BKT3lERCqNCKX4MpLbdtLUePtum/feWPT1Cn37eLIzll2roTrpmtzTQWO
WreVdIh7zFmHuYEkdU8JQk9y17Oc9YiE84RamoiE03PQgXv2HXJFDllWKpLQ3bhmdsZrGvmw9hqA
7W2lnhe+CmL2eC8IR2yat7ZOFips9xQ26MdWwyl3zLKCiwLT6MIdm66JDTdWfEPdMdfNFnKke8l7
-gqOENzLTHy/dypM8FLIhZMVNB20aYNwhL9jl9OPIFh7BORxyomt4HXQNF85WSgEKJw==
- ]]>
- <![CDATA[
+gqOENzLTHy/dypM8FLIhZMVNB20aYNwhL9jl9OPIFh7BORxyomt4HXQNF85WSgEKJw==
+ ]]><![CDATA[
zM1uV5YKW1btOF8aAT3Frud25LbiSNcB184SWXPbg4eYJDPmtVHMmbJd26yFYtWlw51j7Hmn3a1x
uHmKPbOcMeJwbcPFnFZm3OqeRAeha+0NfJAxc3CuBEdi7DgmQfQdbB+yY3C4oYNtnFWLVXlutDTX
UB6wXuNKUYySdqdhsn0y3c6SQcehznOUc6LbXBMxK8o9P8LNIr+YAxWTYDvjMG0vUZEzI+c5kADG
@@ -2322,9 +4490,8 @@ fU25x3LcPeLsiOYoJ+kzQB7fx/3JJyXEgaOMuEk9SkWttMP0hu7l5BzZML51mCMOUz/fGdhnclgV
k3pkW5mFYYzJLBo4TtSHBQ2RPMfpjEJY7j4xU6QYZNx9tmbIDo9aYCe6JSe6PsaJygmySSd6vBtN
OFLRX2EsUDoknGktnGkeD5USw2zteTJXcYZOdWucqp/D25Jb7fAaIaeK4dMt800zGMsXhxQznGs1
7VwR8BlFIHwea/x0yMlGcn+NCbOu3TCrmTpo7r+TWOmEw53tchF+WOjwlqOOulwzclC+BZ4/KAYg
-zXC6S7did0eOqSJSS+6KnJgYHzzudk/f5W/b7SZKxNuwRPxcbldgbIev9slcYhiiFQ==
- ]]>
- <![CDATA[
+zXC6S7did0eOqSJSS+6KnJgYHzzudk/f5W/b7SZKxNuwRPxcbldgbIev9slcYhiiFQ==
+ ]]><![CDATA[
7tdry5Nwv+UOzVlm3HBr3LAezBtzwxtRU+TxV2r3E5GvR9ywmUk36Yynw7m9auDjNsdPuGPJ3jy3
bLKUR7jloD1R3C03uGqxFjloVZR/hIQmdM9NwHXzaa7LkQCcV5WPuOlGc1/jpjcUFtZOujRBYea+
ao4lOml1NWIe2i94neeuFRue4a6rNY5ZGSbddjw7OjA3pgmOhZncRXctnB8xtWtZSFm6bt1bXV9N
@@ -2396,9 +4563,8 @@ gVRBzTGcKGz3h23Hx22LwnY4kUkF7ChmbvIODK/6s0GEprFzJrBzS9h5IyLEmRMhtiXwGywU94vg
wqiyjfLv/Kgy5r3wU4EbAS7zJKbuZ2HqKoKpW4OpS4GpBxFj5v7x6q7J8L6xmLrHKLPG1CrGnBGm
xsYScHGvya75VV/b86JrPH5V7n82dI15LUTXYLfKtvrbw9holdqhW4S151SPHYe0R6LSgrmj7ZmH
uZGqmQzyW8w9hrkZCWaqR4AJLLO2t+UmAX1f5PX48JbFW50sk56Nuuds8reMuhODW/pwcMsy1K0g
-UYnIu07Gqxl723h1UiaMbYFYKDw+ry7SDT0WsYYTOVl/Noq+S9XWGYBuC46YMfiAOg==
- ]]>
- <![CDATA[
+UYnIu07Gqxl723h1UiaMbYFYKDw+ry7SDT0WsYYTOVl/Noq+S9XWGYBuC46YMfiAOg==
+ ]]><![CDATA[
jRwxeIkZVI3BZeeChIwY0Lftp667F2SIwct4KyrRuyARv8a5u2GV2rHx6xaeVh+NxZMy46dPKJod
r2Sbr94wQmNA4SmpcbKbqIPG1+oii2LyjDD59hhMjj1k3Z7jC2PbOCs4rHibH9vengGXdw4qH5uU
c0Kk+2zz/14XOq8iTOpoubLpXcHoXOHzUtnKs2H0bQKjFyRktl3me+occoSUWSFwsHwDYvQ1XIwt
@@ -2470,9 +4636,8 @@ dKbKTFGLjCjIBumKojHgvpz6uVLrSLGGbk9VdLaOrqXcWsVaUmyzodvbbKjZhnLVWFVHAF4lcfV7
czfsAX7mYFVKgKU12MQWQGsP3msDSHQL4HavwpaqPAYF57UKOQA668HHbQCvblWRKBaEFljyWWNJ
Z4dFm5u9DWRzDRXH67hE1hTJmmoqVwgVk0JxzzjRRmIigpfuHWdkUNhKwp28kq6rEvO3qUO+PsNc
Xotd8gGgt7bzJp7xDUJ7XWq7w5rVDClAgee/RGpQ46egP4cOacQaPw34PIBE6M9khzWuGFDGz6ZA
-elIhXcGgEH5GHZKaNX1SAxIfKurlIl4svediXS7NbekT7E3BLZfX4lO9EmH7NQG9pg==
- ]]>
- <![CDATA[
+elIhXcGgEH5GHZKaNX1SAxIfKurlIl4svediXS7NbekT7E3BLZfX4lO9EmH7NQG9pg==
+ ]]><![CDATA[
oFvQDyxcUwByGoROQdmxhLoGylOwekpa78H6iDhgSlIwQUAiFMZfERnFm5Qwyqj4V+X8TNKHFep5
TKxewv/B3kul7cl7nFzUe1E3+bK6YtpiTvLq21/d3nx5f3XzeHXz/dMnv7rD3/X6d+v7x68ff7w+
wDbv/6+b2z/d4L9WHzx98s6/fHl5v3rxn//x3eWrx9+9u3r/V5cvD6tfwOO+vnp5d30wD8xWX1Ce
@@ -2544,9 +4709,8 @@ Bs7e1N92+dPbU8751VRkn5bQG//tlvNqb+qOvlC8UP7bR86rL617VU93nNfXkwdlT3XT3j5xXofr
q1Wf7zpvrkXvq55+d97vv5mvePouct5//7yYbVrvC4lzuHfLq3p63zkKj5KKp0fnpj2/HXSeFjft
eNYkH9zHFZ9/vGZWbh5uVD19YbafTT+q3rSTM/Pkh/ut4vNPc+bg+/bN8qfB4e+Xt25fvil/6l7s
Ts3MPXqSbpo7c3d2q/uFB1Ptrft39WkRz7mXP6du+4++556utuaf50Ww2U8vF1bOLp5kyEZlNH/x
-OXDQigDg6UqZAGpFzHvmxv2ly5nVjZf3ooO1NxsHL9ferN9uS5uzsbrSPlldXVnaXg==
- ]]>
- <![CDATA[
+OXDQigDg6UqZAGpFzHvmxv2ly5nVjZf3ooO1NxsHL9ferN9uS5uzsbrSPlldXVnaXg==
+ ]]><![CDATA[
yEtwH278tKvxFK1moy/cvebNUB4kToOk87aD55Yex79nnKU7+1e4I28FFX6+nUmr15a+3fk4J3dp
ev0ifra8W+Q6z6fdmTu7LSUckHRyaD0/avAVks5Z+aj+wX7ZqCBrHHh641M3Ws+PSkmnYlTha0XS
Oa4a9QNHzQF013KnN1tJbtRPN29e64xK7j8b1SvsMFj/W+momz85Ks9GN3l6Nr9c/8X1zqgiFJp2
@@ -2618,9 +4782,8 @@ YfoG5TXkGD+i3loNmhos+z2ir7p9LgqGlcFD/H7Uy01Fi4+y6qVGH/T2t95+1NTvcFX9BS7r09U1
5WwOignXq6xRDTL0MpauQYa4rhzIvdYo4PalGhvQYLRC5oR85t3uPEO5u3a4+RXmICkZsOPUxyKf
s8+vR6il/mJK2KidqVbcOpqa375lphbXnr+eWnx1+ALV1F9Ozb98EOKvXby3OtXaPgqcpf0fkSVO
d85+5Ge8df17qoHqDrubrQm7211y8tvcFXZ3MXP9LF8FthDsF3yd/Xj9+Y+KALi5d3Vhd4etylGd
-jZXwabfDZXdQWFeptWLY3WFd2N1UUDbqRBrst7l5fpAttxgUVhMAd3vqfU0c2rP7zw==
- ]]>
- <![CDATA[
+jZXwabfDZXdQWFeptWLY3WFd2N1UUDbqRBrst7l5fpAttxgUVhMAd3vqfU0c2rP7zw==
+ ]]><![CDATA[
uxmoQtjdrZ97TypGDb7O3389/6cqDu2gLthPNvlL/miLYXfvt6qD/W78WHr1sWrU4/pgv01nuXLU
84svj65Vjjr17lq4V12ncGqxrmLgw5uFo8W9bXF8/pUGBV59KntPMXT3q0+vnTbpcvrpnakG751f
Hf24keI0padYeA+XmiqZ5fPF2QKBrZO58v69E1XZ4ArM7e7NX0Xn/KISts4PZKJPTa/uMJthaqCl
@@ -2692,9 +4855,8 @@ g9wwT0327FBO8MZPZ2nzznynLT/05upi7kFu6M2HbdnwxXmhcu8WpJdrc+77i+9XBIHN54Yt3r29
qStnafd+p/MjMpLStrGIV+aFGT9dIYoBhowFxe7EgqOeyuHuPl2CbnqRVFl+7rHTeR4Qh9l96y09
fvHDk89fyhFcu30NLyzICO1fztLBTmdvPqTDfJDTD9+01paOb99c/vJ7Zm/j9rr/PYdJFc9u7j/r
iLhdyv6UNO8kKSYdsMuy/lTXuZOk+JZdzj2KnyXx5sb9mdOXaw8/2TKesq59k4LxS3dhbfHG1cbs
-1sOH7tzPo2sWyA6O/WzpxwQyHho37ePTFnZpUbY2+i0/95bsBfi475iPOw/n5K+3Rg==
- ]]>
- <![CDATA[
+1sOH7tzPo2sWyA6O/WzpxwQyHho37ePTFnZpUbY2+i0/95bsBfi475iPOw/n5K+3Rg==
+ ]]><![CDATA[
eeOlj4fu3eShK+f18djjX90kcTVPAwWQuryGctdzUFTwLkMF93DtH00t/v3zVF/JUAGwALCBRQXF
usNLN7HMWSt4COq2S3p6Os9LKbT4xTx3AtHGP5G0HaVQA4cdePderx9vHM29pZOFIIA2LvasFiU9
vfgB7+qteXvPzfSSu9Z6uyC3+85iejbAAsJPSNtqGwzMvsre8s+c5aaDjaUOt9WBNOonBE2kIAPV
@@ -2766,9 +4928,8 @@ BJslYbomT0DelcEjE3DdIa66K3cyjDCQLNpEk56D2xiks/OAvuTW+T53z3BJHrYDh8dLIujSE3gX
ZIlvIsFYAv+TntA3X261CWXHXRlIGtxY3jWh23aNH6MXN5E38FXotBNP8I2MFDqCko1gQLlrySSQ
quvJ7sm9ixPZVs+0k8Az3Adpw17JOxHwgFwCfIROeHUFPwuClWuIkSJfjwmox5O5Yg1uEIMEs82N
bFsY80OQC/kdOoJXDvCO7IHryayBukKcor1v0hDh1hs/BGYM0BD4ga7Ll40J5aG0eYnApPGlm0hf
-kgeyUF9QvoOFBjJpnxSCbQZngTZCjOy7L6cnDT4oBiYkGC12BHSkzUQGPQliMLJVMg==
- ]]>
- <![CDATA[
+kgeyUF9QvoOFBjJpnxSCbQZngTZCjOy7L6cnDT4oBiYkGC12BHSkzUQGPQliMLJVMg==
+ ]]><![CDATA[
68QIQTSCEbxIlxoL9WHX0uYCbeMlH1ApOFmOkmMpHHixnrF0G8hFwSqkyfd9tnk4SjQ4xtEJei56
kdMGZpcGYkd+FQgoC17E2gPwfDKmEzm6Y1iVnJsbenwhjgTE+ZEgCVdAWjoUdB2DUWyHSeTpvssc
jBvJNceq5OIGvgK3i78DtrkxoMUNLPiEdlUuwD/A/AhF/EhOV0AJbWEElCANQte9bJeN3J8oDLnF
@@ -2840,9 +5001,8 @@ yP7A1JyoH5fccV8boABZ1e/IL7agxg0D/U5mjusonByMwmgRlBqiJZNYWzBLuCQaoOXWYyuJ1WfJ
lImZ/CqAoQPsQEgRAw20l0YQKxydpR8mLnmnUAVdeqD5cJuSmRFuMWsy1XI2MKjqMsCsEi+52eY5
DtipRLg4PWc5UVh4XFpY0RBCk5EQwO26YkUY0M44OMigYwOLXbAjAW9AQuWZ49ttlD6xpTQFgXYH
kGhiP+OZ0ED3BxJmz8JYbJ0sjGouMaHYcci0RZGFE9oAjKOU5ETFbmp6ZEjyufC7o6MAhDzibD+m
-Dg3/QldIMSRWLhpthOBYRRQYVQMrhNAljU2CysNUdIiVcfVo6aQsYfR4XJ/XI1JtAw==
- ]]>
- <![CDATA[
+Dg3/QldIMSRWLhpthOBYRRQYVQMrhNAljU2CysNUdIiVcfVo6aQsYfR4XJ/XI1JtAw==
+ ]]><![CDATA[
GhxlD6AqCyEVyQQd8Cfwx4pgR6EopOg/iBwui+puClcBtLZUUio3AiMoFK3ghxyjXzmOcpwwSvEj
ax2VNqgV8FsZZtOmepQNMH6hIVAlO9rkIRl2Ya+s7AfbCxTGLmU/r029ngssplIzADekit9SVJiJ
DY2bZE7BIDnW+SEMEsu1OUBFtLHT54XmT08uY8iRVJ9BP6oIO2H8VJ/RpUBJ9SqQdiLYSgxupupV
@@ -2914,9 +5074,8 @@ qKhDzs6BNzXWjiCcJKL9wTAzFVCE3HUkQwgmY9qWYMvr/dJ3As1EI5wZ0aX1Pxhm0JWmgyLUPWb6
OGWmGyOH/yYanT5Q0ycD642jK13mA2T5PqKrkutqAkzhs3+xEVQ2pvMwbEsezftMX4iceAENOIE6
4SN5qqOR9vJdmGiUF9IYIPKE0WNy0fyUwYT9CFYmhiOpSCGfBTYTJWDG43Cupr1DdLoTajhd7CD0
n8k0SXp17oy3ihzNrQUCkyCqMgDaCJShza+Ow2FnkZlb/3flq25HyU67ztwkQ91pGIYSzYF3OLJF
-IQIIZkV6icOXAkYrxzAUwKFLKlIv0AQCKyv+67VlBoangqnTjEqbtoc4Pti2eZF8eA==
- ]]>
- <![CDATA[
+IQIIZkV6icOXAkYrxzAUwKFLKlIv0AQCKyv+67VlBoangqnTjEqbtoc4Pti2eZF8eA==
+ ]]><![CDATA[
R2lgY8iMhDDyKHW9cfRZZ15/EXy4V3mjX4SBlvWPXInZldwqmLF45efp70+7x5dfs8Tks9uV7/Sm
N8bm6fUqB4PSC9cUDApXr3NQ2fXDuScarc5csurso/ctRLCUa139ka/Bi0LrFeBZLxLQJfgb2DAx
3DdX6S+SbtHNMoxU34BMPR59RHAjfJpsyL5nF84Ihwf/jojGTjq2+Ey0EHuOKgHgnIf7FqpdF9N0
@@ -2988,9 +5147,8 @@ ffVu4ldwNGG5D0H5nin5ijlPYVr29EmqzvA1Xj0MyzYFKUWB6hLNHLvSfE9QFsHQNEzsMibk4Prp
/wye9Ia6R+Z8JHIwcDWAOBh1uAYgICAH6DaYFRFseuqhAuTAwt0F5KDp2hyt1ETkgHJ4QA6uzZrR
ta5a5EAXMUdTvDmMwNJZGmqxYAClR4sgNlYkVAHCseQjRppawIiPCjU+PapQGj5AMLKr3tA+oyfU
RxjJkwNUBmBYFgKugAKRmAPrF/EdJg7gBt+DRy/KZoUhHHyYA7PnQ2G0Qy2l2QqD0O94/uJooCqI
-4J7shP3H5C2PYPDH7JH+uewjWDI0SSTKb6fKCc9yAAKLvZ+QbYgUMSBBrbIafkCxnA==
- ]]>
- <![CDATA[
+4J7shP3H5C2PYPDH7JH+uewjWDI0SSTKb6fKCc9yAAKLvZ+QbYgUMSBBrbIafkCxnA==
+ ]]><![CDATA[
VVmDsoXB6i3QhyR60JKuNN4S2AWQYtGxYsV4UAOSMdqjtwcf6rG7JYf+76KGRvDcBDMAseIGwXcx
wwxUDWkdNN8mgu0UgANp95mL2CARhEUMLCbsGq0/DcTAACRavhQvsB4CS+f5HbwAqGUlSSbK9LQ0
IvGCVUD6SAiteCGTJjyUriVe8NUmEcKAFXhpmuXCqmrxgqv76PiWD0D5FwZHUgltYIA1ZB5RJC1I
@@ -3062,9 +5220,8 @@ V4iEmzmH5nSbzA3KO5QjfJhUsuUdVJQU4fiUdzDIw5OLetY7GG6MUY60UbDUDVcEbUCnmkfSWP6Y
iYER9wlzI1CnTWyv1JehtvVXUB9cNsdsA+zS8g6VMXXC/JbpDqvkqjOIBgDxr4QkZ5bEUk6OlO5M
6yhTL1WInnJtJcC2dyaXmblPwcerIIcAeBgAmtUz77lrjFmUl4DbtJUu1yVDRoxoeDcPBbLmjUoO
TF9eWbaeD+ctQ110hY0WqvUiootcexFV/8WyghzV0Lo6N2/MqTuze/CMi9TyYl5iR44+oW8dK4GD
-L5/+6zqJk3v7jJMoGiu2ZG87iRbFzRWSz7QNYWTibmtGg6/TBRuxbi+hjgS8WxJ6hw==
- ]]>
- <![CDATA[
+L5/+6zqJk3v7jJMoGiu2ZG87iRbFzRWSz7QNYWTibmtGg6/TBRuxbi+hjgS8WxJ6hw==
+ ]]><![CDATA[
QGIGlSdb33w/YhGg/TUfggiUjnATlnUWm+rCT2xN+Zh2FFHq4SfoZctPuHacqDDXPpTS68V1Pecn
mmHKSCH2HBUiz/d4rq48s4zS1cYa+uC2NaIXK1fMK3bpFdtyPEYYAzpjhR15GKZG5CeAbNqzSi0X
gZdgV6jWKrRJUgT2qHwO192wIsRsJkQLnDGIzOJyZU+aV5ASNRxtPnnIFFMLzjOuuY8T72pFhRTt
@@ -3136,9 +5293,8 @@ j6YKG7kTp/SVZWU6iW018VdnwxhBIZ5Il+LVdd0eLnBy4qv3n3GhWbPHBUqtWfqLWfmu3sV6fLUH
euVxvq6Z39ylZ+y8mYB2gYFm27mo7rDVYB3BBpHekLWZ+G8EnRXFvrjtvHKcJsm7Gap7JE/KWzRO
U3HaMATS44Olq0A+w9zneJKhi2RWhh7Ev6RQxe1cUE0Q/iOZnWvStWaTCby4pufsvE67gzWiBWV3
sFAVkN5xNT7MIu4J4ybIe/Rc39m2oNIw1xEEHC4H/I/rgYNNg0Zq3TfSj8RcjNgsGefqluFGWgOj
-Cd5uRo4CEZWrvFwJXJPl2soVGDtfZE40PZPHsUzGzG4UTDFDHHXifQ1uGYz1XCoJfQ==
- ]]>
- <![CDATA[
+Cd5uRo4CEZWrvFwJXJPl2soVGDtfZE40PZPHsUzGzG4UTDFDHHXifQ1uGYz1XCoJfQ==
+ ]]><![CDATA[
XluGjYPSbCbH5HRY60lNDSCpYnFlVSObNgunhvP+/FXSUCRk6EMj6i8mubWfZjm+6km2K8/xVQ38
9vY8pe7dn055DQ4p/gkCCdk30NYBOD8ZjFe9mkjk5bZKf380ibgVtbwYHh8eqrdunbMU9tzGfOic
hapTeaguZSauUD116XQSU8JRwzjROEgmEqM9cOtqmjs6ERs5RPSz/PFlPWvi3pmA8b77PWw21rX8
@@ -3210,9 +5366,8 @@ xdyCsVGSB41OdczMvAVv/ANcW6bqQeyTtcvMp9laHhEShrxr6nVl1lZU4lCf8cw7m1BhaHYWA5S9
XXrC0NX90oT+yIehQx6AoUt2o1DKgduRBnk1vJtAqhI9Tv2QM01ABhKyDVGW3pNn5cVhMBndGCw9
xIfeWcyGXZuHoWsqQXDYLCqjqcYJ/fZt56gQgJLPNo5WmY1GKSP6Yf7JRT1r5wYkiimgOmd3MDf1
xEYb07rfy5R80HQZzQ7ZywZMFCw4GSKAJEawJMO1Mguas0/Bij9NobWOqnWF9LrUbkZNgunUsDtn
-TOIrpAQCuva4sH8XS9dtDH6TB2C/7nUpARmCzWCs8EqY9Jtv7DLlkkm4l/Isz/7KMg==
- ]]>
- <![CDATA[
+TOIrpAQCuva4sH8XS9dtDH6TB2C/7nUpARmCzWCs8EqY9Jtv7DLlkkm4l/Isz/7KMg==
+ ]]><![CDATA[
MXMolx9bSR3Kh6F5grpSvH59XeK4kJ2XUTeE/dyFSv0miqdYAqUvZOe7+FYevuqB1iuP83Xt/OYu
PWPodFIyiNh89MhF3KihkGkxe6EHGk2eUmzTk8ojusXTqdsk99Ml65HlIUVB1sTkWGq1DlpCVBje
4TQfOmihqd1djFsumoCxxgyj92OQ+ezZSoHb1OnF8tyz00jQf1ufq04/0j+5rGdNPftNXInK8JvY
@@ -3284,9 +5439,8 @@ L+9CDAkpQIXvYBpTpHilK2MQsvgkhbA7QipCtY/+qfsKnyQOS7icHN6zXIBqMLx5gpobfte60xrq
z12zUhF1FtHOJvPf6hIrSRENaLWxD18VUMfV0LSyteKw0WoM5rwgVUEK0G1nQ2nCqbhe6bZEAib8
DP2fXuiG8xZDomddRnfqSBdlgfTHuNuMt+L8NPe0bnWhAeu5Tab3yUPTWAFGhTekmGfI9GKuar2g
9EVuzLXtAMJnH0vWgBTMr8bRW639Tm7q54cq7clzOCWTvAefDLrsVL1U93g7PZM6TOfM6zpH7qkK
-N4I4x9Cd937pQaAbwlvToEqa2RsqVBZF3eKsnVB+yPuVKiY8YMCd4VoTWHqylHG+dw==
- ]]>
- <![CDATA[
+N4I4x9Cd937pQaAbwlvToEqa2RsqVBZF3eKsnVB+yPuVKiY8YMCd4VoTWHqylHG+dw==
+ ]]><![CDATA[
yjXWLYapxYfOQHUP1TO5qcKeXXlXBvNNYDZ5R00IA00Qg6Ma8cpbMm1iwy/DynDvT39anZ7ghUgR
qUK8uc3P23DPN8+Agw0l9prJ9dA3EH2CBO1Oy6BIF2BKyNaN0ZQncyLrce5wtCcb2pdKlOThg+gX
e5TOsDdTm6FWP1qlSfhzQKpTGMlkKruUMKjlS0uDc7o1C5uVLyRL6alYDK/9Ksuwmkb9icLHRXXk
@@ -3358,9 +5512,8 @@ Ad1tlwHlaaoqBPny6hnoLvbAAGJNwVjtSjTeEix8SFnjmllVhGJjL6LkzNFYOy2X5aVkQc1Iwllr
A0bPGGAeIDwjT7L721BFonY5TAKGyXN1xQ1Swngrhahh4xUscCEoai50Blrw0IpwJWkoa4Jf0Icy
11tNrkOyAEOGDX374CXaYVFgQ3PeiPBAhJC8vkF72GILBn79Jc0e9SOXlu42PK5qwybjoP8ouk6F
PLF4+E+zsSiU0PgCdNQ06cGsTkPYSikuKLxNiIWW5o34bIUXYfNtHiH0IIdDYxQhAmaQ6KrQ5c5m
-pkqXW9G4A6g1v9+ZrQaWlWSU+58M7Cqt60YRWi0mtVNZ4XrA9A2iEMMKEjjGmekV1w==
- ]]>
- <![CDATA[
+pkqXW9G4A6g1v9+ZrQaWlWSU+58M7Cqt60YRWi0mtVNZ4XrA9A2iEMMKEjjGmekV1w==
+ ]]><![CDATA[
araekAfc6zoJyOg89CruF6keUd8gHXpq3C8a7sDowIwXHYgsx6HzpBWbtZhq5Es/uXiQT7qtCv86
vGDc5skx+SIeVDN+GEzVs9a8ikQj2IRIPhZVPgQ3GpKW1eZWAHM/hFXUsYgMyD09QfIdAtjYfZxe
fR9V6OR6EBgj66rqjVGdnWLErR6Mq7a7KypTxT2KqNRku7IpoYJNpZa0Kemp8zEFH/DAGHhsHYZf
@@ -3430,7 +5583,27 @@ fn/3P3787R9/vPvxt/9y9//waf+S//vmj9I5Rer07u/5v//Tbox0Tu+++Vd++g/ru/8O0PTuj3fl
7m/u/st/DXe/+fn6179XqYHHNl0QHL/DD1///Gf/SRkJarwreP3h+CFN/8dff6q0qj8E/GH/Hb5/
9GdS7Mdf8Qmvyz9CE8f/RgLRfPwJTin/C/r2uT+wr4a/8OhiWLevxb6/eimPv/9/7/7pv/kTWo/M
n89XX/3dd//w/X/+3Xf/9D+//93Pf/YPv//uf31/992PP2I83//z+qe1A7///b/89nff3/3+H3/7
-R15h0bHgq6/+6m9/9fOf/X/OP/pG
- ]]>
-</i:pgf>
-</svg>
+R15h0bHgq6/+6m9/9fOf/X/OP/pG
+ ]]></ns1:pgf><text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:60px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch, Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient9815);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="168.80826"
+ y="229.78876"
+ id="text8351"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan8353"
+ x="168.80826"
+ y="229.78876"
+ style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:60px;line-height:125%;font-family:'Courier 10 Pitch';-inkscape-font-specification:'Courier 10 Pitch, Bold Italic';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient9815);fill-opacity:1">GCstar</tspan></text>
+<flowRoot
+ xml:space="preserve"
+ id="flowRoot8355"
+ style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:sans-serif;font-style:normal;font-weight:normal;font-size:40px;line-height:125%;letter-spacing:0px;word-spacing:0px"><flowRegion
+ id="flowRegion8357"><rect
+ id="rect8359"
+ width="2.4029646"
+ height="43.854103"
+ x="299.1691"
+ y="107.83833" /></flowRegion><flowPara
+ id="flowPara8361"></flowPara></flowRoot></svg> \ No newline at end of file