Skip to content

Instantly share code, notes, and snippets.

@hotzeplotz
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save hotzeplotz/7b121ea4794f9edf5f96 to your computer and use it in GitHub Desktop.

Select an option

Save hotzeplotz/7b121ea4794f9edf5f96 to your computer and use it in GitHub Desktop.
London - Governance
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>London - Governance</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="jquery.panzoom.min.js"></script>
</head>
<body>
<div>
<img class="panzoom" src="london.svg" />
</div>
<script>
(function() {
var $section = $('body');
var $panzoom = $section.find('.panzoom').panzoom({
}).panzoom('zoom', true);
$panzoom.parent().on('mousewheel.focal', function( e ) {
e.preventDefault();
var delta = e.delta || e.originalEvent.wheelDelta;
var zoomOut = delta ? delta < 0 : e.originalEvent.deltaY > 0;
$panzoom.panzoom('zoom', zoomOut, {
increment: 0.1,
animate: false,
focal: e
});
});
})();
</script>
</body>
/**
* @license jquery.panzoom.js v2.0.5
* Updated: Thu Jul 03 2014
* Add pan and zoom functionality to any element
* Copyright (c) 2014 timmy willison
* Released under the MIT license
* https://github.com/timmywil/jquery.panzoom/blob/master/MIT-License.txt
*/
!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(c){return b(a,c)}):"object"==typeof exports?b(a,require("jquery")):b(a,a.jQuery)}("undefined"!=typeof window?window:this,function(a,b){"use strict";function c(a,b){for(var c=a.length;--c;)if(+a[c]!==+b[c])return!1;return!0}function d(a){var c={range:!0,animate:!0};return"boolean"==typeof a?c.animate=a:b.extend(c,a),c}function e(a,c,d,e,f,g,h,i,j){this.elements="array"===b.type(a)?[+a[0],+a[2],+a[4],+a[1],+a[3],+a[5],0,0,1]:[a,c,d,e,f,g,h||0,i||0,j||1]}function f(a,b,c){this.elements=[a,b,c]}function g(a,c){if(!(this instanceof g))return new g(a,c);1!==a.nodeType&&b.error("Panzoom called on non-Element node"),b.contains(l,a)||b.error("Panzoom element must be attached to the document");var d=b.data(a,m);if(d)return d;this.options=c=b.extend({},g.defaults,c),this.elem=a;var e=this.$elem=b(a);this.$set=c.$set&&c.$set.length?c.$set:e,this.$doc=b(a.ownerDocument||l),this.$parent=e.parent(),this.isSVG=r.test(a.namespaceURI)&&"svg"!==a.nodeName.toLowerCase(),this.panning=!1,this._buildTransform(),this._transform=!this.isSVG&&b.cssProps.transform.replace(q,"-$1").toLowerCase(),this._buildTransition(),this.resetDimensions();var f=b(),h=this;b.each(["$zoomIn","$zoomOut","$zoomRange","$reset"],function(a,b){h[b]=c[b]||f}),this.enable(),b.data(a,m,this)}var h="over out down up move enter leave cancel".split(" "),i=b.extend({},b.event.mouseHooks),j={};if(a.PointerEvent)b.each(h,function(a,c){b.event.fixHooks[j[c]="pointer"+c]=i});else{var k=i.props;i.props=k.concat(["touches","changedTouches","targetTouches","altKey","ctrlKey","metaKey","shiftKey"]),i.filter=function(a,b){var c,d=k.length;if(!b.pageX&&b.touches&&(c=b.touches[0]))for(;d--;)a[k[d]]=c[k[d]];return a},b.each(h,function(a,c){if(2>a)j[c]="mouse"+c;else{var d="touch"+("down"===c?"start":"up"===c?"end":c);b.event.fixHooks[d]=i,j[c]=d+" mouse"+c}})}b.pointertouch=j;var l=a.document,m="__pz__",n=Array.prototype.slice,o=!!a.PointerEvent,p=function(){var a=l.createElement("input");return a.setAttribute("oninput","return"),"function"==typeof a.oninput}(),q=/([A-Z])/g,r=/^http:[\w\.\/]+svg$/,s=/^inline/,t="(\\-?[\\d\\.e]+)",u="\\,?\\s*",v=new RegExp("^matrix\\("+t+u+t+u+t+u+t+u+t+u+t+"\\)$");return e.prototype={x:function(a){var b=a instanceof f,c=this.elements,d=a.elements;return b&&3===d.length?new f(c[0]*d[0]+c[1]*d[1]+c[2]*d[2],c[3]*d[0]+c[4]*d[1]+c[5]*d[2],c[6]*d[0]+c[7]*d[1]+c[8]*d[2]):d.length===c.length?new e(c[0]*d[0]+c[1]*d[3]+c[2]*d[6],c[0]*d[1]+c[1]*d[4]+c[2]*d[7],c[0]*d[2]+c[1]*d[5]+c[2]*d[8],c[3]*d[0]+c[4]*d[3]+c[5]*d[6],c[3]*d[1]+c[4]*d[4]+c[5]*d[7],c[3]*d[2]+c[4]*d[5]+c[5]*d[8],c[6]*d[0]+c[7]*d[3]+c[8]*d[6],c[6]*d[1]+c[7]*d[4]+c[8]*d[7],c[6]*d[2]+c[7]*d[5]+c[8]*d[8]):!1},inverse:function(){var a=1/this.determinant(),b=this.elements;return new e(a*(b[8]*b[4]-b[7]*b[5]),a*-(b[8]*b[1]-b[7]*b[2]),a*(b[5]*b[1]-b[4]*b[2]),a*-(b[8]*b[3]-b[6]*b[5]),a*(b[8]*b[0]-b[6]*b[2]),a*-(b[5]*b[0]-b[3]*b[2]),a*(b[7]*b[3]-b[6]*b[4]),a*-(b[7]*b[0]-b[6]*b[1]),a*(b[4]*b[0]-b[3]*b[1]))},determinant:function(){var a=this.elements;return a[0]*(a[8]*a[4]-a[7]*a[5])-a[3]*(a[8]*a[1]-a[7]*a[2])+a[6]*(a[5]*a[1]-a[4]*a[2])}},f.prototype.e=e.prototype.e=function(a){return this.elements[a]},g.rmatrix=v,g.events=b.pointertouch,g.defaults={eventNamespace:".panzoom",transition:!0,cursor:"move",disablePan:!1,disableZoom:!1,increment:.3,minScale:.4,maxScale:5,rangeStep:.05,duration:200,easing:"ease-in-out",contain:!1},g.prototype={constructor:g,instance:function(){return this},enable:function(){this._initStyle(),this._bind(),this.disabled=!1},disable:function(){this.disabled=!0,this._resetStyle(),this._unbind()},isDisabled:function(){return this.disabled},destroy:function(){this.disable(),b.removeData(this.elem,m)},resetDimensions:function(){var a=this.$parent;this.container={width:a.innerWidth(),height:a.innerHeight()};var c,d=a.offset(),e=this.elem,f=this.$elem;this.isSVG?(c=e.getBoundingClientRect(),c={left:c.left-d.left,top:c.top-d.top,width:c.width,height:c.height,margin:{left:0,top:0}}):c={left:b.css(e,"left",!0)||0,top:b.css(e,"top",!0)||0,width:f.innerWidth(),height:f.innerHeight(),margin:{top:b.css(e,"marginTop",!0)||0,left:b.css(e,"marginLeft",!0)||0}},c.widthBorder=b.css(e,"borderLeftWidth",!0)+b.css(e,"borderRightWidth",!0)||0,c.heightBorder=b.css(e,"borderTopWidth",!0)+b.css(e,"borderBottomWidth",!0)||0,this.dimensions=c},reset:function(a){a=d(a);var b=this.setMatrix(this._origTransform,a);a.silent||this._trigger("reset",b)},resetZoom:function(a){a=d(a);var b=this.getMatrix(this._origTransform);a.dValue=b[3],this.zoom(b[0],a)},resetPan:function(a){var b=this.getMatrix(this._origTransform);this.pan(b[4],b[5],d(a))},setTransform:function(a){for(var c=this.isSVG?"attr":"style",d=this.$set,e=d.length;e--;)b[c](d[e],"transform",a)},getTransform:function(a){var c=this.$set,d=c[0];return a?this.setTransform(a):a=b[this.isSVG?"attr":"style"](d,"transform"),"none"===a||v.test(a)||this.setTransform(a=b.css(d,"transform")),a||"none"},getMatrix:function(a){var b=v.exec(a||this.getTransform());return b&&b.shift(),b||[1,0,0,1,0,0]},setMatrix:function(a,c){if(!this.disabled){c||(c={}),"string"==typeof a&&(a=this.getMatrix(a));var d,e,f,g,h,i,j,k,l,m,n=+a[0],o=this.$parent,p="undefined"!=typeof c.contain?c.contain:this.options.contain;return p&&(d=this._checkDims(),e=this.container,l=d.width+d.widthBorder,m=d.height+d.heightBorder,f=(l*Math.abs(n)-e.width)/2,g=(m*Math.abs(n)-e.height)/2,j=d.left+d.margin.left,k=d.top+d.margin.top,"invert"===p?(h=l>e.width?l-e.width:0,i=m>e.height?m-e.height:0,f+=(e.width-l)/2,g+=(e.height-m)/2,a[4]=Math.max(Math.min(a[4],f-j),-f-j-h),a[5]=Math.max(Math.min(a[5],g-k),-g-k-i+d.heightBorder)):(g+=d.heightBorder/2,h=e.width>l?e.width-l:0,i=e.height>m?e.height-m:0,"center"===o.css("textAlign")&&s.test(b.css(this.elem,"display"))?h=0:f=g=0,a[4]=Math.min(Math.max(a[4],f-j),-f-j+h),a[5]=Math.min(Math.max(a[5],g-k),-g-k+i))),"skip"!==c.animate&&this.transition(!c.animate),c.range&&this.$zoomRange.val(n),this.setTransform("matrix("+a.join(",")+")"),c.silent||this._trigger("change",a),a}},isPanning:function(){return this.panning},transition:function(a){if(this._transition)for(var c=a||!this.options.transition?"none":this._transition,d=this.$set,e=d.length;e--;)b.style(d[e],"transition")!==c&&b.style(d[e],"transition",c)},pan:function(a,b,c){if(!this.options.disablePan){c||(c={});var d=c.matrix;d||(d=this.getMatrix()),c.relative&&(a+=+d[4],b+=+d[5]),d[4]=a,d[5]=b,this.setMatrix(d,c),c.silent||this._trigger("pan",d[4],d[5])}},zoom:function(a,c){"object"==typeof a?(c=a,a=null):c||(c={});var d=b.extend({},this.options,c);if(!d.disableZoom){var g=!1,h=d.matrix||this.getMatrix();"number"!=typeof a&&(a=+h[0]+d.increment*(a?-1:1),g=!0),a>d.maxScale?a=d.maxScale:a<d.minScale&&(a=d.minScale);var i=d.focal;if(i&&!d.disablePan){var j=this._checkDims(),k=i.clientX,l=i.clientY;this.isSVG||(k-=(j.width+j.widthBorder)/2,l-=(j.height+j.heightBorder)/2);var m=new f(k,l,1),n=new e(h),o=this.parentOffset||this.$parent.offset(),p=new e(1,0,o.left-this.$doc.scrollLeft(),0,1,o.top-this.$doc.scrollTop()),q=n.inverse().x(p.inverse().x(m)),r=a/h[0];n=n.x(new e([r,0,0,r,0,0])),m=p.x(n.x(q)),h[4]=+h[4]+(k-m.e(0)),h[5]=+h[5]+(l-m.e(1))}h[0]=a,h[3]="number"==typeof d.dValue?d.dValue:a,this.setMatrix(h,{animate:"boolean"==typeof d.animate?d.animate:g,range:!d.noSetRange}),d.silent||this._trigger("zoom",h[0],d)}},option:function(a,c){var d;if(!a)return b.extend({},this.options);if("string"==typeof a){if(1===arguments.length)return void 0!==this.options[a]?this.options[a]:null;d={},d[a]=c}else d=a;this._setOptions(d)},_setOptions:function(a){b.each(a,b.proxy(function(a,c){switch(a){case"disablePan":this._resetStyle();case"$zoomIn":case"$zoomOut":case"$zoomRange":case"$reset":case"disableZoom":case"onStart":case"onChange":case"onZoom":case"onPan":case"onEnd":case"onReset":case"eventNamespace":this._unbind()}switch(this.options[a]=c,a){case"disablePan":this._initStyle();case"$zoomIn":case"$zoomOut":case"$zoomRange":case"$reset":this[a]=c;case"disableZoom":case"onStart":case"onChange":case"onZoom":case"onPan":case"onEnd":case"onReset":case"eventNamespace":this._bind();break;case"cursor":b.style(this.elem,"cursor",c);break;case"minScale":this.$zoomRange.attr("min",c);break;case"maxScale":this.$zoomRange.attr("max",c);break;case"rangeStep":this.$zoomRange.attr("step",c);break;case"startTransform":this._buildTransform();break;case"duration":case"easing":this._buildTransition();case"transition":this.transition();break;case"$set":c instanceof b&&c.length&&(this.$set=c,this._initStyle(),this._buildTransform())}},this))},_initStyle:function(){var a={"backface-visibility":"hidden","transform-origin":this.isSVG?"0 0":"50% 50%"};this.options.disablePan||(a.cursor=this.options.cursor),this.$set.css(a);var c=this.$parent;c.length&&!b.nodeName(c[0],"body")&&(a={overflow:"hidden"},"static"===c.css("position")&&(a.position="relative"),c.css(a))},_resetStyle:function(){this.$elem.css({cursor:"",transition:""}),this.$parent.css({overflow:"",position:""})},_bind:function(){var a=this,c=this.options,d=c.eventNamespace,e=o?"pointerdown"+d:"touchstart"+d+" mousedown"+d,f=o?"pointerup"+d:"touchend"+d+" click"+d,h={},i=this.$reset,j=this.$zoomRange;if(b.each(["Start","Change","Zoom","Pan","End","Reset"],function(){var a=c["on"+this];b.isFunction(a)&&(h["panzoom"+this.toLowerCase()+d]=a)}),c.disablePan&&c.disableZoom||(h[e]=function(b){var d;("touchstart"===b.type?!(d=b.touches)||(1!==d.length||c.disablePan)&&2!==d.length:c.disablePan||1!==b.which)||(b.preventDefault(),b.stopPropagation(),a._startMove(b,d))}),this.$elem.on(h),i.length&&i.on(f,function(b){b.preventDefault(),a.reset()}),j.length&&j.attr({step:c.rangeStep===g.defaults.rangeStep&&j.attr("step")||c.rangeStep,min:c.minScale,max:c.maxScale}).prop({value:this.getMatrix()[0]}),!c.disableZoom){var k=this.$zoomIn,l=this.$zoomOut;k.length&&l.length&&(k.on(f,function(b){b.preventDefault(),a.zoom()}),l.on(f,function(b){b.preventDefault(),a.zoom(!0)})),j.length&&(h={},h[(o?"pointerdown":"mousedown")+d]=function(){a.transition(!0)},h[(p?"input":"change")+d]=function(){a.zoom(+this.value,{noSetRange:!0})},j.on(h))}},_unbind:function(){this.$elem.add(this.$zoomIn).add(this.$zoomOut).add(this.$reset).off(this.options.eventNamespace)},_buildTransform:function(){return this._origTransform=this.getTransform(this.options.startTransform)},_buildTransition:function(){if(this._transform){var a=this.options;this._transition=this._transform+" "+a.duration+"ms "+a.easing}},_checkDims:function(){var a=this.dimensions;return a.width&&a.height||this.resetDimensions(),this.dimensions},_getDistance:function(a){var b=a[0],c=a[1];return Math.sqrt(Math.pow(Math.abs(c.clientX-b.clientX),2)+Math.pow(Math.abs(c.clientY-b.clientY),2))},_getMiddle:function(a){var b=a[0],c=a[1];return{clientX:(c.clientX-b.clientX)/2+b.clientX,clientY:(c.clientY-b.clientY)/2+b.clientY}},_trigger:function(a){"string"==typeof a&&(a="panzoom"+a),this.$elem.triggerHandler(a,[this].concat(n.call(arguments,1)))},_startMove:function(a,d){var e,f,g,h,i,j,k,m,n=this,p=this.options,q=p.eventNamespace,r=this.getMatrix(),s=r.slice(0),t=+s[4],u=+s[5],v={matrix:r,animate:"skip"};o?(f="pointermove",g="pointerup"):"touchstart"===a.type?(f="touchmove",g="touchend"):(f="mousemove",g="mouseup"),f+=q,g+=q,this.transition(!0),this.panning=!0,this._trigger("start",a,d),d&&2===d.length?(h=this._getDistance(d),i=+r[0],j=this._getMiddle(d),e=function(a){a.preventDefault();var b=n._getMiddle(d=a.touches),c=n._getDistance(d)-h;n.zoom(c*(p.increment/100)+i,{focal:b,matrix:r,animate:!1}),n.pan(+r[4]+b.clientX-j.clientX,+r[5]+b.clientY-j.clientY,v),j=b}):(k=a.pageX,m=a.pageY,e=function(a){a.preventDefault(),n.pan(t+a.pageX-k,u+a.pageY-m,v)}),b(l).off(q).on(f,e).on(g,function(a){a.preventDefault(),b(this).off(q),n.panning=!1,a.type="panzoomend",n._trigger(a,r,!c(r,s))})}},b.Panzoom=g,b.fn.panzoom=function(a){var c,d,e,f;return"string"==typeof a?(f=[],d=n.call(arguments,1),this.each(function(){c=b.data(this,m),c?"_"!==a.charAt(0)&&"function"==typeof(e=c[a])&&void 0!==(e=e.apply(c,d))&&f.push(e):f.push(void 0)}),f.length?1===f.length?f[0]:f:this):this.each(function(){new g(this,a)})},g});
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
]>
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
x="0px" y="0px" width="900px" height="600px" viewBox="-72 -54.442 900 600" enable-background="new -72 -54.442 900 600"
xml:space="preserve">
<defs>
</defs>
<text transform="matrix(1 0 0 1 0.4854 29.8247)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="28">L</tspan><tspan x="11.928" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="28">ONDO</tspan><tspan x="71.007" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="28">N</tspan></text>
<text transform="matrix(1 0 0 1 514.501 74.9712)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="7.392" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="14.658" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="21.321" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="27.468" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="33.978" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="40.642" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="47.907" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="50.553" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="56.377" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="63.433" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">ND</tspan><tspan x="78.272" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="85.328" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="92.721" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="95.366" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">EXPE</tspan><tspan x="123.142" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">ND</tspan><tspan x="137.981" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="141.762" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="148.271" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="155.901" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="163.167" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan></text>
<text transform="matrix(1 0 0 1 684.293 74.9712)" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </text>
<text transform="matrix(1 0 0 1 514.501 82.9712)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">2</tspan><tspan x="3.654" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.476" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="9.821" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">4</tspan><tspan x="13.468" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">-</tspan><tspan x="15.617" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">2</tspan><tspan x="19.271" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="23.093" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="25.459" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">5</tspan></text>
<g>
<defs>
<rect id="SVGID_2_" width="758.84" height="493.558"/>
</defs>
<clipPath id="SVGID_3_">
<use xlink:href="#SVGID_2_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_3_)" fill="none" stroke="#1A171B" stroke-width="2" x1="0.485" y1="1.001" x2="758.839" y2="1.001"/>
</g>
<text transform="matrix(1 0 0 1 530.998 30.6108)"><tspan x="0" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">N</tspan><tspan x="4.219" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">a</tspan><tspan x="7.261" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="9.354" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">i</tspan><tspan x="10.81" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">o</tspan><tspan x="14.319" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">na</tspan><tspan x="20.93" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan><tspan x="22.405" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5"> </tspan><tspan x="23.38" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">le</tspan><tspan x="28.054" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="31.057" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="34.254" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan></text>
<text transform="matrix(1 0 0 1 668.6348 31.105)"><tspan x="0" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">Su</tspan><tspan x="6.656" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">b</tspan><tspan x="10.387" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">-</tspan><tspan x="12.435" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">ci</tspan><tspan x="16.737" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="18.882" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">y</tspan><tspan x="21.879" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5"> </tspan><tspan x="22.854" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan><tspan x="24.322" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="27.521" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="30.523" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="33.722" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan></text>
<rect x="651.569" y="24.102" fill="#B2B600" width="14.173" height="8.504"/>
<text transform="matrix(1 0 0 1 608.209 31.1079)"><tspan x="0" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">C</tspan><tspan x="3.692" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">i</tspan><tspan x="5.147" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="7.3" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">y</tspan><tspan x="10.296" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5"> </tspan><tspan x="11.271" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">le</tspan><tspan x="15.944" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="18.947" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="22.145" y="0" fill="#1A171B" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan></text>
<rect x="591.304" y="24.102" fill="#CD223E" width="14.173" height="8.504"/>
<rect x="514.41" y="24.102" fill="#007FBF" width="14.173" height="8.504"/>
<text transform="matrix(1 0 0 1 0.0127 76.4912)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="7.392" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="14.322" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">VE</tspan><tspan x="27.887" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">RN</tspan><tspan x="42.545" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="49.657" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">NC</tspan><tspan x="64.161" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="70.825" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="73.471" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="80.471" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan></text>
<text transform="matrix(1 0 0 1 87.0366 76.4912)" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</text>
<text transform="matrix(1 0 0 1 94.3169 76.4912)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="7.63" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">CT</tspan><tspan x="21.251" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="28.881" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="36.147" y="0" fill="#1A171B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan></text>
<rect x="74.201" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<rect x="6.169" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<rect x="210.264" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<rect x="278.295" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<rect x="142.232" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<rect x="414.357" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<rect x="346.327" y="91.425" fill="#ECECED" width="62.362" height="396.85"/>
<g>
<defs>
<rect id="SVGID_1_" width="758.84" height="493.558"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<rect x="0.75" y="111.517" clip-path="url(#SVGID_4_)" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="481.39" height="146.402"/>
<rect x="0.75" y="270.257" clip-path="url(#SVGID_4_)" fill="none" stroke="#CD223E" stroke-miterlimit="10" width="481.39" height="146.401"/>
<rect x="0.5" y="429.054" clip-path="url(#SVGID_4_)" fill="none" stroke="#B2B600" stroke-miterlimit="10" width="481.39" height="59.028"/>
</g>
<rect x="6.669" y="171.967" fill="#007FBF" width="61.362" height="21.007"/>
<text transform="matrix(1 0 0 1 9.437 181.1348)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">W</tspan><tspan x="5.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="9.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="13.248" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">K &amp; </tspan></text>
<text transform="matrix(1 0 0 1 9.437 189.1348)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">PE</tspan><tspan x="7.776" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.984" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="16.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="22.279" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.487" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
<rect x="6.669" y="171.967" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="21.007"/>
<rect x="346.827" y="138.338" fill="#007FBF" width="61.362" height="13.779"/>
<text transform="matrix(1 0 0 1 349.5947 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">DEFE</tspan><tspan x="15.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="19.504" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="23.552" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="346.827" y="138.338" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="13.779"/>
<rect x="346.827" y="173.959" fill="#007FBF" width="61.362" height="13.016"/>
<text transform="matrix(1 0 0 1 349.5947 183.127)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">J</tspan><tspan x="3.888" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="16.08" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="18.231" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="22.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="346.827" y="173.959" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="13.016"/>
<rect x="414.857" y="204.138" fill="#007FBF" width="61.362" height="29.795"/>
<text transform="matrix(1 0 0 1 417.626 213.3062)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="7.575" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">RE</tspan><tspan x="15.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="17.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="21.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N &amp; </tspan></text>
<text transform="matrix(1 0 0 1 417.626 221.3062)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.08" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="13.655" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="19.256" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="23.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NW</tspan><tspan x="32.712" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="36.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="40.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="43.711" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="47.447" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H </tspan></text>
<text transform="matrix(1 0 0 1 417.626 229.3062)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="4.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="11.063" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="13.216" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="17.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="414.857" y="204.138" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="29.795"/>
<rect x="346.827" y="155.952" fill="#007FBF" width="61.362" height="14.173"/>
<text transform="matrix(1 0 0 1 349.5947 165.1191)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.328" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.352" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="13.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="19.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="23.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="30.728" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="32.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="36.927" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="346.827" y="155.952" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="14.173"/>
<rect x="414.857" y="154.329" fill="#007FBF" width="61.362" height="12.346"/>
<text transform="matrix(1 0 0 1 417.626 163.4961)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="8.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="12.192" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.472" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="22.312" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan><tspan x="27.991" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="32.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="39.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="41.207" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="45.255" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="414.857" y="154.329" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="12.346"/>
<rect x="346.327" y="342.75" fill="#CD223E" width="62.362" height="51.981"/>
<text transform="matrix(1 0 0 1 348.5947 351.4175)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.608" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="15.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.928" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="26.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="29.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="31.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="35.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E &amp; </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 359.4175)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="9.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="13.088" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="17.24" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="21.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="25.208" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="29.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="33.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 367.4175)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NNI</tspan><tspan x="22.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 375.4175)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="3.944" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="12.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="16.384" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="20.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="24.527" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="26.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="30.591" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y / </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 383.4175)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.608" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="15.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.928" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="26.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="29.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="31.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="35.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 391.4175)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">BR</tspan><tspan x="8.192" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="10.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="14.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="18.672" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="22.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="346.327" y="295.578" fill="#CD223E" width="62.362" height="43.964"/>
<text transform="matrix(1 0 0 1 348.5947 304.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="5.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="9.248" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan><tspan x="13.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="17.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="21.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">’</tspan><tspan x="23.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S </tspan><tspan x="29.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="33.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="40.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="42.487" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="46.535" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 312.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="7.576" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="13.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="17.776" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="21.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="25.184" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="27.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="31.367" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="33.472" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="37.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G &amp; </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 320.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="8.168" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="10.272" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="15.824" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E / </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 328.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="5.552" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="9.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">TR</tspan><tspan x="17.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="21.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="25.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="29.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">LI</tspan><tspan x="34.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="38.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="42.495" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan></text>
<text transform="matrix(1 0 0 1 348.5947 336.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.088" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="13.647" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="17.696" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="142.232" y="295.578" fill="#CD223E" width="62.362" height="20.385"/>
<text transform="matrix(1 0 0 1 144.5 304.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan><tspan x="38.343" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="45.919" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan></text>
<text transform="matrix(1 0 0 1 144.5 312.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.608" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="15.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.928" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
<rect x="74.201" y="311.617" fill="#CD223E" width="62.362" height="12.144"/>
<text transform="matrix(1 0 0 1 76.4683 320.2847)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NNI</tspan><tspan x="22.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
<rect x="414.857" y="170.509" fill="#007FBF" width="61.362" height="29.795"/>
<text transform="matrix(1 0 0 1 417.626 179.6772)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.08" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">MMU</tspan><tspan x="23.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="27.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IT</tspan><tspan x="33.6" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="35.703" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="39.575" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S &amp; </tspan></text>
<text transform="matrix(1 0 0 1 417.626 187.6772)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.479" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="11.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan></text>
<text transform="matrix(1 0 0 1 417.626 195.6772)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="4.231" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ER</tspan><tspan x="20.087" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="24.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="29.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="33.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="37.823" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
<text transform="matrix(1 0 0 1 459.1064 195.6772)" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8"> </text>
<rect x="414.857" y="170.509" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="29.795"/>
<rect x="6.669" y="138.337" fill="#007FBF" width="61.362" height="29.795"/>
<text transform="matrix(1 0 0 1 9.437 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="4.072" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.808" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ES</tspan><tspan x="26.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="31.031" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">, </tspan></text>
<text transform="matrix(1 0 0 1 9.437 155.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="6.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="10.504" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="14.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="18.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="21.888" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="25.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="31.799" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N &amp; </tspan></text>
<text transform="matrix(1 0 0 1 9.437 163.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="4.12" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">K</tspan><tspan x="8.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="10.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="13.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="17.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
<rect x="6.669" y="138.337" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="29.795"/>
<rect x="210.694" y="155.242" fill="#007FBF" width="61.362" height="20.079"/>
<text transform="matrix(1 0 0 1 213.4619 164.4106)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.032" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.368" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="15.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="19.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="23.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="27.423" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">, </tspan><tspan x="31.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="36.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ED</tspan><tspan x="44.807" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="46.975" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A </tspan></text>
<text transform="matrix(1 0 0 1 213.4619 172.4106)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">&amp; </tspan><tspan x="7.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="11.272" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="15.36" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.384" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="23.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
<rect x="210.694" y="155.242" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="20.079"/>
<rect x="210.694" y="138.338" fill="#007FBF" width="61.362" height="13.07"/>
<text transform="matrix(1 0 0 1 213.4619 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ED</tspan><tspan x="7.992" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="16.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="20.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="23.848" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="30.023" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
<rect x="210.694" y="138.338" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="13.07"/>
<rect x="74.701" y="138.337" fill="#007FBF" width="61.362" height="29.795"/>
<text transform="matrix(1 0 0 1 77.4683 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="8.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="18.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="22.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="32.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="35.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="40.055" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="43.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">, </tspan></text>
<text transform="matrix(1 0 0 1 77.4683 155.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="3.552" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="11.648" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D &amp; </tspan><tspan x="25.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="29.12" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="33.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="37.656" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="41.711" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan></text>
<text transform="matrix(1 0 0 1 77.4683 163.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="4.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="7.576" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="10.952" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="17.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="21.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
<rect x="74.701" y="138.337" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="29.795"/>
<rect x="142.694" y="138.338" fill="#007FBF" width="61.362" height="13.779"/>
<text transform="matrix(1 0 0 1 145.4619 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
<rect x="142.694" y="138.338" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="13.779"/>
<rect x="74.701" y="171.967" fill="#007FBF" width="61.362" height="23.842"/>
<text transform="matrix(1 0 0 1 77.4683 181.1348)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="7.944" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="11.712" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="15.864" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="19.992" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y &amp; </tspan></text>
<text transform="matrix(1 0 0 1 77.4683 189.1348)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="9.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="15.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="18.872" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="22.607" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="28.367" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="32.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="36.759" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">AN</tspan><tspan x="45.039" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="49.239" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="74.701" y="171.967" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="23.842"/>
<rect x="278.795" y="138.338" fill="#007FBF" width="61.362" height="14.534"/>
<text transform="matrix(1 0 0 1 281.563 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="8.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.256" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="15.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="19.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan></text>
<rect x="278.795" y="138.338" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="14.534"/>
<rect x="414.857" y="138.338" fill="#007FBF" width="61.362" height="12.156"/>
<text transform="matrix(1 0 0 1 417.626 147.5054)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M </tspan><tspan x="11.832" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="15.567" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="19.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="23.607" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="27.655" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="31.783" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="36.096" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="40.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan></text>
<rect x="414.857" y="138.338" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="12.156"/>
<rect x="6.669" y="196.809" fill="#007FBF" width="61.362" height="21.574"/>
<text transform="matrix(1 0 0 1 9.437 205.9771)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="4.312" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">K </tspan><tspan x="10.512" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="14.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">X</tspan><tspan x="18.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="22.751" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="26.775" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="30.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan></text>
<text transform="matrix(1 0 0 1 9.437 213.9771)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="3.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="5.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="9.864" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">AN</tspan><tspan x="18.144" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="22.192" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="6.669" y="196.809" fill="none" stroke="#007FBF" stroke-miterlimit="10" width="61.362" height="21.574"/>
<rect x="278.295" y="326.594" fill="#CD223E" width="62.362" height="12.947"/>
<text transform="matrix(1 0 0 1 280.563 335.2622)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.328" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.68" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="16.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="18.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="23.127" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
<rect x="6.169" y="295.578" fill="#CD223E" width="62.362" height="21.574"/>
<text transform="matrix(1 0 0 1 8.437 304.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="4.072" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.808" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ES</tspan><tspan x="26.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S &amp; </tspan></text>
<text transform="matrix(1 0 0 1 8.437 312.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="7.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ONO</tspan><tspan x="20.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="25.784" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan></text>
<rect x="210.264" y="295.578" fill="#CD223E" width="62.362" height="13.204"/>
<text transform="matrix(1 0 0 1 212.5313 304.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.032" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.368" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="15.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="19.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="23.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
<rect x="278.295" y="295.578" fill="#CD223E" width="62.362" height="13.204"/>
<text transform="matrix(1 0 0 1 280.563 304.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="8.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.256" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="15.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="19.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H &amp; </tspan><tspan x="32.447" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="36.567" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="40.655" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="44.679" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="48.887" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
<rect x="278.295" y="311.617" fill="#CD223E" width="62.362" height="12.144"/>
<text transform="matrix(1 0 0 1 280.563 320.2847)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="4.12" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="7.912" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="12.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="15.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="20.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="23.824" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="28.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="31.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="35.503" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="41.679" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
<rect x="74.201" y="295.578" fill="#CD223E" width="62.362" height="13.204"/>
<text transform="matrix(1 0 0 1 76.4683 304.2456)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="8.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="18.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="22.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="32.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="35.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="40.055" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
<text transform="matrix(1 0 0 1 77.0352 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.264" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">NV</tspan><tspan x="10.71" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="12.126" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="15.786" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="19.878" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="23.712" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">M</tspan><tspan x="28.32" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="31.583" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="35.441" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T &amp; </tspan></text>
<text transform="matrix(1 0 0 1 77.0352 105.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="3.438" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="6.456" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.254" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">NN</tspan><tspan x="17.922" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.338" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="23.166" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">G</tspan></text>
<text transform="matrix(1 0 0 1 9.0015 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.174" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="7.026" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="11.118" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.952" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="19.044" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">M</tspan><tspan x="23.688" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan></text>
<text transform="matrix(1 0 0 1 213.0972 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">ED</tspan><tspan x="7.188" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="11.016" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="14.814" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="18.228" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="21.377" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="22.793" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="26.885" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N &amp; </tspan></text>
<text transform="matrix(1 0 0 1 213.0972 105.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="3.84" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="7.68" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="10.2" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="13.362" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="17.202" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="20.886" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan></text>
<text transform="matrix(1 0 0 1 281.1313 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">H</tspan><tspan x="3.882" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="7.26" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="11.058" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="13.578" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="16.728" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">H &amp; </tspan></text>
<text transform="matrix(1 0 0 1 281.1313 105.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="3.504" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="7.59" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="11.442" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">IA</tspan><tspan x="16.668" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">L </tspan><tspan x="20.862" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="24.342" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="27.605" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="31.218" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">V</tspan><tspan x="34.806" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="36.221" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="40.073" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="43.325" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan></text>
<text transform="matrix(1 0 0 1 144.9375 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="1.416" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="5.25" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">F</tspan><tspan x="8.304" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="12.078" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="15.822" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="19.278" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.428" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="26.1" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="29.928" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="33.779" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="36.941" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="40.781" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="44.465" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E &amp; </tspan></text>
<text transform="matrix(1 0 0 1 144.9375 105.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="3.15" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="6.924" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.722" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.538" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="18.018" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="21.486" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="25.578" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="29.226" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan></text>
<text transform="matrix(1 0 0 1 417.1934 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="3.973" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="7.122" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">H</tspan><tspan x="11.004" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="14.268" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan></text>
<text transform="matrix(1 0 0 1 349.1592 99.0596)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="3.48" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="6.654" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="10.494" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="14.334" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="18.024" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.458" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.74" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan></text>
<text transform="matrix(1 0 0 1 182.2188 442.3052)"><tspan x="0" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">3</tspan><tspan x="6.524" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">3 L</tspan><tspan x="22.414" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="29.246" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="36.357" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="43.666" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="50.497" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N </tspan><tspan x="61.319" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">B</tspan><tspan x="68.361" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="75.193" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="82.263" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="89.081" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="96.486" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">GH</tspan><tspan x="110.948" y="0" fill="#B2B600" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
<text transform="matrix(1 0 0 1 163.3887 283.5034)"><tspan x="0" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="7.14" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="14.126" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="20.775" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="27.02" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="33.333" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="39.717" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R L</tspan><tspan x="56.181" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="63.013" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="70.125" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="77.433" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="84.265" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N </tspan><tspan x="95.086" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="101.75" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="109.212" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">TH</tspan><tspan x="122.89" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="129.722" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="136.708" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="140.277" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="146.914" y="0" fill="#CD223E" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">Y</tspan></text>
<text transform="matrix(1 0 0 1 173.3706 125.7656)"><tspan x="0" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="7.336" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">K </tspan><tspan x="18.186" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="25.045" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="31.43" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">NT</tspan><tspan x="44.939" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="52.121" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="59.009" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L </tspan><tspan x="68.333" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="75.529" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="82.305" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">V</tspan><tspan x="89.052" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="95.436" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">RN</tspan><tspan x="109.534" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="119.026" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="125.41" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="132.606" y="0" fill="#007FBF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan></text>
<text transform="matrix(1 0 0 1 203.4248 135.0034)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">1</tspan><tspan x="2.688" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">6 </tspan><tspan x="8.608" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">o</tspan><tspan x="12.944" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">f </tspan><tspan x="17.16" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">2</tspan><tspan x="21.016" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">4 </tspan><tspan x="26.936" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">D</tspan><tspan x="32.096" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">e</tspan><tspan x="36.288" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">p</tspan><tspan x="40.615" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">a</tspan><tspan x="44.775" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">r</tspan><tspan x="48.431" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">tm</tspan><tspan x="57.407" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">e</tspan><tspan x="61.599" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">n</tspan><tspan x="65.663" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">t</tspan><tspan x="68.367" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="8">s</tspan></text>
<rect x="74.201" y="470.134" fill="#B2B600" width="62.362" height="12.756"/>
<text transform="matrix(1 0 0 1 76.4683 478.8022)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NNI</tspan><tspan x="22.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
<rect x="414.357" y="454.296" fill="#B2B600" width="62.362" height="12.188"/>
<text transform="matrix(1 0 0 1 416.626 462.9644)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.479" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="11.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan><tspan x="20.911" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="25.031" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="28.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.935" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="36.911" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="39.063" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="43.111" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="46.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
<rect x="74.201" y="454.296" fill="#B2B600" width="62.362" height="12.756"/>
<text transform="matrix(1 0 0 1 76.4683 462.9644)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="8.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="18.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="22.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="32.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="35.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="40.055" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan></text>
<rect x="6.169" y="454.705" fill="#B2B600" width="62.362" height="20.384"/>
<text transform="matrix(1 0 0 1 8.437 463.3716)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="4.072" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.808" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ES</tspan><tspan x="26.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S &amp; </tspan></text>
<text transform="matrix(1 0 0 1 8.437 471.3716)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="7.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ONO</tspan><tspan x="20.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="25.784" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan></text>
<rect x="142.232" y="454.296" fill="#B2B600" width="62.362" height="19.842"/>
<text transform="matrix(1 0 0 1 144.5 462.9644)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.48" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="11.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan></text>
<text transform="matrix(1 0 0 1 163.3799 462.9644)" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8"> </text>
<text transform="matrix(1 0 0 1 144.5 470.9644)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
<rect x="278.295" y="470.134" fill="#B2B600" width="62.362" height="12.188"/>
<text transform="matrix(1 0 0 1 280.563 478.8022)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">SO</tspan><tspan x="8.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="12.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="18.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan><tspan x="23.848" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="27.967" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="31.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="35.871" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="39.847" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="41.999" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="46.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="49.919" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
<rect x="278.295" y="454.296" fill="#B2B600" width="62.362" height="12.188"/>
<text transform="matrix(1 0 0 1 280.563 462.9644)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.328" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.68" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="16.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="18.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="23.127" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
<rect x="210.264" y="454.297" fill="#B2B600" width="62.362" height="13.569"/>
<text transform="matrix(1 0 0 1 212.5313 462.9644)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ED</tspan><tspan x="7.992" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="16.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="20.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="23.848" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="30.023" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
<rect x="543.883" y="92.354" fill="#ECECED" width="60.362" height="26.601"/>
<text transform="matrix(1 0 0 1 547.2168 100.4888)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.174" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="7.02" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">ONO</tspan><tspan x="19.044" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">M</tspan><tspan x="23.682" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan><tspan x="26.729" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">,</tspan></text>
<text transform="matrix(1 0 0 1 575.5137 100.4888)" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6"> </text>
<text transform="matrix(1 0 0 1 547.2168 106.4888)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.264" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">NV</tspan><tspan x="10.71" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="12.126" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="15.779" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">ONM</tspan><tspan x="28.319" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="31.584" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="35.441" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T &amp; </tspan></text>
<text transform="matrix(1 0 0 1 547.2168 112.4888)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="3.438" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="6.456" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.254" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.094" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="17.928" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.344" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="23.172" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">G</tspan></text>
<rect x="543.883" y="92.354" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="60.362" height="26.601"/>
<rect x="543.883" y="119.956" fill="#ECECED" width="60.362" height="238.356"/>
<text transform="matrix(1 0 0 1 547.2168 128.0903)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="1.416" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">NF</tspan><tspan x="8.31" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="12.078" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="15.821" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="19.271" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.422" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="26.088" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="29.916" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="33.768" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="36.93" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="40.77" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="44.453" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E &amp; </tspan></text>
<text transform="matrix(1 0 0 1 547.2168 134.0903)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="3.15" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="6.924" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.722" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.538" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="18.023" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="21.492" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="25.584" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="29.231" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan></text>
<rect x="543.883" y="119.956" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="60.362" height="238.356"/>
<rect x="543.883" y="359.312" fill="#ECECED" width="60.362" height="128.894"/>
<text transform="matrix(1 0 0 1 547.2168 367.4468)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="3.486" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="6.66" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="10.5" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="14.34" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="18.036" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.47" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.752" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan></text>
<rect x="543.883" y="359.312" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="60.362" height="128.894"/>
<rect x="605.245" y="473.381" fill="#CD223E" width="128.394" height="14.824"/>
<rect x="605.245" y="473.381" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="14.824"/>
<rect x="605.245" y="359.434" fill="#CD223E" width="128.394" height="112.947"/>
<rect x="605.245" y="359.434" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="112.947"/>
<rect x="605.245" y="120.42" fill="#CD223E" width="128.394" height="238.014"/>
<rect x="605.245" y="120.42" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="238.014"/>
<rect x="605.245" y="92.354" fill="#CD223E" width="128.394" height="27.066"/>
<rect x="605.245" y="92.354" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="27.066"/>
<path fill="none" stroke="#1A171B" stroke-width="0.5" stroke-linejoin="round" stroke-miterlimit="10" d="M531.544,487.955h5.419
M531.544,448.32h5.419 M531.544,408.684h5.419 M531.544,369.049h5.419 M531.544,329.415h5.419 M531.544,289.78h5.419
M531.544,250.144h5.419 M531.544,210.509h5.419 M531.544,170.874h5.419 M531.544,131.239h5.419 M531.544,91.604h5.419
M536.963,487.955V91.604"/>
<text transform="matrix(1 0 0 1 520.7656 488.0522)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="3.773" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 518.3721 450.728)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="2.394" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="6.167" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.1055 411.9897)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">20</tspan><tspan x="7.427" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.1055 373.2515)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">30</tspan><tspan x="7.427" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.042 333.0933)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">4</tspan><tspan x="3.717" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.49" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.2314 293.2905)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">5</tspan><tspan x="3.528" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.301" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.084 253.4888)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">6</tspan><tspan x="3.668" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.441" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.3711 213.3296)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">7</tspan><tspan x="3.381" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.154" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.0908 173.8779)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">8</tspan><tspan x="3.668" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.441" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 517.0566 134.4258)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">9</tspan><tspan x="3.703" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.476" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 514.543 97.6968)"><tspan x="0" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="2.394" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="6.216" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="9.996" y="0" fill="#1A171B" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
<text transform="matrix(1 0 0 1 607.2959 100.8052)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="4.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="8.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="12.24" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="19.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="23.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="29.575" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="32.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="37.007" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="41.184" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="45.479" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="49.503" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="55.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="59.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="64.007" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="67.743" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="72.07" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="76.095" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="80.215" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="82.383" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="86.278" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan></text>
<text transform="matrix(1 0 0 1 607.2959 108.8052)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">(</tspan><tspan x="2.656" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="8.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.903" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan><tspan x="15.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="25.991" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="30.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="34.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D </tspan><tspan x="40.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="44.487" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="48.703" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="52.823" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="56.591" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="62.143" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="66.215" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="69.15" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan><tspan x="73.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">) </tspan><tspan x="77.999" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">7</tspan><tspan x="81.503" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">%</tspan></text>
<text transform="matrix(1 0 0 1 607.2959 128.8696)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.455" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.663" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan><tspan x="38.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="45.919" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="52.031" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="55.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="59.463" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="63.639" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="67.935" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="71.959" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="78.143" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">60</tspan><tspan x="86.207" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">%</tspan></text>
<text transform="matrix(1 0 0 1 607.2959 368.0298)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.088" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.111" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="13.647" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="17.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="23.455" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="27.512" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="31.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D </tspan><tspan x="37.903" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="42.023" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="45.823" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="49.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="54.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="58.287" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="60.455" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="64.351" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan><tspan x="70.375" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">2</tspan><tspan x="74.255" y="0" fill="#FFFFFF" font-f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment