From 7515b2ba7bf78118bf270b70d48355fd15df8247 Mon Sep 17 00:00:00 2001
From: Laurent Destailleur <eldy@destailleur.fr>
Date: Fri, 22 Apr 2016 12:11:57 +0200
Subject: [PATCH] NEW Add a parameter on graph function to show a generic graph
 when no data are available.

---
 htdocs/core/class/dolgraph.class.php      |  14 +-
 htdocs/core/lib/functions.lib.php         |  12 +-
 htdocs/langs/en_US/main.lang              |   1 +
 htdocs/projet/card.php                    |   8 +-
 htdocs/projet/graph_opportunities.inc.php |   6 +-
 htdocs/theme/eldy/img/nographyet.svg      | 875 ++++++++++++++++++++++
 htdocs/theme/eldy/style.css.php           |  13 +-
 htdocs/theme/md/img/nographyet.svg        | 875 ++++++++++++++++++++++
 htdocs/theme/md/style.css.php             |  13 +-
 9 files changed, 1804 insertions(+), 13 deletions(-)
 create mode 100644 htdocs/theme/eldy/img/nographyet.svg
 create mode 100644 htdocs/theme/md/img/nographyet.svg

diff --git a/htdocs/core/class/dolgraph.class.php b/htdocs/core/class/dolgraph.class.php
index 0b713de80ff..a4ee48f256b 100644
--- a/htdocs/core/class/dolgraph.class.php
+++ b/htdocs/core/class/dolgraph.class.php
@@ -600,7 +600,7 @@ class DolGraph
 
 
 	/**
-	 * Build a graph onto disk using Artichow library
+	 * Build a graph onto disk using Artichow library and return img string to it
 	 *
 	 * @param	string	$file    	Image file name to use if we save onto disk
 	 * @param	string	$fileurl	Url path to show image if saved onto disk
@@ -779,7 +779,7 @@ class DolGraph
 
 
 	/**
-	 * Build a graph onto disk using JFlot library. Input when calling this method should be:
+	 * Build a graph using JFlot library. Input when calling this method should be:
 	 *	$this->data  = array(array(      0=>'labelxA',     1=>yA),  array('labelxB',yB)); or
 	 *  $this->data  = array(array('label'=>'labelxA','data'=>yA),  array('labelxB',yB));			// TODO Syntax not supported. Removed when dol_print_graph_removed
 	 *	$this->data  = array(array(0=>'labelxA',1=>yA1,...,n=>yAn), array('labelxB',yB1,...yBn));   // when there is n series to show for each x
@@ -788,9 +788,10 @@ class DolGraph
 	 *  $this->mode = 'depth' ???
 	 *  $this->bgcolorgrid
 	 *  $this->datacolor
+	 *  $this->shownodatagraph
 	 *
 	 * @param	string	$file    	Image file name to use to save onto disk (also used as javascript unique id)
-	 * @param	string	$fileurl	Url path to show image if saved onto disk
+	 * @param	string	$fileurl	Url path to show image if saved onto disk. Never used here.
 	 * @return	void
 	 */
 	private function draw_jflot($file,$fileurl)
@@ -849,7 +850,14 @@ class DolGraph
 
 		$this->stringtoshow ='<!-- Build using '.$this->_library.' -->'."\n";
 		if (! empty($this->title)) $this->stringtoshow.='<div align="center" class="dolgraphtitle'.(empty($this->cssprefix)?'':' dolgraphtitle'.$this->cssprefix).'">'.$this->title.'</div>';
+		if (! empty($this->shownographyet))
+		{
+		  $this->stringtoshow.='<div style="width:'.$this->width.'px;height:'.$this->height.'px;" class="nographyet"></div>';
+		  $this->stringtoshow.='<div class="nographyettext">'.$langs->trans("NotEnoughDataYet").'</div>';
+		  return;
+		}
 		$this->stringtoshow.='<div id="placeholder_'.$tag.'" style="width:'.$this->width.'px;height:'.$this->height.'px;" class="dolgraph'.(empty($this->cssprefix)?'':' dolgraph'.$this->cssprefix).'"></div>'."\n";
+		
 		$this->stringtoshow.='<script id="'.$tag.'">'."\n";
 		$this->stringtoshow.='$(function () {'."\n";
 		$i=$firstlot;
diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php
index 6b69427eacd..6c5e611d240 100644
--- a/htdocs/core/lib/functions.lib.php
+++ b/htdocs/core/lib/functions.lib.php
@@ -1874,17 +1874,25 @@ function dol_substr($string,$start,$length,$stringencoding='')
  *  @param		int		$showpercent	Show percent (with type='pie' only)
  *  @param		string	$url			Param to add an url to click values
  *  @param		int		$combineother	0=No combine, 0.05=Combine if lower than 5%
+ *  @param      int     $shownographyet Show graph to say there is not enough data
  *  @return		void
  *  @deprecated
  *  @see DolGraph
  */
-function dol_print_graph($htmlid,$width,$height,$data,$showlegend=0,$type='pie',$showpercent=0,$url='',$combineother=0.05)
+function dol_print_graph($htmlid,$width,$height,$data,$showlegend=0,$type='pie',$showpercent=0,$url='',$combineother=0.05,$shownographyet=0)
 {
 	dol_syslog(__FUNCTION__ . " is deprecated", LOG_WARNING);
 
 	global $conf,$langs;
 	global $theme_datacolor;    // To have var kept when function is called several times
 
+	if ($shownographyet)
+	{
+	    print '<div class="nographyet" style="width:'.$width.'px;height:'.$height.'px;"></div>';
+	    print '<div class="nographyettext">'.$langs->trans("NotEnoughDataYet").'</div>';
+	    return;
+	}
+	
 	if (empty($conf->use_javascript_ajax)) return;
 	$jsgraphlib='flot';
 	$datacolor=array();
@@ -2031,7 +2039,7 @@ function dol_print_graph($htmlid,$width,$height,$data,$showlegend=0,$type='pie',
 			});
 			</script>';
 		}
-		else print 'BadValueForPArameterType';
+		else print 'BadValueForParameterType';
 	}
 }
 
diff --git a/htdocs/langs/en_US/main.lang b/htdocs/langs/en_US/main.lang
index adae0e1800e..4b69e2c0dde 100644
--- a/htdocs/langs/en_US/main.lang
+++ b/htdocs/langs/en_US/main.lang
@@ -28,6 +28,7 @@ NoTemplateDefined=No template defined for this email type
 AvailableVariables=Available substitution variables
 NoTranslation=No translation
 NoRecordFound=No record found
+NotEnoughDataYet=Not enough data
 NoError=No error
 Error=Error
 Errors=Errors
diff --git a/htdocs/projet/card.php b/htdocs/projet/card.php
index b59d725fecd..9f9dbc3bd2c 100644
--- a/htdocs/projet/card.php
+++ b/htdocs/projet/card.php
@@ -454,7 +454,7 @@ if ($action == 'create' && $user->rights->projet->creer)
 
     // Ref
     $suggestedref=($_POST["ref"]?$_POST["ref"]:$defaultref);
-    print '<tr><td><span class="fieldrequired">'.$langs->trans("Ref").'</span></td><td><input size="12" type="text" name="ref" value="'.$suggestedref.'">';
+    print '<tr><td class="titlefieldcreate"><span class="fieldrequired">'.$langs->trans("Ref").'</span></td><td><input size="12" type="text" name="ref" value="'.$suggestedref.'">';
     print ' '.$form->textwithpicto('', $langs->trans("YouCanCompleteRef", $suggestedref));
     print '</td></tr>';
 
@@ -532,7 +532,7 @@ if ($action == 'create' && $user->rights->projet->creer)
     // Description
     print '<tr><td class="tdtop">'.$langs->trans("Description").'</td>';
     print '<td>';
-    print '<textarea name="description" wrap="soft" cols="80" rows="'.ROWS_3.'">'.$_POST["description"].'</textarea>';
+    print '<textarea name="description" wrap="soft" class="centpercent" rows="'.ROWS_3.'">'.$_POST["description"].'</textarea>';
     print '</td></tr>';
 
     // Other options
@@ -650,7 +650,7 @@ else
 
         // Ref
         $suggestedref=$object->ref;
-        print '<tr><td class="fieldrequired" width="30%">'.$langs->trans("Ref").'</td>';
+        print '<tr><td class="titlefield fieldrequired">'.$langs->trans("Ref").'</td>';
         print '<td><input size="12" name="ref" value="'.$suggestedref.'">';
         print ' '.$form->textwithpicto('', $langs->trans("YouCanCompleteRef", $suggestedref));
         print '</td></tr>';
@@ -721,7 +721,7 @@ else
 	    // Description
         print '<tr><td valign="top">'.$langs->trans("Description").'</td>';
         print '<td>';
-        print '<textarea name="description" wrap="soft" cols="80" rows="'.ROWS_3.'">'.$object->description.'</textarea>';
+        print '<textarea name="description" wrap="soft" class="centpercent" rows="'.ROWS_3.'">'.$object->description.'</textarea>';
         print '</td></tr>';
 
         // Other options
diff --git a/htdocs/projet/graph_opportunities.inc.php b/htdocs/projet/graph_opportunities.inc.php
index 558bd7307ee..199840bb1c6 100644
--- a/htdocs/projet/graph_opportunities.inc.php
+++ b/htdocs/projet/graph_opportunities.inc.php
@@ -16,6 +16,7 @@ if (! empty($conf->global->PROJECT_USE_OPPORTUNITIES))
 	    $i = 0;
 
 	    $totalnb=0;
+	    $totaloppnb=0;
 	    $totalamount=0;
 	    $ponderated_opp_amount=0;
 	    $valsnb=array();
@@ -32,6 +33,7 @@ if (! empty($conf->global->PROJECT_USE_OPPORTUNITIES))
 	                $valsnb[$obj->opp_status]=$obj->nb;
 	                $valsamount[$obj->opp_status]=$obj->opp_amount;
 	                $totalnb+=$obj->nb;
+	                if ($obj->opp_status) $totaloppnb+=$obj->nb;
 	                $totalamount+=$obj->opp_amount;
 	                $ponderated_opp_amount+=$obj->ponderated_opp_amount;
 	            }
@@ -71,8 +73,8 @@ if (! empty($conf->global->PROJECT_USE_OPPORTUNITIES))
 	    if ($conf->use_javascript_ajax)
 	    {
 	        print '<tr class="impair"><td align="center" colspan="2">';
-	        $data=array('series'=>$dataseries);
-	        dol_print_graph('stats',400,180,$data,1,'pie',0,'',0);
+   	        $data=array('series'=>$dataseries);
+   	        dol_print_graph('stats',400,180,$data,1,'pie',0,'',0,$totaloppnb?0:1);
 	        print '</td></tr>';
 	    }
 	    //if ($totalinprocess != $total)
diff --git a/htdocs/theme/eldy/img/nographyet.svg b/htdocs/theme/eldy/img/nographyet.svg
new file mode 100644
index 00000000000..ba3b9faf92a
--- /dev/null
+++ b/htdocs/theme/eldy/img/nographyet.svg
@@ -0,0 +1,875 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns="http://www.w3.org/2000/svg"
+    xmlns:cc="http://creativecommons.org/ns#"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+    xmlns:svg="http://www.w3.org/2000/svg"
+    xmlns:ns1="http://sozi.baierouge.fr"
+    xmlns:xlink="http://www.w3.org/1999/xlink"
+    id="svg8087"
+    sodipodi:docname="Nuovo documento 17"
+    viewBox="0 0 414.43 271.06"
+    version="1.1"
+    inkscape:version="0.48.2 r9819"
+  >
+  <sodipodi:namedview
+      id="base"
+      bordercolor="#666666"
+      inkscape:pageshadow="2"
+      inkscape:window-y="0"
+      fit-margin-left="0"
+      pagecolor="#ffffff"
+      fit-margin-top="0"
+      inkscape:window-maximized="1"
+      inkscape:zoom="0.35"
+      inkscape:window-x="0"
+      inkscape:window-height="776"
+      showgrid="false"
+      borderopacity="1.0"
+      inkscape:current-layer="layer1"
+      inkscape:cx="-151.70315"
+      inkscape:cy="-238.66527"
+      fit-margin-right="0"
+      fit-margin-bottom="0"
+      inkscape:window-width="1280"
+      inkscape:pageopacity="0.0"
+      inkscape:document-units="px"
+  />
+  <g
+      id="layer1"
+      inkscape:label="Livello 1"
+      inkscape:groupmode="layer"
+      transform="translate(-79.56 -22.642)"
+    >
+    <g
+        id="g8235"
+        transform="translate(79.571 22.648)"
+      >
+      <g
+          id="layer1-5"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+      <g
+          id="g4012"
+          transform="translate(-138 -924.36)"
+        >
+        <path
+            id="path4024"
+            d="m264.53 995.77-40.125-43.406-36.406 45-20.812-25-27.812 22.281a63.015 63.015 0 0 0 125.16 1.125z"
+            style="fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g8612"
+        transform="translate(365.99 165.67)"
+      >
+      <g
+          id="layer1-3"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-4"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+      <g
+          id="barcode"
+          style="color:#000000;fill:#4d4d4d"
+          transform="matrix(.80885 0 0 .80885 6.6403 -6.9691)"
+        >
+        <path
+            id="barcode_bar1"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m29 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar3"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m31 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar5"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m33 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar7"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m36 108h3v30h-3z"
+        />
+        <path
+            id="barcode_bar9"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m42 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar11"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m45 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar13"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m49 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar15"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m52 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar17"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m56 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar19"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m59 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar21"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m61 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar23"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m63 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar25"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m65 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar27"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m70 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar29"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m72 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar31"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m74 108h3v30h-3z"
+        />
+        <path
+            id="barcode_bar33"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m79 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar35"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m82 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar37"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m86 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar39"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m90 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar41"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m93 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar43"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m97 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar45"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m100 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar47"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m104 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar49"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m107 108h3v30h-3z"
+        />
+        <path
+            id="barcode_bar51"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m112 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar53"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m114 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar55"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m116 108h1v38h-1z"
+        />
+        <g
+            id="barcode_bottomtext"
+            style="color:#000000;fill:#4d4d4d"
+          >
+          <path
+              id="path6236"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m40.045 144.88c-0.42188 0-0.7544 0.11279-0.99756 0.33838-0.24024 0.22558-0.36035 0.53613-0.36035 0.93164-0.000002 0.39551 0.12012 0.70605 0.36035 0.93164 0.24316 0.22558 0.57568 0.33838 0.99756 0.33838 0.42187 0 0.75439-0.1128 0.99756-0.33838 0.24316-0.22852 0.36474-0.53906 0.36475-0.93164-0.000004-0.39551-0.12159-0.70606-0.36475-0.93164-0.24024-0.22559-0.57276-0.33838-0.99756-0.33838m-0.8877-0.37793c-0.38086-0.0937-0.67822-0.27099-0.89209-0.53174-0.21094-0.26074-0.31641-0.57861-0.31641-0.95361-0.000001-0.52441 0.18603-0.93896 0.5581-1.2437 0.375-0.30468 0.88769-0.45702 1.5381-0.45703 0.65332 0.00001 1.166 0.15235 1.5381 0.45703 0.37207 0.3047 0.5581 0.71925 0.55811 1.2437-0.000005 0.375-0.10694 0.69287-0.3208 0.95361-0.21094 0.26075-0.50538 0.43799-0.8833 0.53174 0.42773 0.0996 0.76025 0.29443 0.99756 0.58447 0.24023 0.29004 0.36035 0.64453 0.36035 1.0635-0.000005 0.63574-0.19483 1.1235-0.58447 1.4634-0.38672 0.33984-0.9419 0.50976-1.6655 0.50976-0.72364 0-1.2803-0.16992-1.6699-0.50976-0.38672-0.33985-0.58008-0.82764-0.58008-1.4634 0-0.41895 0.12012-0.77344 0.36035-1.0635 0.24023-0.29004 0.57422-0.48486 1.002-0.58447m-0.3252-1.4019c-0.000002 0.33985 0.10547 0.60499 0.31641 0.79541 0.21386 0.19044 0.51269 0.28565 0.89648 0.28565 0.38086 0 0.67822-0.0952 0.89209-0.28565 0.21679-0.19042 0.32519-0.45556 0.3252-0.79541-0.000004-0.33984-0.1084-0.60497-0.3252-0.79541-0.21387-0.19042-0.51123-0.28564-0.89209-0.28564-0.38379 0-0.68262 0.0952-0.89648 0.28564-0.21094 0.19044-0.31641 0.45557-0.31641 0.79541"
+          />
+          <path
+              id="path6238"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m45.776 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000002 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000005-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6240"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m51.506 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000001 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6242"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m57.237 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000001 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000006 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312 0-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6244"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m72.354 144.46c0.4248 0.0908 0.75586 0.27979 0.99316 0.5669 0.24023 0.28711 0.36035 0.6416 0.36035 1.0635-0.000005 0.64747-0.22266 1.1484-0.66797 1.5029-0.44532 0.3545-1.0781 0.53174-1.8984 0.53174-0.27539 0-0.55957-0.0278-0.85254-0.0835-0.29004-0.0527-0.59033-0.13331-0.90088-0.2417v-0.85694c0.24609 0.14356 0.51562 0.25196 0.80859 0.3252 0.29297 0.0732 0.59912 0.10986 0.91846 0.10986 0.55664 0 0.97998-0.10986 1.27-0.32959 0.29296-0.21972 0.43945-0.53906 0.43945-0.95801-0.000004-0.38671-0.13624-0.68847-0.40869-0.90527-0.26953-0.21972-0.646-0.32959-1.1294-0.32959h-0.76465v-0.72949h0.7998c0.43652 0 0.7705-0.0864 1.002-0.25928 0.23144-0.17578 0.34716-0.42773 0.34717-0.75586-0.000004-0.33691-0.12012-0.59472-0.36035-0.77344-0.23731-0.18163-0.57862-0.27245-1.0239-0.27246-0.24317 0.00001-0.50391 0.0264-0.78223 0.0791s-0.58447 0.13478-0.91846 0.2461v-0.79102c0.33691-0.0937 0.65185-0.16405 0.94482-0.21094 0.2959-0.0469 0.57422-0.0703 0.83496-0.0703 0.67382 0.00001 1.207 0.15382 1.5996 0.46143 0.39257 0.30469 0.58886 0.71778 0.58887 1.2393-0.000005 0.36328-0.10401 0.6709-0.31201 0.92285-0.20801 0.24902-0.50391 0.42188-0.8877 0.51855"
+          />
+          <path
+              id="path6246"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m77.834 142.21-2.2412 3.5024h2.2412v-3.5024m-0.23291-0.77344h1.1162v4.2759h0.93604v0.73828h-0.93604v1.5469h-0.8833v-1.5469h-2.9619v-0.85693l2.729-4.1572"
+          />
+          <path
+              id="path6248"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m81.89 147.25h3.0981v0.74707h-4.166v-0.74707c0.33691-0.34863 0.79541-0.81592 1.3755-1.4019 0.583-0.58886 0.94922-0.96825 1.0986-1.1382 0.28418-0.31933 0.48193-0.58886 0.59326-0.80859 0.11425-0.22266 0.17138-0.44092 0.17139-0.65479-0.000004-0.34863-0.12305-0.63281-0.36914-0.85254-0.24317-0.21972-0.56104-0.32958-0.95361-0.32959-0.27832 0.00001-0.57276 0.0483-0.8833 0.14502-0.30762 0.0967-0.63721 0.24317-0.98877 0.43946v-0.89649c0.35742-0.14355 0.6914-0.25195 1.002-0.32519 0.31054-0.0732 0.59472-0.10986 0.85254-0.10987 0.67968 0.00001 1.2217 0.16993 1.626 0.50977 0.40429 0.33985 0.60644 0.79395 0.60644 1.3623-0.000005 0.26954-0.05127 0.52589-0.15381 0.76905-0.09961 0.24023-0.28272 0.52441-0.54932 0.85253-0.07325 0.085-0.30616 0.33106-0.69873 0.73829-0.39258 0.4043-0.94629 0.97119-1.6611 1.7007"
+          />
+          <path
+              id="path6250"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m87.01 147.25h1.4502v-5.0054l-1.5776 0.3164v-0.80859l1.5688-0.31641h0.8877v5.814h1.4502v0.74707h-3.7793v-0.74707"
+          />
+          <path
+              id="path6252"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m92.74 147.25h1.4502v-5.0054l-1.5776 0.3164v-0.80859l1.5688-0.31641h0.8877v5.814h1.4502v0.74707h-3.7793v-0.74707"
+          />
+          <path
+              id="path6254"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m98.471 147.25h1.4502v-5.0054l-1.5776 0.3164v-0.80859l1.5688-0.31641h0.88769v5.814h1.4502v0.74707h-3.7793v-0.74707"
+          />
+          <path
+              id="path6256"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m105.95 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34278 2.0259 0 0.89942 0.11426 1.5747 0.34278 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34716-2.0259 0-0.90234-0.11572-1.5776-0.34716-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58446 1.4238 0.58447 2.5312-0.00001 1.1045-0.19483 1.9482-0.58447 2.5312-0.38673 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2978-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312 0-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+        </g
+        >
+      </g
+      >
+      <g
+          id="barcode0"
+          style="color:#000000;fill:#4d4d4d"
+          transform="matrix(1.3377 0 0 1.3377 -21.299 -121.61)"
+        >
+        <path
+            id="barcode0_bar1"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m29 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar3"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m31 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar5"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m33 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar7"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m36 108h3v30h-3z"
+        />
+        <path
+            id="barcode0_bar9"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m42 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar11"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m45 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar13"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m49 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar15"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m52 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar17"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m56 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar19"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m59 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar21"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m61 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar23"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m63 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar25"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m65 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar27"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m70 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar29"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m72 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar31"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m74 108h3v30h-3z"
+        />
+        <path
+            id="barcode0_bar33"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m79 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar35"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m82 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar37"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m86 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar39"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m90 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar41"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m93 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar43"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m95 108h1v38h-1z"
+        />
+        <g
+            id="barcode0_bottomtext"
+            style="color:#000000;fill:#4d4d4d"
+          >
+          <path
+              id="path6193"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m40.506 144.88c-0.42188 0-0.7544 0.11279-0.99756 0.33838-0.24024 0.22558-0.36035 0.53613-0.36035 0.93164-0.000001 0.39551 0.12012 0.70605 0.36035 0.93164 0.24316 0.22558 0.57568 0.33838 0.99756 0.33838 0.42187 0 0.75439-0.1128 0.99756-0.33838 0.24316-0.22852 0.36474-0.53906 0.36475-0.93164-0.000004-0.39551-0.12159-0.70606-0.36475-0.93164-0.24024-0.22559-0.57276-0.33838-0.99756-0.33838m-0.8877-0.37793c-0.38086-0.0937-0.67822-0.27099-0.89209-0.53174-0.21094-0.26074-0.31641-0.57861-0.31641-0.95361-0.000001-0.52441 0.18603-0.93896 0.55811-1.2437 0.375-0.30468 0.88769-0.45702 1.5381-0.45703 0.65332 0.00001 1.166 0.15235 1.5381 0.45703 0.37206 0.3047 0.5581 0.71925 0.5581 1.2437-0.000005 0.375-0.10694 0.69287-0.3208 0.95361-0.21094 0.26075-0.50538 0.43799-0.8833 0.53174 0.42773 0.0996 0.76025 0.29443 0.99756 0.58447 0.24023 0.29004 0.36035 0.64453 0.36035 1.0635-0.000005 0.63574-0.19483 1.1235-0.58447 1.4634-0.38672 0.33984-0.9419 0.50976-1.6655 0.50976-0.72364 0-1.2803-0.16992-1.6699-0.50976-0.38672-0.33985-0.58008-0.82764-0.58008-1.4634-0.000001-0.41895 0.12012-0.77344 0.36035-1.0635 0.24023-0.29004 0.57422-0.48486 1.002-0.58447m-0.3252-1.4019c-0.000002 0.33985 0.10547 0.60499 0.31641 0.79541 0.21386 0.19044 0.51269 0.28565 0.89648 0.28565 0.38086 0 0.67822-0.0952 0.89209-0.28565 0.21679-0.19042 0.32519-0.45556 0.3252-0.79541-0.000004-0.33984-0.1084-0.60497-0.3252-0.79541-0.21387-0.19042-0.51123-0.28564-0.89209-0.28564-0.38379 0-0.68262 0.0952-0.89648 0.28564-0.21094 0.19044-0.31641 0.45557-0.31641 0.79541"
+          />
+          <path
+              id="path6195"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m46.237 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000001 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000006 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312 0-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6197"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m51.967 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000002 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6199"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m57.698 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000002 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000005-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6201"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m72.815 144.46c0.4248 0.0908 0.75586 0.27979 0.99316 0.5669 0.24023 0.28711 0.36035 0.6416 0.36035 1.0635-0.000005 0.64747-0.22266 1.1484-0.66797 1.5029-0.44532 0.3545-1.0781 0.53174-1.8984 0.53174-0.27539 0-0.55957-0.0278-0.85254-0.0835-0.29004-0.0527-0.59033-0.13331-0.90088-0.2417v-0.85694c0.24609 0.14356 0.51562 0.25196 0.80859 0.3252 0.29297 0.0732 0.59912 0.10986 0.91846 0.10986 0.55664 0 0.97998-0.10986 1.27-0.32959 0.29296-0.21972 0.43945-0.53906 0.43945-0.95801-0.000004-0.38671-0.13623-0.68847-0.40869-0.90527-0.26954-0.21972-0.646-0.32959-1.1294-0.32959h-0.76465v-0.72949h0.7998c0.43652 0 0.7705-0.0864 1.002-0.25928 0.23144-0.17578 0.34716-0.42773 0.34717-0.75586-0.000004-0.33691-0.12012-0.59472-0.36035-0.77344-0.23731-0.18163-0.57862-0.27245-1.0239-0.27246-0.24317 0.00001-0.50391 0.0264-0.78223 0.0791s-0.58447 0.13478-0.91846 0.2461v-0.79102c0.33691-0.0937 0.65185-0.16405 0.94482-0.21094 0.2959-0.0469 0.57422-0.0703 0.83496-0.0703 0.67382 0.00001 1.207 0.15382 1.5996 0.46143 0.39257 0.30469 0.58886 0.71778 0.58887 1.2393-0.000004 0.36328-0.10401 0.6709-0.31201 0.92285-0.20801 0.24902-0.50391 0.42188-0.8877 0.51855"
+          />
+          <path
+              id="path6203"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m78.295 142.21-2.2412 3.5024h2.2412v-3.5024m-0.23291-0.77344h1.1162v4.2759h0.93604v0.73828h-0.93604v1.5469h-0.8833v-1.5469h-2.9619v-0.85693l2.729-4.1572"
+          />
+          <path
+              id="path6205"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m82.351 147.25h3.0981v0.74707h-4.166v-0.74707c0.33691-0.34863 0.79541-0.81592 1.3755-1.4019 0.58301-0.58886 0.94922-0.96825 1.0986-1.1382 0.28418-0.31933 0.48193-0.58886 0.59326-0.80859 0.11425-0.22266 0.17138-0.44092 0.17139-0.65479-0.000004-0.34863-0.12305-0.63281-0.36914-0.85254-0.24317-0.21972-0.56104-0.32958-0.95361-0.32959-0.27832 0.00001-0.57276 0.0483-0.8833 0.14502-0.30762 0.0967-0.63721 0.24317-0.98877 0.43946v-0.89649c0.35742-0.14355 0.6914-0.25195 1.002-0.32519 0.31054-0.0732 0.59472-0.10986 0.85254-0.10987 0.67968 0.00001 1.2217 0.16993 1.626 0.50977 0.40429 0.33985 0.60644 0.79395 0.60644 1.3623-0.000004 0.26954-0.05127 0.52589-0.15381 0.76905-0.09961 0.24023-0.28272 0.52441-0.54932 0.85253-0.07325 0.085-0.30616 0.33106-0.69873 0.73829-0.39258 0.4043-0.94629 0.97119-1.6611 1.7007"
+          />
+        </g
+        >
+      </g
+      >
+    </g
+    >
+    <g
+        id="g8830"
+        transform="translate(222.78 22.648)"
+      >
+      <g
+          id="g4045"
+          style="color:#000000;fill:#4d4d4d"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path4076"
+            d="m-135.34 43a63.015 63.015 0 0 0 -3.66 21 63.015 63.015 0 0 0 24 49.406v-70.41h-20.344zm77.625 10v71.25a63.015 63.015 0 0 0 25.84 -15.28v-55.969h-25.844zm-55.406 10v51.906a63.015 63.015 0 0 0 25.844 11.031v-62.938h-25.844zm83.12 10v33.969a63.015 63.015 0 0 0 16.281 -33.97h-16.281zm-55.438 15v38.25a63.015 63.015 0 0 0 25.875 -1.4375v-36.812h-25.875z"
+            style="color:#000000;fill:#4d4d4d"
+            transform="translate(140 924.36)"
+            inkscape:connector-curvature="0"
+        />
+      </g
+      >
+      <g
+          id="layer1-1"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-6"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g9071"
+        transform="translate(222.68 165.67)"
+      >
+      <path
+          id="path8055"
+          inkscape:connector-curvature="0"
+          style="stroke-linejoin:round;color:#000000;stroke:#4d4d4d;stroke-linecap:round;stroke-dasharray:3, 1;fill:#666666"
+          transform="matrix(.98782 0 0 .99584 1.1826 .46307)"
+          d="m125.26 46.179c9.71 33.836-9.9 69.121-43.809 78.811-33.907 9.7-69.269-9.88-78.982-43.712-3.2056-11.167-3.2914-22.997-0.2478-34.21"
+      />
+      <path
+          id="path8043"
+          d="m1.3971 52.019v22.101m9.8811-27.759v52.952m9.8811-52.952v64.268m9.8811-64.268v71.273m9.8811-71.273v75.719m9.8811-75.719v79.222m9.8811-79.222v79.896m9.8811-79.896v79.761m9.8811-79.761v77.74m9.8811-77.74v74.641m9.8811-74.641v68.849m9.8811-68.849v60.226m9.8811-60.226v46.35m-116.54-45.762h120.92m-122.95 5.9145h124.44m-124.44 5.9145h126.48m-126.48 5.916h125.53m-125.53 5.9145h125.26m-125.26 5.9145h124.31m-122.28 5.9144h120.78m-118.21 5.9145h116.44m-113.73 5.9144h110.75m-106.95 5.9144h102.89m-97.733 5.9145h93.529m-88.241 5.9144h82.411m-74.14 5.9144h66.275"
+          sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc"
+          style="stroke:#e6e6e6;stroke-width:.53513pt;fill:#666666"
+          inkscape:connector-curvature="0"
+      />
+      <g
+          id="layer1-7"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-1"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+            inkscape:connector-curvature="0"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+        />
+      </g
+      >
+      <g
+          id="g8051"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path8053"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g9221"
+        transform="translate(79.571 165.67)"
+      >
+      <path
+          id="path4212"
+          d="m62.281 38c-8.586 0.30397-17.039 1.813-25 4.4375l27.176 62.732zm8.0312 6.875-4.1091 60.294 49.265-41.763c-11.55-11.433-27.888-18.155-45.158-18.532zm-28.843 18.531c-3.18 1.5249-6.1972 3.3497-9 5.4688-10.662 8.0608-17.109 19.379-19.375 31.406 0.23597 0.35659 0.47557 0.71078 0.71875 1.0625 1.2619 1.6804 2.6079 3.2977 4.0312 4.8438 1.4144 1.5524 2.9065 3.034 4.4688 4.4375 1.5678 1.4037 3.2059 2.7289 4.9062 3.9688 1.7016 1.2329 3.465 2.3807 5.2812 3.4375 1.8044 1.0603 3.6616 2.0307 5.5625 2.9062 1.9181 0.86834 3.8797 1.6405 5.875 2.3125 1.9899 0.68407 4.0141 1.2684 6.0625 1.75 2.0421 0.47765 4.108 0.85327 6.1875 1.125 2.0837 0.27125 4.1809 0.4382 6.2812 0.5 2.0946 0.0524 4.1918 0.00022 6.2812-0.15625 2.0941-0.14569 4.1809-0.39611 6.25-0.75 2.0733-0.3552 4.1288-0.8143 6.1562-1.375 2.0212-0.5667 4.0141-1.2345 5.9688-2 1.9578-0.75768 3.8776-1.6133 5.75-2.5625 1.8735-0.94966 3.6994-1.9931 5.4688-3.125 1.7685-1.1425 3.4797-2.3737 5.125-3.6875 1.6408-1.3058 3.2163-2.6935 4.7188-4.1562 1.5129-1.4581 2.9528-2.9919 4.3125-4.5938 1.1905-1.4386 2.317-2.9301 3.375-4.4688-1.5137-7.6081-4.5862-15.008-9.75-21.562l-41.568 31.431z"
+          sodipodi:nodetypes="cccccccccscccccccccccccccccccccccc"
+          style="stroke-linejoin:round;color:#000000;stroke:#4d4d4d;stroke-linecap:round;stroke-dasharray:3.47064246, 1.15688082;stroke-width:1.1569;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <g
+          id="layer1-51"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-61"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g9391"
+        transform="translate(365.99 22.648)"
+      >
+      <g
+          id="layer1-9"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-2"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+      <path
+          id="path4119"
+          d="m24 100c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4122"
+          d="m11.195 55.805-2.195 2.195 2.805 2.805-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4169"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m49 90c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+      />
+      <path
+          id="path4171"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m28.39 43-2.195 2.195 2.805 2.805-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+      />
+      <path
+          id="path4173"
+          d="m74 95c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4175"
+          d="m51.195 30.195-2.1951 2.1951 2.8049 2.8049l-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4177"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m89 75c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+      />
+      <path
+          id="path4179"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m71.195 35.195-2.1951 2.1951 2.8049 2.8049l-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+      />
+      <path
+          id="path4181"
+          d="m86.195 30.195-2.1951 2.1951 2.8049 2.8049l-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4183"
+          d="m104 90c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4185"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m124 75c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+      />
+      <path
+          id="path4187"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m106.2 45.195-2.2 2.195 2.8 2.805-2.8 2.805 2.2 2.195 2.8-2.805 2.8 2.805 2.2-2.195-2.8-2.805 2.8-2.805-2.2-2.195-2.8 2.805-2.8-2.805z"
+      />
+      <path
+          id="path4189"
+          d="m14 58 15-10l25-15 20 5 15-5 20 15"
+          style="stroke:#4d4d4d;stroke-dasharray:3, 1;fill:none"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4191"
+          d="m19 100 100-25"
+          style="stroke:#4d4d4d;stroke-dasharray:2, 1;fill:none"
+          inkscape:connector-curvature="0"
+      />
+    </g
+    >
+  </g
+  >
+  <metadata
+    >
+    <rdf:RDF
+      >
+      <cc:Work
+        >
+        <dc:format
+          >image/svg+xml</dc:format
+        >
+        <dc:type
+            rdf:resource="http://purl.org/dc/dcmitype/StillImage"
+        />
+        <cc:license
+            rdf:resource="http://creativecommons.org/licenses/publicdomain/"
+        />
+        <dc:publisher
+          >
+          <cc:Agent
+              rdf:about="http://openclipart.org/"
+            >
+            <dc:title
+              >Openclipart</dc:title
+            >
+          </cc:Agent
+          >
+        </dc:publisher
+        >
+        <dc:title
+          >Icon Set Graph</dc:title
+        >
+        <dc:date
+          >2012-09-06T20:29:21</dc:date
+        >
+        <dc:description
+          >Check others icons on my "Minimal Icon Set" collection.\nSet of simple icons useful for gui design and applications use interface. Icons representing various graph and plotting </dc:description
+        >
+        <dc:source
+          >https://openclipart.org/detail/172197/icon-set-graph-by-mi_brami-172197</dc:source
+        >
+        <dc:creator
+          >
+          <cc:Agent
+            >
+            <dc:title
+              >mi_brami</dc:title
+            >
+          </cc:Agent
+          >
+        </dc:creator
+        >
+        <dc:subject
+          >
+          <rdf:Bag
+            >
+            <rdf:li
+              >Icon</rdf:li
+            >
+            <rdf:li
+              >area</rdf:li
+            >
+            <rdf:li
+              >b&amp;w</rdf:li
+            >
+            <rdf:li
+              >barcode</rdf:li
+            >
+            <rdf:li
+              >bars</rdf:li
+            >
+            <rdf:li
+              >black</rdf:li
+            >
+            <rdf:li
+              >data</rdf:li
+            >
+            <rdf:li
+              >graph</rdf:li
+            >
+            <rdf:li
+              >gray</rdf:li
+            >
+            <rdf:li
+              >icon</rdf:li
+            >
+            <rdf:li
+              >pie</rdf:li
+            >
+            <rdf:li
+              >plot</rdf:li
+            >
+            <rdf:li
+              >round</rdf:li
+            >
+            <rdf:li
+              >scatter</rdf:li
+            >
+            <rdf:li
+              >table</rdf:li
+            >
+            <rdf:li
+              >transparent</rdf:li
+            >
+            <rdf:li
+              >white</rdf:li
+            >
+            <rdf:li
+              >xy</rdf:li
+            >
+          </rdf:Bag
+          >
+        </dc:subject
+        >
+      </cc:Work
+      >
+      <cc:License
+          rdf:about="http://creativecommons.org/licenses/publicdomain/"
+        >
+        <cc:permits
+            rdf:resource="http://creativecommons.org/ns#Reproduction"
+        />
+        <cc:permits
+            rdf:resource="http://creativecommons.org/ns#Distribution"
+        />
+        <cc:permits
+            rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
+        />
+      </cc:License
+      >
+    </rdf:RDF
+    >
+  </metadata
+  >
+</svg
+>
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index f7519e16f61..91fa27e5c33 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -2878,9 +2878,20 @@ td.legendLabel { padding: 2px 2px 2px 0 !important; }
 
 .logo_setup
 {
-	content:url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/logo_setup.svg',1) ?>);
+	content:url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/logo_setup.svg',1) ?>);	/* content is used to best fit the container */
 	display: inline-block;
 }
+.nographyet
+{
+	content:url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/nographyet.svg',1) ?>);
+	display: inline-block;
+    opacity: 0.1;
+    background-repeat: no-repeat;
+}
+.nographyettext
+{
+    opacity: 0.5;
+}
 
 div.titre {
 	font-family: <?php print $fontlist ?>;
diff --git a/htdocs/theme/md/img/nographyet.svg b/htdocs/theme/md/img/nographyet.svg
new file mode 100644
index 00000000000..ba3b9faf92a
--- /dev/null
+++ b/htdocs/theme/md/img/nographyet.svg
@@ -0,0 +1,875 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns="http://www.w3.org/2000/svg"
+    xmlns:cc="http://creativecommons.org/ns#"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+    xmlns:svg="http://www.w3.org/2000/svg"
+    xmlns:ns1="http://sozi.baierouge.fr"
+    xmlns:xlink="http://www.w3.org/1999/xlink"
+    id="svg8087"
+    sodipodi:docname="Nuovo documento 17"
+    viewBox="0 0 414.43 271.06"
+    version="1.1"
+    inkscape:version="0.48.2 r9819"
+  >
+  <sodipodi:namedview
+      id="base"
+      bordercolor="#666666"
+      inkscape:pageshadow="2"
+      inkscape:window-y="0"
+      fit-margin-left="0"
+      pagecolor="#ffffff"
+      fit-margin-top="0"
+      inkscape:window-maximized="1"
+      inkscape:zoom="0.35"
+      inkscape:window-x="0"
+      inkscape:window-height="776"
+      showgrid="false"
+      borderopacity="1.0"
+      inkscape:current-layer="layer1"
+      inkscape:cx="-151.70315"
+      inkscape:cy="-238.66527"
+      fit-margin-right="0"
+      fit-margin-bottom="0"
+      inkscape:window-width="1280"
+      inkscape:pageopacity="0.0"
+      inkscape:document-units="px"
+  />
+  <g
+      id="layer1"
+      inkscape:label="Livello 1"
+      inkscape:groupmode="layer"
+      transform="translate(-79.56 -22.642)"
+    >
+    <g
+        id="g8235"
+        transform="translate(79.571 22.648)"
+      >
+      <g
+          id="layer1-5"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+      <g
+          id="g4012"
+          transform="translate(-138 -924.36)"
+        >
+        <path
+            id="path4024"
+            d="m264.53 995.77-40.125-43.406-36.406 45-20.812-25-27.812 22.281a63.015 63.015 0 0 0 125.16 1.125z"
+            style="fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g8612"
+        transform="translate(365.99 165.67)"
+      >
+      <g
+          id="layer1-3"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-4"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+      <g
+          id="barcode"
+          style="color:#000000;fill:#4d4d4d"
+          transform="matrix(.80885 0 0 .80885 6.6403 -6.9691)"
+        >
+        <path
+            id="barcode_bar1"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m29 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar3"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m31 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar5"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m33 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar7"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m36 108h3v30h-3z"
+        />
+        <path
+            id="barcode_bar9"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m42 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar11"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m45 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar13"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m49 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar15"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m52 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar17"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m56 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar19"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m59 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar21"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m61 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar23"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m63 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar25"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m65 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar27"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m70 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar29"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m72 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar31"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m74 108h3v30h-3z"
+        />
+        <path
+            id="barcode_bar33"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m79 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar35"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m82 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar37"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m86 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar39"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m90 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar41"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m93 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar43"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m97 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar45"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m100 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar47"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m104 108h2v30h-2z"
+        />
+        <path
+            id="barcode_bar49"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m107 108h3v30h-3z"
+        />
+        <path
+            id="barcode_bar51"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m112 108h1v30h-1z"
+        />
+        <path
+            id="barcode_bar53"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m114 108h1v38h-1z"
+        />
+        <path
+            id="barcode_bar55"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m116 108h1v38h-1z"
+        />
+        <g
+            id="barcode_bottomtext"
+            style="color:#000000;fill:#4d4d4d"
+          >
+          <path
+              id="path6236"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m40.045 144.88c-0.42188 0-0.7544 0.11279-0.99756 0.33838-0.24024 0.22558-0.36035 0.53613-0.36035 0.93164-0.000002 0.39551 0.12012 0.70605 0.36035 0.93164 0.24316 0.22558 0.57568 0.33838 0.99756 0.33838 0.42187 0 0.75439-0.1128 0.99756-0.33838 0.24316-0.22852 0.36474-0.53906 0.36475-0.93164-0.000004-0.39551-0.12159-0.70606-0.36475-0.93164-0.24024-0.22559-0.57276-0.33838-0.99756-0.33838m-0.8877-0.37793c-0.38086-0.0937-0.67822-0.27099-0.89209-0.53174-0.21094-0.26074-0.31641-0.57861-0.31641-0.95361-0.000001-0.52441 0.18603-0.93896 0.5581-1.2437 0.375-0.30468 0.88769-0.45702 1.5381-0.45703 0.65332 0.00001 1.166 0.15235 1.5381 0.45703 0.37207 0.3047 0.5581 0.71925 0.55811 1.2437-0.000005 0.375-0.10694 0.69287-0.3208 0.95361-0.21094 0.26075-0.50538 0.43799-0.8833 0.53174 0.42773 0.0996 0.76025 0.29443 0.99756 0.58447 0.24023 0.29004 0.36035 0.64453 0.36035 1.0635-0.000005 0.63574-0.19483 1.1235-0.58447 1.4634-0.38672 0.33984-0.9419 0.50976-1.6655 0.50976-0.72364 0-1.2803-0.16992-1.6699-0.50976-0.38672-0.33985-0.58008-0.82764-0.58008-1.4634 0-0.41895 0.12012-0.77344 0.36035-1.0635 0.24023-0.29004 0.57422-0.48486 1.002-0.58447m-0.3252-1.4019c-0.000002 0.33985 0.10547 0.60499 0.31641 0.79541 0.21386 0.19044 0.51269 0.28565 0.89648 0.28565 0.38086 0 0.67822-0.0952 0.89209-0.28565 0.21679-0.19042 0.32519-0.45556 0.3252-0.79541-0.000004-0.33984-0.1084-0.60497-0.3252-0.79541-0.21387-0.19042-0.51123-0.28564-0.89209-0.28564-0.38379 0-0.68262 0.0952-0.89648 0.28564-0.21094 0.19044-0.31641 0.45557-0.31641 0.79541"
+          />
+          <path
+              id="path6238"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m45.776 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000002 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000005-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6240"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m51.506 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000001 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6242"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m57.237 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000001 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000006 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312 0-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6244"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m72.354 144.46c0.4248 0.0908 0.75586 0.27979 0.99316 0.5669 0.24023 0.28711 0.36035 0.6416 0.36035 1.0635-0.000005 0.64747-0.22266 1.1484-0.66797 1.5029-0.44532 0.3545-1.0781 0.53174-1.8984 0.53174-0.27539 0-0.55957-0.0278-0.85254-0.0835-0.29004-0.0527-0.59033-0.13331-0.90088-0.2417v-0.85694c0.24609 0.14356 0.51562 0.25196 0.80859 0.3252 0.29297 0.0732 0.59912 0.10986 0.91846 0.10986 0.55664 0 0.97998-0.10986 1.27-0.32959 0.29296-0.21972 0.43945-0.53906 0.43945-0.95801-0.000004-0.38671-0.13624-0.68847-0.40869-0.90527-0.26953-0.21972-0.646-0.32959-1.1294-0.32959h-0.76465v-0.72949h0.7998c0.43652 0 0.7705-0.0864 1.002-0.25928 0.23144-0.17578 0.34716-0.42773 0.34717-0.75586-0.000004-0.33691-0.12012-0.59472-0.36035-0.77344-0.23731-0.18163-0.57862-0.27245-1.0239-0.27246-0.24317 0.00001-0.50391 0.0264-0.78223 0.0791s-0.58447 0.13478-0.91846 0.2461v-0.79102c0.33691-0.0937 0.65185-0.16405 0.94482-0.21094 0.2959-0.0469 0.57422-0.0703 0.83496-0.0703 0.67382 0.00001 1.207 0.15382 1.5996 0.46143 0.39257 0.30469 0.58886 0.71778 0.58887 1.2393-0.000005 0.36328-0.10401 0.6709-0.31201 0.92285-0.20801 0.24902-0.50391 0.42188-0.8877 0.51855"
+          />
+          <path
+              id="path6246"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m77.834 142.21-2.2412 3.5024h2.2412v-3.5024m-0.23291-0.77344h1.1162v4.2759h0.93604v0.73828h-0.93604v1.5469h-0.8833v-1.5469h-2.9619v-0.85693l2.729-4.1572"
+          />
+          <path
+              id="path6248"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m81.89 147.25h3.0981v0.74707h-4.166v-0.74707c0.33691-0.34863 0.79541-0.81592 1.3755-1.4019 0.583-0.58886 0.94922-0.96825 1.0986-1.1382 0.28418-0.31933 0.48193-0.58886 0.59326-0.80859 0.11425-0.22266 0.17138-0.44092 0.17139-0.65479-0.000004-0.34863-0.12305-0.63281-0.36914-0.85254-0.24317-0.21972-0.56104-0.32958-0.95361-0.32959-0.27832 0.00001-0.57276 0.0483-0.8833 0.14502-0.30762 0.0967-0.63721 0.24317-0.98877 0.43946v-0.89649c0.35742-0.14355 0.6914-0.25195 1.002-0.32519 0.31054-0.0732 0.59472-0.10986 0.85254-0.10987 0.67968 0.00001 1.2217 0.16993 1.626 0.50977 0.40429 0.33985 0.60644 0.79395 0.60644 1.3623-0.000005 0.26954-0.05127 0.52589-0.15381 0.76905-0.09961 0.24023-0.28272 0.52441-0.54932 0.85253-0.07325 0.085-0.30616 0.33106-0.69873 0.73829-0.39258 0.4043-0.94629 0.97119-1.6611 1.7007"
+          />
+          <path
+              id="path6250"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m87.01 147.25h1.4502v-5.0054l-1.5776 0.3164v-0.80859l1.5688-0.31641h0.8877v5.814h1.4502v0.74707h-3.7793v-0.74707"
+          />
+          <path
+              id="path6252"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m92.74 147.25h1.4502v-5.0054l-1.5776 0.3164v-0.80859l1.5688-0.31641h0.8877v5.814h1.4502v0.74707h-3.7793v-0.74707"
+          />
+          <path
+              id="path6254"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m98.471 147.25h1.4502v-5.0054l-1.5776 0.3164v-0.80859l1.5688-0.31641h0.88769v5.814h1.4502v0.74707h-3.7793v-0.74707"
+          />
+          <path
+              id="path6256"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m105.95 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34278 2.0259 0 0.89942 0.11426 1.5747 0.34278 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34716-2.0259 0-0.90234-0.11572-1.5776-0.34716-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58446 1.4238 0.58447 2.5312-0.00001 1.1045-0.19483 1.9482-0.58447 2.5312-0.38673 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2978-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312 0-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+        </g
+        >
+      </g
+      >
+      <g
+          id="barcode0"
+          style="color:#000000;fill:#4d4d4d"
+          transform="matrix(1.3377 0 0 1.3377 -21.299 -121.61)"
+        >
+        <path
+            id="barcode0_bar1"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m29 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar3"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m31 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar5"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m33 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar7"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m36 108h3v30h-3z"
+        />
+        <path
+            id="barcode0_bar9"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m42 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar11"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m45 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar13"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m49 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar15"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m52 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar17"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m56 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar19"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m59 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar21"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m61 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar23"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m63 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar25"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m65 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar27"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m70 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar29"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m72 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar31"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m74 108h3v30h-3z"
+        />
+        <path
+            id="barcode0_bar33"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m79 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar35"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m82 108h2v30h-2z"
+        />
+        <path
+            id="barcode0_bar37"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m86 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar39"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m90 108h1v30h-1z"
+        />
+        <path
+            id="barcode0_bar41"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m93 108h1v38h-1z"
+        />
+        <path
+            id="barcode0_bar43"
+            style="color:#000000;fill:#4d4d4d"
+            inkscape:connector-curvature="0"
+            d="m95 108h1v38h-1z"
+        />
+        <g
+            id="barcode0_bottomtext"
+            style="color:#000000;fill:#4d4d4d"
+          >
+          <path
+              id="path6193"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m40.506 144.88c-0.42188 0-0.7544 0.11279-0.99756 0.33838-0.24024 0.22558-0.36035 0.53613-0.36035 0.93164-0.000001 0.39551 0.12012 0.70605 0.36035 0.93164 0.24316 0.22558 0.57568 0.33838 0.99756 0.33838 0.42187 0 0.75439-0.1128 0.99756-0.33838 0.24316-0.22852 0.36474-0.53906 0.36475-0.93164-0.000004-0.39551-0.12159-0.70606-0.36475-0.93164-0.24024-0.22559-0.57276-0.33838-0.99756-0.33838m-0.8877-0.37793c-0.38086-0.0937-0.67822-0.27099-0.89209-0.53174-0.21094-0.26074-0.31641-0.57861-0.31641-0.95361-0.000001-0.52441 0.18603-0.93896 0.55811-1.2437 0.375-0.30468 0.88769-0.45702 1.5381-0.45703 0.65332 0.00001 1.166 0.15235 1.5381 0.45703 0.37206 0.3047 0.5581 0.71925 0.5581 1.2437-0.000005 0.375-0.10694 0.69287-0.3208 0.95361-0.21094 0.26075-0.50538 0.43799-0.8833 0.53174 0.42773 0.0996 0.76025 0.29443 0.99756 0.58447 0.24023 0.29004 0.36035 0.64453 0.36035 1.0635-0.000005 0.63574-0.19483 1.1235-0.58447 1.4634-0.38672 0.33984-0.9419 0.50976-1.6655 0.50976-0.72364 0-1.2803-0.16992-1.6699-0.50976-0.38672-0.33985-0.58008-0.82764-0.58008-1.4634-0.000001-0.41895 0.12012-0.77344 0.36035-1.0635 0.24023-0.29004 0.57422-0.48486 1.002-0.58447m-0.3252-1.4019c-0.000002 0.33985 0.10547 0.60499 0.31641 0.79541 0.21386 0.19044 0.51269 0.28565 0.89648 0.28565 0.38086 0 0.67822-0.0952 0.89209-0.28565 0.21679-0.19042 0.32519-0.45556 0.3252-0.79541-0.000004-0.33984-0.1084-0.60497-0.3252-0.79541-0.21387-0.19042-0.51123-0.28564-0.89209-0.28564-0.38379 0-0.68262 0.0952-0.89648 0.28564-0.21094 0.19044-0.31641 0.45557-0.31641 0.79541"
+          />
+          <path
+              id="path6195"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m46.237 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000001 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000006 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312 0-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6197"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m51.967 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000002 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000004-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6199"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m57.698 142.02c-0.45703 0-0.80127 0.22559-1.0327 0.67676-0.22852 0.44824-0.34278 1.1235-0.34277 2.0259-0.000002 0.89942 0.11426 1.5747 0.34277 2.0259 0.23144 0.44825 0.57568 0.67237 1.0327 0.67237 0.45996 0 0.8042-0.22412 1.0327-0.67237 0.23144-0.45117 0.34716-1.1265 0.34717-2.0259-0.000005-0.90234-0.11573-1.5776-0.34717-2.0259-0.22852-0.45117-0.57276-0.67676-1.0327-0.67676m0-0.70313c0.73535 0.00001 1.2964 0.29151 1.6831 0.87451 0.38964 0.58009 0.58447 1.4238 0.58447 2.5312-0.000005 1.1045-0.19483 1.9482-0.58447 2.5312-0.38672 0.58008-0.94776 0.87012-1.6831 0.87012-0.73535 0-1.2979-0.29004-1.6875-0.87012-0.38672-0.583-0.58008-1.4268-0.58008-2.5312-0.000001-1.1074 0.19336-1.9512 0.58008-2.5312 0.38965-0.583 0.95215-0.8745 1.6875-0.87451"
+          />
+          <path
+              id="path6201"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m72.815 144.46c0.4248 0.0908 0.75586 0.27979 0.99316 0.5669 0.24023 0.28711 0.36035 0.6416 0.36035 1.0635-0.000005 0.64747-0.22266 1.1484-0.66797 1.5029-0.44532 0.3545-1.0781 0.53174-1.8984 0.53174-0.27539 0-0.55957-0.0278-0.85254-0.0835-0.29004-0.0527-0.59033-0.13331-0.90088-0.2417v-0.85694c0.24609 0.14356 0.51562 0.25196 0.80859 0.3252 0.29297 0.0732 0.59912 0.10986 0.91846 0.10986 0.55664 0 0.97998-0.10986 1.27-0.32959 0.29296-0.21972 0.43945-0.53906 0.43945-0.95801-0.000004-0.38671-0.13623-0.68847-0.40869-0.90527-0.26954-0.21972-0.646-0.32959-1.1294-0.32959h-0.76465v-0.72949h0.7998c0.43652 0 0.7705-0.0864 1.002-0.25928 0.23144-0.17578 0.34716-0.42773 0.34717-0.75586-0.000004-0.33691-0.12012-0.59472-0.36035-0.77344-0.23731-0.18163-0.57862-0.27245-1.0239-0.27246-0.24317 0.00001-0.50391 0.0264-0.78223 0.0791s-0.58447 0.13478-0.91846 0.2461v-0.79102c0.33691-0.0937 0.65185-0.16405 0.94482-0.21094 0.2959-0.0469 0.57422-0.0703 0.83496-0.0703 0.67382 0.00001 1.207 0.15382 1.5996 0.46143 0.39257 0.30469 0.58886 0.71778 0.58887 1.2393-0.000004 0.36328-0.10401 0.6709-0.31201 0.92285-0.20801 0.24902-0.50391 0.42188-0.8877 0.51855"
+          />
+          <path
+              id="path6203"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m78.295 142.21-2.2412 3.5024h2.2412v-3.5024m-0.23291-0.77344h1.1162v4.2759h0.93604v0.73828h-0.93604v1.5469h-0.8833v-1.5469h-2.9619v-0.85693l2.729-4.1572"
+          />
+          <path
+              id="path6205"
+              style="color:#000000;fill:#4d4d4d"
+              inkscape:connector-curvature="0"
+              d="m82.351 147.25h3.0981v0.74707h-4.166v-0.74707c0.33691-0.34863 0.79541-0.81592 1.3755-1.4019 0.58301-0.58886 0.94922-0.96825 1.0986-1.1382 0.28418-0.31933 0.48193-0.58886 0.59326-0.80859 0.11425-0.22266 0.17138-0.44092 0.17139-0.65479-0.000004-0.34863-0.12305-0.63281-0.36914-0.85254-0.24317-0.21972-0.56104-0.32958-0.95361-0.32959-0.27832 0.00001-0.57276 0.0483-0.8833 0.14502-0.30762 0.0967-0.63721 0.24317-0.98877 0.43946v-0.89649c0.35742-0.14355 0.6914-0.25195 1.002-0.32519 0.31054-0.0732 0.59472-0.10986 0.85254-0.10987 0.67968 0.00001 1.2217 0.16993 1.626 0.50977 0.40429 0.33985 0.60644 0.79395 0.60644 1.3623-0.000004 0.26954-0.05127 0.52589-0.15381 0.76905-0.09961 0.24023-0.28272 0.52441-0.54932 0.85253-0.07325 0.085-0.30616 0.33106-0.69873 0.73829-0.39258 0.4043-0.94629 0.97119-1.6611 1.7007"
+          />
+        </g
+        >
+      </g
+      >
+    </g
+    >
+    <g
+        id="g8830"
+        transform="translate(222.78 22.648)"
+      >
+      <g
+          id="g4045"
+          style="color:#000000;fill:#4d4d4d"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path4076"
+            d="m-135.34 43a63.015 63.015 0 0 0 -3.66 21 63.015 63.015 0 0 0 24 49.406v-70.41h-20.344zm77.625 10v71.25a63.015 63.015 0 0 0 25.84 -15.28v-55.969h-25.844zm-55.406 10v51.906a63.015 63.015 0 0 0 25.844 11.031v-62.938h-25.844zm83.12 10v33.969a63.015 63.015 0 0 0 16.281 -33.97h-16.281zm-55.438 15v38.25a63.015 63.015 0 0 0 25.875 -1.4375v-36.812h-25.875z"
+            style="color:#000000;fill:#4d4d4d"
+            transform="translate(140 924.36)"
+            inkscape:connector-curvature="0"
+        />
+      </g
+      >
+      <g
+          id="layer1-1"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-6"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g9071"
+        transform="translate(222.68 165.67)"
+      >
+      <path
+          id="path8055"
+          inkscape:connector-curvature="0"
+          style="stroke-linejoin:round;color:#000000;stroke:#4d4d4d;stroke-linecap:round;stroke-dasharray:3, 1;fill:#666666"
+          transform="matrix(.98782 0 0 .99584 1.1826 .46307)"
+          d="m125.26 46.179c9.71 33.836-9.9 69.121-43.809 78.811-33.907 9.7-69.269-9.88-78.982-43.712-3.2056-11.167-3.2914-22.997-0.2478-34.21"
+      />
+      <path
+          id="path8043"
+          d="m1.3971 52.019v22.101m9.8811-27.759v52.952m9.8811-52.952v64.268m9.8811-64.268v71.273m9.8811-71.273v75.719m9.8811-75.719v79.222m9.8811-79.222v79.896m9.8811-79.896v79.761m9.8811-79.761v77.74m9.8811-77.74v74.641m9.8811-74.641v68.849m9.8811-68.849v60.226m9.8811-60.226v46.35m-116.54-45.762h120.92m-122.95 5.9145h124.44m-124.44 5.9145h126.48m-126.48 5.916h125.53m-125.53 5.9145h125.26m-125.26 5.9145h124.31m-122.28 5.9144h120.78m-118.21 5.9145h116.44m-113.73 5.9144h110.75m-106.95 5.9144h102.89m-97.733 5.9145h93.529m-88.241 5.9144h82.411m-74.14 5.9144h66.275"
+          sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc"
+          style="stroke:#e6e6e6;stroke-width:.53513pt;fill:#666666"
+          inkscape:connector-curvature="0"
+      />
+      <g
+          id="layer1-7"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-1"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+            inkscape:connector-curvature="0"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+        />
+      </g
+      >
+      <g
+          id="g8051"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path8053"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g9221"
+        transform="translate(79.571 165.67)"
+      >
+      <path
+          id="path4212"
+          d="m62.281 38c-8.586 0.30397-17.039 1.813-25 4.4375l27.176 62.732zm8.0312 6.875-4.1091 60.294 49.265-41.763c-11.55-11.433-27.888-18.155-45.158-18.532zm-28.843 18.531c-3.18 1.5249-6.1972 3.3497-9 5.4688-10.662 8.0608-17.109 19.379-19.375 31.406 0.23597 0.35659 0.47557 0.71078 0.71875 1.0625 1.2619 1.6804 2.6079 3.2977 4.0312 4.8438 1.4144 1.5524 2.9065 3.034 4.4688 4.4375 1.5678 1.4037 3.2059 2.7289 4.9062 3.9688 1.7016 1.2329 3.465 2.3807 5.2812 3.4375 1.8044 1.0603 3.6616 2.0307 5.5625 2.9062 1.9181 0.86834 3.8797 1.6405 5.875 2.3125 1.9899 0.68407 4.0141 1.2684 6.0625 1.75 2.0421 0.47765 4.108 0.85327 6.1875 1.125 2.0837 0.27125 4.1809 0.4382 6.2812 0.5 2.0946 0.0524 4.1918 0.00022 6.2812-0.15625 2.0941-0.14569 4.1809-0.39611 6.25-0.75 2.0733-0.3552 4.1288-0.8143 6.1562-1.375 2.0212-0.5667 4.0141-1.2345 5.9688-2 1.9578-0.75768 3.8776-1.6133 5.75-2.5625 1.8735-0.94966 3.6994-1.9931 5.4688-3.125 1.7685-1.1425 3.4797-2.3737 5.125-3.6875 1.6408-1.3058 3.2163-2.6935 4.7188-4.1562 1.5129-1.4581 2.9528-2.9919 4.3125-4.5938 1.1905-1.4386 2.317-2.9301 3.375-4.4688-1.5137-7.6081-4.5862-15.008-9.75-21.562l-41.568 31.431z"
+          sodipodi:nodetypes="cccccccccscccccccccccccccccccccccc"
+          style="stroke-linejoin:round;color:#000000;stroke:#4d4d4d;stroke-linecap:round;stroke-dasharray:3.47064246, 1.15688082;stroke-width:1.1569;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <g
+          id="layer1-51"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-61"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+    </g
+    >
+    <g
+        id="g9391"
+        transform="translate(365.99 22.648)"
+      >
+      <g
+          id="layer1-9"
+          transform="translate(0 -924.36)"
+        >
+        <path
+            id="path3160-2"
+            d="m128.29 64.865a63.766 63.892 0 1 1 -127.53 0 63.766 63.892 0 1 1 127.53 0z"
+            style="stroke-linejoin:round;stroke:#000000;stroke-linecap:round;stroke-width:1.9947;fill:none"
+            inkscape:connector-curvature="0"
+            transform="matrix(.98823 0 0 .98628 .23592 924.39)"
+        />
+      </g
+      >
+      <path
+          id="path4119"
+          d="m24 100c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4122"
+          d="m11.195 55.805-2.195 2.195 2.805 2.805-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4169"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m49 90c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+      />
+      <path
+          id="path4171"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m28.39 43-2.195 2.195 2.805 2.805-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+      />
+      <path
+          id="path4173"
+          d="m74 95c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4175"
+          d="m51.195 30.195-2.1951 2.1951 2.8049 2.8049l-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4177"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m89 75c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+      />
+      <path
+          id="path4179"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m71.195 35.195-2.1951 2.1951 2.8049 2.8049l-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+      />
+      <path
+          id="path4181"
+          d="m86.195 30.195-2.1951 2.1951 2.8049 2.8049l-2.805 2.805 2.195 2.195 2.805-2.805 2.805 2.805 2.195-2.195-2.805-2.805 2.805-2.805-2.195-2.195-2.805 2.805-2.805-2.805z"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4183"
+          d="m104 90c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4185"
+          style="color:#000000;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m124 75c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5z"
+      />
+      <path
+          id="path4187"
+          style="block-progression:tb;text-indent:0;color:#000000;text-transform:none;fill:#4d4d4d"
+          inkscape:connector-curvature="0"
+          d="m106.2 45.195-2.2 2.195 2.8 2.805-2.8 2.805 2.2 2.195 2.8-2.805 2.8 2.805 2.2-2.195-2.8-2.805 2.8-2.805-2.2-2.195-2.8 2.805-2.8-2.805z"
+      />
+      <path
+          id="path4189"
+          d="m14 58 15-10l25-15 20 5 15-5 20 15"
+          style="stroke:#4d4d4d;stroke-dasharray:3, 1;fill:none"
+          inkscape:connector-curvature="0"
+      />
+      <path
+          id="path4191"
+          d="m19 100 100-25"
+          style="stroke:#4d4d4d;stroke-dasharray:2, 1;fill:none"
+          inkscape:connector-curvature="0"
+      />
+    </g
+    >
+  </g
+  >
+  <metadata
+    >
+    <rdf:RDF
+      >
+      <cc:Work
+        >
+        <dc:format
+          >image/svg+xml</dc:format
+        >
+        <dc:type
+            rdf:resource="http://purl.org/dc/dcmitype/StillImage"
+        />
+        <cc:license
+            rdf:resource="http://creativecommons.org/licenses/publicdomain/"
+        />
+        <dc:publisher
+          >
+          <cc:Agent
+              rdf:about="http://openclipart.org/"
+            >
+            <dc:title
+              >Openclipart</dc:title
+            >
+          </cc:Agent
+          >
+        </dc:publisher
+        >
+        <dc:title
+          >Icon Set Graph</dc:title
+        >
+        <dc:date
+          >2012-09-06T20:29:21</dc:date
+        >
+        <dc:description
+          >Check others icons on my "Minimal Icon Set" collection.\nSet of simple icons useful for gui design and applications use interface. Icons representing various graph and plotting </dc:description
+        >
+        <dc:source
+          >https://openclipart.org/detail/172197/icon-set-graph-by-mi_brami-172197</dc:source
+        >
+        <dc:creator
+          >
+          <cc:Agent
+            >
+            <dc:title
+              >mi_brami</dc:title
+            >
+          </cc:Agent
+          >
+        </dc:creator
+        >
+        <dc:subject
+          >
+          <rdf:Bag
+            >
+            <rdf:li
+              >Icon</rdf:li
+            >
+            <rdf:li
+              >area</rdf:li
+            >
+            <rdf:li
+              >b&amp;w</rdf:li
+            >
+            <rdf:li
+              >barcode</rdf:li
+            >
+            <rdf:li
+              >bars</rdf:li
+            >
+            <rdf:li
+              >black</rdf:li
+            >
+            <rdf:li
+              >data</rdf:li
+            >
+            <rdf:li
+              >graph</rdf:li
+            >
+            <rdf:li
+              >gray</rdf:li
+            >
+            <rdf:li
+              >icon</rdf:li
+            >
+            <rdf:li
+              >pie</rdf:li
+            >
+            <rdf:li
+              >plot</rdf:li
+            >
+            <rdf:li
+              >round</rdf:li
+            >
+            <rdf:li
+              >scatter</rdf:li
+            >
+            <rdf:li
+              >table</rdf:li
+            >
+            <rdf:li
+              >transparent</rdf:li
+            >
+            <rdf:li
+              >white</rdf:li
+            >
+            <rdf:li
+              >xy</rdf:li
+            >
+          </rdf:Bag
+          >
+        </dc:subject
+        >
+      </cc:Work
+      >
+      <cc:License
+          rdf:about="http://creativecommons.org/licenses/publicdomain/"
+        >
+        <cc:permits
+            rdf:resource="http://creativecommons.org/ns#Reproduction"
+        />
+        <cc:permits
+            rdf:resource="http://creativecommons.org/ns#Distribution"
+        />
+        <cc:permits
+            rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
+        />
+      </cc:License
+      >
+    </rdf:RDF
+    >
+  </metadata
+  >
+</svg
+>
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 9b5bbc5966e..35c1220a0b8 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -2707,9 +2707,20 @@ td.legendLabel { padding: 2px 2px 2px 0 !important; }
 
 .logo_setup
 {
-	content:url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/logo_setup.svg',1) ?>);
+	content:url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/logo_setup.svg',1) ?>);	/* content is used to best fit the container */
 	display: inline-block;
 }
+.nographyet
+{
+	content:url(<?php echo dol_buildpath($path.'/theme/'.$theme.'/img/nographyet.svg',1) ?>);
+	display: inline-block;
+    opacity: 0.1;
+    background-repeat: no-repeat;
+}
+.nographyettext
+{
+    opacity: 0.5;
+}
 
 div.titre {
 	font-family: <?php print $fontlist ?>;
-- 
GitLab