How to Convert an EPS Logo to an SVG You Can Use on the Web

Most logo designers will provide an EPS version of the logos they create. Unlike JPGs, EPS files can be scaled up theoretically infinitely, have transparency, and allow for easy future editing without the original files used to create the graphic (ie, Photoshop or Illustrator).

EPS was built for the print world, though. Vector images on the web look like they’ll be largely handled via SVG, at least for the near future anyway, so today let’s take a look at how we can create one from the other.

a fake logo for a company that doesn't exist
Swooshy, our fake example logo.

Firstly, let’s start with our EPS logo. Feel free to download this example EPS to follow along. I’ve added a PNG version of the logo here just so everyone can see what we’re working with, since I can’t display the EPS file online.

Swooshy is a pretty uninspired logo, but apparently 62% of logo designers think that adding some type of a curved line to a logo will make them as successful as a certain shoe company. But I digress.

Next, we’ll open the image in Adobe Illustrator.

Once you’re in Illustrator, you’ll notice that there’s a good deal of white space around the logo itself. Designers like to do this to try and decrease the likelihood that you won’t follow along with their style guide and slap the logo too close to other design elements on a particular page. On the web, we want to control extra space like this with CSS though, not have it directly in the file. Here’s how to reduce the size of the artboard to exactly the dimensions of the logo itself.

  1. 001Go to File > Document Setup.
  2. screenshot of an adobe illustrator interface Click Edit Artboards near the top right of the window that appears. That will give you something like this: screenshot of Illustrator edit artboard functionality
  3. Look in the Window menu and make certain Snap to Point is selected.
  4. Now drag the top, bottom and sides of the artboard toward the logo. When you get close, Illustrator should snap the documents edges to the very edges of the logo.
  5. saveas Almost there! Go to File > Save as… and choose SVG from the Format dropdown.

You now have an SVG version of your logo!

Implementing SVG Logos on the Web

Like typical JPG, PNG, GIF, etc. graphics on the web, you can use SVG graphics in your CSS or HTML.

Standard HTML Markup:

<img src="/path/logo-example.svg" alt="logo for Swooshy, an abstract swoosh company" />

Which gives us this:
logo for Swooshy, an abstract swoosh company

As a CSS Background Image:

<style>
div {background-image:url('/path/logo-example.svg');}
</style>

Which, along with some other CSS, might give us this:

As Code!

Here’s where SVG differs: you can use it as code. Locate the logo-example.svg file on your computer and open it with TextEdit, Notepad or some other plain text editor. You’ll see some XML markup which is used to create the actual image. Illustrator adds in the XML tag, a generator comment and a doctype, none of which I believe are necessary and I’ve run into issues where PHP has difficulty processing these lines. I strip out the first three lines and we’re left with something like this:

<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="245.235px" height="83.517px" viewBox="0 0 245.235 83.517" enable-background="new 0 0 245.235 83.517"
xml:space="preserve">
<g>
<path d="M2.4,42.849c0.566,0.633,0.85,1.408,0.85,2.325c0,0.917-0.15,1.659-0.45,2.225c1.466,1.2,3.158,1.8,5.075,1.8
c1.916,0,3.357-0.441,4.325-1.325c0.966-0.883,1.45-2.091,1.45-3.625c0-1.533-0.534-2.85-1.6-3.95
c-1.067-1.1-2.358-2.016-3.875-2.75c-1.517-0.733-3.025-1.508-4.525-2.325c-1.5-0.816-2.784-1.908-3.85-3.275
c-1.067-1.366-1.6-2.982-1.6-4.85c0-2.566,0.85-4.575,2.55-6.025c1.7-1.45,3.883-2.175,6.55-2.175c2.667,0,4.975,0.634,6.925,1.9
c1.95,1.267,2.925,2.975,2.925,5.125s-0.867,3.225-2.6,3.225c-1.034,0-1.833-0.316-2.4-0.95c-0.567-0.633-0.85-1.45-0.85-2.45
s0.2-1.767,0.6-2.3c-1.167-1.066-2.6-1.6-4.3-1.6c-1.7,0-2.975,0.434-3.825,1.3c-0.85,0.867-1.275,1.95-1.275,3.25
s0.383,2.409,1.15,3.325c0.766,0.917,1.716,1.667,2.85,2.25c1.133,0.583,2.366,1.25,3.7,2c1.333,0.75,2.566,1.492,3.7,2.225
c1.133,0.734,2.083,1.725,2.85,2.975c0.766,1.25,1.15,2.675,1.15,4.275c0,2.634-0.909,4.784-2.725,6.45
c-1.817,1.667-4.142,2.5-6.975,2.5c-2.833,0-5.342-0.659-7.525-1.975C-1.509,49.107-2.6,47.266-2.6,44.898c0-2,0.866-3,2.6-3
C1.033,41.898,1.833,42.216,2.4,42.849z"/>
<path d="M19.95,22.298c-0.067-0.533-0.1-0.991-0.1-1.375c0-0.383,0.05-0.858,0.15-1.425c1.166,0.034,2.65,0.05,4.45,0.05
c1.8,0,3.267-0.016,4.4-0.05c0.1,0.5,0.15,1,0.15,1.5s-0.034,0.934-0.1,1.3l-1.75,0.15c1.566,10.567,3.45,18.85,5.65,24.85h0.3
c1.033-2.533,2.025-6.042,2.975-10.525c0.95-4.483,1.675-8.691,2.175-12.625c1-0.4,1.825-0.6,2.475-0.6
c0.65,0,1.242,0.034,1.775,0.1c1.5,10.134,3.333,18.017,5.5,23.65h0.3c1.133-3.167,2.2-7.175,3.2-12.025s1.7-9.125,2.1-12.825
l-1.8-0.15c-0.067-0.266-0.1-0.658-0.1-1.175c0-0.517,0.05-1.058,0.15-1.625c1.2,0.034,2.65,0.05,4.35,0.05
c1.7,0,3.066-0.016,4.1-0.05c0.1,0.5,0.15,0.925,0.15,1.275s-0.034,0.858-0.1,1.525l-1.75,0.15
c-0.967,3.034-2.367,7.809-4.2,14.325c-1.833,6.517-3.184,11.475-4.05,14.875c-1.2,0.3-2.292,0.45-3.275,0.45
c-0.983,0-1.625-0.018-1.925-0.05c-0.467-1.6-1.259-4.616-2.375-9.05c-1.117-4.433-1.942-7.667-2.475-9.7h-0.25
c-2.233,8.1-3.867,14.217-4.9,18.35c-1.2,0.3-2.292,0.45-3.275,0.45c-0.984,0-1.625-0.018-1.925-0.05
c-0.133-0.433-1.225-4.658-3.275-12.675C24.625,31.357,23,25.716,21.8,22.448L19.95,22.298z"/>
<path d="M63.25,35.298c0-10.933,4.091-16.4,12.275-16.4c8.183,0,12.275,5.467,12.275,16.4c0,2-0.075,3.75-0.225,5.25
c-0.15,1.5-0.484,3.034-1,4.6c-0.518,1.567-1.209,2.85-2.075,3.85c-0.867,1-2.059,1.817-3.575,2.45
c-1.517,0.633-3.317,0.95-5.4,0.95c-2.083,0-3.883-0.317-5.4-0.95c-1.517-0.633-2.708-1.45-3.575-2.45
c-0.867-1-1.559-2.283-2.075-3.85c-0.517-1.566-0.85-3.1-1-4.6S63.25,37.298,63.25,35.298z M71.299,47.599
c1.133,0.733,2.542,1.1,4.225,1.1c1.683,0,3.1-0.366,4.25-1.1c1.15-0.733,2.008-1.783,2.575-3.15c1-2.366,1.5-5.4,1.5-9.1
c0-9-2.775-13.5-8.325-13.5c-5.55,0-8.325,4.5-8.325,13.5C67.2,41.782,68.566,45.866,71.299,47.599z"/>
<path d="M93.299,35.298c0-10.933,4.091-16.4,12.275-16.4c8.183,0,12.275,5.467,12.275,16.4c0,2-0.075,3.75-0.225,5.25
c-0.15,1.5-0.484,3.034-1,4.6c-0.518,1.567-1.209,2.85-2.075,3.85c-0.867,1-2.059,1.817-3.575,2.45
c-1.517,0.633-3.317,0.95-5.4,0.95c-2.083,0-3.883-0.317-5.4-0.95c-1.517-0.633-2.708-1.45-3.575-2.45
c-0.867-1-1.559-2.283-2.075-3.85c-0.517-1.566-0.85-3.1-1-4.6S93.299,37.298,93.299,35.298z M101.349,47.599
c1.133,0.733,2.542,1.1,4.225,1.1c1.683,0,3.1-0.366,4.25-1.1c1.15-0.733,2.008-1.783,2.575-3.15c1-2.366,1.5-5.4,1.5-9.1
c0-9-2.775-13.5-8.325-13.5c-5.55,0-8.325,4.5-8.325,13.5C97.25,41.782,98.616,45.866,101.349,47.599z"/>
<path d="M127.199,42.849c0.566,0.633,0.85,1.408,0.85,2.325c0,0.917-0.15,1.659-0.45,2.225c1.466,1.2,3.158,1.8,5.075,1.8
c1.916,0,3.357-0.441,4.325-1.325c0.966-0.883,1.45-2.091,1.45-3.625c0-1.533-0.534-2.85-1.6-3.95
c-1.067-1.1-2.358-2.016-3.875-2.75c-1.517-0.733-3.025-1.508-4.525-2.325c-1.5-0.816-2.784-1.908-3.85-3.275
c-1.067-1.366-1.6-2.982-1.6-4.85c0-2.566,0.85-4.575,2.55-6.025c1.7-1.45,3.883-2.175,6.55-2.175c2.667,0,4.975,0.634,6.925,1.9
c1.95,1.267,2.925,2.975,2.925,5.125s-0.867,3.225-2.6,3.225c-1.034,0-1.833-0.316-2.4-0.95c-0.567-0.633-0.85-1.45-0.85-2.45
s0.2-1.767,0.6-2.3c-1.167-1.066-2.6-1.6-4.3-1.6c-1.7,0-2.975,0.434-3.825,1.3c-0.85,0.867-1.275,1.95-1.275,3.25
s0.383,2.409,1.15,3.325c0.766,0.917,1.716,1.667,2.85,2.25c1.133,0.583,2.366,1.25,3.7,2c1.333,0.75,2.566,1.492,3.7,2.225
c1.133,0.734,2.083,1.725,2.85,2.975c0.766,1.25,1.15,2.675,1.15,4.275c0,2.634-0.909,4.784-2.725,6.45
c-1.817,1.667-4.142,2.5-6.975,2.5c-2.833,0-5.342-0.659-7.525-1.975c-2.184-1.316-3.275-3.158-3.275-5.525c0-2,0.866-3,2.6-3
C125.832,41.898,126.632,42.216,127.199,42.849z"/>
<path d="M156.099,48.898c0.066,0.534,0.1,0.992,0.1,1.375c0,0.384-0.05,0.858-0.15,1.425c-1.167-0.033-2.518-0.05-4.05-0.05
c-1.534,0-2.867,0.017-4,0.05c-0.1-0.5-0.15-0.941-0.15-1.325c0-0.383,0.033-0.875,0.1-1.475l1.75-0.15
c0.266-3.6,0.4-8.191,0.4-13.775c0-5.583-0.15-9.758-0.45-12.525l-1.7-0.15c-0.067-0.533-0.1-0.991-0.1-1.375
c0-0.383,0.05-0.858,0.15-1.425c1.167,0.034,2.517,0.05,4.05,0.05c1.533,0,2.866-0.016,4-0.05c0.1,0.5,0.15,0.942,0.15,1.325
c0,0.384-0.034,0.875-0.1,1.475l-1.9,0.15c-0.234,2.934-0.35,6.684-0.35,11.25c1.8,0.2,3.966,0.3,6.5,0.3
c2.533,0,4.95-0.133,7.25-0.4c-0.067-5.3-0.217-9.017-0.45-11.15l-1.7-0.15c-0.067-0.533-0.1-0.991-0.1-1.375
c0-0.383,0.05-0.858,0.15-1.425c1.167,0.034,2.517,0.05,4.05,0.05c1.533,0,2.866-0.016,4-0.05c0.1,0.5,0.15,0.942,0.15,1.325
c0,0.384-0.034,0.875-0.1,1.475l-1.9,0.15c-0.234,2.7-0.35,6.884-0.35,12.55c0,5.667,0.15,10.25,0.45,13.75l1.8,0.15
c0.066,0.534,0.1,0.992,0.1,1.375c0,0.384-0.05,0.858-0.15,1.425c-1.167-0.033-2.518-0.05-4.05-0.05c-1.534,0-2.867,0.017-4,0.05
c-0.1-0.5-0.15-0.941-0.15-1.325c0-0.383,0.033-0.875,0.1-1.475l1.75-0.15c0.2-2.9,0.333-6.617,0.4-11.15
c-2.134-0.233-4.55-0.35-7.25-0.35s-4.867,0.117-6.5,0.35c0.066,4.733,0.216,8.45,0.45,11.15L156.099,48.898z"/>
<path d="M193.349,22.298c-0.067-0.533-0.101-0.991-0.101-1.375c0-0.383,0.05-0.858,0.15-1.425c1.066,0.034,2.392,0.05,3.975,0.05
s2.958-0.016,4.125-0.05c0.101,0.567,0.15,1.092,0.15,1.575c0,0.484-0.034,0.893-0.101,1.225l-1.75,0.15
c-4.566,9.834-7.267,16.334-8.1,19.5c0.1,2.534,0.232,4.8,0.4,6.8l1.8,0.15c0.066,0.534,0.1,0.992,0.1,1.375
c0,0.384-0.05,0.858-0.149,1.425c-1.168-0.033-2.518-0.05-4.051-0.05s-2.867,0.017-4,0.05c-0.1-0.5-0.149-0.941-0.149-1.325
c0-0.383,0.032-0.875,0.1-1.475l1.75-0.15c0.2-2.9,0.316-5.2,0.351-6.9c-0.867-2.867-3.2-8.1-7-15.7c-1.067-2.066-1.7-3.3-1.9-3.7
l-1.85-0.15c-0.067-0.533-0.101-0.991-0.101-1.375c0-0.383,0.05-0.858,0.15-1.425c1.166,0.034,2.607,0.05,4.325,0.05
c1.716,0,3.141-0.016,4.274-0.05c0.101,0.5,0.15,0.942,0.15,1.325c0,0.384-0.034,0.875-0.101,1.475l-1.8,0.15
c0.633,2.367,1.683,5.15,3.15,8.35c1.466,3.2,2.399,5.267,2.8,6.2h0.2c0.899-1.733,1.85-3.992,2.85-6.775s1.733-5.375,2.2-7.775
L193.349,22.298z"/>
</g>
<path d="M167.228,83.517c0,0,85.714-31.868,43.956-83.517C281.514,35.165,230.963,64.835,167.228,83.517z"/>
<g>
<path d="M4.283,70.231l-0.209-0.99H4.023c-0.347,0.436-0.693,0.731-1.038,0.886c-0.345,0.154-0.776,0.231-1.292,0.231
c-0.69,0-1.23-0.178-1.622-0.533c-0.391-0.355-0.587-0.861-0.587-1.517c0-1.405,1.124-2.141,3.371-2.209l1.181-0.038v-0.432
c0-0.546-0.118-0.949-0.352-1.209c-0.235-0.26-0.611-0.39-1.127-0.39c-0.58,0-1.236,0.178-1.968,0.533l-0.324-0.806
c0.343-0.186,0.718-0.332,1.126-0.438C1.8,63.213,2.209,63.16,2.62,63.16c0.83,0,1.444,0.184,1.844,0.552
c0.4,0.368,0.6,0.958,0.6,1.771v4.748H4.283z M1.903,69.489c0.656,0,1.171-0.18,1.545-0.54c0.375-0.36,0.562-0.863,0.562-1.511
V66.81l-1.054,0.044c-0.838,0.03-1.442,0.16-1.812,0.391c-0.371,0.23-0.556,0.589-0.556,1.076c0,0.381,0.115,0.671,0.346,0.87
C1.166,69.389,1.488,69.489,1.903,69.489z"/>
<path d="M11.996,70.231v-4.5c0-0.567-0.129-0.99-0.387-1.27s-0.662-0.419-1.212-0.419c-0.728,0-1.261,0.197-1.6,0.59
s-0.508,1.043-0.508,1.949v3.65H7.235v-6.957h0.857l0.171,0.952h0.051c0.216-0.343,0.519-0.608,0.908-0.797
c0.389-0.188,0.823-0.282,1.301-0.282c0.838,0,1.468,0.202,1.892,0.606c0.423,0.404,0.635,1.05,0.635,1.939v4.539H11.996z"/>
<path d="M22.869,70.231l-0.209-0.99h-0.051c-0.347,0.436-0.693,0.731-1.038,0.886c-0.345,0.154-0.776,0.231-1.292,0.231
c-0.69,0-1.23-0.178-1.622-0.533c-0.391-0.355-0.587-0.861-0.587-1.517c0-1.405,1.124-2.141,3.371-2.209l1.181-0.038v-0.432
c0-0.546-0.118-0.949-0.352-1.209c-0.235-0.26-0.611-0.39-1.127-0.39c-0.58,0-1.236,0.178-1.968,0.533l-0.324-0.806
c0.343-0.186,0.718-0.332,1.126-0.438c0.409-0.106,0.818-0.159,1.229-0.159c0.83,0,1.444,0.184,1.844,0.552
c0.4,0.368,0.6,0.958,0.6,1.771v4.748H22.869z M20.489,69.489c0.656,0,1.171-0.18,1.545-0.54c0.375-0.36,0.562-0.863,0.562-1.511
V66.81l-1.054,0.044c-0.838,0.03-1.442,0.16-1.812,0.391c-0.371,0.23-0.556,0.589-0.556,1.076c0,0.381,0.115,0.671,0.346,0.87
C19.751,69.389,20.074,69.489,20.489,69.489z"/>
<path d="M29.058,63.16c0.914,0,1.624,0.312,2.13,0.937c0.505,0.624,0.758,1.507,0.758,2.65s-0.255,2.03-0.765,2.663
c-0.51,0.633-1.217,0.949-2.123,0.949c-0.453,0-0.866-0.083-1.241-0.251c-0.374-0.167-0.688-0.424-0.942-0.771h-0.076l-0.222,0.895
h-0.755v-9.877h1.054v2.399c0,0.538-0.017,1.02-0.051,1.447h0.051C27.365,63.507,28.093,63.16,29.058,63.16z M28.906,64.042
c-0.719,0-1.238,0.207-1.555,0.619c-0.317,0.413-0.476,1.108-0.476,2.085s0.163,1.677,0.489,2.098
c0.326,0.421,0.849,0.631,1.568,0.631c0.647,0,1.13-0.236,1.447-0.708c0.317-0.472,0.476-1.15,0.476-2.035
c0-0.906-0.159-1.581-0.476-2.025S29.57,64.042,28.906,64.042z"/>
<path d="M38.275,68.333c0,0.647-0.241,1.147-0.724,1.498s-1.16,0.527-2.031,0.527c-0.922,0-1.642-0.146-2.158-0.438v-0.978
c0.334,0.169,0.693,0.303,1.076,0.4c0.383,0.097,0.752,0.146,1.108,0.146c0.55,0,0.973-0.088,1.27-0.263
c0.296-0.176,0.444-0.443,0.444-0.803c0-0.271-0.118-0.502-0.352-0.695c-0.235-0.193-0.693-0.42-1.375-0.683
c-0.647-0.241-1.108-0.452-1.38-0.632c-0.273-0.18-0.477-0.384-0.609-0.612c-0.134-0.229-0.2-0.501-0.2-0.819
c0-0.567,0.23-1.015,0.692-1.342c0.461-0.328,1.094-0.492,1.898-0.492c0.749,0,1.481,0.152,2.196,0.457l-0.375,0.857
c-0.698-0.288-1.331-0.432-1.898-0.432c-0.5,0-0.876,0.078-1.13,0.235s-0.381,0.373-0.381,0.647c0,0.186,0.048,0.345,0.143,0.476
c0.096,0.131,0.249,0.256,0.46,0.375s0.618,0.29,1.219,0.514c0.825,0.3,1.383,0.603,1.672,0.908
C38.13,67.489,38.275,67.872,38.275,68.333z"/>
<path d="M42.236,69.489c0.186,0,0.366-0.014,0.54-0.042c0.173-0.027,0.311-0.056,0.413-0.085v0.806
c-0.114,0.055-0.282,0.101-0.505,0.137c-0.222,0.036-0.422,0.054-0.6,0.054c-1.346,0-2.019-0.709-2.019-2.126v-4.139h-0.997v-0.508
l0.997-0.438l0.444-1.485h0.609v1.612h2.019v0.819h-2.019v4.094c0,0.419,0.1,0.741,0.298,0.965S41.889,69.489,42.236,69.489z"/>
<path d="M47.752,63.147c0.309,0,0.586,0.025,0.832,0.076l-0.146,0.978c-0.288-0.063-0.542-0.095-0.762-0.095
c-0.563,0-1.044,0.229-1.444,0.686c-0.399,0.457-0.6,1.026-0.6,1.708v3.732h-1.054v-6.957h0.87l0.121,1.289h0.051
c0.258-0.453,0.569-0.802,0.933-1.047S47.316,63.147,47.752,63.147z"/>
<path d="M54.163,70.231l-0.209-0.99h-0.051c-0.347,0.436-0.693,0.731-1.038,0.886c-0.345,0.154-0.776,0.231-1.292,0.231
c-0.69,0-1.23-0.178-1.622-0.533c-0.391-0.355-0.587-0.861-0.587-1.517c0-1.405,1.124-2.141,3.371-2.209l1.181-0.038v-0.432
c0-0.546-0.118-0.949-0.352-1.209c-0.235-0.26-0.611-0.39-1.127-0.39c-0.58,0-1.236,0.178-1.968,0.533l-0.324-0.806
c0.343-0.186,0.718-0.332,1.126-0.438c0.409-0.106,0.818-0.159,1.229-0.159c0.83,0,1.444,0.184,1.844,0.552
c0.4,0.368,0.6,0.958,0.6,1.771v4.748H54.163z M51.783,69.489c0.656,0,1.171-0.18,1.545-0.54c0.375-0.36,0.562-0.863,0.562-1.511
V66.81l-1.054,0.044c-0.838,0.03-1.442,0.16-1.812,0.391c-0.371,0.23-0.556,0.589-0.556,1.076c0,0.381,0.115,0.671,0.346,0.87
C51.045,69.389,51.368,69.489,51.783,69.489z"/>
<path d="M59.895,70.358c-1.007,0-1.787-0.31-2.339-0.93c-0.553-0.62-0.829-1.497-0.829-2.631c0-1.164,0.28-2.063,0.841-2.698
c0.561-0.635,1.359-0.952,2.396-0.952c0.334,0,0.668,0.036,1.003,0.108s0.597,0.157,0.787,0.254l-0.324,0.895
c-0.233-0.093-0.487-0.17-0.762-0.231c-0.275-0.062-0.519-0.092-0.73-0.092c-1.414,0-2.12,0.901-2.12,2.704
c0,0.855,0.172,1.511,0.517,1.968c0.345,0.457,0.856,0.686,1.533,0.686c0.58,0,1.174-0.125,1.784-0.375v0.933
C61.188,70.238,60.602,70.358,59.895,70.358z"/>
<path d="M65.551,69.489c0.186,0,0.366-0.014,0.54-0.042c0.173-0.027,0.311-0.056,0.413-0.085v0.806
c-0.114,0.055-0.282,0.101-0.505,0.137c-0.222,0.036-0.422,0.054-0.6,0.054c-1.346,0-2.019-0.709-2.019-2.126v-4.139h-0.997v-0.508
l0.997-0.438l0.444-1.485h0.609v1.612h2.019v0.819h-2.019v4.094c0,0.419,0.1,0.741,0.298,0.965S65.204,69.489,65.551,69.489z"/>
<path d="M75.758,68.333c0,0.647-0.241,1.147-0.724,1.498s-1.16,0.527-2.031,0.527c-0.922,0-1.642-0.146-2.158-0.438v-0.978
c0.334,0.169,0.693,0.303,1.076,0.4c0.383,0.097,0.752,0.146,1.108,0.146c0.55,0,0.973-0.088,1.27-0.263
c0.296-0.176,0.444-0.443,0.444-0.803c0-0.271-0.118-0.502-0.352-0.695c-0.235-0.193-0.693-0.42-1.375-0.683
c-0.647-0.241-1.108-0.452-1.38-0.632c-0.273-0.18-0.477-0.384-0.609-0.612c-0.134-0.229-0.2-0.501-0.2-0.819
c0-0.567,0.23-1.015,0.692-1.342c0.461-0.328,1.094-0.492,1.898-0.492c0.749,0,1.481,0.152,2.196,0.457l-0.375,0.857
c-0.698-0.288-1.331-0.432-1.898-0.432c-0.5,0-0.876,0.078-1.13,0.235s-0.381,0.373-0.381,0.647c0,0.186,0.048,0.345,0.143,0.476
c0.096,0.131,0.249,0.256,0.46,0.375s0.618,0.29,1.219,0.514c0.825,0.3,1.383,0.603,1.672,0.908
C75.613,67.489,75.758,67.872,75.758,68.333z"/>
<path d="M83.153,70.231l-1.276-4.082c-0.081-0.25-0.23-0.817-0.451-1.701h-0.051c-0.169,0.741-0.317,1.312-0.444,1.714
l-1.314,4.069h-1.219L76.5,63.274h1.104c0.449,1.748,0.791,3.079,1.025,3.993c0.235,0.914,0.37,1.53,0.403,1.847h0.051
c0.046-0.241,0.122-0.553,0.226-0.937c0.104-0.383,0.193-0.687,0.27-0.911l1.276-3.993h1.143l1.244,3.993
c0.237,0.728,0.398,1.339,0.482,1.834h0.051c0.017-0.152,0.062-0.387,0.136-0.705c0.074-0.317,0.516-2.025,1.324-5.123h1.092
l-1.923,6.957H83.153z"/>
<path d="M93.588,66.747c0,1.134-0.286,2.02-0.857,2.657c-0.571,0.637-1.36,0.955-2.368,0.955c-0.622,0-1.174-0.146-1.657-0.438
s-0.855-0.711-1.117-1.257s-0.394-1.185-0.394-1.917c0-1.134,0.284-2.018,0.851-2.65c0.567-0.633,1.354-0.949,2.361-0.949
c0.973,0,1.747,0.324,2.32,0.971C93.302,64.766,93.588,65.642,93.588,66.747z M88.288,66.747c0,0.889,0.178,1.566,0.533,2.031
s0.878,0.698,1.568,0.698s1.213-0.232,1.571-0.695c0.357-0.464,0.536-1.142,0.536-2.035c0-0.884-0.179-1.556-0.536-2.015
c-0.358-0.459-0.886-0.689-1.584-0.689c-0.69,0-1.21,0.227-1.562,0.679S88.288,65.85,88.288,66.747z"/>
<path d="M101.44,66.747c0,1.134-0.286,2.02-0.857,2.657c-0.571,0.637-1.36,0.955-2.368,0.955c-0.622,0-1.174-0.146-1.657-0.438
s-0.855-0.711-1.117-1.257s-0.394-1.185-0.394-1.917c0-1.134,0.284-2.018,0.851-2.65c0.567-0.633,1.354-0.949,2.361-0.949
c0.973,0,1.747,0.324,2.32,0.971C101.154,64.766,101.44,65.642,101.44,66.747z M96.14,66.747c0,0.889,0.178,1.566,0.533,2.031
s0.878,0.698,1.568,0.698s1.213-0.232,1.571-0.695c0.357-0.464,0.536-1.142,0.536-2.035c0-0.884-0.179-1.556-0.536-2.015
c-0.358-0.459-0.886-0.689-1.584-0.689c-0.69,0-1.21,0.227-1.562,0.679S96.14,65.85,96.14,66.747z"/>
<path d="M107.775,68.333c0,0.647-0.241,1.147-0.724,1.498s-1.16,0.527-2.031,0.527c-0.922,0-1.642-0.146-2.158-0.438v-0.978
c0.334,0.169,0.693,0.303,1.076,0.4c0.383,0.097,0.752,0.146,1.108,0.146c0.55,0,0.973-0.088,1.27-0.263
c0.296-0.176,0.444-0.443,0.444-0.803c0-0.271-0.118-0.502-0.352-0.695c-0.235-0.193-0.693-0.42-1.375-0.683
c-0.647-0.241-1.108-0.452-1.38-0.632c-0.273-0.18-0.477-0.384-0.609-0.612c-0.134-0.229-0.2-0.501-0.2-0.819
c0-0.567,0.23-1.015,0.692-1.342c0.461-0.328,1.094-0.492,1.898-0.492c0.749,0,1.481,0.152,2.196,0.457l-0.375,0.857
c-0.698-0.288-1.331-0.432-1.898-0.432c-0.5,0-0.876,0.078-1.13,0.235s-0.381,0.373-0.381,0.647c0,0.186,0.048,0.345,0.143,0.476
c0.096,0.131,0.249,0.256,0.46,0.375s0.618,0.29,1.219,0.514c0.825,0.3,1.383,0.603,1.672,0.908
C107.63,67.489,107.775,67.872,107.775,68.333z"/>
<path d="M114.25,70.231v-4.5c0-0.567-0.129-0.99-0.387-1.27s-0.662-0.419-1.212-0.419c-0.732,0-1.267,0.199-1.603,0.597
c-0.337,0.398-0.505,1.049-0.505,1.955v3.637h-1.054v-9.877h1.054v2.99c0,0.36-0.017,0.658-0.051,0.895h0.063
c0.208-0.334,0.502-0.598,0.886-0.79c0.383-0.193,0.82-0.289,1.311-0.289c0.851,0,1.488,0.202,1.914,0.606
c0.425,0.404,0.638,1.046,0.638,1.926v4.539H114.25z"/>
<path d="M123.625,70.358c-1.007,0-1.787-0.31-2.339-0.93c-0.553-0.62-0.829-1.497-0.829-2.631c0-1.164,0.28-2.063,0.841-2.698
c0.561-0.635,1.359-0.952,2.396-0.952c0.334,0,0.668,0.036,1.003,0.108s0.597,0.157,0.787,0.254l-0.324,0.895
c-0.233-0.093-0.487-0.17-0.762-0.231c-0.275-0.062-0.519-0.092-0.73-0.092c-1.414,0-2.12,0.901-2.12,2.704
c0,0.855,0.172,1.511,0.517,1.968c0.345,0.457,0.856,0.686,1.533,0.686c0.58,0,1.174-0.125,1.784-0.375v0.933
C124.918,70.238,124.332,70.358,123.625,70.358z"/>
<path d="M133.039,66.747c0,1.134-0.286,2.02-0.857,2.657c-0.571,0.637-1.36,0.955-2.368,0.955c-0.622,0-1.174-0.146-1.657-0.438
s-0.855-0.711-1.117-1.257s-0.394-1.185-0.394-1.917c0-1.134,0.284-2.018,0.851-2.65c0.567-0.633,1.354-0.949,2.361-0.949
c0.973,0,1.747,0.324,2.32,0.971C132.752,64.766,133.039,65.642,133.039,66.747z M127.739,66.747c0,0.889,0.178,1.566,0.533,2.031
s0.878,0.698,1.568,0.698s1.213-0.232,1.571-0.695c0.357-0.464,0.536-1.142,0.536-2.035c0-0.884-0.179-1.556-0.536-2.015
c-0.358-0.459-0.886-0.689-1.584-0.689c-0.69,0-1.21,0.227-1.562,0.679S127.739,65.85,127.739,66.747z"/>
<path d="M143.754,70.231v-4.526c0-0.554-0.119-0.97-0.355-1.248c-0.237-0.277-0.605-0.416-1.104-0.416
c-0.656,0-1.141,0.188-1.454,0.565s-0.47,0.957-0.47,1.739v3.885h-1.054v-4.526c0-0.554-0.119-0.97-0.355-1.248
c-0.237-0.277-0.607-0.416-1.111-0.416c-0.66,0-1.144,0.198-1.451,0.593c-0.307,0.396-0.46,1.044-0.46,1.946v3.65h-1.054v-6.957
h0.857l0.171,0.952h0.051c0.199-0.338,0.479-0.603,0.841-0.793c0.362-0.19,0.767-0.286,1.216-0.286
c1.087,0,1.798,0.394,2.133,1.181h0.051c0.208-0.364,0.508-0.652,0.901-0.863s0.842-0.317,1.346-0.317
c0.787,0,1.376,0.202,1.768,0.606c0.392,0.404,0.587,1.05,0.587,1.939v4.539H143.754z"/>
<path d="M150.216,70.358c-0.453,0-0.866-0.083-1.241-0.251c-0.374-0.167-0.688-0.424-0.942-0.771h-0.076
c0.051,0.406,0.076,0.792,0.076,1.155v2.863h-1.054v-10.08h0.857l0.146,0.952h0.051c0.271-0.381,0.586-0.656,0.946-0.825
s0.772-0.254,1.238-0.254c0.922,0,1.635,0.315,2.136,0.946c0.502,0.63,0.752,1.515,0.752,2.653c0,1.143-0.255,2.03-0.765,2.663
C151.829,70.042,151.122,70.358,150.216,70.358z M150.063,64.042c-0.711,0-1.225,0.197-1.542,0.59s-0.48,1.02-0.489,1.879v0.235
c0,0.978,0.163,1.677,0.489,2.098c0.326,0.421,0.849,0.631,1.568,0.631c0.601,0,1.072-0.243,1.412-0.73
c0.341-0.487,0.511-1.157,0.511-2.012c0-0.868-0.17-1.533-0.511-1.997C151.161,64.274,150.681,64.042,150.063,64.042z"/>
<path d="M159.223,70.231l-0.209-0.99h-0.051c-0.347,0.436-0.693,0.731-1.038,0.886c-0.345,0.154-0.776,0.231-1.292,0.231
c-0.69,0-1.23-0.178-1.622-0.533c-0.391-0.355-0.587-0.861-0.587-1.517c0-1.405,1.124-2.141,3.371-2.209l1.181-0.038v-0.432
c0-0.546-0.118-0.949-0.352-1.209c-0.235-0.26-0.611-0.39-1.127-0.39c-0.58,0-1.236,0.178-1.968,0.533l-0.324-0.806
c0.343-0.186,0.718-0.332,1.126-0.438c0.409-0.106,0.818-0.159,1.229-0.159c0.83,0,1.444,0.184,1.844,0.552
c0.4,0.368,0.6,0.958,0.6,1.771v4.748H159.223z M156.843,69.489c0.656,0,1.171-0.18,1.545-0.54c0.375-0.36,0.562-0.863,0.562-1.511
V66.81l-1.054,0.044c-0.838,0.03-1.442,0.16-1.812,0.391c-0.371,0.23-0.556,0.589-0.556,1.076c0,0.381,0.115,0.671,0.346,0.87
C156.105,69.389,156.428,69.489,156.843,69.489z"/>
<path d="M166.936,70.231v-4.5c0-0.567-0.129-0.99-0.387-1.27s-0.662-0.419-1.212-0.419c-0.728,0-1.261,0.197-1.6,0.59
s-0.508,1.043-0.508,1.949v3.65h-1.054v-6.957h0.857l0.171,0.952h0.051c0.216-0.343,0.519-0.608,0.908-0.797
c0.389-0.188,0.823-0.282,1.301-0.282c0.838,0,1.468,0.202,1.892,0.606c0.423,0.404,0.635,1.05,0.635,1.939v4.539H166.936z"/>
<path d="M169.049,63.274h1.13l1.523,3.967c0.334,0.906,0.542,1.56,0.622,1.961h0.051c0.055-0.216,0.17-0.585,0.346-1.107
c0.176-0.523,0.75-2.13,1.724-4.821h1.13l-2.99,7.922c-0.296,0.783-0.642,1.338-1.038,1.666c-0.396,0.328-0.881,0.492-1.457,0.492
c-0.322,0-0.639-0.036-0.952-0.108v-0.844c0.233,0.051,0.493,0.076,0.781,0.076c0.724,0,1.24-0.406,1.549-1.219l0.387-0.99
L169.049,63.274z"/>
</g>
</svg>

With the final result of this: