Update repo

This commit is contained in:
2026-08-30 23:04:35 -07:00
parent 749dab5721
commit ce65a0f59a
14950 changed files with 4408250 additions and 1 deletions
@@ -0,0 +1,232 @@
let Common = system.getScript("/driverlib/Common.js");
let Pinmux = system.getScript("/driverlib/pinmux.js");
let references = system.getScript("/libraries/C2000WARELibraryReferences.js");
let controller_data = system.getScript("/libraries/control/dcl/controller_data.js");
// get the main dropdown lists
var CONTROLLER_CHOICE_LIST = controller_data.get_dropdown_list('controller');
var PRECISION_LIST = controller_data.get_dropdown_list('precision');
var ACCELERATOR_LIST = controller_data.get_dropdown_list('accelerator');
// set the default values for each list
var DEFAULT_CONTROLLER_CHOICE = CONTROLLER_CHOICE_LIST[0].name;
var DEFAULT_PRECISION = "F32"; // F32 by default as it is most common
var DEFAULT_ACCELERATOR = ACCELERATOR_LIST[0].name;
// whenever the controller changes, the list of parameters should change
function onChangeControllerChoice(inst, ui)
{
// TODO - update terms to zero when changing from PID to DF types
// everything hidden by default
for(var i in config)
{
// console.log("ui[config[i].name].hidden=" + ui[config[i].name].hidden)
ui[config[i].name].hidden = true;
}
// default is to unhide controller choice, precision, and accelerator
ui.controllerChoice.hidden = false;
ui.controllerPrecision.hidden = false;
ui.controllerAccelerator.hidden = true;
ui.structDisplay.hidden = false;
// get the list of elements for this chosen controller
var control_struct_entry = controller_data.get_control_struct_entry(inst.structDisplay);
if (control_struct_entry)
{
// unhide the long description for this controller
var longDescName = control_struct_entry["longDescName"];
ui["longDesc_" + longDescName].hidden=false;
var config_entries_list = control_struct_entry["config_entries_list"];
// unhide the given elements in that list
for(var e of config_entries_list)
{
ui[e[0]].hidden = false;
inst[e[0]] = e[1];
}
}
}
let config = [
{
name : "controllerChoice",
displayName : "Controller/Filter",
onChange : onChangeControllerChoice,
description : 'Choice of Controller. NOTE: Changing controller will change all parameters to default.',
hidden : false,
default : DEFAULT_CONTROLLER_CHOICE,
options : CONTROLLER_CHOICE_LIST,
},
{
name : "controllerPrecision",
displayName : "Precision",
onChange : onChangeControllerChoice,
description : 'Choice of Precision. NOTE: Changing precision will change all parameters to default.',
hidden : false,
default : DEFAULT_PRECISION,
options : PRECISION_LIST,
},
{
name : "controllerAccelerator",
displayName : "Accelerator",
description : 'Choice of Accelerator.',
hidden : true,
default : DEFAULT_ACCELERATOR,
options : ACCELERATOR_LIST,
},
{
name : "structDisplay",
displayName : "Controller Structure Chosen",
description : 'Visualization of the chosen DCL structure.',
hidden : false,
getValue : (inst) => {
var choices_dict = {
"controller":inst.controllerChoice,
"precision":inst.controllerPrecision,
"accelerator":inst.controllerAccelerator,
};
return controller_data.get_struct_options(choices_dict).join();
},
default : ""
}
]
function isNumber(s)
{
// remove trailing L or f for longs and floats
if (s.endsWith("L") || s.endsWith("f"))
{
s = s.slice(0,-1);
}
// check if the resultant value is a number
return !isNaN(s);
}
function onValidate(inst, validation) {
// list the available controlStruct options
var choices_dict = {
"controller":inst.controllerChoice,
"precision":inst.controllerPrecision,
"accelerator":inst.controllerAccelerator,
};
var availControlStructs = controller_data.get_struct_options(choices_dict);
if (availControlStructs.length <= 0)
{
validation.logError(
"Precision not available for this controller, please choose a different precision option.",
inst, "controllerPrecision");
// validation.logError(
// "Precision and accelerator combination not available for this controller, please choose a different precision/accelerator option.",
// inst, "controllerAccelerator");
}
var control_struct_entry = controller_data.get_control_struct_entry(inst.structDisplay);
if (control_struct_entry)
{
var config_entries_list = control_struct_entry["config_entries_list"];
for(var e of config_entries_list)
{
// check for empty elements
if(inst[e[0]] == "")
{
validation.logError(
"A value must be provided.",
inst, e[0]);
}
// check if it's an actual number
if(!isNumber(inst[e[0]]))
{
validation.logError(
"Value must be a valid number (hex, decimal, float, long, etc.)",
inst, e[0]
);
}
}
}
// only do this check if one of the floating point precisions are chosen
if (inst.controllerPrecision == "F32" || inst.controllerPrecision == "F64") {
// check if controllerPrecision matches the precision being used by FPU.js in the "Other Dependencies" section
var fpuMod = system.modules["/libraries/math/FPU/FPU.js"];
if(fpuMod)
{
if(fpuMod.$static.fpuType.replace("PU","") != inst.controllerPrecision)
{
// when controller precision == F64, and the FPU.js file has FPU32 chosen, then warn the user that performance loss will occur
if (inst.controllerPrecision == "F64" && fpuMod.$static.fpuType == "FPU32") {
// for devices that can actually support F64, tell user that they can fix the issue
if (controller_data.fpu64_supported)
{
validation.logWarning("Double-precision data type chosen with single-precision floating-point processor chosen. Relatively poor cycle performance should be expected. To improve performance, precision can be updated here or in 'Other Dependencies' below.", inst, "controllerPrecision");
}
// for devices that can't support F64, tell the user that performance loss should be expected
else
{
validation.logWarning("Double-precision data type chosen with single-precision floating-point processor chosen. Relatively poor cycle performance should be expected.", inst, "controllerPrecision");
}
}
else
{
// when controller precision == F32, and the FPU.js file has FPU64 chosen, there should be no issue as FPU64 is backwards compatible with FPU32 instructions and C code
}
}
}
}
// verify that TMU1 is enabled if NLPID is chosen
if (inst.controllerChoice == "NLPID")
{
var fpuMod = system.modules["/libraries/math/FPU/FPU.js"];
if(fpuMod && fpuMod.$static.tmuType != "TMU1")
{
validation.logError("TMU1 must be enabled to use NLPID controller. Update 'Other Dependencies' below to enable TMU1.", inst, "controllerChoice");
}
}
}
// Choose which controllerChoice to have its parameters be unhidden by default
controller_data.set_config_entries_default_unhidden(DEFAULT_CONTROLLER_CHOICE)
// add on all the long description config entries for each controller
config = config.concat(controller_data.getLongDescriptionConfigEntries(DEFAULT_CONTROLLER_CHOICE));
// add on all the config_entries from controller_data.js to "config" array
config = config.concat(controller_data.get_config_entries_list());
var longDescription = `The DCL contains the following controller types:
* Linear PID
* Linear PI
* Non-linear PID
* Non-linear PI
* Double Integrator
* Direct Form 1 (first order)
* Direct Form 1 (third order)
* Direct Form 2 (second order)
* Direct Form 2 (third order)
See the DCL User's Guide for details on each controller/compensator and its variables:
[Digital Control Library User's Guide](https://dev.ti.com/tirex/explore/node?node=AKZRbh4oxv98HaO0YKjygQ__gYkahfz__LATEST)`
var controllerModule = {
c2000wareLibraryName: "CONTROLLER",
displayName: "CONTROLLER",
defaultInstanceName: "myCONTROLLER",
description: "CONTROLLER",
longDescription: longDescription,
config: config,
references : [],
templates: {
c2000ware_libraries_c : "/libraries/control/dcl/templates/controller.c2000ware_libraries.c.xdt",
c2000ware_libraries_h : "/libraries/control/dcl/templates/controller.c2000ware_libraries.h.xdt",
},
validate : onValidate,
modules: (inst) => {
var mods = [];
var refFilesArr = controller_data.getRefFilesModuleArrFromControlStruct(inst.structDisplay);
mods = refFilesArr;
return mods;
}
};
exports = controllerModule;
@@ -0,0 +1,557 @@
var longDescriptionObj = system.getScript("/libraries/control/dcl/controller_longdesc.js").get_longDescriptionObj();
let fpu_obj = system.getScript("/libraries/.meta/math/FPU/FPU.js").moduleStatic.config;
//==========================================================================
// CONFIG ENTRIES LOOKUP LISTS
// Use to lookup which config entries to enable/disable per controller
// structure. Stored as "{name:default_val}"
//==========================================================================
// PID
var PID32 = [["Kp","0x01000000"],["Ki","0L"],["Kd","0L"],["c1","0x01000000"],["c2","0L"],["d2","0L"],["d3","0L"],["i10","0L"],["i14","0x01000000"],["Umax","0x01000000"],["Umin","0xFF000000"]]
var PID_CLA = [["Kp","1.0f"],["Ki","0.0f"],["Kd","0.0f"],["Kr","1.0f"],["c1","0.0f"],["c2","0.0f"],["d2","0.0f"],["d3","0.0f"],["i10","0.0f"],["i14","0.0f"],["Umax","1.0f"],["Umin","-1.0f"]]
var PID = [["Kp","1.0f"],["Ki","0.0f"],["Kd","0.0f"],["Kr","1.0f"],["c1","1.0f"],["c2","0.0f"],["d2","0.0f"],["d3","0.0f"],["i10","0.0f"],["i14","1.0f"],["Umax","1.0f"],["Umin","-1.0f"]]
var PIDF64 = [["Kp","1.0L"],["Ki","0.0L"],["Kd","0.0L"],["Kr","1.0L"],["c1","0.0L"],["c2","0.0L"],["d2","0.0L"],["d3","0.0L"],["i10","0.0L"],["i14","0.0L"],["i16","0.0L"],["Umax","1.0L"],["Umin","-1.0L"]]
// PI
var PI32 = [["Kp","0x01000000"],["Ki","0L"],["i6","0x01000000"],["i10","0L"],["Umax","0x01000000"],["Umin","0xFF000000"]]
var PI_CLA = [["Kp","1.0f"],["Ki","0.0f"],["i10","0.0f"],["Umax","1.0f"],["Umin","-1.0f"],["i6","1.0f"],["i11","0.0f"],["Imax","1.0f"],["Imin","-1.0f"]]
var PI = [["Kp","1.0f"],["Ki","0.0f"],["i10","0.0f"],["Umax","1.0f"],["Umin","-1.0f"],["i6","1.0f"],["i11","0.0f"],["Imax","1.0f"],["Imin","-1.0f"]]
var PI2 = [["Kp","1.0f"],["Ki","0.0f"],["i6{PI2}","0.0f"],["i9","0.0f"],["i12","1.0f"],["i13","1.0f"],["Umax","1.0f"],["Umin","-1.0f"]]
//NLPID
var NLPID = [["Kp","1.0f"],["Ki","0.0f"],["Kd","0.0f"],["alpha_p","1.0f"],["alpha_i","1.0f"],["alpha_d","1.0f"],["delta_p","0.1f"],["delta_i","0.1f"],["delta_d","0.1f"],["gamma_p","1.0f"],["gamma_i","1.0f"],["gamma_d","1.0f"],["c1","1.0f"],["c2","0.0f"],["d2","0.0f"],["d3","0.0f"],["i7","0.0f"],["i16","1.0f"],["i18","0.0f"],["Umax","1.0f"],["Umin","-1.0f"]]
// DF
var DF11_CLA = [["b0","0.5f"],["b1","0.5f"],["a1","1.0f"],["d1","0.0f"],["d2{DF11}","0.0f"]]
var DF13_CLA = [["b0","0.25f"],["b1","0.25f"],["b2","0.25f"],["b3","0.25f"],["a0","0.0f"],["a1","0.0f"],["a2","0.0f"],["a3","0.0f"],["d0","0.0f"],["d1","0.0f"],["d2{DF13}","0.0f"],["d3{DF13}","0.0f"],["d4","0.0f"],["d5","0.0f"],["d6","0.0f"],["d7","0.0f"]]
var DF22_CLA = [["b0","1.0f"],["b1","0.0f"],["b2","0.0f"],["a1","0.0f"],["a2","0.0f"],["x1","0.0f"],["x2","0.0f"]]
var DF23_CLA = [["b0","1.0f"],["b1","0.0f"],["b2","0.0f"],["b3","0.0f"],["a1","0.0f"],["a2","0.0f"],["a3","0.0f"],["x1","0.0f"],["x2","0.0f"],["x3","0.0f"]]
var DF11 = [["b0","0.5f"],["b1","0.5f"],["a1","0.0f"],["d1","0.0f"],["d2{DF11}","0.0f"]]
var DF13 = [["b0","0.25f"],["b1","0.25f"],["b2","0.25f"],["b3","0.25f"],["a0","1.0f"],["a1","0.0f"],["a2","0.0f"],["a3","0.0f"],["d0","0.0f"],["d1","0.0f"],["d2{DF13}","0.0f"],["d3{DF13}","0.0f"],["d4","0.0f"],["d5","0.0f"],["d6","0.0f"],["d7","0.0f"]]
var DF22 = [["b0","1.0f"],["b1","0.0f"],["b2","0.0f"],["a1","0.0f"],["a2","0.0f"],["x1","0.0f"],["x2","0.0f"]]
var DF23 = [["b0","1.0f"],["b1","0.0f"],["b2","0.0f"],["b3","0.0f"],["a1","0.0f"],["a2","0.0f"],["a3","0.0f"],["x1","0.0f"],["x2","0.0f"],["x3","0.0f"]]
var DF22F64 = [["b0","1.0"],["b1","0.0"],["b2","0.0"],["a1","0.0"],["a2","0.0"],["x1","0.0"],["x2","0.0"]]
//==========================================================================
// CONFIG ENTRIES DICTIONARY
// These get directly dropped into the config list of the controller.js
//==========================================================================
var config_entries = [
{name:"Kp", displayName:"Proportional Gain (Kp)", description:"Controller Proportional Gain", hidden:true, default:""},// PID
{name:"Ki", displayName:"Integral Gain (Ki)", description:"Controller Integral Gain", hidden:true, default:""},
{name:"Kd", displayName:"Derivative Gain (Kd)", description:"Controller Derivative Gain", hidden:true, default:""},
{name:"Kr", displayName:"Set Point Weight (Kr)", description:"Set Point Weight", hidden:true, default:""},
{name:"c1", displayName:"D-term filter coefficient 1 (c1)", description:"D-term filter coefficient 1", hidden:true, default:""},
{name:"c2", displayName:"D-term filter coefficient 2 (c2)", description:"D-term filter coefficient 2", hidden:true, default:""},
{name:"d2", displayName:"D-term filter Intermediate Storage 1 (d2)", description:"D-term filter Intermediate Storage 1", hidden:true, default:""},
{name:"d3", displayName:"D-term filter Intermediate Storage 2 (d3)", description:"D-term filter Intermediate Storage 2", hidden:true, default:""},
{name:"i10", displayName:"I-term Intermediate Storage (i10)", description:"I-term Intermediate Storage", hidden:true, default:""},
{name:"i14", displayName:"Intermediate Saturation Storage (i14)", description:"Intermediate Saturation Storage", hidden:true, default:""},
{name:"i16", displayName:"Spare (i16)", description:"Spare", hidden:true, default:""},
{name:"Umax", displayName:"Upper Saturation Limit (Umax)", description:"Upper Saturation Limit", hidden:true, default:""},
{name:"Umin", displayName:"Lower Saturation Limit (Umin)", description:"Lower Saturation Limit", hidden:true, default:""},
{name:"i6", displayName:"Saturation Storage (i6)", description:"Saturation Storage", hidden:true, default:""},// PI unique
{name:"i6{PI2}", displayName:"Integrator 1 Storage (i6)", description:"Integrator 1 Storage", hidden:true, default:""},
{name:"i9", displayName:"Integrator 2 Storage (i9)", description:"Integrator 2 Storage", hidden:true, default:""},
{name:"i11", displayName:"I Storage (i11)", description:"I Storage", hidden:true, default:""},
{name:"i12", displayName:"Saturation 1 Storage (i12)", description:"Saturation 1 Storage", hidden:true, default:""},
{name:"i13", displayName:"Saturation 2 Storage (i13)", description:"Saturation 2 Storage", hidden:true, default:""},
{name:"Imax", displayName:"Upper integrator saturation limit (Imax)", description:"Upper integrator saturation limit", hidden:true, default:""},
{name:"Imin", displayName:"Lower integrator saturation limit (Imin)", description:"Lower integrator saturation limit", hidden:true, default:""},
{name:"alpha_p", displayName:"P path non-linear exponent (alpha_p)", description:"P path non-linear exponent", hidden:true, default:""},// NLPID unique
{name:"alpha_i", displayName:"I path non-linear exponent (alpha_i)", description:"I path non-linear exponent", hidden:true, default:""},
{name:"alpha_d", displayName:"D path non-linear exponent (alpha_d)", description:"D path non-linear exponent", hidden:true, default:""},
{name:"delta_p", displayName:"P path linearized range (delta_p)", description:"P path linearized range", hidden:true, default:""},
{name:"delta_i", displayName:"I path linearized range (delta_i)", description:"I path linearized range", hidden:true, default:""},
{name:"delta_d", displayName:"D path linearized range (delta_d)", description:"D path linearized range", hidden:true, default:""},
{name:"gamma_p", displayName:"P path gain limit (gamma_p)", description:"P path gain limit", hidden:true, default:""},
{name:"gamma_i", displayName:"I path gain limit (gamma_i)", description:"I path gain limit", hidden:true, default:""},
{name:"gamma_d", displayName:"D path gain limit (gamma_d)", description:"D path gain limit", hidden:true, default:""},
{name:"i7", displayName:"I path intermediate storage (i7)", description:"I path intermediate storage", hidden:true, default:""},
{name:"i18", displayName:"Spare (i18)", description:"Spare", hidden:true, default:""},
{name:"a0", displayName:"a0", description:"a0", hidden:true, default:""},// DF unique
{name:"a1", displayName:"a1", description:"a1", hidden:true, default:""},
{name:"a2", displayName:"a2", description:"a2", hidden:true, default:""},
{name:"a3", displayName:"a3", description:"a3", hidden:true, default:""},
{name:"b0", displayName:"b0", description:"b0", hidden:true, default:""},
{name:"b1", displayName:"b1", description:"b1", hidden:true, default:""},
{name:"b2", displayName:"b2", description:"b2", hidden:true, default:""},
{name:"b3", displayName:"b3", description:"b3", hidden:true, default:""},
{name:"d0", displayName:"e(k) (d0)", description:"e(k)", hidden:true, default:""},
{name:"d1", displayName:"e(k-1) (d1)", description:"e(k-1)", hidden:true, default:""},
{name:"d2{DF11}", displayName:"u(k-1) (d2)", description:"u(k-1)", hidden:true, default:""},
{name:"d2{DF13}", displayName:"e(k-2) (d2)", description:"e(k-2)", hidden:true, default:""},
{name:"d3{DF13}", displayName:"e(k-3) (d3)", description:"e(k-3)", hidden:true, default:""},
{name:"d4", displayName:"u(k) (d4)", description:"u(k)", hidden:true, default:""},
{name:"d5", displayName:"u(k-1) (d5)", description:"u(k-1)", hidden:true, default:""},
{name:"d6", displayName:"u(k-2) (d6)", description:"u(k-2)", hidden:true, default:""},
{name:"d7", displayName:"u(k-3) (d7)", description:"u(k-3)", hidden:true, default:""},
{name:"x1", displayName:"x1", description:"x1", hidden:true, default:""},
{name:"x2", displayName:"x2", description:"x2", hidden:true, default:""},
{name:"x3", displayName:"x3", description:"x3", hidden:true, default:""},
]
/**
* Get the config_entries list of dictionaries, for use in config array
* @returns config_entries list of dictionaries
*/
function get_config_entries_list()
{
return config_entries;
}
/**
* Get a specific dictionary within config_entries
* @param {string} name - The "name" of the dicitonary in
* config_entries to return
* @returns
*/
function get_config_entry(name)
{
for (obj of config_entries){
if (obj.name === name){
return obj
}
}
}
/**
* Get the default values for a given control structure
* @param {string} name - Name of the control type (like "PID") to have its variables unhidden
*/
function get_default_param_val(name, param_name)
{
var config_entries_list = get_control_struct_entry(name)["config_entries_list"];
for (var name_val_list of config_entries_list)
{
if (name_val_list[0]==param_name)
{
return name_val_list[1];
}
}
return 0;
}
/**
* Choose which controller to have its parameters be unhidden by default
* @param {string} name - Name of the control type (like "PID") to have its variables unhidden
*/
function set_config_entries_default_unhidden(name)
{
var config_entries_list = get_control_struct_entry(name)["config_entries_list"];
for (var obj of config_entries)
{
for (var name_val_list of config_entries_list)
{
if (name_val_list[0]==obj["name"])
{
obj["hidden"] = false;
obj["default"] = name_val_list[1];
break;
}
}
}
}
//==========================================================================
// REFERENCE FILES AND HEADER FILES
// Functions and data for the reference files that should be pulled in
//==========================================================================
// c and asm files, to be pulled in using submodules
var refFiles = {
"DCL_calcGamma": {"name":"DCL_calcGamma", "path":"../libraries/control/DCL/c28/source/DCL_calcGamma.asm", "alwaysInclude":false},
"DCL_clamp_C1": {"name":"DCL_clamp_C1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_C1.asm", "alwaysInclude":false},
"DCL_clamp_L1": {"name":"DCL_clamp_L1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_L1.asm", "alwaysInclude":false},
"DCL_DF11_C1": {"name":"DCL_DF11_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_C1.asm", "alwaysInclude":false},
"DCL_DF11_L1": {"name":"DCL_DF11_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_L1.asm", "alwaysInclude":false},
"DCL_DF13_C1": {"name":"DCL_DF13_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C1.asm", "alwaysInclude":false},
"DCL_DF13_C2C3": {"name":"DCL_DF13_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C2C3.asm", "alwaysInclude":false},
"DCL_DF13_L1": {"name":"DCL_DF13_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L1.asm", "alwaysInclude":false},
"DCL_DF13_L2L3": {"name":"DCL_DF13_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L2L3.asm", "alwaysInclude":false},
"DCL_DF22_C1": {"name":"DCL_DF22_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C1.asm", "alwaysInclude":false},
"DCL_DF22_C2C3": {"name":"DCL_DF22_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C2C3.asm", "alwaysInclude":false},
"DCL_DF22_L1": {"name":"DCL_DF22_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L1.asm", "alwaysInclude":false},
"DCL_DF22_L2L3": {"name":"DCL_DF22_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L2L3.asm", "alwaysInclude":false},
"DCL_DF23_C1": {"name":"DCL_DF23_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C1.asm", "alwaysInclude":false},
"DCL_DF23_C2C3": {"name":"DCL_DF23_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C2C3.asm", "alwaysInclude":false},
"DCL_DF23_L1": {"name":"DCL_DF23_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L1.asm", "alwaysInclude":false},
"DCL_DF23_L2L3": {"name":"DCL_DF23_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L2L3.asm", "alwaysInclude":false},
"DCL_error": {"name":"DCL_error", "path":"../libraries/control/DCL/c28/source/DCL_error.c", "alwaysInclude":false},
"DCL_frwlog": {"name":"DCL_frwlog", "path":"../libraries/control/DCL/c28/source/DCL_frwlog.asm", "alwaysInclude":false},
"DCL_futils": {"name":"DCL_futils", "path":"../libraries/control/DCL/c28/source/DCL_futils.asm", "alwaysInclude":false},
"DCL_futils32": {"name":"DCL_futils32", "path":"../libraries/control/DCL/c28/source/DCL_futils32.asm", "alwaysInclude":false},
"DCL_index": {"name":"DCL_index", "path":"../libraries/control/DCL/c28/source/DCL_index.asm", "alwaysInclude":false},
"DCL_NLPID_C3": {"name":"DCL_NLPID_C3", "path":"../libraries/control/DCL/c28/source/DCL_NLPID_C3.asm", "alwaysInclude":false},
"DCL_PI_A1": {"name":"DCL_PI_A1", "path":"../libraries/control/DCL/c28/source/DCL_PI_A1.asm", "alwaysInclude":false},
"DCL_PI_C1": {"name":"DCL_PI_C1", "path":"../libraries/control/DCL/c28/source/DCL_PI_C1.asm", "alwaysInclude":false},
"DCL_PI_C4": {"name":"DCL_PI_C4", "path":"../libraries/control/DCL/c28/source/DCL_PI_C4.asm", "alwaysInclude":false},
"DCL_PI_C7": {"name":"DCL_PI_C7", "path":"../libraries/control/DCL/c28/source/DCL_PI_C7.asm", "alwaysInclude":false},
"DCL_PI_L1": {"name":"DCL_PI_L1", "path":"../libraries/control/DCL/c28/source/DCL_PI_L1.asm", "alwaysInclude":false},
"DCL_PI_L2": {"name":"DCL_PI_L2", "path":"../libraries/control/DCL/c28/source/DCL_PI_L2.asm", "alwaysInclude":false},
"DCL_PI2_C2": {"name":"DCL_PI2_C2", "path":"../libraries/control/DCL/c28/source/DCL_PI2_C2.asm", "alwaysInclude":false},
"DCL_PID_A1": {"name":"DCL_PID_A1", "path":"../libraries/control/DCL/c28/source/DCL_PID_A1.asm", "alwaysInclude":false},
"DCL_PID_C1": {"name":"DCL_PID_C1", "path":"../libraries/control/DCL/c28/source/DCL_PID_C1.asm", "alwaysInclude":false},
"DCL_PID_C4": {"name":"DCL_PID_C4", "path":"../libraries/control/DCL/c28/source/DCL_PID_C4.asm", "alwaysInclude":false},
"DCL_PID_L1": {"name":"DCL_PID_L1", "path":"../libraries/control/DCL/c28/source/DCL_PID_L1.asm", "alwaysInclude":false},
"DCL_PID_L2": {"name":"DCL_PID_L2", "path":"../libraries/control/DCL/c28/source/DCL_PID_L2.asm", "alwaysInclude":false}
}
function getRefFilesArr()
{
var refArr = []
for (var ref in refFiles)
{
refArr.push(refFiles[ref])
}
return refArr
}
// h files, to be pulled in using c2000_libraries.h.xdt
// some of these header files have certain refFiles (asm/c files) dependencies
// NOTE: (probably) cannot move the refFilesList into the control_struct_dict since each header file references these reference files lists. If a reference file doesn't exist when the header file is imported, it may flag an error.
var headerFiles = {
"DCL": {"path":"../libraries/control/DCL/c28/include/DCL.h", "refFilesList":["DCL_error"]},
"DCLC28": {"path":"../libraries/control/DCL/c28/include/DCLC28.h", "refFilesList":["DCL_futils32","DCL_PID_A1","DCL_futils32","DCL_PI_A1"]},
"DCLCLA": {"path":"../libraries/control/DCL/c28/include/DCLCLA.h", "refFilesList":["DCL_PID_L1","DCL_PID_L2","DCL_PI_L1","DCL_PI_L2","DCL_DF11_L1","DCL_DF13_L1","DCL_DF13_L2L3","DCL_DF13_L2L3","DCL_DF22_L1","DCL_DF22_L2L3","DCL_DF22_L2L3","DCL_DF23_L1","DCL_DF23_L2L3","DCL_DF23_L2L3","DCL_clamp_L1"]},
"DCLF32": {"path":"../libraries/control/DCL/c28/include/DCLF32.h", "refFilesList":["DCL_futils","DCL_PID_C1","DCL_PID_C4","DCL_futils","DCL_PI_C1","DCL_PI_C4","DCL_PI_C7","DCL_futils","DCL_futils","DCL_DF11_C1","DCL_futils","DCL_DF13_C1","DCL_DF13_C2C3","DCL_DF13_C2C3","DCL_futils","DCL_DF22_C1","DCL_DF22_C2C3","DCL_DF22_C2C3","DCL_futils","DCL_DF23_C1","DCL_DF23_C2C3","DCL_DF23_C2C3","DCL_clamp_C1","DCL_futils"]},
"DCLF64": {"path":"../libraries/control/DCL/c28/include/DCLF64.h", "refFilesList":[]},
"DCL_fdlog": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog.h", "refFilesList":["DCL_frwlog","DCL_frwlog"]},
"DCL_fdlog64": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog64.h", "refFilesList":[]},
"DCL_log32": {"path":"../libraries/control/DCL/c28/include/DCL_log32.h", "refFilesList":[]},
"DCL_MLOG": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG.h", "refFilesList":[]},
"DCL_MLOG32": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG32.h", "refFilesList":[]},
"DCL_NLPID": {"path":"../libraries/control/DCL/c28/include/DCL_NLPID.h", "refFilesList":["DCL_futils","DCL_calcGamma","DCL_NLPID_C3"]},
"DCL_refgen": {"path":"../libraries/control/DCL/c28/include/DCL_refgen.h", "refFilesList":[]},
"DCL_refgen64": {"path":"../libraries/control/DCL/c28/include/DCL_refgen64.h", "refFilesList":[]},
"DCL_TCM": {"path":"../libraries/control/DCL/c28/include/DCL_TCM.h", "refFilesList":["DCL_index","DCL_index","DCL_index"]},
}
function getLongDescriptionConfigEntries(defaultControllerChoice)
{
var defaultLongDescName = control_struct_dict[defaultControllerChoice]["longDescName"];
var configArr = [];
for (var [c,longDescStr] of Object.entries(longDescriptionObj))
{
var hideByDefault = true;
if (c == defaultLongDescName)
{
hideByDefault = false;
}
configArr.push({
name:"longDesc_" + c,
hidden:hideByDefault,
default:"Click Question Mark for Details",
displayName:"Detailed Description",
longDescription:longDescStr,
readOnly:true
});
}
return configArr;
}
//==========================================================================
// CONTROL STRUCT LOOKUP DICTIONARY
// For each controller structure, determine which header files to use, and
// the config lookup list for this controller
//==========================================================================
var control_struct_dict = {
"PID32": {"headerFilesList":["DCL","DCLC28"], "longDescName":"PID32", "config_entries_list":PID32},
"PID_CLA": {"headerFilesList":["DCL","DCLCLA"], "longDescName":"PID", "config_entries_list":PID_CLA},
"PID": {"headerFilesList":["DCL","DCLF32"], "longDescName":"PID", "config_entries_list":PID},
"PIDF64": {"headerFilesList":["DCL","DCLF64"], "longDescName":"PID", "config_entries_list":PIDF64},
"PI32": {"headerFilesList":["DCL","DCLC28"], "longDescName":"PI32", "config_entries_list":PI32},
"PI_CLA": {"headerFilesList":["DCL","DCLCLA"], "longDescName":"PI", "config_entries_list":PI_CLA},
"PI": {"headerFilesList":["DCL","DCLF32"], "longDescName":"PI", "config_entries_list":PI},
"PI2": {"headerFilesList":["DCL","DCLF32"], "longDescName":"PI2", "config_entries_list":PI2},
"NLPID": {"headerFilesList":["DCL","DCL_NLPID"], "longDescName":"NLPID", "config_entries_list":NLPID},
"DF11_CLA": {"headerFilesList":["DCL","DCLCLA"], "longDescName":"DF11", "config_entries_list":DF11_CLA},
"DF13_CLA": {"headerFilesList":["DCL","DCLCLA"], "longDescName":"DF13", "config_entries_list":DF13_CLA},
"DF22_CLA": {"headerFilesList":["DCL","DCLCLA"], "longDescName":"DF22", "config_entries_list":DF22_CLA},
"DF23_CLA": {"headerFilesList":["DCL","DCLCLA"], "longDescName":"DF23", "config_entries_list":DF23_CLA},
"DF11": {"headerFilesList":["DCL","DCLF32"], "longDescName":"DF11", "config_entries_list":DF11},
"DF13": {"headerFilesList":["DCL","DCLF32"], "longDescName":"DF13", "config_entries_list":DF13},
"DF22": {"headerFilesList":["DCL","DCLF32"], "longDescName":"DF22", "config_entries_list":DF22},
"DF23": {"headerFilesList":["DCL","DCLF32"], "longDescName":"DF23", "config_entries_list":DF23},
"DF22F64": {"headerFilesList":["DCL","DCLF64"], "longDescName":"DF22", "config_entries_list":DF22F64},
}
function getHeaderFilesList(controlStruct)
{
return control_struct_dict[controlStruct]['headerFilesList'];
}
function getOptIncludePaths(controlStruct)
{
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var includePathList = []
for (var i in headerFilesList)
{
var headerFileName = headerFilesList[i];
var headerFileObj = headerFiles[headerFileName];
var headerFilePath = headerFileObj["path"];
var includePath = headerFilePath.split("/").slice(0,-1).join("/");
if (!(includePathList.includes(includePath)))
{
includePathList.push(includePath);
}
}
return includePathList;
}
function getRefFilesModuleArrFromControlStruct(controlStruct)
{
if (controlStruct.length === 0)
{
return [];
}
var arr = [];
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var pathToDynamicJsFiles = "/libraries/control/dcl/templates/dynamic_mods/"
for (var i in headerFilesList)
{
var h = headerFilesList[i]
var refFilesList = headerFiles[h]['refFilesList'];
for (var j in refFilesList)
{
var refFileName = refFilesList[j]
var moduleNamePath = pathToDynamicJsFiles + refFileName + "_dynamic.js"
// if it hasn't been added yet, add it
var alreadyInArray = arr.some(el => refFileName === el["name"])
if (!alreadyInArray)
{
arr.push({
name:refFileName,
moduleName:moduleNamePath,
});
}
}
}
// all available Sysconfig devices use at least FPU32, and so require FPU.js to be included
arr.push({name:"fpu", moduleName:"/libraries/.meta/math/FPU/FPU.js", hidden:false});
return arr;
}
/**
* Get the full control_struct_dict, which has every control structure
* @returns {dict} control_struct_dict, which contains each control stucture
* type, the header/asm files, and the corresponding config_entries_list
*/
function get_control_struct_dict()
{
return control_struct_dict;
}
/**
* Get a specific control_struct_dict entry by name.
* @param {string} name - The name of the control structure to return (like "PID32")
* @returns A specific control_struct_dict entry
*/
function get_control_struct_entry(name)
{
return control_struct_dict[name];
}
//==========================================================================
// DROPDOWN TO CONTROL STRUCTURE DICTIONARY
// List the displayName and control structures (like "PIDF64") available for
// each dropdown option (controller, precision, and accelerator).
//==========================================================================
var dropdown_to_controlstruct_dict = {
"controller":{
"PID":{
"displayName": "PID",
"structAvail":["PID32","PID_CLA","PID","PIDF64"]
},
"PI":{
"displayName": "PI",
"structAvail":["PI32","PI_CLA","PI"]
},
"PI2":{
"displayName": "PI\xB2",
"structAvail":["PI2"]
},
"NLPID":{
"displayName": "Non-Linear PID",
"structAvail":["NLPID"]
},
"DF11":{
"displayName": "Direct-Form 1, 1st Order",
"structAvail":["DF11","DF11_CLA"]
},
"DF13":{
"displayName": "Direct-Form 1, 3rd Order",
"structAvail":["DF13","DF13_CLA"]
},
"DF22":{
"displayName": "Direct-Form 2, 2nd Order",
"structAvail":["DF22","DF22_CLA","DF22F64"]
},
"DF23":{
"displayName": "Direct-Form 2, 3rd Order",
"structAvail":["DF23","DF23_CLA"]
},
},
"precision":{
"FIXED":{
"displayName": "Fixed-Point (32-bit)",
"structAvail":["PID32","PI32"]
},
"F32":{
"displayName": "Floating-Point (32-bit)",
"structAvail":["PID_CLA","PID","PI_CLA","PI","PI2","NLPID","DF11","DF11_CLA","DF13","DF13_CLA","DF22","DF22_CLA","DF23","DF23_CLA"]
},
"F64":{
"displayName": "Floating-Point (64-bit)",
"structAvail":["PIDF64","DF22F64"]
}
},
"accelerator": {
"NONE":{
"displayName": "NONE",
"structAvail":["PID32","PID","PIDF64","PI32","PI","PI2","NLPID","DF11","DF13","DF22","DF23","DF22F64"]
},
// "CLA":{
// "displayName": "Control Law Accelerator (CLA)",
// "structAvail":["PID_CLA","PI_CLA","DF11_CLA","DF13_CLA","DF22_CLA","DF23_CLA"]
// }
}
}
// check FPU and TMU support
var fpu_types = fpu_obj.filter(fpu_or_tmu_list => fpu_or_tmu_list.name === "fpuType")[0].options;
var tmu_types = fpu_obj.filter(fpu_or_tmu_list => fpu_or_tmu_list.name === "tmuType")[0].options;
var fpu64_supported = false;
var tmu1_supported = false;
if (fpu_types.length >= 2) {
// 2 options available means that both FPU32 (all Sysconfig devices) and FPU64 (some Sysconfig devices) are supported
fpu64_supported = true;
}
if (tmu_types.filter(tmu_obj => tmu_obj.name === "TMU1").length > 0) {
// look for TMU1 support from FPU.js
tmu1_supported = true;
}
// remove certain options depending on FPU/TMU support available
// (don't remove F64 since it can technically be used with FPU32 processor, but with degraded performance)
if (!tmu1_supported) {delete dropdown_to_controlstruct_dict["controller"]["NLPID"];}
//==========================================================================
// STRUCTURES AVAILABLE PER DEVICE
// List the device GPN and control structures (like "PIDF64") available for
// each device. Some devices don't have FPU64 (which would prevent *64
// usage), and some don't have TMU1 (which would prevent NLPID usage)
//==========================================================================
// start with a list of structures available on all devices (devices with at least C28x and FPU32)
var structs_avail_per_device = ["PID32","PID","PIDF64","PI32","PI","PI2",/*"NLPID",*/"DF11","DF13","DF22","DF23","DF22F64"];
// add TMU1 entries if there is "TMU1" available
// NLPID only available on devices with TMU1 (like F28002x and F28003x)
if (tmu1_supported) {structs_avail_per_device = structs_avail_per_device.concat(["NLPID"]);}
/**
*
*/
function intersect(a, b) {
var setA = new Set(a);
var setB = new Set(b);
var intersection = new Set([...setA].filter(x => setB.has(x)));
return Array.from(intersection);
}
/**
* Get the controllerChoice options to be displayed within Sysconfig
* @returns list of dicts with {name, displayName} entries for each control option
*/
function get_dropdown_list(list_name)
{
var l = [];
for (var opt in dropdown_to_controlstruct_dict[list_name])
{
l.push({name:opt, displayName:dropdown_to_controlstruct_dict[list_name][opt]['displayName']});
}
return l;
}
function get_struct_options(dropdown_choices_dict)
{
var all_controlstruct_lists = []
// using the list of options, get a list of structures available for each option (like "precision==FPU64")
for (var accelerator in dropdown_choices_dict)
{
var choice = dropdown_choices_dict[accelerator];
all_controlstruct_lists.push(dropdown_to_controlstruct_dict[accelerator][choice]['structAvail']);
}
// now get the options that are device specific (like TMU1 or FPU64 availability)
all_controlstruct_lists.push(structs_avail_per_device);
// find the intersection of a bunch of lists, returns elements that are in all lists
// make the first list the starting array
var intersection = all_controlstruct_lists[0];
// get intersection of all the other lists and the first one
for (var i = 1; i < all_controlstruct_lists.length; i++)
{
intersection = intersect(intersection,all_controlstruct_lists[i]);
}
return intersection;
// return intersection
}
function getModuleDataObj(inst)
{
var controllerChoice = inst.structDisplay;
var type = controllerChoice;
var defaultsListName = controllerChoice+'_DEFAULTS';
// the following 4 controllers prepend DCL_ to their *_DEFAULTS list, so do the same here
if(['PI32','PID32','REFGEN','REFGEN64'].includes(controllerChoice))
{
defaultsListName = 'DCL_'+defaultsListName;
}
var configEntriesList = get_control_struct_entry(controllerChoice)["config_entries_list"];
var configEntriesVals = [];
// create parameter,val pairs in lists, like [Ki,0]
for (var j in configEntriesList)
{
configEntriesVals.push ([
configEntriesList[j][0],
inst[configEntriesList[j][0]]
]);
}
var resData = {
"controllerChoice":controllerChoice,
"type":type,
"defaultsListName":defaultsListName,
"instName":inst.$name,
"configEntriesVals":configEntriesVals,
};
return resData;
}
//==========================================================================
// EXPORTS
// Export all of the functions so variables/structures can be accessed
// in other .js files
//==========================================================================
exports = {
get_config_entries_list : get_config_entries_list,
get_config_entry : get_config_entry,
set_config_entries_default_unhidden : set_config_entries_default_unhidden,
get_control_struct_dict : get_control_struct_dict,
get_control_struct_entry : get_control_struct_entry,
get_dropdown_list : get_dropdown_list,
get_struct_options : get_struct_options,
getRefFilesArr: getRefFilesArr,
getRefFilesModuleArrFromControlStruct: getRefFilesModuleArrFromControlStruct,
getOptIncludePaths:getOptIncludePaths,
getHeaderFilesList:getHeaderFilesList,
getModuleDataObj:getModuleDataObj,
get_default_param_val:get_default_param_val,
getLongDescriptionConfigEntries:getLongDescriptionConfigEntries,
fpu64_supported:fpu64_supported,
tmu1_supported:tmu1_supported
}
@@ -0,0 +1,734 @@
var longDescriptionObj = {
//*************************************************************************/
// PID
//*************************************************************************/
"PID":
`# ***Linear PID Controllers***
The basic controller type described here is a linear PID. The PID implementations in the
DCL include several features not commonly found in basic PID designs, and this
complexity is reflected the benchmark figures. Applications which do not require
derivative action, or are more sensitive to cycle efficiency, may be better served by the
simpler PI controller structure described in the next section.
***NOTE***: The DCL contains one implementation of a linear PID controller in double precision
floating point form. This controller may be used with the FPU32 CPU, however support
for the double precision data type currently relies on the run time support libraries which
are not cycle efficient. The structure of the controller is identical to the PID_C1 & PID_C2
controllers described earlier in this chapter. Support functions for PIDF64 do not currently
include the ability to load the controller from transfer function coefficient or ZPK3
descriptions.
PID control is widely used in systems which employ output feedback control. In such
systems, the controlled output is measured and fed back to a summing point where it is
subtracted from the reference input. The difference between the reference and feedback
corresponds to the control loop error and forms the input to the PID controller.
Conceptually, the PID controller output is the parallel sum of three paths which act
respectively on the error, error integral, and error derivative. The relative weight of each
path may be adjusted by the user to optimize transient response, or to emulate the
behavior of a specified transfer function expressed in terms of its poles and zeros.
*Figure: Parallel form PID controller*
![](../../libraries/.meta/control/dcl/images/figures_scaled/Parallel_form_PID_controller-Figure5.png)
The diagram above shows the structure of a continuous time parallel PID controller. The
output of this controller is captured in the following equation:
![](../../libraries/.meta/control/dcl/images/PID_Equation-2.svg)
Conceptually, the controller comprises three separate paths connected in parallel. The
upper path contains an adjustable gain term (Kp). Its effect is to fix the open loop gain of
the control system. Since loop gain is proportional to this term, Kp is known as
proportional gain.
A second path contains an integrator which accumulates error history. A separate gain
term acts on this path. The output of the integral path changes continuously as long as a
non-zero error (e) is present at the controller input. A small but persistent servo error has
the effect of driving the output of the integrator such that the loop error will eventually
disappear. The principal effect of the integral path is therefore to eliminate steady state
error. The effect of the integral gain term is to change the rate at which this happens.
Integral action is especially important in applications such as electronic power supplies,
which must maintain accurate regulation over long periods of time.
The third path contains a differentiator. The output of this path is large whenever the rate
of change of the error is large. The principal effects of the derivative action are to damp
oscillation and reduce transients.
The operation of the PID controller can be visualized in terms of the transient error
following a step change of set-point.
*Figure: PID control action*
![](../../libraries/.meta/control/dcl/images/figures_scaled/PID_control_action-Figure6.png)
The figure above shows the action of the PID controller in terms of the control loop error
at time t1. The proportional term contributes a control effort which is proportional to the
instantaneous loop error. The output of the integral path is the accumulated error history:
the shaded area in the lower plot. The contribution of the derivative path is proportional to
the rate of change of the loop error. Derivative gain fixes the time interval over which a
tangential line to the error curve is projected forward in time.
Tuning the PID controller is a matter of finding the optimum combination of these three
effects. This in turn means finding the best balance of the three gain terms. For more
information on PID control & tuning, see the references in section 6.1.
The PID shown above is known as the “parallel” form because the three controller gains
appear in separate parallel paths. A slightly different PID architecture in which the
proportional gain is moved into the output path (i.e. after the summing point), so that the
proportional path becomes a direct connection between the controller input and the
summing point, is known as the “series” or “ideal” form. In the ideal form, the open loop
gain is directly influenced by the proportional controller gain, and there is less interaction
between the controller gains. However the proportional gain cannot be zero (since the
loop would be opened), and to maintain good control cannot be small. The parallel form
allows the proportional gain to be small, however there is slightly more interaction
between the controller gains, complicating the tuning process. The DCL contains both
ideal and parallel PID functions.
## ***Implementation***
The linear PID controllers in the DCL include the following features:
* Parallel and ideal forms
* Programmable output saturation
* Independent reference weighting on proportional path
* Anti-windup integrator reset
* Programmable low-pass derivative filter
* External saturation input for integrator anti-windup
* Adjustable output saturation
It is important to note that the controller sample period is not accounted for in the selection
of integral gain (Ki). This is relevant when computing the integral gain as opposed to
manual tuning against a transient response, for example. In such situations, users must
multiply the computed integral gain by the sample period before loading Ki (either directly
or through the SPS). The element T in the CSS sub-structure can be used to store the
sample period for this purpose.
All PID type controllers in the library implement integrator anti-windup reset in a similar
way. A clamp is present at the controller output which allows the user to set upper and
lower limits on the control effort. If either limit is exceeded, an internal floating-point
controller variable changes from 1.0 to 0.0. This variable is multiplied by the integrator
input, such that the integrator accumulates zero data only when the output is saturated,
thus preventing the well-known “wind-up” phenomenon.
The PID controllers in the library make provision for anti-windup reset to be triggered from
an external part of the loop. This is useful in situations where a component outside the
controller may be saturated. The floating-point variable lk is expected to be either 1.0 or
0.0 in the normal and saturated conditions respectively. If this feature is not required, the
functions should be called with the lk argument set to 1.0. Note that all the controllers
here require non-zero proportional gain to recover from loop saturation.
The derivative PID path includes a digital low-pass filter to avoid amplification of unwanted
high frequency noise. The filter implemented here is a simple first order lag filter
(with differentiator), converted into discrete form using the Tustin transform. Referring to
Figure 6, the difference equation of the filtered differentiator is
![](../../libraries/.meta/control/dcl/images/PID_Equation-3.svg)
The temporary storage elements d2 & d3 must be preserved from the (k - 1)th interval, so
the following must be computed after the differentiator update.
![](../../libraries/.meta/control/dcl/images/PID_Equation-4.svg)
![](../../libraries/.meta/control/dcl/images/PID_Equation-5.svg)
The derivative filter coefficients are
![](../../libraries/.meta/control/dcl/images/PID_Equation-6.svg)
![](../../libraries/.meta/control/dcl/images/PID_Equation-7.svg)
Both the sample period (T) and filter time constant (tau) must be determined by the user.
The time constant is the reciprocal of the desired filter bandwidth in radians per second.
All linear PID controller functions use a common C structure to hold coefficients and data.
Refer to the header file DCLF32.h for details of the DCL_PID controller structure.
The library PID controller architectures are shown below:
*Figure: DCL_PID C1, C2, & L1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PID_C1_C2_L1_architecture-Figure7.png)
*Figure: DCL_PID C3, C4, & L2 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PID_C3_C4_L2_architecture-Figure8.png)
`,
//*************************************************************************/
// PI
//*************************************************************************/
"PI":
`# ***Linear PI Controllers***
The continuous time parallel PI control equation is
![](../../libraries/.meta/control/dcl/images/PI_Equation-8.svg)
The linear PI controllers in the DCL differ from the PID in the following respects.
* Removal of derivative path
* Removal of set-point weighting
* No provision for external saturation input
In all other respects, the PI controllers are similar to the PID controllers.
## ***Implementation***
All linear PI controller functions use a common C structure to hold coefficients and data,
defined in the header files DCLF32.h and DCLCLA.h.
The PI controller architectures are shown in the following diagrams.
*Figure: DCL_PI C1, C2, L1, & L3 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PI_C1_C2_L1_L3_architecture-Figure9.png)
*Figure: DCL_PI C3, C4, L2 & L4 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PI_C3_C4_L2_L4_architecture-Figure10.png)
*Figure: DCL_PI C5 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PI_C5_architecture-Figure11.png)
Note that the C5 parallel form PI controller contains enhanced anti-windup reset logic which allows the
integral path to recover from saturation even when the proportional gain is zero.
*Figure: DCL_PI C6, C7, & L5 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PI_C6_C7_L5_architecture-Figure12.png)
The C6, C7, & L5 controllers combine a series form PI with a Tustin integrator. This configuration
is best suited to applications in which the controller gains are selected on the basis of high
frequency loop gain and zero frequency, because Kp and Ki are effectively un-coupled in the
series form controller. Furthermore the Tustin integrator has fixed 90 degree phase lag at all
frequencies below the Nyquist limit, simplifying design of the compensator.
`,
//*************************************************************************/
// NLPID
//*************************************************************************/
"NLPID":
`# ***Non-linear PID Controller***
The DCL includes two implementations of a non-linear PID controller, denoted NLPID.
The controllers are broadly similar to the ideal PID_C1 controller, except that there is no
set-point weighting and in one case the derivative path sees the servo error instead of the
feedback. A non-linear gain block appears in series with each of the three paths.
To improve computational efficiency, the non-linear law is separated into two parts: one
part which is common to all paths, and a second part which contains terms specific to
each path. The non-linear part of the high-level controller structure is shown below:
*Figure: DCL_NLPID C1 input architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_NLPID_C1_input_architecture-Figure13.png)
The linear part of the DCL_NLPID_C1 controller is shown below:
*Figure: DCL_NLPID C1 output architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_NLPID_C1_output_architecture-Figure14.png)
*Figure: DCL_NLPID C2 & C3 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_NLPID_C2_C3_architecture-Figure15.png)
The non-linear control law is based on a power function of the modulus of the servo error,
with a linearized region about the zero error point. In the equation below, x represents the
input to the control law, y, the output, and "ALPHA" is a user selectable exponent representing
the degree of non-linearity.
![](../../libraries/.meta/control/dcl/images/NLPID_Equation-9.svg)
The following plot shows the x-y relationship for values of "ALPHA" between 0.2 and 2. Notice
that the curves intersect at x = 0, and x = ±1.
*Figure: Non-linear control law input-output plot*
![](../../libraries/.meta/control/dcl/images/figures_scaled/Non-linear_control_law_input-output_plot-Figure16.svg)
The gain of the control law is the slope of the x-y curve. Observe that with "ALPHA" = 1 the
control is linear with unity gain. With "ALPHA" > 1 the gain is zero when x = 0, and increases as x
increases. In the controller, a value of "ALPHA" in this range produces controller gain which
increases with increasing control error. With 0 < "ALPHA" < 1 the gain at x = 0 is infinite, and falls
as x increases. This range of "ALPHA" setting produces controller gain which decreases with
increasing servo error.
The plots below show the gain vs. control loop error curves for different values of "ALPHA".
Notice particularly the singularity at x = 0 when "ALPHA" < 1.
*Figure: Gain vs error curves for varying alpha*
![](../../libraries/.meta/control/dcl/images/figures_scaled/Gain_vs_error_curves_for_varying_alpha-Figure17.png)
The presence of zero or infinite gain at the zero control error point leads to practical
difficulties. With "ALPHA" > 1 the response becomes sluggish for small errors; with "ALPHA" < 1 it is
common to encounter oscillation or “chattering” near steady-state. These issues can be
overcome by limiting the controller gain in a region close to x = 0. This is done by
modifying the control law to introduce a user selectable region about x = 0 with linear gain
is applied. The non-linear control law becomes
![](../../libraries/.meta/control/dcl/images/NLPID_Equation-10.svg)
When the magnitude of servo error falls below δ the linear gain is applied, otherwise the
gain is determined by the non-linear law. For computational efficiency, we pre-compute
the gain in the linear region ("GAMMA") as follows.
![](../../libraries/.meta/control/dcl/images/NLPID_Equation-11.svg)
A typical plot of the linearized control law is shown below. Observe that when x = δ the
linear and non-linear curves intersect, so the controller makes a smooth transition
between the linear and non-linear regions as the servo error passes through x = ±δ.
*Figure: NLPID linearized region*
![](../../libraries/.meta/control/dcl/images/figures_scaled/NLPID_linearized_region-Figure18.png)
In addition to the P, I, and D gains, the user must select two additional terms in each
control path: "ALPHA" and δ. The library includes a separate function to compute and update "GAMMA"
for each path using the SPS structure. The use must initialize "GAMMA" parameters before calling
the NL controllers.
The NLPID controller has been seen to provide significantly improved control in many
cases, however it must be remembered that increased gain, even if only applied to part of
the control range, can lead to significantly increased output from the controller. In most
cases, this 'control effort' is limited by practical factors such as actuator saturation, PWM
modulation range, and so on. The corollary is that not every application benefits equally
from the use of non-linear control and some may see no benefit at all. In cases where
satisfactory performance cannot be achieved through the use of linear PID control, the
user is advised to start with all "ALPHA" = 1, and experiment by introducing non-linear terms
gradually while monitoring both control performance and the magnitude of the control
effort. In general, P and I paths benefit from increased gain at high servo error ("ALPHA" > 1),
while the D path benefits from reduced gain at high servo error ("ALPHA" < 1), but this is not
universally true. Further information on tuning the nonlinear PID controller can be found
in the Nonlinear PID Controller Tuning Guide in the \docs directory of the DCL.
Further information on this control law can be found in: “From PID to Active Disturbance
Rejection Control”, Jingqing Han, IEEE TRANSACTIONS ON INDUSTRIAL
ELECTRONICS, VOL. 56, NO. 3, MARCH 2009
## ***Implementation***
The NLPID controller uses a C structure to hold coefficients and data, defined in the
header file DCL_NLPID.h. Note that the NLPID functions make use of the pow()
function in the standard C library. For this reason the header file math.h must be
included, which is not supported by the CLA compiler. To allow different DCL functions to
be run on both the CPU and CLA in the same program, the NLPID functions are located in
a separate header file. Refer to the file DCL_NLPID.h for details of the NLPID controller
structure.
`,
//*************************************************************************/
// DF11
//*************************************************************************/
"DF11":
`# ***Direct Form 1 (First Order) Compensators***
The DCL includes one first order compensator in Direct Form 1. The DF11 compensator
implements a first order, or “simple lag”, type frequency response. The general form of
discrete time first order transfer function is
![](../../libraries/.meta/control/dcl/images/DF11_Equation-12.svg)
Denominator coefficients must be normalized accordingly. The corresponding difference
equation is
![](../../libraries/.meta/control/dcl/images/DF11_Equation-13.svg)
A diagrammatic representation of the DF11 is shown below:
*Figure: DCL_DF11 C1, C2, & L1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF11_C1_C2_L1_architecture-Figure21.png)
## ***Implementation***
All DF11 functions use a common C structure to hold coefficients and data, defined in the
header files DCLF32.h and DCLCLA.h.
`,
//*************************************************************************/
// DF13
//*************************************************************************/
"DF13":
`# ***Direct Form 1 (Third Order) Compensators***
The Direct Form 1 (DF1) structure is a common type of discrete time control structure
used to implement a control law or dynamical system model specified either as a polezero
set, or as a rational polynomial in z (i.e. a discrete time transfer function). The DCL
includes one third order DF1 compensator, denoted “DF13”.
In general, the Direct Form 1 structure is less numerically robust than the Direct Form 2
(see below), and for this reason users are encouraged to choose the latter type whenever
possible. However, the DCL_DF13 structure is very common in digital power supplies
and for that reason is included in the library. The same function supports a second order
control law after the superfluous coefficients (a3 & b3) have been set to zero.
The general form of third order transfer function is
![](../../libraries/.meta/control/dcl/images/DF13_Equation-14.svg)
Notice that the coefficients have been adjusted to normalize the highest power of z in the
denominator. There is no notational standard for numbering of the controller coefficients;
the notation used here has the advantage that the coefficient suffixes are the same as the
delay line elements and this helps with clarity of the assembly code, however other
notations may be found in the literature. The corresponding difference equation is
![](../../libraries/.meta/control/dcl/images/DF13_Equation-15.svg)
The DF13 controller uses two, three-element delay lines to store previous input and
output data required to compute u(k). A diagrammatic representation is shown below.
*Figure: DCL_DF13 C1, C4, & L1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF13_C1_C4_L1_architecture-Figure22.png)
The DF13 control law consists of seven multiplication operations which yield seven partial
products, and six addition or subtraction operations which combine the partial products to
obtain the compensator output, u(k). When implemented in this way, the control law is
referred to as the “full” DF13 form.
The DF13 control law can be re-structured to reduce control latency by pre-computing six
of the seven partial products which are already known in the previous sample interval.
The control law is then broken into two parts: the “immediate” part and the “partial” part.
The advantage of doing this is to reduce the “sample-to output” delay, or the time between
e(k) being sampled, and a corresponding u(k) becoming available. By partially precomputing
the control law, the computation delay can be reduced to one multiplication
and one addition.
In the kth interval, the immediate part is computed.
![](../../libraries/.meta/control/dcl/images/DF13_Equation-16.svg)
Next, the v(k) partial result is pre-computed for use in the (k+1)th interval.
![](../../libraries/.meta/control/dcl/images/DF13_Equation-17.svg)
Structurally, the pre-computed control law can be drawn as below:
*Figure: DCL_DF13 C2, C3, C5, C6, L2, & L3 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF13_C2_C3_C5_C6_L2_L3_architecture-Figure23.png)
The pre-computed structure allows the controller output (u(k)) to be used as soon as it is
computed. The remaining terms in the third order control law do not involve the newest
input e(k) and therefore do not affect u(k). These terms can be computed after u(k) has
been applied to the control loop and the input-output latency of the controller is therefore
reduced.
A further benefit of the pre-computed structure is that it allows the control effort to be
clamped after the immediate part. Computation of the pre-computed part can be made
dependent on the outcome of the clamp such that if u(k) matches or exceeds the clamp
limits there is no point in pre-computing the next partial control variable and the
computation can be avoided. The DCL includes three clamp functions intended for this
purpose.
## ***Implementation***
All DF13 functions use a common C structure to hold coefficients and data, defined in the
header files DCL.h and DCLCLA.h.
The assignment of coefficients and data in the DCL_DF13 structure to those in the
diagram is shown below:
*Figure: DCL_DF13 data & coefficient layout*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF13_data_coefficient_layout-Figure24.png)
To implement a full DF13 controller, the user might call:
uk = DCL_runDF13_C1(&df13, ek);
…where ek and uk are the controller input and output respectively, and df13 is the
controller structure.
To implement a pre-computed DF13 controller, the user might call:
uk = DCL_runDF13_C2(&df13, ek, vk);
vk = DCL_runDF13_C3(&df13, ek, uk);
...where vk is an intermediate float variable. This arrangement allows the user to make
use of the output immediately by placing instructions between the two lines above to use
the newest value of uk.
For applications where it is necessary to restrict the output of the compensator, a clamp
function can be used as follows.
uk = DCL_runDF13_C2(&df13, ek, vk);
s = DCL_runClamp_C1(&uk, upperLim, lowerLim);
if (0U == s)
{
vk = DCL_runDF13_C3(&df13, ek, uk);
}
The clamp function limits the controller output to lie between “lowerLim” and “upperLim”
and sets the unsigned integer “s” to 1 is that range is exceeded. The pre-computed part
of the controller will only be executed when the immediate result is in range.
`,
//*************************************************************************/
// DF22
//*************************************************************************/
"DF22":
`# ***Direct Form 2 (Second Order) Compensators***
The C2000 Digital Controller Library contains a second order implementation of the Direct
Form 2 controller structure, denoted “DCL_DF22”. This structure is sometimes referred to
as a “bi-quad” filter and is commonly used in a cascaded chain to build up digital filters of
high order.
***NOTE***: From version 3.4, the DCL contains support for the DF22 compensator in double precision
floating point. The controller architecture is identical to that described in section 3.8 so
the details need not be repeated here. One full controller and a pair of functions to
support a pre-computed controller are implemented. There are also 'reset' and 'update'
functions, and a double precision clamp function. Other single precision
functions to support coefficient calculation are not implemented at this time.
The transfer function of a second order discrete time compensator is
![](../../libraries/.meta/control/dcl/images/DF22_Equation-18.svg)
The corresponding difference equation is
![](../../libraries/.meta/control/dcl/images/DF22_Equation-19.svg)
A diagrammatic representation of the full Direct Form 2 realization is shown below:
*Figure: DCL_DF22 C1, C4,L1, & L4 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF22_C1_C4_L1_L4_architecture-Figure25.png)
As with the DCL_DF13 compensator, sample-to-output delay can be reduced through the
use of pre-computation. The immediate and pre-computed control laws are as follows. In
the kth interval, the immediate part is computed
![](../../libraries/.meta/control/dcl/images/DF22_Equation-20.svg)
Next, the v(k) partial result is pre-computed for use in the (k+1)th interval.
![](../../libraries/.meta/control/dcl/images/DF22_Equation-21.svg)
The pre-computed form of DCL_DF22 is shown in the following diagrams.
*Figure: DCL_DF22 C2, C5, & L2 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF22_C2_C5_L2_architecture-Figure26.png)
*Figure: DCL_DF22 C3, C6, & L3 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF22_C3_C6_L3_architecture-Figure27.png)
Notice that pre-computation is a little different from the Direct Form 1 case because the
intermediate value exists as one of the internal states and is therefore automatically
stored as “x1” in the DCL_DF22 structure. Therefore it is not necessary to create a
separate variable to store v(k).
## ***Implementation***
All DF22 functions use a common C structure to hold coefficients and data, defined in the
header file DCL.h and DCLCLA.h.
`,
//*************************************************************************/
// DF23
//*************************************************************************/
"DF23":
`# ***Direct Form 2 (Third Order) Compensators***
The third order Direct Form 2 compensator (DF23) is similar in all respects to the DF22
compensator. Separate full and pre-computed forms are supplied in C and assembly for
computation on the FPU32, and in assembly for computation on the CLA.
The control law is the same as the DF13 compensator.
![](../../libraries/.meta/control/dcl/images/DF23_Equation-23.svg)
A diagrammatic representation of the full third order Direct Form 2 compensator is shown
below:
*Figure: DCL_DF23 C1, C4, & L1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF23_C1_C4_L1_architecture-Figure28.png)
Sample-to-output delay can be reduced through the use of pre-computation, in a similar
way to the DF22 compensator. In the kth interval, the immediate part is computed.
![](../../libraries/.meta/control/dcl/images/DF23_Equation-24.svg)
Next, the v(k) partial result is pre-computed for use in the (k+1)th interval.
![](../../libraries/.meta/control/dcl/images/DF23_Equation-25.svg)
The pre-computed form of DF23 is shown in the following diagrams:
*Figure: DCL_DF23 C2, C5, & L2 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF23_C2_C5_L2_architecture-Figure29.png)
*Figure: DCL_DF23 C3, C6, & L3 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_DF23_C3_C6_L3_architecture-Figure30.png)
## ***Implementation***
All DF23 functions use a common C structure to hold coefficients and data, defined in the header
file DCL.h. and DCLCLA.h.
`,
//*************************************************************************/
// PID32
//*************************************************************************/
"PID32":
`# ***Fixed-Point PID Controllers***
The DCL contains one implementation of a parallel form fixed-point PID controller. The
structure is similar to the floating-point C1 controller.
The linear PID controller in the DCL32 includes the following features.
* Parallel form
* Programmable output saturation
* Anti-windup integrator reset
* Programmable low-pass derivative filter
* Feedback input to derivative path
Both PID and PI type controllers in the DCl32 library implement integrator anti-windup
reset in a similar way. A clamp is present at the controller output which allows the user to
set upper and lower limits on the control effort. If either limit is exceeded, an internal
floating-point controller variable changes from logical 1 to logical 0. This variable is
converted into Q24 format and multiplied by the integrator input, such that the integrator
accumulates successive zero data when the output is saturated, avoiding the “wind-up”
phenomenon.
The following equations describe the implementation of the PID32 controller. Note that
the storage of static variables {i14 i10 d2 d3} is not shown.
The servo error equation is
![](../../libraries/.meta/control/dcl/images/PID32_Equation-26.svg)
The proportional path equation is
![](../../libraries/.meta/control/dcl/images/PID32_Equation-27.svg)
The integral path equations are
![](../../libraries/.meta/control/dcl/images/PID32_Equation-28.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-29.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-30.svg)
The derivative path equations are
![](../../libraries/.meta/control/dcl/images/PID32_Equation-31.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-32.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-33.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-34.svg)
Note that the derivative coefficient c1 must be divided by two on initialization. This
element is typically much larger than c2 so we enter half its value in the code and multiply
twice. This allows greater numerical range for a given Q-format.
The output path equations are
![](../../libraries/.meta/control/dcl/images/PID32_Equation-35.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-36.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-37.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-38.svg)
![](../../libraries/.meta/control/dcl/images/PID32_Equation-39.svg)
The DCL_PID32 implementation is shown below:
*Figure: DCL_PID32 A1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PID32_A1_architecture-Figure31.png)
The linear PID_A1 controller uses a C structure to hold coefficients and data, defined in
the header file DCLC28.h. The order of these structure elements must not be changed
by the user.
`,
//*************************************************************************/
// PI32
//*************************************************************************/
"PI32":
`# ***Fixed-Point PI Controllers***
The DCL contains one implementation of a fixed-point series form PI controller. The PI is
similar in operation to the PID controller, with the removal of the derivative path.
## ***Implementation***
The following equations describe the implementation of the PI32 controller.
![](../../libraries/.meta/control/dcl/images/PI32_Equation-40.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-41.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-42.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-43.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-44.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-45.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-46.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-47.svg)
![](../../libraries/.meta/control/dcl/images/PI32_Equation-48.svg)
The ideal form PI implementation is shown below:
*Figure: DCL_PI A1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PI_A1_architecture-Figure32.png)
The linear PI controller uses a C structure to hold coefficients and data, defined in the
header file DCLC28.h. The order of these structure elements must not be changed by
the user.
`,
//*************************************************************************/
// PI2
//*************************************************************************/
"PI2":
`# ***Double Integrator PI Controller***
The DCL contains one implementation of a linear PI controller having two series
integrators. This type of controller is similar to the parallel PI controller
except that the anti-windup reset logic is more complicated.
In this controller, allowance has been made for the Kp element to be zero. This scenario
presents a problem if the controller enters saturation because without the proportional
path there is no way to recover. The PI2 resolves this by releasing the anti-windup lock
when the integrator input reverses sign. The logic has to be implemented twice, since
there are two cascaded integrators. Similar anti-windup reset logic is present in the
PI_C5 controller.
## ***Implementation***
The double integrator PI2 controller uses a C structure to hold coefficients and data,
defined in the header file DCLF32.h.
The PI2 implementation is shown below:
*Figure: DCL_PI2 C1 architecture*
![](../../libraries/.meta/control/dcl/images/figures_scaled/DCL_PI2_C1_architecture-Figure20.png)
`,
}
function get_longDescriptionObj()
{
return longDescriptionObj;
}
exports = {
get_longDescriptionObj:get_longDescriptionObj,
}
@@ -0,0 +1,41 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='104.352021pt' height='31.323877pt' viewBox='-.239051 -.227276 104.352021 31.323877'>
<defs>
<path id='g0-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-70' d='M3.550685-3.897385H4.698381C5.606974-3.897385 5.678705-3.694147 5.678705-3.347447C5.678705-3.19203 5.654795-3.024658 5.595019-2.761644C5.571108-2.713823 5.559153-2.654047 5.559153-2.630137C5.559153-2.546451 5.606974-2.49863 5.69066-2.49863C5.786301-2.49863 5.798257-2.546451 5.846077-2.737733L6.539477-5.523288C6.539477-5.571108 6.503611-5.642839 6.419925-5.642839C6.312329-5.642839 6.300374-5.595019 6.252553-5.391781C6.001494-4.495143 5.762391-4.244085 4.722291-4.244085H3.634371L4.411457-7.340473C4.519054-7.758904 4.542964-7.79477 5.033126-7.79477H6.635118C8.129514-7.79477 8.344707-7.352428 8.344707-6.503611C8.344707-6.43188 8.344707-6.168867 8.308842-5.858032C8.296887-5.810212 8.272976-5.654795 8.272976-5.606974C8.272976-5.511333 8.332752-5.475467 8.404483-5.475467C8.488169-5.475467 8.53599-5.523288 8.5599-5.738481L8.810959-7.830635C8.810959-7.866501 8.834869-7.986052 8.834869-8.009963C8.834869-8.141469 8.727273-8.141469 8.51208-8.141469H2.84533C2.618182-8.141469 2.49863-8.141469 2.49863-7.926276C2.49863-7.79477 2.582316-7.79477 2.785554-7.79477C3.526775-7.79477 3.526775-7.711083 3.526775-7.579577C3.526775-7.519801 3.514819-7.47198 3.478954-7.340473L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.976837C3.239851-.02391 3.526775 0 3.789788 0C3.897385 0 4.040847 0 4.040847-.215193C4.040847-.3467 3.969116-.3467 3.706102-.3467C2.761644-.3467 2.737733-.430386 2.737733-.609714C2.737733-.669489 2.761644-.765131 2.785554-.848817L3.550685-3.897385Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-122' d='M1.518306-.968369C2.032379-1.554172 2.450809-1.924782 3.048568-2.462765C3.765878-3.084433 4.076712-3.383313 4.244085-3.56264C5.080946-4.387547 5.499377-5.080946 5.499377-5.176588S5.403736-5.272229 5.379826-5.272229C5.296139-5.272229 5.272229-5.224408 5.212453-5.140722C4.913574-4.62665 4.62665-4.375592 4.315816-4.375592C4.064757-4.375592 3.93325-4.483188 3.706102-4.770112C3.455044-5.068991 3.251806-5.272229 2.905106-5.272229C2.032379-5.272229 1.506351-4.184309 1.506351-3.93325C1.506351-3.897385 1.518306-3.825654 1.625903-3.825654C1.721544-3.825654 1.733499-3.873474 1.769365-3.957161C1.972603-4.435367 2.546451-4.519054 2.773599-4.519054C3.024658-4.519054 3.263761-4.435367 3.514819-4.327771C3.969116-4.136488 4.160399-4.136488 4.27995-4.136488C4.363636-4.136488 4.411457-4.136488 4.471233-4.148443C4.076712-3.682192 3.431133-3.108344 2.893151-2.618182L1.685679-1.506351C.956413-.765131 .514072-.059776 .514072 .02391C.514072 .095641 .573848 .119552 .645579 .119552S.729265 .107597 .812951-.035866C1.004234-.334745 1.3868-.777086 1.829141-.777086C2.080199-.777086 2.199751-.6934 2.438854-.394521C2.666002-.131507 2.86924 .119552 3.251806 .119552C4.423412 .119552 5.092902-1.398755 5.092902-1.673724C5.092902-1.721544 5.080946-1.793275 4.961395-1.793275C4.865753-1.793275 4.853798-1.745455 4.817933-1.625903C4.554919-.920548 3.849564-.633624 3.383313-.633624C3.132254-.633624 2.893151-.71731 2.642092-.824907C2.163885-1.016189 2.032379-1.016189 1.876961-1.016189C1.75741-1.016189 1.625903-1.016189 1.518306-.968369Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -60.834187)'>
<use x='56.413267' y='71.360754' xlink:href='#g1-70'/>
<use x='65.616882' y='71.360754' xlink:href='#g3-40'/>
<use x='70.169208' y='71.360754' xlink:href='#g1-122'/>
<use x='76.139814' y='71.360754' xlink:href='#g3-41'/>
<use x='84.01297' y='71.360754' xlink:href='#g3-61'/>
<use x='97.633964' y='63.272995' xlink:href='#g1-98'/>
<use x='102.61107' y='65.066258' xlink:href='#g2-48'/>
<use x='110.000048' y='63.272995' xlink:href='#g3-43'/>
<use x='121.761363' y='63.272995' xlink:href='#g1-98'/>
<use x='126.738468' y='65.066258' xlink:href='#g2-49'/>
<use x='131.470783' y='63.272995' xlink:href='#g1-122'/>
<use x='137.44139' y='58.934559' xlink:href='#g0-0'/>
<use x='144.027896' y='58.934559' xlink:href='#g2-49'/>
<rect x='97.633964' y='68.132868' height='.478187' width='51.126224'/>
<use x='98.978258' y='79.561416' xlink:href='#g3-49'/>
<use x='107.487912' y='79.561416' xlink:href='#g3-43'/>
<use x='119.249227' y='79.561416' xlink:href='#g1-97'/>
<use x='125.394171' y='81.354679' xlink:href='#g2-49'/>
<use x='130.126486' y='79.561416' xlink:href='#g1-122'/>
<use x='136.097092' y='76.107708' xlink:href='#g0-0'/>
<use x='142.683599' y='76.107708' xlink:href='#g2-49'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,50 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='227.551777pt' height='13.522849pt' viewBox='-.239051 -.240635 227.551777 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g3-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g1-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g3-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g3-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g1-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g2-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g1-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g3-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g1-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g3-41'/>
<use x='127.801852' y='65.753425' xlink:href='#g3-43'/>
<use x='139.563167' y='65.753425' xlink:href='#g1-98'/>
<use x='144.540272' y='67.546688' xlink:href='#g2-49'/>
<use x='149.272587' y='65.753425' xlink:href='#g1-101'/>
<use x='154.698027' y='65.753425' xlink:href='#g3-40'/>
<use x='159.250353' y='65.753425' xlink:href='#g1-107'/>
<use x='168.396521' y='65.753425' xlink:href='#g0-0'/>
<use x='180.351681' y='65.753425' xlink:href='#g3-49'/>
<use x='186.204671' y='65.753425' xlink:href='#g3-41'/>
<use x='193.413661' y='65.753425' xlink:href='#g0-0'/>
<use x='205.368821' y='65.753425' xlink:href='#g1-97'/>
<use x='211.513765' y='67.546688' xlink:href='#g2-49'/>
<use x='216.24608' y='65.753425' xlink:href='#g1-117'/>
<use x='222.90852' y='65.753425' xlink:href='#g3-40'/>
<use x='227.460846' y='65.753425' xlink:href='#g1-107'/>
<use x='236.607013' y='65.753425' xlink:href='#g0-0'/>
<use x='248.562174' y='65.753425' xlink:href='#g3-49'/>
<use x='254.415164' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

@@ -0,0 +1,67 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='197.954023pt' height='31.513008pt' viewBox='-.239051 -.227276 197.954023 31.513008'>
<defs>
<path id='g0-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-70' d='M3.550685-3.897385H4.698381C5.606974-3.897385 5.678705-3.694147 5.678705-3.347447C5.678705-3.19203 5.654795-3.024658 5.595019-2.761644C5.571108-2.713823 5.559153-2.654047 5.559153-2.630137C5.559153-2.546451 5.606974-2.49863 5.69066-2.49863C5.786301-2.49863 5.798257-2.546451 5.846077-2.737733L6.539477-5.523288C6.539477-5.571108 6.503611-5.642839 6.419925-5.642839C6.312329-5.642839 6.300374-5.595019 6.252553-5.391781C6.001494-4.495143 5.762391-4.244085 4.722291-4.244085H3.634371L4.411457-7.340473C4.519054-7.758904 4.542964-7.79477 5.033126-7.79477H6.635118C8.129514-7.79477 8.344707-7.352428 8.344707-6.503611C8.344707-6.43188 8.344707-6.168867 8.308842-5.858032C8.296887-5.810212 8.272976-5.654795 8.272976-5.606974C8.272976-5.511333 8.332752-5.475467 8.404483-5.475467C8.488169-5.475467 8.53599-5.523288 8.5599-5.738481L8.810959-7.830635C8.810959-7.866501 8.834869-7.986052 8.834869-8.009963C8.834869-8.141469 8.727273-8.141469 8.51208-8.141469H2.84533C2.618182-8.141469 2.49863-8.141469 2.49863-7.926276C2.49863-7.79477 2.582316-7.79477 2.785554-7.79477C3.526775-7.79477 3.526775-7.711083 3.526775-7.579577C3.526775-7.519801 3.514819-7.47198 3.478954-7.340473L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.976837C3.239851-.02391 3.526775 0 3.789788 0C3.897385 0 4.040847 0 4.040847-.215193C4.040847-.3467 3.969116-.3467 3.706102-.3467C2.761644-.3467 2.737733-.430386 2.737733-.609714C2.737733-.669489 2.761644-.765131 2.785554-.848817L3.550685-3.897385Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-122' d='M1.518306-.968369C2.032379-1.554172 2.450809-1.924782 3.048568-2.462765C3.765878-3.084433 4.076712-3.383313 4.244085-3.56264C5.080946-4.387547 5.499377-5.080946 5.499377-5.176588S5.403736-5.272229 5.379826-5.272229C5.296139-5.272229 5.272229-5.224408 5.212453-5.140722C4.913574-4.62665 4.62665-4.375592 4.315816-4.375592C4.064757-4.375592 3.93325-4.483188 3.706102-4.770112C3.455044-5.068991 3.251806-5.272229 2.905106-5.272229C2.032379-5.272229 1.506351-4.184309 1.506351-3.93325C1.506351-3.897385 1.518306-3.825654 1.625903-3.825654C1.721544-3.825654 1.733499-3.873474 1.769365-3.957161C1.972603-4.435367 2.546451-4.519054 2.773599-4.519054C3.024658-4.519054 3.263761-4.435367 3.514819-4.327771C3.969116-4.136488 4.160399-4.136488 4.27995-4.136488C4.363636-4.136488 4.411457-4.136488 4.471233-4.148443C4.076712-3.682192 3.431133-3.108344 2.893151-2.618182L1.685679-1.506351C.956413-.765131 .514072-.059776 .514072 .02391C.514072 .095641 .573848 .119552 .645579 .119552S.729265 .107597 .812951-.035866C1.004234-.334745 1.3868-.777086 1.829141-.777086C2.080199-.777086 2.199751-.6934 2.438854-.394521C2.666002-.131507 2.86924 .119552 3.251806 .119552C4.423412 .119552 5.092902-1.398755 5.092902-1.673724C5.092902-1.721544 5.080946-1.793275 4.961395-1.793275C4.865753-1.793275 4.853798-1.745455 4.817933-1.625903C4.554919-.920548 3.849564-.633624 3.383313-.633624C3.132254-.633624 2.893151-.71731 2.642092-.824907C2.163885-1.016189 2.032379-1.016189 1.876961-1.016189C1.75741-1.016189 1.625903-1.016189 1.518306-.968369Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -60.834187)'>
<use x='56.413267' y='71.360754' xlink:href='#g1-70'/>
<use x='65.616882' y='71.360754' xlink:href='#g3-40'/>
<use x='70.169208' y='71.360754' xlink:href='#g1-122'/>
<use x='76.139814' y='71.360754' xlink:href='#g3-41'/>
<use x='84.01297' y='71.360754' xlink:href='#g3-61'/>
<use x='97.633964' y='63.272995' xlink:href='#g1-98'/>
<use x='102.61107' y='65.066258' xlink:href='#g2-48'/>
<use x='110.000048' y='63.272995' xlink:href='#g3-43'/>
<use x='121.761363' y='63.272995' xlink:href='#g1-98'/>
<use x='126.738468' y='65.066258' xlink:href='#g2-49'/>
<use x='131.470783' y='63.272995' xlink:href='#g1-122'/>
<use x='137.44139' y='58.934559' xlink:href='#g0-0'/>
<use x='144.027896' y='58.934559' xlink:href='#g2-49'/>
<use x='151.416875' y='63.272995' xlink:href='#g3-43'/>
<use x='163.17819' y='63.272995' xlink:href='#g1-98'/>
<use x='168.155295' y='65.066258' xlink:href='#g2-50'/>
<use x='172.88761' y='63.272995' xlink:href='#g1-122'/>
<use x='178.858216' y='58.934559' xlink:href='#g0-0'/>
<use x='185.444723' y='58.934559' xlink:href='#g2-50'/>
<use x='192.833701' y='63.272995' xlink:href='#g3-43'/>
<use x='204.595016' y='63.272995' xlink:href='#g1-98'/>
<use x='209.572122' y='65.066258' xlink:href='#g2-51'/>
<use x='214.304436' y='63.272995' xlink:href='#g1-122'/>
<use x='220.275043' y='58.934559' xlink:href='#g0-0'/>
<use x='226.861549' y='58.934559' xlink:href='#g2-51'/>
<rect x='97.633964' y='68.132868' height='.478187' width='133.959855'/>
<use x='97.810411' y='79.561416' xlink:href='#g3-49'/>
<use x='106.320065' y='79.561416' xlink:href='#g3-43'/>
<use x='118.08138' y='79.561416' xlink:href='#g1-97'/>
<use x='124.226324' y='81.354679' xlink:href='#g2-49'/>
<use x='128.958639' y='79.561416' xlink:href='#g1-122'/>
<use x='134.929246' y='76.107708' xlink:href='#g0-0'/>
<use x='141.515752' y='76.107708' xlink:href='#g2-49'/>
<use x='148.904731' y='79.561416' xlink:href='#g3-43'/>
<use x='160.666046' y='79.561416' xlink:href='#g1-97'/>
<use x='166.81099' y='81.354679' xlink:href='#g2-50'/>
<use x='171.543305' y='79.561416' xlink:href='#g1-122'/>
<use x='177.513911' y='76.107708' xlink:href='#g0-0'/>
<use x='184.100418' y='76.107708' xlink:href='#g2-50'/>
<use x='191.489396' y='79.561416' xlink:href='#g3-43'/>
<use x='203.250711' y='79.561416' xlink:href='#g1-97'/>
<use x='209.395655' y='81.354679' xlink:href='#g2-51'/>
<use x='214.12797' y='79.561416' xlink:href='#g1-122'/>
<use x='220.098577' y='76.107708' xlink:href='#g0-0'/>
<use x='226.685083' y='76.107708' xlink:href='#g2-51'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,90 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='437.92185pt' height='29.846635pt' viewBox='-.164645 -.240635 437.92185 29.846635'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-51' d='M2.199751-4.291905C1.996513-4.27995 1.948692-4.267995 1.948692-4.160399C1.948692-4.040847 2.008468-4.040847 2.223661-4.040847H2.773599C3.789788-4.040847 4.244085-3.203985 4.244085-2.056289C4.244085-.490162 3.431133-.071731 2.84533-.071731C2.271482-.071731 1.291158-.3467 .944458-1.135741C1.327024-1.075965 1.673724-1.291158 1.673724-1.721544C1.673724-2.068244 1.422665-2.307347 1.08792-2.307347C.800996-2.307347 .490162-2.139975 .490162-1.685679C.490162-.621669 1.554172 .251059 2.881196 .251059C4.303861 .251059 5.355915-.836862 5.355915-2.044334C5.355915-3.144209 4.471233-4.004981 3.323537-4.208219C4.363636-4.507098 5.033126-5.379826 5.033126-6.312329C5.033126-7.256787 4.052802-7.950187 2.893151-7.950187C1.697634-7.950187 .812951-7.220922 .812951-6.348194C.812951-5.869988 1.183562-5.774346 1.362889-5.774346C1.613948-5.774346 1.900872-5.953674 1.900872-6.312329C1.900872-6.694894 1.613948-6.862267 1.350934-6.862267C1.279203-6.862267 1.255293-6.862267 1.219427-6.850311C1.673724-7.663263 2.797509-7.663263 2.857285-7.663263C3.251806-7.663263 4.028892-7.483935 4.028892-6.312329C4.028892-6.085181 3.993026-5.415691 3.646326-4.901619C3.287671-4.375592 2.881196-4.339726 2.558406-4.327771L2.199751-4.291905Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -44.07 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g3-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g1-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g3-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g3-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g1-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g2-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g1-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g3-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g1-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g3-41'/>
<use x='126.857517' y='65.753425' xlink:href='#g3-43'/>
<use x='137.674513' y='65.753425' xlink:href='#g1-98'/>
<use x='142.651618' y='67.546688' xlink:href='#g2-49'/>
<use x='147.383933' y='65.753425' xlink:href='#g1-101'/>
<use x='152.809373' y='65.753425' xlink:href='#g3-40'/>
<use x='157.361699' y='65.753425' xlink:href='#g1-107'/>
<use x='165.563532' y='65.753425' xlink:href='#g0-0'/>
<use x='176.574357' y='65.753425' xlink:href='#g3-49'/>
<use x='182.427348' y='65.753425' xlink:href='#g3-41'/>
<use x='188.692017' y='65.753425' xlink:href='#g3-43'/>
<use x='199.508998' y='65.753425' xlink:href='#g1-98'/>
<use x='204.486103' y='67.546688' xlink:href='#g2-50'/>
<use x='209.218418' y='65.753425' xlink:href='#g1-101'/>
<use x='214.643858' y='65.753425' xlink:href='#g3-40'/>
<use x='219.196184' y='65.753425' xlink:href='#g1-107'/>
<use x='227.398032' y='65.753425' xlink:href='#g0-0'/>
<use x='238.408858' y='65.753425' xlink:href='#g3-50'/>
<use x='244.261848' y='65.753425' xlink:href='#g3-41'/>
<use x='250.526502' y='65.753425' xlink:href='#g3-43'/>
<use x='261.343498' y='65.753425' xlink:href='#g1-98'/>
<use x='266.320603' y='67.546688' xlink:href='#g2-51'/>
<use x='271.052918' y='65.753425' xlink:href='#g1-101'/>
<use x='276.478358' y='65.753425' xlink:href='#g3-40'/>
<use x='281.030684' y='65.753425' xlink:href='#g1-107'/>
<use x='289.232517' y='65.753425' xlink:href='#g0-0'/>
<use x='300.243343' y='65.753425' xlink:href='#g3-51'/>
<use x='306.096333' y='65.753425' xlink:href='#g3-41'/>
<use x='312.361003' y='65.753425' xlink:href='#g0-0'/>
<use x='323.371828' y='65.753425' xlink:href='#g1-97'/>
<use x='329.516773' y='67.546688' xlink:href='#g2-49'/>
<use x='334.249087' y='65.753425' xlink:href='#g1-117'/>
<use x='340.911527' y='65.753425' xlink:href='#g3-40'/>
<use x='345.463853' y='65.753425' xlink:href='#g1-107'/>
<use x='353.665701' y='65.753425' xlink:href='#g0-0'/>
<use x='364.676527' y='65.753425' xlink:href='#g3-49'/>
<use x='370.529517' y='65.753425' xlink:href='#g3-41'/>
<use x='376.794171' y='65.753425' xlink:href='#g0-0'/>
<use x='387.805012' y='65.753425' xlink:href='#g1-97'/>
<use x='393.949957' y='67.546688' xlink:href='#g2-50'/>
<use x='398.682271' y='65.753425' xlink:href='#g1-117'/>
<use x='405.344711' y='65.753425' xlink:href='#g3-40'/>
<use x='409.897037' y='65.753425' xlink:href='#g1-107'/>
<use x='418.09887' y='65.753425' xlink:href='#g0-0'/>
<use x='38.854296' y='80.199253' xlink:href='#g3-50'/>
<use x='44.707287' y='80.199253' xlink:href='#g3-41'/>
<use x='51.916276' y='80.199253' xlink:href='#g0-0'/>
<use x='63.871436' y='80.199253' xlink:href='#g1-97'/>
<use x='70.016381' y='81.992516' xlink:href='#g2-51'/>
<use x='74.748696' y='80.199253' xlink:href='#g1-117'/>
<use x='81.411135' y='80.199253' xlink:href='#g3-40'/>
<use x='85.963461' y='80.199253' xlink:href='#g1-107'/>
<use x='95.109628' y='80.199253' xlink:href='#g0-0'/>
<use x='107.064789' y='80.199253' xlink:href='#g3-51'/>
<use x='112.917779' y='80.199253' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@@ -0,0 +1,38 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='140.251216pt' height='13.522849pt' viewBox='-.239051 -.240635 140.251216 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g3-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g1-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g3-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g3-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g1-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g2-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g1-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g3-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g1-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g3-41'/>
<use x='127.801852' y='65.753425' xlink:href='#g3-43'/>
<use x='139.563167' y='65.753425' xlink:href='#g1-118'/>
<use x='145.651386' y='65.753425' xlink:href='#g3-40'/>
<use x='150.203711' y='65.753425' xlink:href='#g1-107'/>
<use x='159.349879' y='65.753425' xlink:href='#g0-0'/>
<use x='171.30504' y='65.753425' xlink:href='#g3-49'/>
<use x='177.15803' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,77 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='417.87753pt' height='13.522849pt' viewBox='-.239051 -.240635 417.87753 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g3-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g1-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g3-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g3-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g1-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g2-49'/>
<use x='104.125593' y='65.753425' xlink:href='#g1-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g3-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g1-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g3-41'/>
<use x='127.071954' y='65.753425' xlink:href='#g3-43'/>
<use x='138.10337' y='65.753425' xlink:href='#g1-98'/>
<use x='143.080475' y='67.546688' xlink:href='#g2-50'/>
<use x='147.81279' y='65.753425' xlink:href='#g1-101'/>
<use x='153.23823' y='65.753425' xlink:href='#g3-40'/>
<use x='157.790556' y='65.753425' xlink:href='#g1-107'/>
<use x='166.206841' y='65.753425' xlink:href='#g0-0'/>
<use x='177.432103' y='65.753425' xlink:href='#g3-49'/>
<use x='183.285093' y='65.753425' xlink:href='#g3-41'/>
<use x='189.764184' y='65.753425' xlink:href='#g3-43'/>
<use x='200.7956' y='65.753425' xlink:href='#g1-98'/>
<use x='205.772706' y='67.546688' xlink:href='#g2-51'/>
<use x='210.505021' y='65.753425' xlink:href='#g1-101'/>
<use x='215.930461' y='65.753425' xlink:href='#g3-40'/>
<use x='220.482787' y='65.753425' xlink:href='#g1-107'/>
<use x='228.899071' y='65.753425' xlink:href='#g0-0'/>
<use x='240.124333' y='65.753425' xlink:href='#g3-50'/>
<use x='245.977323' y='65.753425' xlink:href='#g3-41'/>
<use x='252.456414' y='65.753425' xlink:href='#g0-0'/>
<use x='263.681676' y='65.753425' xlink:href='#g1-97'/>
<use x='269.826621' y='67.546688' xlink:href='#g2-49'/>
<use x='274.558935' y='65.753425' xlink:href='#g1-117'/>
<use x='281.221375' y='65.753425' xlink:href='#g3-40'/>
<use x='285.773701' y='65.753425' xlink:href='#g1-107'/>
<use x='292.263205' y='65.753425' xlink:href='#g3-41'/>
<use x='298.742296' y='65.753425' xlink:href='#g0-0'/>
<use x='309.967573' y='65.753425' xlink:href='#g1-97'/>
<use x='316.112517' y='67.546688' xlink:href='#g2-50'/>
<use x='320.844832' y='65.753425' xlink:href='#g1-117'/>
<use x='327.507272' y='65.753425' xlink:href='#g3-40'/>
<use x='332.059598' y='65.753425' xlink:href='#g1-107'/>
<use x='340.475867' y='65.753425' xlink:href='#g0-0'/>
<use x='351.701129' y='65.753425' xlink:href='#g3-49'/>
<use x='357.554119' y='65.753425' xlink:href='#g3-41'/>
<use x='364.03321' y='65.753425' xlink:href='#g0-0'/>
<use x='375.258487' y='65.753425' xlink:href='#g1-97'/>
<use x='381.403432' y='67.546688' xlink:href='#g2-51'/>
<use x='386.135746' y='65.753425' xlink:href='#g1-117'/>
<use x='392.798186' y='65.753425' xlink:href='#g3-40'/>
<use x='397.350512' y='65.753425' xlink:href='#g1-107'/>
<use x='405.766781' y='65.753425' xlink:href='#g0-0'/>
<use x='416.992043' y='65.753425' xlink:href='#g3-50'/>
<use x='422.845033' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

@@ -0,0 +1,54 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='151.153022pt' height='31.323877pt' viewBox='-.239051 -.227276 151.153022 31.323877'>
<defs>
<path id='g0-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-70' d='M3.550685-3.897385H4.698381C5.606974-3.897385 5.678705-3.694147 5.678705-3.347447C5.678705-3.19203 5.654795-3.024658 5.595019-2.761644C5.571108-2.713823 5.559153-2.654047 5.559153-2.630137C5.559153-2.546451 5.606974-2.49863 5.69066-2.49863C5.786301-2.49863 5.798257-2.546451 5.846077-2.737733L6.539477-5.523288C6.539477-5.571108 6.503611-5.642839 6.419925-5.642839C6.312329-5.642839 6.300374-5.595019 6.252553-5.391781C6.001494-4.495143 5.762391-4.244085 4.722291-4.244085H3.634371L4.411457-7.340473C4.519054-7.758904 4.542964-7.79477 5.033126-7.79477H6.635118C8.129514-7.79477 8.344707-7.352428 8.344707-6.503611C8.344707-6.43188 8.344707-6.168867 8.308842-5.858032C8.296887-5.810212 8.272976-5.654795 8.272976-5.606974C8.272976-5.511333 8.332752-5.475467 8.404483-5.475467C8.488169-5.475467 8.53599-5.523288 8.5599-5.738481L8.810959-7.830635C8.810959-7.866501 8.834869-7.986052 8.834869-8.009963C8.834869-8.141469 8.727273-8.141469 8.51208-8.141469H2.84533C2.618182-8.141469 2.49863-8.141469 2.49863-7.926276C2.49863-7.79477 2.582316-7.79477 2.785554-7.79477C3.526775-7.79477 3.526775-7.711083 3.526775-7.579577C3.526775-7.519801 3.514819-7.47198 3.478954-7.340473L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.976837C3.239851-.02391 3.526775 0 3.789788 0C3.897385 0 4.040847 0 4.040847-.215193C4.040847-.3467 3.969116-.3467 3.706102-.3467C2.761644-.3467 2.737733-.430386 2.737733-.609714C2.737733-.669489 2.761644-.765131 2.785554-.848817L3.550685-3.897385Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-122' d='M1.518306-.968369C2.032379-1.554172 2.450809-1.924782 3.048568-2.462765C3.765878-3.084433 4.076712-3.383313 4.244085-3.56264C5.080946-4.387547 5.499377-5.080946 5.499377-5.176588S5.403736-5.272229 5.379826-5.272229C5.296139-5.272229 5.272229-5.224408 5.212453-5.140722C4.913574-4.62665 4.62665-4.375592 4.315816-4.375592C4.064757-4.375592 3.93325-4.483188 3.706102-4.770112C3.455044-5.068991 3.251806-5.272229 2.905106-5.272229C2.032379-5.272229 1.506351-4.184309 1.506351-3.93325C1.506351-3.897385 1.518306-3.825654 1.625903-3.825654C1.721544-3.825654 1.733499-3.873474 1.769365-3.957161C1.972603-4.435367 2.546451-4.519054 2.773599-4.519054C3.024658-4.519054 3.263761-4.435367 3.514819-4.327771C3.969116-4.136488 4.160399-4.136488 4.27995-4.136488C4.363636-4.136488 4.411457-4.136488 4.471233-4.148443C4.076712-3.682192 3.431133-3.108344 2.893151-2.618182L1.685679-1.506351C.956413-.765131 .514072-.059776 .514072 .02391C.514072 .095641 .573848 .119552 .645579 .119552S.729265 .107597 .812951-.035866C1.004234-.334745 1.3868-.777086 1.829141-.777086C2.080199-.777086 2.199751-.6934 2.438854-.394521C2.666002-.131507 2.86924 .119552 3.251806 .119552C4.423412 .119552 5.092902-1.398755 5.092902-1.673724C5.092902-1.721544 5.080946-1.793275 4.961395-1.793275C4.865753-1.793275 4.853798-1.745455 4.817933-1.625903C4.554919-.920548 3.849564-.633624 3.383313-.633624C3.132254-.633624 2.893151-.71731 2.642092-.824907C2.163885-1.016189 2.032379-1.016189 1.876961-1.016189C1.75741-1.016189 1.625903-1.016189 1.518306-.968369Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -60.834187)'>
<use x='56.413267' y='71.360754' xlink:href='#g1-70'/>
<use x='65.616882' y='71.360754' xlink:href='#g3-40'/>
<use x='70.169208' y='71.360754' xlink:href='#g1-122'/>
<use x='76.139814' y='71.360754' xlink:href='#g3-41'/>
<use x='84.01297' y='71.360754' xlink:href='#g3-61'/>
<use x='97.633964' y='63.272995' xlink:href='#g1-98'/>
<use x='102.61107' y='65.066258' xlink:href='#g2-48'/>
<use x='110.000048' y='63.272995' xlink:href='#g3-43'/>
<use x='121.761363' y='63.272995' xlink:href='#g1-98'/>
<use x='126.738468' y='65.066258' xlink:href='#g2-49'/>
<use x='131.470783' y='63.272995' xlink:href='#g1-122'/>
<use x='137.44139' y='58.934559' xlink:href='#g0-0'/>
<use x='144.027896' y='58.934559' xlink:href='#g2-49'/>
<use x='151.416875' y='63.272995' xlink:href='#g3-43'/>
<use x='163.17819' y='63.272995' xlink:href='#g1-98'/>
<use x='168.155295' y='65.066258' xlink:href='#g2-50'/>
<use x='172.88761' y='63.272995' xlink:href='#g1-122'/>
<use x='178.858216' y='58.934559' xlink:href='#g0-0'/>
<use x='185.444723' y='58.934559' xlink:href='#g2-50'/>
<rect x='97.633964' y='68.132868' height='.478187' width='92.543039'/>
<use x='98.394327' y='79.561416' xlink:href='#g3-49'/>
<use x='106.903981' y='79.561416' xlink:href='#g3-43'/>
<use x='118.665296' y='79.561416' xlink:href='#g1-97'/>
<use x='124.81024' y='81.354679' xlink:href='#g2-49'/>
<use x='129.542555' y='79.561416' xlink:href='#g1-122'/>
<use x='135.513161' y='76.107708' xlink:href='#g0-0'/>
<use x='142.099668' y='76.107708' xlink:href='#g2-49'/>
<use x='149.488646' y='79.561416' xlink:href='#g3-43'/>
<use x='161.249961' y='79.561416' xlink:href='#g1-97'/>
<use x='167.394906' y='81.354679' xlink:href='#g2-50'/>
<use x='172.12722' y='79.561416' xlink:href='#g1-122'/>
<use x='178.097827' y='76.107708' xlink:href='#g0-0'/>
<use x='184.684333' y='76.107708' xlink:href='#g2-50'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

@@ -0,0 +1,70 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='378.770978pt' height='13.522849pt' viewBox='-.239051 -.240635 378.770978 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g3-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g1-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g3-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g3-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g1-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g2-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g1-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g3-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g1-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g3-41'/>
<use x='127.801852' y='65.753425' xlink:href='#g3-43'/>
<use x='139.563167' y='65.753425' xlink:href='#g1-98'/>
<use x='144.540272' y='67.546688' xlink:href='#g2-49'/>
<use x='149.272587' y='65.753425' xlink:href='#g1-101'/>
<use x='154.698027' y='65.753425' xlink:href='#g3-40'/>
<use x='159.250353' y='65.753425' xlink:href='#g1-107'/>
<use x='168.396521' y='65.753425' xlink:href='#g0-0'/>
<use x='180.351681' y='65.753425' xlink:href='#g3-49'/>
<use x='186.204671' y='65.753425' xlink:href='#g3-41'/>
<use x='193.413661' y='65.753425' xlink:href='#g3-43'/>
<use x='205.174976' y='65.753425' xlink:href='#g1-98'/>
<use x='210.152081' y='67.546688' xlink:href='#g2-50'/>
<use x='214.884396' y='65.753425' xlink:href='#g1-101'/>
<use x='220.309836' y='65.753425' xlink:href='#g3-40'/>
<use x='224.862162' y='65.753425' xlink:href='#g1-107'/>
<use x='234.008329' y='65.753425' xlink:href='#g0-0'/>
<use x='245.96349' y='65.753425' xlink:href='#g3-50'/>
<use x='251.81648' y='65.753425' xlink:href='#g3-41'/>
<use x='259.025469' y='65.753425' xlink:href='#g0-0'/>
<use x='270.98063' y='65.753425' xlink:href='#g1-97'/>
<use x='277.125574' y='67.546688' xlink:href='#g2-49'/>
<use x='281.857889' y='65.753425' xlink:href='#g1-117'/>
<use x='288.520328' y='65.753425' xlink:href='#g3-40'/>
<use x='293.072654' y='65.753425' xlink:href='#g1-107'/>
<use x='302.218822' y='65.753425' xlink:href='#g0-0'/>
<use x='314.173982' y='65.753425' xlink:href='#g3-49'/>
<use x='320.026973' y='65.753425' xlink:href='#g3-41'/>
<use x='327.235962' y='65.753425' xlink:href='#g0-0'/>
<use x='339.191122' y='65.753425' xlink:href='#g1-97'/>
<use x='345.336067' y='67.546688' xlink:href='#g2-50'/>
<use x='350.068381' y='65.753425' xlink:href='#g1-117'/>
<use x='356.730821' y='65.753425' xlink:href='#g3-40'/>
<use x='361.283147' y='65.753425' xlink:href='#g1-107'/>
<use x='370.429314' y='65.753425' xlink:href='#g0-0'/>
<use x='382.384475' y='65.753425' xlink:href='#g3-50'/>
<use x='388.237465' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

@@ -0,0 +1,34 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='117.125976pt' height='13.522849pt' viewBox='-.239051 -.240635 117.125976 13.522849'>
<defs>
<path id='g1-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g0-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g0-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g2-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g0-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g2-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g2-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g0-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g1-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g0-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g2-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g0-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g2-41'/>
<use x='127.801852' y='65.753425' xlink:href='#g2-43'/>
<use x='139.563167' y='65.753425' xlink:href='#g0-118'/>
<use x='145.651386' y='65.753425' xlink:href='#g2-40'/>
<use x='150.203711' y='65.753425' xlink:href='#g0-107'/>
<use x='156.693216' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,60 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='303.761719pt' height='13.522849pt' viewBox='-.239051 -.240635 303.761719 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.501486' y='65.753425' xlink:href='#g3-40'/>
<use x='67.053812' y='65.753425' xlink:href='#g1-107'/>
<use x='76.199979' y='65.753425' xlink:href='#g3-43'/>
<use x='87.961294' y='65.753425' xlink:href='#g3-49'/>
<use x='93.814285' y='65.753425' xlink:href='#g3-41'/>
<use x='101.68744' y='65.753425' xlink:href='#g3-61'/>
<use x='114.112921' y='65.753425' xlink:href='#g1-98'/>
<use x='119.090026' y='67.546688' xlink:href='#g2-49'/>
<use x='123.822341' y='65.753425' xlink:href='#g1-101'/>
<use x='129.247781' y='65.753425' xlink:href='#g3-40'/>
<use x='133.800107' y='65.753425' xlink:href='#g1-107'/>
<use x='140.289611' y='65.753425' xlink:href='#g3-41'/>
<use x='147.4986' y='65.753425' xlink:href='#g3-43'/>
<use x='159.259915' y='65.753425' xlink:href='#g1-98'/>
<use x='164.23702' y='67.546688' xlink:href='#g2-50'/>
<use x='168.969335' y='65.753425' xlink:href='#g1-101'/>
<use x='174.394775' y='65.753425' xlink:href='#g3-40'/>
<use x='178.947101' y='65.753425' xlink:href='#g1-107'/>
<use x='188.093269' y='65.753425' xlink:href='#g0-0'/>
<use x='200.048429' y='65.753425' xlink:href='#g3-49'/>
<use x='205.901419' y='65.753425' xlink:href='#g3-41'/>
<use x='213.110409' y='65.753425' xlink:href='#g0-0'/>
<use x='225.065569' y='65.753425' xlink:href='#g1-97'/>
<use x='231.210513' y='67.546688' xlink:href='#g2-49'/>
<use x='235.942828' y='65.753425' xlink:href='#g1-117'/>
<use x='242.605268' y='65.753425' xlink:href='#g3-40'/>
<use x='247.157594' y='65.753425' xlink:href='#g1-107'/>
<use x='253.647098' y='65.753425' xlink:href='#g3-41'/>
<use x='260.856087' y='65.753425' xlink:href='#g0-0'/>
<use x='272.811247' y='65.753425' xlink:href='#g1-97'/>
<use x='278.956192' y='67.546688' xlink:href='#g2-50'/>
<use x='283.688507' y='65.753425' xlink:href='#g1-117'/>
<use x='290.350946' y='65.753425' xlink:href='#g3-40'/>
<use x='294.903272' y='65.753425' xlink:href='#g1-107'/>
<use x='304.049439' y='65.753425' xlink:href='#g0-0'/>
<use x='316.0046' y='65.753425' xlink:href='#g3-49'/>
<use x='321.85759' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

@@ -0,0 +1,41 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='193.132364pt' height='12.117878pt' viewBox='-.239051 -.242965 193.132364 12.117878'>
<defs>
<path id='g0-59' d='M2.331258 .047821C2.331258-.645579 2.10411-1.159651 1.613948-1.159651C1.231382-1.159651 1.0401-.848817 1.0401-.585803S1.219427 0 1.625903 0C1.78132 0 1.912827-.047821 2.020423-.155417C2.044334-.179328 2.056289-.179328 2.068244-.179328C2.092154-.179328 2.092154-.011955 2.092154 .047821C2.092154 .442341 2.020423 1.219427 1.327024 1.996513C1.195517 2.139975 1.195517 2.163885 1.195517 2.187796C1.195517 2.247572 1.255293 2.307347 1.315068 2.307347C1.41071 2.307347 2.331258 1.422665 2.331258 .047821Z'/>
<path id='g0-67' d='M8.930511-8.308842C8.930511-8.416438 8.846824-8.416438 8.822914-8.416438S8.751183-8.416438 8.655542-8.296887L7.830635-7.292653C7.412204-8.009963 6.75467-8.416438 5.858032-8.416438C3.275716-8.416438 .597758-5.798257 .597758-2.988792C.597758-.992279 1.996513 .251059 3.741968 .251059C4.698381 .251059 5.535243-.155417 6.228643-.74122C7.268742-1.613948 7.579577-2.773599 7.579577-2.86924C7.579577-2.976837 7.483935-2.976837 7.44807-2.976837C7.340473-2.976837 7.328518-2.905106 7.304608-2.857285C6.75467-.992279 5.140722-.095641 3.945205-.095641C2.677958-.095641 1.578082-.908593 1.578082-2.606227C1.578082-2.988792 1.697634-5.068991 3.048568-6.635118C3.706102-7.400249 4.829888-8.069738 5.965629-8.069738C7.280697-8.069738 7.866501-6.981818 7.866501-5.762391C7.866501-5.451557 7.830635-5.188543 7.830635-5.140722C7.830635-5.033126 7.950187-5.033126 7.986052-5.033126C8.117559-5.033126 8.129514-5.045081 8.177335-5.260274L8.930511-8.308842Z'/>
<path id='g0-68' d='M1.876961-.884682C1.769365-.466252 1.745455-.3467 .908593-.3467C.681445-.3467 .561893-.3467 .561893-.131507C.561893 0 .633624 0 .872727 0H4.662516C7.07746 0 9.432628-2.49863 9.432628-5.164633C9.432628-6.886177 8.404483-8.16538 6.694894-8.16538H2.857285C2.630137-8.16538 2.52254-8.16538 2.52254-7.938232C2.52254-7.81868 2.630137-7.81868 2.809465-7.81868C3.53873-7.81868 3.53873-7.723039 3.53873-7.591532C3.53873-7.567621 3.53873-7.49589 3.490909-7.316563L1.876961-.884682ZM4.399502-7.352428C4.507098-7.79477 4.554919-7.81868 5.021171-7.81868H6.336239C7.460025-7.81868 8.488169-7.208966 8.488169-5.559153C8.488169-4.961395 8.249066-2.881196 7.089415-1.566127C6.75467-1.171606 5.846077-.3467 4.471233-.3467H3.108344C2.940971-.3467 2.917061-.3467 2.84533-.358655C2.713823-.37061 2.701868-.394521 2.701868-.490162C2.701868-.573848 2.725778-.645579 2.749689-.753176L4.399502-7.352428Z'/>
<path id='g0-69' d='M8.308842-2.773599C8.320797-2.809465 8.356663-2.893151 8.356663-2.940971C8.356663-3.000747 8.308842-3.060523 8.237111-3.060523C8.18929-3.060523 8.16538-3.048568 8.129514-3.012702C8.105604-3.000747 8.105604-2.976837 7.998007-2.737733C7.292653-1.06401 6.77858-.3467 4.865753-.3467H3.120299C2.952927-.3467 2.929016-.3467 2.857285-.358655C2.725778-.37061 2.713823-.394521 2.713823-.490162C2.713823-.573848 2.737733-.645579 2.761644-.753176L3.58655-4.052802H4.770112C5.702615-4.052802 5.774346-3.849564 5.774346-3.490909C5.774346-3.371357 5.774346-3.263761 5.69066-2.905106C5.66675-2.857285 5.654795-2.809465 5.654795-2.773599C5.654795-2.689913 5.71457-2.654047 5.786301-2.654047C5.893898-2.654047 5.905853-2.737733 5.953674-2.905106L6.635118-5.678705C6.635118-5.738481 6.587298-5.798257 6.515567-5.798257C6.40797-5.798257 6.396015-5.750436 6.348194-5.583064C6.109091-4.662516 5.869988-4.399502 4.805978-4.399502H3.670237L4.411457-7.340473C4.519054-7.758904 4.542964-7.79477 5.033126-7.79477H6.742715C8.2132-7.79477 8.51208-7.400249 8.51208-6.491656C8.51208-6.479701 8.51208-6.144956 8.464259-5.750436C8.452304-5.702615 8.440349-5.630884 8.440349-5.606974C8.440349-5.511333 8.500125-5.475467 8.571856-5.475467C8.655542-5.475467 8.703362-5.523288 8.727273-5.738481L8.978331-7.830635C8.978331-7.866501 9.002242-7.986052 9.002242-8.009963C9.002242-8.141469 8.894645-8.141469 8.679452-8.141469H2.84533C2.618182-8.141469 2.49863-8.141469 2.49863-7.926276C2.49863-7.79477 2.582316-7.79477 2.785554-7.79477C3.526775-7.79477 3.526775-7.711083 3.526775-7.579577C3.526775-7.519801 3.514819-7.47198 3.478954-7.340473L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .621669 0 .860772 0H6.862267C7.12528 0 7.137235-.011955 7.220922-.203238L8.308842-2.773599Z'/>
<path id='g0-70' d='M3.550685-3.897385H4.698381C5.606974-3.897385 5.678705-3.694147 5.678705-3.347447C5.678705-3.19203 5.654795-3.024658 5.595019-2.761644C5.571108-2.713823 5.559153-2.654047 5.559153-2.630137C5.559153-2.546451 5.606974-2.49863 5.69066-2.49863C5.786301-2.49863 5.798257-2.546451 5.846077-2.737733L6.539477-5.523288C6.539477-5.571108 6.503611-5.642839 6.419925-5.642839C6.312329-5.642839 6.300374-5.595019 6.252553-5.391781C6.001494-4.495143 5.762391-4.244085 4.722291-4.244085H3.634371L4.411457-7.340473C4.519054-7.758904 4.542964-7.79477 5.033126-7.79477H6.635118C8.129514-7.79477 8.344707-7.352428 8.344707-6.503611C8.344707-6.43188 8.344707-6.168867 8.308842-5.858032C8.296887-5.810212 8.272976-5.654795 8.272976-5.606974C8.272976-5.511333 8.332752-5.475467 8.404483-5.475467C8.488169-5.475467 8.53599-5.523288 8.5599-5.738481L8.810959-7.830635C8.810959-7.866501 8.834869-7.986052 8.834869-8.009963C8.834869-8.141469 8.727273-8.141469 8.51208-8.141469H2.84533C2.618182-8.141469 2.49863-8.141469 2.49863-7.926276C2.49863-7.79477 2.582316-7.79477 2.785554-7.79477C3.526775-7.79477 3.526775-7.711083 3.526775-7.579577C3.526775-7.519801 3.514819-7.47198 3.478954-7.340473L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.976837C3.239851-.02391 3.526775 0 3.789788 0C3.897385 0 4.040847 0 4.040847-.215193C4.040847-.3467 3.969116-.3467 3.706102-.3467C2.761644-.3467 2.737733-.430386 2.737733-.609714C2.737733-.669489 2.761644-.765131 2.785554-.848817L3.550685-3.897385Z'/>
<path id='g0-73' d='M4.399502-7.280697C4.507098-7.699128 4.531009-7.81868 5.403736-7.81868C5.66675-7.81868 5.762391-7.81868 5.762391-8.045828C5.762391-8.16538 5.630884-8.16538 5.595019-8.16538C5.379826-8.16538 5.116812-8.141469 4.901619-8.141469H3.431133C3.19203-8.141469 2.917061-8.16538 2.677958-8.16538C2.582316-8.16538 2.450809-8.16538 2.450809-7.938232C2.450809-7.81868 2.546451-7.81868 2.785554-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.507846 3.502864-7.436115 3.478954-7.328518L1.865006-.884682C1.75741-.466252 1.733499-.3467 .860772-.3467C.597758-.3467 .490162-.3467 .490162-.119552C.490162 0 .609714 0 .669489 0C.884682 0 1.147696-.02391 1.362889-.02391H2.833375C3.072478-.02391 3.335492 0 3.574595 0C3.670237 0 3.813699 0 3.813699-.215193C3.813699-.3467 3.741968-.3467 3.478954-.3467C2.737733-.3467 2.737733-.442341 2.737733-.585803C2.737733-.609714 2.737733-.669489 2.785554-.860772L4.399502-7.280697Z'/>
<path id='g0-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g0-78' d='M8.846824-6.910087C8.978331-7.424159 9.169614-7.782814 10.078207-7.81868C10.114072-7.81868 10.257534-7.830635 10.257534-8.033873C10.257534-8.16538 10.149938-8.16538 10.102117-8.16538C9.863014-8.16538 9.2533-8.141469 9.014197-8.141469H8.440349C8.272976-8.141469 8.057783-8.16538 7.890411-8.16538C7.81868-8.16538 7.675218-8.16538 7.675218-7.938232C7.675218-7.81868 7.770859-7.81868 7.854545-7.81868C8.571856-7.79477 8.619676-7.519801 8.619676-7.304608C8.619676-7.197011 8.607721-7.161146 8.571856-6.993773L7.220922-1.601993L4.662516-7.962142C4.578829-8.153425 4.566874-8.16538 4.303861-8.16538H2.84533C2.606227-8.16538 2.49863-8.16538 2.49863-7.938232C2.49863-7.81868 2.582316-7.81868 2.809465-7.81868C2.86924-7.81868 3.574595-7.81868 3.574595-7.711083C3.574595-7.687173 3.550685-7.591532 3.53873-7.555666L1.948692-1.219427C1.80523-.633624 1.518306-.382565 .729265-.3467C.669489-.3467 .549938-.334745 .549938-.119552C.549938 0 .669489 0 .705355 0C.944458 0 1.554172-.02391 1.793275-.02391H2.367123C2.534496-.02391 2.737733 0 2.905106 0C2.988792 0 3.120299 0 3.120299-.227148C3.120299-.334745 3.000747-.3467 2.952927-.3467C2.558406-.358655 2.175841-.430386 2.175841-.860772C2.175841-.956413 2.199751-1.06401 2.223661-1.159651L3.837609-7.555666C3.90934-7.436115 3.90934-7.412204 3.957161-7.304608L6.802491-.215193C6.862267-.071731 6.886177 0 6.993773 0C7.113325 0 7.12528-.035866 7.173101-.239103L8.846824-6.910087Z'/>
<path id='g0-79' d='M8.679452-5.236364C8.679452-7.208966 7.388294-8.416438 5.71457-8.416438C3.156164-8.416438 .573848-5.66675 .573848-2.905106C.573848-1.028144 1.817186 .251059 3.550685 .251059C6.06127 .251059 8.679452-2.367123 8.679452-5.236364ZM3.622416-.02391C2.642092-.02391 1.601993-.74122 1.601993-2.606227C1.601993-3.694147 1.996513-5.475467 2.976837-6.670984C3.849564-7.723039 4.853798-8.153425 5.654795-8.153425C6.706849-8.153425 7.723039-7.388294 7.723039-5.66675C7.723039-4.60274 7.268742-2.940971 6.467746-1.80523C5.595019-.585803 4.507098-.02391 3.622416-.02391Z'/>
<path id='g0-80' d='M3.53873-3.801743H5.547198C7.197011-3.801743 8.846824-5.021171 8.846824-6.38406C8.846824-7.316563 8.057783-8.16538 6.551432-8.16538H2.857285C2.630137-8.16538 2.52254-8.16538 2.52254-7.938232C2.52254-7.81868 2.630137-7.81868 2.809465-7.81868C3.53873-7.81868 3.53873-7.723039 3.53873-7.591532C3.53873-7.567621 3.53873-7.49589 3.490909-7.316563L1.876961-.884682C1.769365-.466252 1.745455-.3467 .908593-.3467C.681445-.3467 .561893-.3467 .561893-.131507C.561893 0 .669489 0 .74122 0C.968369 0 1.207472-.02391 1.43462-.02391H2.833375C3.060523-.02391 3.311582 0 3.53873 0C3.634371 0 3.765878 0 3.765878-.227148C3.765878-.3467 3.658281-.3467 3.478954-.3467C2.761644-.3467 2.749689-.430386 2.749689-.549938C2.749689-.609714 2.761644-.6934 2.773599-.753176L3.53873-3.801743ZM4.399502-7.352428C4.507098-7.79477 4.554919-7.81868 5.021171-7.81868H6.204732C7.10137-7.81868 7.84259-7.531756 7.84259-6.635118C7.84259-6.324284 7.687173-5.308095 7.137235-4.758157C6.933998-4.542964 6.360149-4.088667 5.272229-4.088667H3.58655L4.399502-7.352428Z'/>
<path id='g0-83' d='M7.591532-8.308842C7.591532-8.416438 7.507846-8.416438 7.483935-8.416438C7.436115-8.416438 7.424159-8.404483 7.280697-8.225156C7.208966-8.141469 6.718804-7.519801 6.706849-7.507846C6.312329-8.284932 5.523288-8.416438 5.021171-8.416438C3.502864-8.416438 2.12802-7.029639 2.12802-5.678705C2.12802-4.782067 2.666002-4.25604 3.251806-4.052802C3.383313-4.004981 4.088667-3.813699 4.447323-3.730012C5.057036-3.56264 5.212453-3.514819 5.463512-3.251806C5.511333-3.19203 5.750436-2.917061 5.750436-2.355168C5.750436-1.243337 4.722291-.095641 3.526775-.095641C2.546451-.095641 1.458531-.514072 1.458531-1.853051C1.458531-2.080199 1.506351-2.367123 1.542217-2.486675C1.542217-2.52254 1.554172-2.582316 1.554172-2.606227C1.554172-2.654047 1.530262-2.713823 1.43462-2.713823C1.327024-2.713823 1.315068-2.689913 1.267248-2.486675L.657534-.035866C.657534-.02391 .609714 .131507 .609714 .143462C.609714 .251059 .705355 .251059 .729265 .251059C.777086 .251059 .789041 .239103 .932503 .059776L1.482441-.657534C1.769365-.227148 2.391034 .251059 3.502864 .251059C5.045081 .251059 6.455791-1.243337 6.455791-2.737733C6.455791-3.239851 6.336239-3.682192 5.881943-4.124533C5.630884-4.375592 5.415691-4.435367 4.315816-4.722291C3.514819-4.937484 3.407223-4.97335 3.19203-5.164633C2.988792-5.36787 2.833375-5.654795 2.833375-6.06127C2.833375-7.065504 3.849564-8.093649 4.985305-8.093649C6.156912-8.093649 6.706849-7.376339 6.706849-6.240598C6.706849-5.929763 6.647073-5.606974 6.647073-5.559153C6.647073-5.451557 6.742715-5.451557 6.77858-5.451557C6.886177-5.451557 6.898132-5.487422 6.945953-5.678705L7.591532-8.308842Z'/>
<path id='g0-84' d='M4.985305-7.292653C5.057036-7.579577 5.080946-7.687173 5.260274-7.734994C5.355915-7.758904 5.750436-7.758904 6.001494-7.758904C7.197011-7.758904 7.758904-7.711083 7.758904-6.77858C7.758904-6.599253 7.711083-6.144956 7.639352-5.702615L7.627397-5.559153C7.627397-5.511333 7.675218-5.439601 7.746949-5.439601C7.866501-5.439601 7.866501-5.499377 7.902366-5.69066L8.249066-7.806725C8.272976-7.914321 8.272976-7.938232 8.272976-7.974097C8.272976-8.105604 8.201245-8.105604 7.962142-8.105604H1.422665C1.147696-8.105604 1.135741-8.093649 1.06401-7.878456L.334745-5.726526C.32279-5.702615 .286924-5.571108 .286924-5.559153C.286924-5.499377 .334745-5.439601 .406476-5.439601C.502117-5.439601 .526027-5.487422 .573848-5.642839C1.075965-7.089415 1.327024-7.758904 2.917061-7.758904H3.718057C4.004981-7.758904 4.124533-7.758904 4.124533-7.627397C4.124533-7.591532 4.124533-7.567621 4.064757-7.352428L2.462765-.932503C2.343213-.466252 2.319303-.3467 1.052055-.3467C.753176-.3467 .669489-.3467 .669489-.119552C.669489 0 .800996 0 .860772 0C1.159651 0 1.470486-.02391 1.769365-.02391H3.634371C3.93325-.02391 4.25604 0 4.554919 0C4.686426 0 4.805978 0 4.805978-.227148C4.805978-.3467 4.722291-.3467 4.411457-.3467C3.335492-.3467 3.335492-.454296 3.335492-.633624C3.335492-.645579 3.335492-.729265 3.383313-.920548L4.985305-7.292653Z'/>
<path id='g0-85' d='M6.049315-2.749689C5.630884-1.075965 4.244085-.095641 3.120299-.095641C2.259527-.095641 1.673724-.669489 1.673724-1.661768C1.673724-1.709589 1.673724-2.068244 1.80523-2.594271L2.976837-7.292653C3.084433-7.699128 3.108344-7.81868 3.957161-7.81868C4.172354-7.81868 4.291905-7.81868 4.291905-8.033873C4.291905-8.16538 4.184309-8.16538 4.112578-8.16538C3.897385-8.16538 3.646326-8.141469 3.419178-8.141469H2.008468C1.78132-8.141469 1.530262-8.16538 1.303113-8.16538C1.219427-8.16538 1.075965-8.16538 1.075965-7.938232C1.075965-7.81868 1.159651-7.81868 1.3868-7.81868C2.10411-7.81868 2.10411-7.723039 2.10411-7.591532C2.10411-7.519801 2.020423-7.173101 1.960648-6.969863L.920548-2.785554C.884682-2.654047 .812951-2.331258 .812951-2.008468C.812951-.6934 1.75741 .251059 3.060523 .251059C4.267995 .251059 5.606974-.705355 6.216687-2.223661C6.300374-2.426899 6.40797-2.84533 6.479701-3.16812C6.599253-3.598506 6.850311-4.65056 6.933998-4.961395L7.388294-6.75467C7.543711-7.376339 7.639352-7.770859 8.691407-7.81868C8.787049-7.830635 8.834869-7.926276 8.834869-8.033873C8.834869-8.16538 8.727273-8.16538 8.679452-8.16538C8.51208-8.16538 8.296887-8.141469 8.129514-8.141469H7.567621C6.826401-8.141469 6.443836-8.16538 6.43188-8.16538C6.360149-8.16538 6.216687-8.16538 6.216687-7.938232C6.216687-7.81868 6.312329-7.81868 6.396015-7.81868C7.113325-7.79477 7.161146-7.519801 7.161146-7.304608C7.161146-7.197011 7.161146-7.161146 7.113325-6.993773L6.049315-2.749689Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -65.03376)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-83'/>
<use x='64.30859' y='65.753425' xlink:href='#g0-75'/>
<use x='75.12627' y='65.753425' xlink:href='#g0-73'/>
<use x='81.229052' y='65.753425' xlink:href='#g0-80'/>
<use x='90.40015' y='65.753425' xlink:href='#g0-80'/>
<use x='99.571249' y='65.753425' xlink:href='#g0-69'/>
<use x='108.937443' y='65.753425' xlink:href='#g0-68'/>
<use x='118.981918' y='65.753425' xlink:href='#g0-59'/>
<use x='124.226077' y='65.753425' xlink:href='#g0-73'/>
<use x='130.328859' y='65.753425' xlink:href='#g0-83'/>
<use x='138.224183' y='65.753425' xlink:href='#g0-73'/>
<use x='144.326965' y='65.753425' xlink:href='#g0-78'/>
<use x='154.949575' y='65.753425' xlink:href='#g0-70'/>
<use x='164.15319' y='65.753425' xlink:href='#g0-85'/>
<use x='173.352241' y='65.753425' xlink:href='#g0-78'/>
<use x='183.974851' y='65.753425' xlink:href='#g0-67'/>
<use x='193.208463' y='65.753425' xlink:href='#g0-84'/>
<use x='201.695299' y='65.753425' xlink:href='#g0-73'/>
<use x='207.798081' y='65.753425' xlink:href='#g0-79'/>
<use x='217.069329' y='65.753425' xlink:href='#g0-78'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

@@ -0,0 +1,90 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='437.92185pt' height='29.846635pt' viewBox='-.164645 -.240635 437.92185 29.846635'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-51' d='M2.199751-4.291905C1.996513-4.27995 1.948692-4.267995 1.948692-4.160399C1.948692-4.040847 2.008468-4.040847 2.223661-4.040847H2.773599C3.789788-4.040847 4.244085-3.203985 4.244085-2.056289C4.244085-.490162 3.431133-.071731 2.84533-.071731C2.271482-.071731 1.291158-.3467 .944458-1.135741C1.327024-1.075965 1.673724-1.291158 1.673724-1.721544C1.673724-2.068244 1.422665-2.307347 1.08792-2.307347C.800996-2.307347 .490162-2.139975 .490162-1.685679C.490162-.621669 1.554172 .251059 2.881196 .251059C4.303861 .251059 5.355915-.836862 5.355915-2.044334C5.355915-3.144209 4.471233-4.004981 3.323537-4.208219C4.363636-4.507098 5.033126-5.379826 5.033126-6.312329C5.033126-7.256787 4.052802-7.950187 2.893151-7.950187C1.697634-7.950187 .812951-7.220922 .812951-6.348194C.812951-5.869988 1.183562-5.774346 1.362889-5.774346C1.613948-5.774346 1.900872-5.953674 1.900872-6.312329C1.900872-6.694894 1.613948-6.862267 1.350934-6.862267C1.279203-6.862267 1.255293-6.862267 1.219427-6.850311C1.673724-7.663263 2.797509-7.663263 2.857285-7.663263C3.251806-7.663263 4.028892-7.483935 4.028892-6.312329C4.028892-6.085181 3.993026-5.415691 3.646326-4.901619C3.287671-4.375592 2.881196-4.339726 2.558406-4.327771L2.199751-4.291905Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -44.07 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g3-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g1-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g3-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g3-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g1-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g2-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g1-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g3-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g1-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g3-41'/>
<use x='126.857517' y='65.753425' xlink:href='#g3-43'/>
<use x='137.674513' y='65.753425' xlink:href='#g1-98'/>
<use x='142.651618' y='67.546688' xlink:href='#g2-49'/>
<use x='147.383933' y='65.753425' xlink:href='#g1-101'/>
<use x='152.809373' y='65.753425' xlink:href='#g3-40'/>
<use x='157.361699' y='65.753425' xlink:href='#g1-107'/>
<use x='165.563532' y='65.753425' xlink:href='#g0-0'/>
<use x='176.574357' y='65.753425' xlink:href='#g3-49'/>
<use x='182.427348' y='65.753425' xlink:href='#g3-41'/>
<use x='188.692017' y='65.753425' xlink:href='#g3-43'/>
<use x='199.508998' y='65.753425' xlink:href='#g1-98'/>
<use x='204.486103' y='67.546688' xlink:href='#g2-50'/>
<use x='209.218418' y='65.753425' xlink:href='#g1-101'/>
<use x='214.643858' y='65.753425' xlink:href='#g3-40'/>
<use x='219.196184' y='65.753425' xlink:href='#g1-107'/>
<use x='227.398032' y='65.753425' xlink:href='#g0-0'/>
<use x='238.408858' y='65.753425' xlink:href='#g3-50'/>
<use x='244.261848' y='65.753425' xlink:href='#g3-41'/>
<use x='250.526502' y='65.753425' xlink:href='#g3-43'/>
<use x='261.343498' y='65.753425' xlink:href='#g1-98'/>
<use x='266.320603' y='67.546688' xlink:href='#g2-51'/>
<use x='271.052918' y='65.753425' xlink:href='#g1-101'/>
<use x='276.478358' y='65.753425' xlink:href='#g3-40'/>
<use x='281.030684' y='65.753425' xlink:href='#g1-107'/>
<use x='289.232517' y='65.753425' xlink:href='#g0-0'/>
<use x='300.243343' y='65.753425' xlink:href='#g3-51'/>
<use x='306.096333' y='65.753425' xlink:href='#g3-41'/>
<use x='312.361003' y='65.753425' xlink:href='#g0-0'/>
<use x='323.371828' y='65.753425' xlink:href='#g1-97'/>
<use x='329.516773' y='67.546688' xlink:href='#g2-49'/>
<use x='334.249087' y='65.753425' xlink:href='#g1-117'/>
<use x='340.911527' y='65.753425' xlink:href='#g3-40'/>
<use x='345.463853' y='65.753425' xlink:href='#g1-107'/>
<use x='353.665701' y='65.753425' xlink:href='#g0-0'/>
<use x='364.676527' y='65.753425' xlink:href='#g3-49'/>
<use x='370.529517' y='65.753425' xlink:href='#g3-41'/>
<use x='376.794171' y='65.753425' xlink:href='#g0-0'/>
<use x='387.805012' y='65.753425' xlink:href='#g1-97'/>
<use x='393.949957' y='67.546688' xlink:href='#g2-50'/>
<use x='398.682271' y='65.753425' xlink:href='#g1-117'/>
<use x='405.344711' y='65.753425' xlink:href='#g3-40'/>
<use x='409.897037' y='65.753425' xlink:href='#g1-107'/>
<use x='418.09887' y='65.753425' xlink:href='#g0-0'/>
<use x='38.854296' y='80.199253' xlink:href='#g3-50'/>
<use x='44.707287' y='80.199253' xlink:href='#g3-41'/>
<use x='51.916276' y='80.199253' xlink:href='#g0-0'/>
<use x='63.871436' y='80.199253' xlink:href='#g1-97'/>
<use x='70.016381' y='81.992516' xlink:href='#g2-51'/>
<use x='74.748696' y='80.199253' xlink:href='#g1-117'/>
<use x='81.411135' y='80.199253' xlink:href='#g3-40'/>
<use x='85.963461' y='80.199253' xlink:href='#g1-107'/>
<use x='95.109628' y='80.199253' xlink:href='#g0-0'/>
<use x='107.064789' y='80.199253' xlink:href='#g3-51'/>
<use x='112.917779' y='80.199253' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@@ -0,0 +1,34 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='117.125976pt' height='13.522849pt' viewBox='-.239051 -.240635 117.125976 13.522849'>
<defs>
<path id='g1-48' d='M3.897385-2.542466C3.897385-3.395268 3.809714-3.913325 3.5467-4.423412C3.196015-5.124782 2.550436-5.300125 2.11208-5.300125C1.107846-5.300125 .74122-4.550934 .629639-4.327771C.342715-3.745953 .326775-2.956912 .326775-2.542466C.326775-2.016438 .350685-1.211457 .73325-.573848C1.099875 .01594 1.689664 .167372 2.11208 .167372C2.494645 .167372 3.180075 .047821 3.57858-.74122C3.873474-1.315068 3.897385-2.024408 3.897385-2.542466ZM2.11208-.055791C1.841096-.055791 1.291158-.183313 1.123786-1.020174C1.036115-1.474471 1.036115-2.223661 1.036115-2.638107C1.036115-3.188045 1.036115-3.745953 1.123786-4.184309C1.291158-4.99726 1.912827-5.076961 2.11208-5.076961C2.383064-5.076961 2.933001-4.941469 3.092403-4.216189C3.188045-3.777833 3.188045-3.180075 3.188045-2.638107C3.188045-2.16787 3.188045-1.45056 3.092403-1.004234C2.925031-.167372 2.375093-.055791 2.11208-.055791Z'/>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g0-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g0-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-117'/>
<use x='63.075707' y='65.753425' xlink:href='#g2-40'/>
<use x='67.628032' y='65.753425' xlink:href='#g0-107'/>
<use x='74.117537' y='65.753425' xlink:href='#g2-41'/>
<use x='81.990692' y='65.753425' xlink:href='#g2-61'/>
<use x='94.416173' y='65.753425' xlink:href='#g0-98'/>
<use x='99.393278' y='67.546688' xlink:href='#g1-48'/>
<use x='104.125593' y='65.753425' xlink:href='#g0-101'/>
<use x='109.551033' y='65.753425' xlink:href='#g2-40'/>
<use x='114.103359' y='65.753425' xlink:href='#g0-107'/>
<use x='120.592863' y='65.753425' xlink:href='#g2-41'/>
<use x='127.801852' y='65.753425' xlink:href='#g2-43'/>
<use x='139.563167' y='65.753425' xlink:href='#g0-118'/>
<use x='145.651386' y='65.753425' xlink:href='#g2-40'/>
<use x='150.203711' y='65.753425' xlink:href='#g0-107'/>
<use x='156.693216' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,80 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='417.877543pt' height='13.522849pt' viewBox='-.239051 -.240635 417.877543 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-97' d='M3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665ZM4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.944458 4.27995-1.075965 4.387547-1.542217C4.471233-1.841096 4.531009-2.10411 4.62665-2.450809C5.068991-4.244085 5.176588-4.674471 5.176588-4.746202C5.176588-4.913574 5.045081-5.045081 4.865753-5.045081C4.483188-5.045081 4.387547-4.62665 4.363636-4.483188Z'/>
<path id='g1-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g1-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.501486' y='65.753425' xlink:href='#g3-40'/>
<use x='67.053812' y='65.753425' xlink:href='#g1-107'/>
<use x='74.558232' y='65.753425' xlink:href='#g3-43'/>
<use x='84.677816' y='65.753425' xlink:href='#g3-49'/>
<use x='90.530806' y='65.753425' xlink:href='#g3-41'/>
<use x='98.403961' y='65.753425' xlink:href='#g3-61'/>
<use x='110.829442' y='65.753425' xlink:href='#g1-98'/>
<use x='115.806547' y='67.546688' xlink:href='#g2-49'/>
<use x='120.538862' y='65.753425' xlink:href='#g1-101'/>
<use x='125.964302' y='65.753425' xlink:href='#g3-40'/>
<use x='130.516628' y='65.753425' xlink:href='#g1-107'/>
<use x='137.006132' y='65.753425' xlink:href='#g3-41'/>
<use x='142.573374' y='65.753425' xlink:href='#g3-43'/>
<use x='152.692943' y='65.753425' xlink:href='#g1-98'/>
<use x='157.670048' y='67.546688' xlink:href='#g2-50'/>
<use x='162.402363' y='65.753425' xlink:href='#g1-101'/>
<use x='167.827803' y='65.753425' xlink:href='#g3-40'/>
<use x='172.380129' y='65.753425' xlink:href='#g1-107'/>
<use x='179.884549' y='65.753425' xlink:href='#g0-0'/>
<use x='190.197978' y='65.753425' xlink:href='#g3-49'/>
<use x='196.050968' y='65.753425' xlink:href='#g3-41'/>
<use x='201.618211' y='65.753425' xlink:href='#g3-43'/>
<use x='211.737779' y='65.753425' xlink:href='#g1-98'/>
<use x='216.714884' y='67.546688' xlink:href='#g2-51'/>
<use x='221.447199' y='65.753425' xlink:href='#g1-101'/>
<use x='226.872639' y='65.753425' xlink:href='#g3-40'/>
<use x='231.424965' y='65.753425' xlink:href='#g1-107'/>
<use x='238.929401' y='65.753425' xlink:href='#g0-0'/>
<use x='249.242814' y='65.753425' xlink:href='#g3-50'/>
<use x='255.095805' y='65.753425' xlink:href='#g3-41'/>
<use x='260.663047' y='65.753425' xlink:href='#g0-0'/>
<use x='270.976476' y='65.753425' xlink:href='#g1-97'/>
<use x='277.12142' y='67.546688' xlink:href='#g2-49'/>
<use x='281.853735' y='65.753425' xlink:href='#g1-117'/>
<use x='288.516175' y='65.753425' xlink:href='#g3-40'/>
<use x='293.0685' y='65.753425' xlink:href='#g1-107'/>
<use x='299.558004' y='65.753425' xlink:href='#g3-41'/>
<use x='305.125247' y='65.753425' xlink:href='#g0-0'/>
<use x='315.43866' y='65.753425' xlink:href='#g1-97'/>
<use x='321.583605' y='67.546688' xlink:href='#g2-50'/>
<use x='326.315919' y='65.753425' xlink:href='#g1-117'/>
<use x='332.978359' y='65.753425' xlink:href='#g3-40'/>
<use x='337.530685' y='65.753425' xlink:href='#g1-107'/>
<use x='345.035105' y='65.753425' xlink:href='#g0-0'/>
<use x='355.348534' y='65.753425' xlink:href='#g3-49'/>
<use x='361.201525' y='65.753425' xlink:href='#g3-41'/>
<use x='366.768767' y='65.753425' xlink:href='#g0-0'/>
<use x='377.082181' y='65.753425' xlink:href='#g1-97'/>
<use x='383.227125' y='67.546688' xlink:href='#g2-51'/>
<use x='387.95944' y='65.753425' xlink:href='#g1-117'/>
<use x='394.621879' y='65.753425' xlink:href='#g3-40'/>
<use x='399.174205' y='65.753425' xlink:href='#g1-107'/>
<use x='406.678641' y='65.753425' xlink:href='#g0-0'/>
<use x='416.992054' y='65.753425' xlink:href='#g3-50'/>
<use x='422.845045' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

@@ -0,0 +1,57 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='162.5433pt' height='40.514511pt' viewBox='-.239051 -.22797 162.5433 40.514511'>
<defs>
<path id='g5-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g3-11' d='M4.064757-1.115816C4.805978-1.928767 5.068991-2.964882 5.068991-3.028643C5.068991-3.100374 5.021171-3.132254 4.94944-3.132254C4.845828-3.132254 4.837858-3.100374 4.790037-2.933001C4.566874-2.12005 4.088667-1.498381 4.064757-1.498381C4.048817-1.498381 4.048817-1.697634 4.048817-1.825156C4.032877-3.227895 3.124284-3.514819 2.582316-3.514819C1.458531-3.514819 .350685-2.422914 .350685-1.299128C.350685-.510087 .900623 .079701 1.745455 .079701C2.303362 .079701 2.893151-.119552 3.52279-.589788C3.698132 .039851 4.160399 .079701 4.303861 .079701C4.758157 .079701 5.021171-.326775 5.021171-.478207C5.021171-.573848 4.925529-.573848 4.901619-.573848C4.813948-.573848 4.798007-.549938 4.774097-.494147C4.646575-.159402 4.375592-.143462 4.335741-.143462C4.224159-.143462 4.096638-.143462 4.064757-1.115816ZM3.466999-.852802C2.901121-.342715 2.231631-.143462 1.769365-.143462C1.354919-.143462 .996264-.382565 .996264-1.020174C.996264-1.299128 1.123786-2.12005 1.498381-2.654047C1.817186-3.100374 2.247572-3.291656 2.574346-3.291656C3.012702-3.291656 3.259776-2.980822 3.363387-2.494645C3.482939-1.952677 3.419178-1.315068 3.466999-.852802Z'/>
<path id='g2-20' d='M8.069738-7.10137C8.201245-7.161146 8.296887-7.220922 8.296887-7.364384C8.296887-7.49589 8.201245-7.603487 8.057783-7.603487C7.998007-7.603487 7.890411-7.555666 7.84259-7.531756L1.231382-4.411457C1.028144-4.315816 .992279-4.23213 .992279-4.136488C.992279-4.028892 1.06401-3.945205 1.231382-3.873474L7.84259-.765131C7.998007-.681445 8.021918-.681445 8.057783-.681445C8.18929-.681445 8.296887-.789041 8.296887-.920548C8.296887-1.028144 8.249066-1.099875 8.045828-1.195517L1.793275-4.136488L8.069738-7.10137ZM7.878456 1.637858C8.081694 1.637858 8.296887 1.637858 8.296887 1.398755S8.045828 1.159651 7.866501 1.159651H1.422665C1.243337 1.159651 .992279 1.159651 .992279 1.398755S1.207472 1.637858 1.41071 1.637858H7.878456Z'/>
<path id='g2-21' d='M8.057783-3.873474C8.225156-3.945205 8.296887-4.028892 8.296887-4.136488C8.296887-4.25604 8.249066-4.327771 8.057783-4.411457L1.470486-7.519801C1.303113-7.603487 1.255293-7.603487 1.231382-7.603487C1.08792-7.603487 .992279-7.49589 .992279-7.364384C.992279-7.220922 1.08792-7.161146 1.219427-7.10137L7.49589-4.148443L1.243337-1.195517C1.004234-1.08792 .992279-.992279 .992279-.920548C.992279-.789041 1.099875-.681445 1.231382-.681445C1.267248-.681445 1.291158-.681445 1.446575-.765131L8.057783-3.873474ZM7.878456 1.637858C8.081694 1.637858 8.296887 1.637858 8.296887 1.398755S8.045828 1.159651 7.866501 1.159651H1.422665C1.243337 1.159651 .992279 1.159651 .992279 1.398755S1.207472 1.637858 1.41071 1.637858H7.878456Z'/>
<path id='g2-106' d='M1.900872-8.53599C1.900872-8.751183 1.900872-8.966376 1.661768-8.966376S1.422665-8.751183 1.422665-8.53599V2.558406C1.422665 2.773599 1.422665 2.988792 1.661768 2.988792S1.900872 2.773599 1.900872 2.558406V-8.53599Z'/>
<path id='g1-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g0-40' d='M5.391781 21.842092C5.391781 20.527024 4.483188 18.5066 2.402989 17.454545C3.694147 16.761146 5.236364 15.362391 5.379826 13.126775L5.391781 13.055044V4.770112C5.391781 3.789788 5.391781 3.574595 5.487422 3.120299C5.702615 2.163885 6.276463 .980324 7.79477 .083686C7.890411 .02391 7.902366 .011955 7.902366-.203238C7.902366-.466252 7.890411-.478207 7.627397-.478207C7.412204-.478207 7.388294-.478207 7.065504-.286924C4.387547 1.231382 4.23213 3.455044 4.23213 3.873474V12.373599C4.23213 13.234371 4.23213 14.20274 3.610461 15.302615C3.060523 16.282939 2.414944 16.773101 1.900872 17.119801C1.733499 17.227397 1.721544 17.239352 1.721544 17.44259C1.721544 17.657783 1.733499 17.669738 1.829141 17.729514C2.84533 18.399004 3.93325 19.463014 4.196264 21.411706C4.23213 21.67472 4.23213 21.69863 4.23213 21.842092V31.023661C4.23213 31.99203 4.829888 34.000498 7.137235 35.219925C7.412204 35.375342 7.436115 35.375342 7.627397 35.375342C7.890411 35.375342 7.902366 35.363387 7.902366 35.100374C7.902366 34.885181 7.890411 34.873225 7.84259 34.849315C7.328518 34.526526 5.762391 33.582067 5.439601 31.501868C5.391781 31.191034 5.391781 31.167123 5.391781 31.011706V21.842092Z'/>
<path id='g6-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g6-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g6-58' d='M2.199751-4.578829C2.199751-4.901619 1.924782-5.152677 1.625903-5.152677C1.279203-5.152677 1.0401-4.877709 1.0401-4.578829C1.0401-4.220174 1.338979-3.993026 1.613948-3.993026C1.936737-3.993026 2.199751-4.244085 2.199751-4.578829ZM2.199751-.585803C2.199751-.908593 1.924782-1.159651 1.625903-1.159651C1.279203-1.159651 1.0401-.884682 1.0401-.585803C1.0401-.227148 1.338979 0 1.613948 0C1.936737 0 2.199751-.251059 2.199751-.585803Z'/>
<path id='g6-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g4-14' d='M3.108344-5.212453C1.578082-4.841843 .478207-3.251806 .478207-1.853051C.478207-.573848 1.338979 .143462 2.295392 .143462C3.706102 .143462 4.662516-1.793275 4.662516-3.383313C4.662516-4.459278 4.160399-5.116812 3.861519-5.511333C3.419178-6.073225 2.701868-6.993773 2.701868-7.567621C2.701868-7.770859 2.857285-8.129514 3.383313-8.129514C3.753923-8.129514 3.981071-7.998007 4.339726-7.79477C4.447323-7.723039 4.722291-7.567621 4.877709-7.567621C5.128767-7.567621 5.308095-7.81868 5.308095-8.009963C5.308095-8.237111 5.128767-8.272976 4.710336-8.368618C4.148443-8.488169 3.981071-8.488169 3.777833-8.488169S2.402989-8.488169 2.402989-7.268742C2.402989-6.682939 2.701868-6.001494 3.108344-5.212453ZM3.239851-4.985305C3.694147-4.040847 3.873474-3.682192 3.873474-2.905106C3.873474-1.972603 3.371357-.095641 2.307347-.095641C1.841096-.095641 1.171606-.406476 1.171606-1.518306C1.171606-2.295392 1.613948-4.554919 3.239851-4.985305Z'/>
<path id='g4-103' d='M4.040847-1.518306C3.993026-1.327024 3.969116-1.279203 3.813699-1.099875C3.323537-.466252 2.82142-.239103 2.450809-.239103C2.056289-.239103 1.685679-.549938 1.685679-1.374844C1.685679-2.008468 2.044334-3.347447 2.307347-3.88543C2.654047-4.554919 3.19203-5.033126 3.694147-5.033126C4.483188-5.033126 4.638605-4.052802 4.638605-3.981071L4.60274-3.813699L4.040847-1.518306ZM4.782067-4.483188C4.62665-4.829888 4.291905-5.272229 3.694147-5.272229C2.391034-5.272229 .908593-3.634371 .908593-1.853051C.908593-.609714 1.661768 0 2.426899 0C3.060523 0 3.622416-.502117 3.837609-.74122L3.574595 .334745C3.407223 .992279 3.335492 1.291158 2.905106 1.709589C2.414944 2.199751 1.960648 2.199751 1.697634 2.199751C1.338979 2.199751 1.0401 2.175841 .74122 2.080199C1.123786 1.972603 1.219427 1.637858 1.219427 1.506351C1.219427 1.315068 1.075965 1.123786 .812951 1.123786C.526027 1.123786 .215193 1.362889 .215193 1.75741C.215193 2.247572 .705355 2.438854 1.721544 2.438854C3.263761 2.438854 4.064757 1.446575 4.220174 .800996L5.547198-4.554919C5.583064-4.698381 5.583064-4.722291 5.583064-4.746202C5.583064-4.913574 5.451557-5.045081 5.272229-5.045081C4.985305-5.045081 4.817933-4.805978 4.782067-4.483188Z'/>
<path id='g4-105' d='M3.383313-1.709589C3.383313-1.769365 3.335492-1.817186 3.263761-1.817186C3.156164-1.817186 3.144209-1.78132 3.084433-1.578082C2.773599-.490162 2.283437-.119552 1.888917-.119552C1.745455-.119552 1.578082-.155417 1.578082-.514072C1.578082-.836862 1.721544-1.195517 1.853051-1.554172L2.689913-3.777833C2.725778-3.873474 2.809465-4.088667 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 1.984558-3.93325 1.888917-3.670237L1.052055-1.446575C.980324-1.255293 .908593-1.06401 .908593-.848817C.908593-.310834 1.279203 .119552 1.853051 .119552C2.952927 .119552 3.383313-1.625903 3.383313-1.709589ZM3.287671-7.460025C3.287671-7.639352 3.144209-7.854545 2.881196-7.854545C2.606227-7.854545 2.295392-7.591532 2.295392-7.280697C2.295392-6.981818 2.546451-6.886177 2.689913-6.886177C3.012702-6.886177 3.287671-7.197011 3.287671-7.460025Z'/>
<path id='g4-110' d='M2.462765-3.502864C2.486675-3.574595 2.785554-4.172354 3.227895-4.554919C3.53873-4.841843 3.945205-5.033126 4.411457-5.033126C4.889664-5.033126 5.057036-4.674471 5.057036-4.196264C5.057036-3.514819 4.566874-2.15193 4.327771-1.506351C4.220174-1.219427 4.160399-1.06401 4.160399-.848817C4.160399-.310834 4.531009 .119552 5.104857 .119552C6.216687 .119552 6.635118-1.637858 6.635118-1.709589C6.635118-1.769365 6.587298-1.817186 6.515567-1.817186C6.40797-1.817186 6.396015-1.78132 6.336239-1.578082C6.06127-.597758 5.606974-.119552 5.140722-.119552C5.021171-.119552 4.829888-.131507 4.829888-.514072C4.829888-.812951 4.961395-1.171606 5.033126-1.338979C5.272229-1.996513 5.774346-3.335492 5.774346-4.016936C5.774346-4.734247 5.355915-5.272229 4.447323-5.272229C3.383313-5.272229 2.82142-4.519054 2.606227-4.220174C2.570361-4.901619 2.080199-5.272229 1.554172-5.272229C1.171606-5.272229 .908593-5.045081 .705355-4.638605C.490162-4.208219 .32279-3.490909 .32279-3.443088S.37061-3.335492 .454296-3.335492C.549938-3.335492 .561893-3.347447 .633624-3.622416C.824907-4.351681 1.0401-5.033126 1.518306-5.033126C1.793275-5.033126 1.888917-4.841843 1.888917-4.483188C1.888917-4.220174 1.769365-3.753923 1.685679-3.383313L1.350934-2.092154C1.303113-1.865006 1.171606-1.327024 1.111831-1.111831C1.028144-.800996 .896638-.239103 .896638-.179328C.896638-.011955 1.028144 .119552 1.207472 .119552C1.350934 .119552 1.518306 .047821 1.613948-.131507C1.637858-.191283 1.745455-.609714 1.80523-.848817L2.068244-1.924782L2.462765-3.502864Z'/>
<path id='g4-115' d='M2.725778-2.391034C2.929016-2.355168 3.251806-2.283437 3.323537-2.271482C3.478954-2.223661 4.016936-2.032379 4.016936-1.458531C4.016936-1.08792 3.682192-.119552 2.295392-.119552C2.044334-.119552 1.147696-.155417 .908593-.812951C1.3868-.753176 1.625903-1.123786 1.625903-1.3868C1.625903-1.637858 1.458531-1.769365 1.219427-1.769365C.956413-1.769365 .609714-1.566127 .609714-1.028144C.609714-.32279 1.327024 .119552 2.283437 .119552C4.100623 .119552 4.638605-1.219427 4.638605-1.841096C4.638605-2.020423 4.638605-2.355168 4.25604-2.737733C3.957161-3.024658 3.670237-3.084433 3.024658-3.21594C2.701868-3.287671 2.187796-3.395268 2.187796-3.93325C2.187796-4.172354 2.402989-5.033126 3.53873-5.033126C4.040847-5.033126 4.531009-4.841843 4.65056-4.411457C4.124533-4.411457 4.100623-3.957161 4.100623-3.945205C4.100623-3.694147 4.327771-3.622416 4.435367-3.622416C4.60274-3.622416 4.937484-3.753923 4.937484-4.25604S4.483188-5.272229 3.550685-5.272229C1.984558-5.272229 1.566127-4.040847 1.566127-3.550685C1.566127-2.642092 2.450809-2.450809 2.725778-2.391034Z'/>
<path id='g4-120' d='M5.66675-4.877709C5.284184-4.805978 5.140722-4.519054 5.140722-4.291905C5.140722-4.004981 5.36787-3.90934 5.535243-3.90934C5.893898-3.90934 6.144956-4.220174 6.144956-4.542964C6.144956-5.045081 5.571108-5.272229 5.068991-5.272229C4.339726-5.272229 3.93325-4.554919 3.825654-4.327771C3.550685-5.224408 2.809465-5.272229 2.594271-5.272229C1.374844-5.272229 .729265-3.706102 .729265-3.443088C.729265-3.395268 .777086-3.335492 .860772-3.335492C.956413-3.335492 .980324-3.407223 1.004234-3.455044C1.41071-4.782067 2.211706-5.033126 2.558406-5.033126C3.096389-5.033126 3.203985-4.531009 3.203985-4.244085C3.203985-3.981071 3.132254-3.706102 2.988792-3.132254L2.582316-1.494396C2.402989-.777086 2.056289-.119552 1.422665-.119552C1.362889-.119552 1.06401-.119552 .812951-.274969C1.243337-.358655 1.338979-.71731 1.338979-.860772C1.338979-1.099875 1.159651-1.243337 .932503-1.243337C.645579-1.243337 .334745-.992279 .334745-.609714C.334745-.107597 .896638 .119552 1.41071 .119552C1.984558 .119552 2.391034-.334745 2.642092-.824907C2.833375-.119552 3.431133 .119552 3.873474 .119552C5.092902 .119552 5.738481-1.446575 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.75741 5.463512-1.661768C5.140722-.609714 4.447323-.119552 3.90934-.119552C3.490909-.119552 3.263761-.430386 3.263761-.920548C3.263761-1.183562 3.311582-1.374844 3.502864-2.163885L3.921295-3.789788C4.100623-4.507098 4.507098-5.033126 5.057036-5.033126C5.080946-5.033126 5.415691-5.033126 5.66675-4.877709Z'/>
<path id='g4-121' d='M3.144209 1.338979C2.82142 1.793275 2.355168 2.199751 1.769365 2.199751C1.625903 2.199751 1.052055 2.175841 .872727 1.625903C.908593 1.637858 .968369 1.637858 .992279 1.637858C1.350934 1.637858 1.590037 1.327024 1.590037 1.052055S1.362889 .681445 1.183562 .681445C.992279 .681445 .573848 .824907 .573848 1.41071C.573848 2.020423 1.08792 2.438854 1.769365 2.438854C2.964882 2.438854 4.172354 1.338979 4.507098 .011955L5.678705-4.65056C5.69066-4.710336 5.71457-4.782067 5.71457-4.853798C5.71457-5.033126 5.571108-5.152677 5.391781-5.152677C5.284184-5.152677 5.033126-5.104857 4.937484-4.746202L4.052802-1.231382C3.993026-1.016189 3.993026-.992279 3.897385-.860772C3.658281-.526027 3.263761-.119552 2.689913-.119552C2.020423-.119552 1.960648-.777086 1.960648-1.099875C1.960648-1.78132 2.283437-2.701868 2.606227-3.56264C2.737733-3.90934 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.243337-1.960648 1.243337-1.566127 1.243337-1.279203C1.243337-.143462 2.056289 .119552 2.654047 .119552C3.000747 .119552 3.431133 .011955 3.849564-.430386L3.861519-.418431C3.682192 .286924 3.56264 .753176 3.144209 1.338979Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -61.019978)'>
<use x='56.413267' y='74.719968' xlink:href='#g4-121'/>
<use x='65.870748' y='74.719968' xlink:href='#g6-61'/>
<use x='78.296229' y='54.276444' xlink:href='#g0-40'/>
<use x='87.926832' y='66.530661' xlink:href='#g2-106'/>
<use x='91.247722' y='66.530661' xlink:href='#g4-120'/>
<use x='97.899809' y='66.530661' xlink:href='#g2-106'/>
<use x='101.220699' y='60.719126' xlink:href='#g3-11'/>
<use x='109.150268' y='66.530661' xlink:href='#g4-115'/>
<use x='114.664274' y='66.530661' xlink:href='#g4-105'/>
<use x='118.657706' y='66.530661' xlink:href='#g4-103'/>
<use x='124.691962' y='66.530661' xlink:href='#g4-110'/>
<use x='131.679568' y='66.530661' xlink:href='#g6-40'/>
<use x='136.231894' y='66.530661' xlink:href='#g4-120'/>
<use x='142.883981' y='66.530661' xlink:href='#g6-41'/>
<use x='159.142287' y='66.530661' xlink:href='#g6-58'/>
<use x='165.714778' y='66.530661' xlink:href='#g2-106'/>
<use x='169.035668' y='66.530661' xlink:href='#g4-120'/>
<use x='175.687755' y='66.530661' xlink:href='#g2-106'/>
<use x='182.329475' y='66.530661' xlink:href='#g2-21'/>
<use x='194.948801' y='66.530661' xlink:href='#g4-14'/>
<use x='87.926832' y='83.865573' xlink:href='#g4-120'/>
<use x='94.578919' y='83.865573' xlink:href='#g4-14'/>
<use x='100.211875' y='79.527136' xlink:href='#g3-11'/>
<use x='105.650814' y='79.527136' xlink:href='#g1-0'/>
<use x='112.237321' y='79.527136' xlink:href='#g5-49'/>
<use x='159.142287' y='83.865573' xlink:href='#g6-58'/>
<use x='165.714778' y='83.865573' xlink:href='#g2-106'/>
<use x='169.035668' y='83.865573' xlink:href='#g4-120'/>
<use x='175.687755' y='83.865573' xlink:href='#g2-106'/>
<use x='182.329475' y='83.865573' xlink:href='#g2-20'/>
<use x='194.948801' y='83.865573' xlink:href='#g4-14'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@@ -0,0 +1,20 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='49.369226pt' height='14.45803pt' viewBox='-.239051 -.235254 49.369226 14.45803'>
<defs>
<path id='g0-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g1-11' d='M4.064757-1.115816C4.805978-1.928767 5.068991-2.964882 5.068991-3.028643C5.068991-3.100374 5.021171-3.132254 4.94944-3.132254C4.845828-3.132254 4.837858-3.100374 4.790037-2.933001C4.566874-2.12005 4.088667-1.498381 4.064757-1.498381C4.048817-1.498381 4.048817-1.697634 4.048817-1.825156C4.032877-3.227895 3.124284-3.514819 2.582316-3.514819C1.458531-3.514819 .350685-2.422914 .350685-1.299128C.350685-.510087 .900623 .079701 1.745455 .079701C2.303362 .079701 2.893151-.119552 3.52279-.589788C3.698132 .039851 4.160399 .079701 4.303861 .079701C4.758157 .079701 5.021171-.326775 5.021171-.478207C5.021171-.573848 4.925529-.573848 4.901619-.573848C4.813948-.573848 4.798007-.549938 4.774097-.494147C4.646575-.159402 4.375592-.143462 4.335741-.143462C4.224159-.143462 4.096638-.143462 4.064757-1.115816ZM3.466999-.852802C2.901121-.342715 2.231631-.143462 1.769365-.143462C1.354919-.143462 .996264-.382565 .996264-1.020174C.996264-1.299128 1.123786-2.12005 1.498381-2.654047C1.817186-3.100374 2.247572-3.291656 2.574346-3.291656C3.012702-3.291656 3.259776-2.980822 3.363387-2.494645C3.482939-1.952677 3.419178-1.315068 3.466999-.852802Z'/>
<path id='g3-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g4-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-13' d='M4.519054-1.458531C4.495143-2.044334 4.471233-2.964882 4.016936-4.040847C3.777833-4.638605 3.371357-5.272229 2.49863-5.272229C1.028144-5.272229 .227148-3.395268 .227148-3.084433C.227148-2.976837 .310834-2.976837 .3467-2.976837C.454296-2.976837 .454296-3.000747 .514072-3.156164C.765131-3.897385 1.530262-4.483188 2.355168-4.483188C4.016936-4.483188 4.25604-2.630137 4.25604-1.446575C4.25604-.6934 4.172354-.442341 4.100623-.203238C3.873474 .537983 3.478954 2.020423 3.478954 2.355168C3.478954 2.450809 3.514819 2.558406 3.610461 2.558406C3.789788 2.558406 3.897385 2.163885 4.028892 1.685679C4.315816 .633624 4.387547 .107597 4.447323-.37061C4.483188-.657534 5.164633-2.630137 6.109091-4.507098C6.192777-4.698381 6.360149-5.021171 6.360149-5.057036C6.360149-5.068991 6.348194-5.152677 6.240598-5.152677C6.216687-5.152677 6.156912-5.152677 6.133001-5.104857C6.109091-5.080946 5.69066-4.267995 5.332005-3.455044C5.152677-3.048568 4.913574-2.510585 4.519054-1.458531Z'/>
<path id='g2-14' d='M3.108344-5.212453C1.578082-4.841843 .478207-3.251806 .478207-1.853051C.478207-.573848 1.338979 .143462 2.295392 .143462C3.706102 .143462 4.662516-1.793275 4.662516-3.383313C4.662516-4.459278 4.160399-5.116812 3.861519-5.511333C3.419178-6.073225 2.701868-6.993773 2.701868-7.567621C2.701868-7.770859 2.857285-8.129514 3.383313-8.129514C3.753923-8.129514 3.981071-7.998007 4.339726-7.79477C4.447323-7.723039 4.722291-7.567621 4.877709-7.567621C5.128767-7.567621 5.308095-7.81868 5.308095-8.009963C5.308095-8.237111 5.128767-8.272976 4.710336-8.368618C4.148443-8.488169 3.981071-8.488169 3.777833-8.488169S2.402989-8.488169 2.402989-7.268742C2.402989-6.682939 2.701868-6.001494 3.108344-5.212453ZM3.239851-4.985305C3.694147-4.040847 3.873474-3.682192 3.873474-2.905106C3.873474-1.972603 3.371357-.095641 2.307347-.095641C1.841096-.095641 1.171606-.406476 1.171606-1.518306C1.171606-2.295392 1.613948-4.554919 3.239851-4.985305Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -62.969593)'>
<use x='56.413267' y='65.753425' xlink:href='#g2-13'/>
<use x='66.456325' y='65.753425' xlink:href='#g4-61'/>
<use x='78.881806' y='65.753425' xlink:href='#g2-14'/>
<use x='84.514761' y='60.817239' xlink:href='#g1-11'/>
<use x='89.953701' y='60.817239' xlink:href='#g0-0'/>
<use x='96.540207' y='60.817239' xlink:href='#g3-49'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

@@ -0,0 +1,34 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='96.263076pt' height='13.522849pt' viewBox='-.239051 -.240635 96.263076 13.522849'>
<defs>
<path id='g1-11' d='M4.064757-1.115816C4.805978-1.928767 5.068991-2.964882 5.068991-3.028643C5.068991-3.100374 5.021171-3.132254 4.94944-3.132254C4.845828-3.132254 4.837858-3.100374 4.790037-2.933001C4.566874-2.12005 4.088667-1.498381 4.064757-1.498381C4.048817-1.498381 4.048817-1.697634 4.048817-1.825156C4.032877-3.227895 3.124284-3.514819 2.582316-3.514819C1.458531-3.514819 .350685-2.422914 .350685-1.299128C.350685-.510087 .900623 .079701 1.745455 .079701C2.303362 .079701 2.893151-.119552 3.52279-.589788C3.698132 .039851 4.160399 .079701 4.303861 .079701C4.758157 .079701 5.021171-.326775 5.021171-.478207C5.021171-.573848 4.925529-.573848 4.901619-.573848C4.813948-.573848 4.798007-.549938 4.774097-.494147C4.646575-.159402 4.375592-.143462 4.335741-.143462C4.224159-.143462 4.096638-.143462 4.064757-1.115816ZM3.466999-.852802C2.901121-.342715 2.231631-.143462 1.769365-.143462C1.354919-.143462 .996264-.382565 .996264-1.020174C.996264-1.299128 1.123786-2.12005 1.498381-2.654047C1.817186-3.100374 2.247572-3.291656 2.574346-3.291656C3.012702-3.291656 3.259776-2.980822 3.363387-2.494645C3.482939-1.952677 3.419178-1.315068 3.466999-.852802Z'/>
<path id='g0-106' d='M1.900872-8.53599C1.900872-8.751183 1.900872-8.966376 1.661768-8.966376S1.422665-8.751183 1.422665-8.53599V2.558406C1.422665 2.773599 1.422665 2.988792 1.661768 2.988792S1.900872 2.773599 1.900872 2.558406V-8.53599Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-98' d='M2.761644-7.998007C2.773599-8.045828 2.797509-8.117559 2.797509-8.177335C2.797509-8.296887 2.677958-8.296887 2.654047-8.296887C2.642092-8.296887 2.211706-8.261021 1.996513-8.237111C1.793275-8.225156 1.613948-8.201245 1.398755-8.18929C1.111831-8.16538 1.028144-8.153425 1.028144-7.938232C1.028144-7.81868 1.147696-7.81868 1.267248-7.81868C1.876961-7.81868 1.876961-7.711083 1.876961-7.591532C1.876961-7.507846 1.78132-7.161146 1.733499-6.945953L1.446575-5.798257C1.327024-5.32005 .645579-2.606227 .597758-2.391034C.537983-2.092154 .537983-1.888917 .537983-1.733499C.537983-.514072 1.219427 .119552 1.996513 .119552C3.383313 .119552 4.817933-1.661768 4.817933-3.395268C4.817933-4.495143 4.196264-5.272229 3.299626-5.272229C2.677958-5.272229 2.116065-4.758157 1.888917-4.519054L2.761644-7.998007ZM2.008468-.119552C1.625903-.119552 1.207472-.406476 1.207472-1.338979C1.207472-1.733499 1.243337-1.960648 1.458531-2.797509C1.494396-2.952927 1.685679-3.718057 1.733499-3.873474C1.75741-3.969116 2.462765-5.033126 3.275716-5.033126C3.801743-5.033126 4.040847-4.507098 4.040847-3.88543C4.040847-3.311582 3.706102-1.960648 3.407223-1.338979C3.108344-.6934 2.558406-.119552 2.008468-.119552Z'/>
<path id='g2-103' d='M4.040847-1.518306C3.993026-1.327024 3.969116-1.279203 3.813699-1.099875C3.323537-.466252 2.82142-.239103 2.450809-.239103C2.056289-.239103 1.685679-.549938 1.685679-1.374844C1.685679-2.008468 2.044334-3.347447 2.307347-3.88543C2.654047-4.554919 3.19203-5.033126 3.694147-5.033126C4.483188-5.033126 4.638605-4.052802 4.638605-3.981071L4.60274-3.813699L4.040847-1.518306ZM4.782067-4.483188C4.62665-4.829888 4.291905-5.272229 3.694147-5.272229C2.391034-5.272229 .908593-3.634371 .908593-1.853051C.908593-.609714 1.661768 0 2.426899 0C3.060523 0 3.622416-.502117 3.837609-.74122L3.574595 .334745C3.407223 .992279 3.335492 1.291158 2.905106 1.709589C2.414944 2.199751 1.960648 2.199751 1.697634 2.199751C1.338979 2.199751 1.0401 2.175841 .74122 2.080199C1.123786 1.972603 1.219427 1.637858 1.219427 1.506351C1.219427 1.315068 1.075965 1.123786 .812951 1.123786C.526027 1.123786 .215193 1.362889 .215193 1.75741C.215193 2.247572 .705355 2.438854 1.721544 2.438854C3.263761 2.438854 4.064757 1.446575 4.220174 .800996L5.547198-4.554919C5.583064-4.698381 5.583064-4.722291 5.583064-4.746202C5.583064-4.913574 5.451557-5.045081 5.272229-5.045081C4.985305-5.045081 4.817933-4.805978 4.782067-4.483188Z'/>
<path id='g2-105' d='M3.383313-1.709589C3.383313-1.769365 3.335492-1.817186 3.263761-1.817186C3.156164-1.817186 3.144209-1.78132 3.084433-1.578082C2.773599-.490162 2.283437-.119552 1.888917-.119552C1.745455-.119552 1.578082-.155417 1.578082-.514072C1.578082-.836862 1.721544-1.195517 1.853051-1.554172L2.689913-3.777833C2.725778-3.873474 2.809465-4.088667 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 1.984558-3.93325 1.888917-3.670237L1.052055-1.446575C.980324-1.255293 .908593-1.06401 .908593-.848817C.908593-.310834 1.279203 .119552 1.853051 .119552C2.952927 .119552 3.383313-1.625903 3.383313-1.709589ZM3.287671-7.460025C3.287671-7.639352 3.144209-7.854545 2.881196-7.854545C2.606227-7.854545 2.295392-7.591532 2.295392-7.280697C2.295392-6.981818 2.546451-6.886177 2.689913-6.886177C3.012702-6.886177 3.287671-7.197011 3.287671-7.460025Z'/>
<path id='g2-110' d='M2.462765-3.502864C2.486675-3.574595 2.785554-4.172354 3.227895-4.554919C3.53873-4.841843 3.945205-5.033126 4.411457-5.033126C4.889664-5.033126 5.057036-4.674471 5.057036-4.196264C5.057036-3.514819 4.566874-2.15193 4.327771-1.506351C4.220174-1.219427 4.160399-1.06401 4.160399-.848817C4.160399-.310834 4.531009 .119552 5.104857 .119552C6.216687 .119552 6.635118-1.637858 6.635118-1.709589C6.635118-1.769365 6.587298-1.817186 6.515567-1.817186C6.40797-1.817186 6.396015-1.78132 6.336239-1.578082C6.06127-.597758 5.606974-.119552 5.140722-.119552C5.021171-.119552 4.829888-.131507 4.829888-.514072C4.829888-.812951 4.961395-1.171606 5.033126-1.338979C5.272229-1.996513 5.774346-3.335492 5.774346-4.016936C5.774346-4.734247 5.355915-5.272229 4.447323-5.272229C3.383313-5.272229 2.82142-4.519054 2.606227-4.220174C2.570361-4.901619 2.080199-5.272229 1.554172-5.272229C1.171606-5.272229 .908593-5.045081 .705355-4.638605C.490162-4.208219 .32279-3.490909 .32279-3.443088S.37061-3.335492 .454296-3.335492C.549938-3.335492 .561893-3.347447 .633624-3.622416C.824907-4.351681 1.0401-5.033126 1.518306-5.033126C1.793275-5.033126 1.888917-4.841843 1.888917-4.483188C1.888917-4.220174 1.769365-3.753923 1.685679-3.383313L1.350934-2.092154C1.303113-1.865006 1.171606-1.327024 1.111831-1.111831C1.028144-.800996 .896638-.239103 .896638-.179328C.896638-.011955 1.028144 .119552 1.207472 .119552C1.350934 .119552 1.518306 .047821 1.613948-.131507C1.637858-.191283 1.745455-.609714 1.80523-.848817L2.068244-1.924782L2.462765-3.502864Z'/>
<path id='g2-115' d='M2.725778-2.391034C2.929016-2.355168 3.251806-2.283437 3.323537-2.271482C3.478954-2.223661 4.016936-2.032379 4.016936-1.458531C4.016936-1.08792 3.682192-.119552 2.295392-.119552C2.044334-.119552 1.147696-.155417 .908593-.812951C1.3868-.753176 1.625903-1.123786 1.625903-1.3868C1.625903-1.637858 1.458531-1.769365 1.219427-1.769365C.956413-1.769365 .609714-1.566127 .609714-1.028144C.609714-.32279 1.327024 .119552 2.283437 .119552C4.100623 .119552 4.638605-1.219427 4.638605-1.841096C4.638605-2.020423 4.638605-2.355168 4.25604-2.737733C3.957161-3.024658 3.670237-3.084433 3.024658-3.21594C2.701868-3.287671 2.187796-3.395268 2.187796-3.93325C2.187796-4.172354 2.402989-5.033126 3.53873-5.033126C4.040847-5.033126 4.531009-4.841843 4.65056-4.411457C4.124533-4.411457 4.100623-3.957161 4.100623-3.945205C4.100623-3.694147 4.327771-3.622416 4.435367-3.622416C4.60274-3.622416 4.937484-3.753923 4.937484-4.25604S4.483188-5.272229 3.550685-5.272229C1.984558-5.272229 1.566127-4.040847 1.566127-3.550685C1.566127-2.642092 2.450809-2.450809 2.725778-2.391034Z'/>
<path id='g2-120' d='M5.66675-4.877709C5.284184-4.805978 5.140722-4.519054 5.140722-4.291905C5.140722-4.004981 5.36787-3.90934 5.535243-3.90934C5.893898-3.90934 6.144956-4.220174 6.144956-4.542964C6.144956-5.045081 5.571108-5.272229 5.068991-5.272229C4.339726-5.272229 3.93325-4.554919 3.825654-4.327771C3.550685-5.224408 2.809465-5.272229 2.594271-5.272229C1.374844-5.272229 .729265-3.706102 .729265-3.443088C.729265-3.395268 .777086-3.335492 .860772-3.335492C.956413-3.335492 .980324-3.407223 1.004234-3.455044C1.41071-4.782067 2.211706-5.033126 2.558406-5.033126C3.096389-5.033126 3.203985-4.531009 3.203985-4.244085C3.203985-3.981071 3.132254-3.706102 2.988792-3.132254L2.582316-1.494396C2.402989-.777086 2.056289-.119552 1.422665-.119552C1.362889-.119552 1.06401-.119552 .812951-.274969C1.243337-.358655 1.338979-.71731 1.338979-.860772C1.338979-1.099875 1.159651-1.243337 .932503-1.243337C.645579-1.243337 .334745-.992279 .334745-.609714C.334745-.107597 .896638 .119552 1.41071 .119552C1.984558 .119552 2.391034-.334745 2.642092-.824907C2.833375-.119552 3.431133 .119552 3.873474 .119552C5.092902 .119552 5.738481-1.446575 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.75741 5.463512-1.661768C5.140722-.609714 4.447323-.119552 3.90934-.119552C3.490909-.119552 3.263761-.430386 3.263761-.920548C3.263761-1.183562 3.311582-1.374844 3.502864-2.163885L3.921295-3.789788C4.100623-4.507098 4.507098-5.033126 5.057036-5.033126C5.080946-5.033126 5.415691-5.033126 5.66675-4.877709Z'/>
<path id='g2-121' d='M3.144209 1.338979C2.82142 1.793275 2.355168 2.199751 1.769365 2.199751C1.625903 2.199751 1.052055 2.175841 .872727 1.625903C.908593 1.637858 .968369 1.637858 .992279 1.637858C1.350934 1.637858 1.590037 1.327024 1.590037 1.052055S1.362889 .681445 1.183562 .681445C.992279 .681445 .573848 .824907 .573848 1.41071C.573848 2.020423 1.08792 2.438854 1.769365 2.438854C2.964882 2.438854 4.172354 1.338979 4.507098 .011955L5.678705-4.65056C5.69066-4.710336 5.71457-4.782067 5.71457-4.853798C5.71457-5.033126 5.571108-5.152677 5.391781-5.152677C5.284184-5.152677 5.033126-5.104857 4.937484-4.746202L4.052802-1.231382C3.993026-1.016189 3.993026-.992279 3.897385-.860772C3.658281-.526027 3.263761-.119552 2.689913-.119552C2.020423-.119552 1.960648-.777086 1.960648-1.099875C1.960648-1.78132 2.283437-2.701868 2.606227-3.56264C2.737733-3.90934 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.243337-1.960648 1.243337-1.566127 1.243337-1.279203C1.243337-.143462 2.056289 .119552 2.654047 .119552C3.000747 .119552 3.431133 .011955 3.849564-.430386L3.861519-.418431C3.682192 .286924 3.56264 .753176 3.144209 1.338979Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g2-121'/>
<use x='65.870748' y='65.753425' xlink:href='#g3-61'/>
<use x='78.296229' y='65.753425' xlink:href='#g0-106'/>
<use x='81.617119' y='65.753425' xlink:href='#g2-98'/>
<use x='86.594225' y='65.753425' xlink:href='#g0-106'/>
<use x='91.907601' y='65.753425' xlink:href='#g2-120'/>
<use x='98.559688' y='60.817239' xlink:href='#g1-11'/>
<use x='104.496759' y='65.753425' xlink:href='#g2-115'/>
<use x='110.010765' y='65.753425' xlink:href='#g2-105'/>
<use x='114.004197' y='65.753425' xlink:href='#g2-103'/>
<use x='120.038454' y='65.753425' xlink:href='#g2-110'/>
<use x='127.026059' y='65.753425' xlink:href='#g3-40'/>
<use x='131.578385' y='65.753425' xlink:href='#g2-120'/>
<use x='138.230472' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,32 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='110.839827pt' height='13.522849pt' viewBox='-.239051 -.240635 110.839827 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-114' d='M4.65056-4.889664C4.27995-4.817933 4.088667-4.554919 4.088667-4.291905C4.088667-4.004981 4.315816-3.90934 4.483188-3.90934C4.817933-3.90934 5.092902-4.196264 5.092902-4.554919C5.092902-4.937484 4.722291-5.272229 4.124533-5.272229C3.646326-5.272229 3.096389-5.057036 2.594271-4.327771C2.510585-4.961395 2.032379-5.272229 1.554172-5.272229C1.08792-5.272229 .848817-4.913574 .705355-4.65056C.502117-4.220174 .32279-3.502864 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.549938-3.335492 .561893-3.347447 .633624-3.622416C.812951-4.339726 1.0401-5.033126 1.518306-5.033126C1.80523-5.033126 1.888917-4.829888 1.888917-4.483188C1.888917-4.220174 1.769365-3.753923 1.685679-3.383313L1.350934-2.092154C1.303113-1.865006 1.171606-1.327024 1.111831-1.111831C1.028144-.800996 .896638-.239103 .896638-.179328C.896638-.011955 1.028144 .119552 1.207472 .119552C1.338979 .119552 1.566127 .035866 1.637858-.203238C1.673724-.298879 2.116065-2.10411 2.187796-2.379078C2.247572-2.642092 2.319303-2.893151 2.379078-3.156164C2.426899-3.323537 2.47472-3.514819 2.510585-3.670237C2.546451-3.777833 2.86924-4.363636 3.16812-4.62665C3.311582-4.758157 3.622416-5.033126 4.112578-5.033126C4.303861-5.033126 4.495143-4.99726 4.65056-4.889664Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
<path id='g1-121' d='M3.144209 1.338979C2.82142 1.793275 2.355168 2.199751 1.769365 2.199751C1.625903 2.199751 1.052055 2.175841 .872727 1.625903C.908593 1.637858 .968369 1.637858 .992279 1.637858C1.350934 1.637858 1.590037 1.327024 1.590037 1.052055S1.362889 .681445 1.183562 .681445C.992279 .681445 .573848 .824907 .573848 1.41071C.573848 2.020423 1.08792 2.438854 1.769365 2.438854C2.964882 2.438854 4.172354 1.338979 4.507098 .011955L5.678705-4.65056C5.69066-4.710336 5.71457-4.782067 5.71457-4.853798C5.71457-5.033126 5.571108-5.152677 5.391781-5.152677C5.284184-5.152677 5.033126-5.104857 4.937484-4.746202L4.052802-1.231382C3.993026-1.016189 3.993026-.992279 3.897385-.860772C3.658281-.526027 3.263761-.119552 2.689913-.119552C2.020423-.119552 1.960648-.777086 1.960648-1.099875C1.960648-1.78132 2.283437-2.701868 2.606227-3.56264C2.737733-3.90934 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.243337-1.960648 1.243337-1.566127 1.243337-1.279203C1.243337-.143462 2.056289 .119552 2.654047 .119552C3.000747 .119552 3.431133 .011955 3.849564-.430386L3.861519-.418431C3.682192 .286924 3.56264 .753176 3.144209 1.338979Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-49'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-114'/>
<use x='103.745791' y='65.753425' xlink:href='#g3-40'/>
<use x='108.298117' y='65.753425' xlink:href='#g1-107'/>
<use x='114.787621' y='65.753425' xlink:href='#g3-41'/>
<use x='121.99661' y='65.753425' xlink:href='#g0-0'/>
<use x='133.951771' y='65.753425' xlink:href='#g1-121'/>
<use x='140.088423' y='65.753425' xlink:href='#g3-40'/>
<use x='144.640748' y='65.753425' xlink:href='#g1-107'/>
<use x='151.130253' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.9 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='91.820236pt' height='13.9056pt' viewBox='-.239051 -.240635 91.820236 13.9056'>
<defs>
<path id='g0-112' d='M.414446 .964384C.350685 1.219427 .334745 1.283188 .01594 1.283188C-.095641 1.283188-.191283 1.283188-.191283 1.43462C-.191283 1.506351-.119552 1.546202-.079701 1.546202C0 1.546202 .03188 1.522291 .621669 1.522291C1.195517 1.522291 1.362889 1.546202 1.41868 1.546202C1.45056 1.546202 1.570112 1.546202 1.570112 1.39477C1.570112 1.283188 1.458531 1.283188 1.362889 1.283188C.980324 1.283188 .980324 1.235367 .980324 1.163636C.980324 1.107846 1.123786 .541968 1.362889-.390535C1.466501-.207223 1.713574 .079701 2.14396 .079701C3.124284 .079701 4.144458-1.052055 4.144458-2.207721C4.144458-2.996762 3.634371-3.514819 2.996762-3.514819C2.518555-3.514819 2.13599-3.188045 1.904857-2.948941C1.737484-3.514819 1.203487-3.514819 1.123786-3.514819C.836862-3.514819 .637609-3.331507 .510087-3.084433C.326775-2.725778 .239103-2.319303 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.629639-2.83736 .773101-3.291656 1.099875-3.291656C1.299128-3.291656 1.354919-3.108344 1.354919-2.917061C1.354919-2.83736 1.323039-2.646077 1.307098-2.582316L.414446 .964384ZM1.880946-2.454795C1.920797-2.590286 1.920797-2.606227 2.040349-2.749689C2.343213-3.108344 2.685928-3.291656 2.972852-3.291656C3.371357-3.291656 3.52279-2.901121 3.52279-2.542466C3.52279-2.247572 3.347447-1.39477 3.108344-.924533C2.901121-.494147 2.518555-.143462 2.14396-.143462C1.601993-.143462 1.474471-.765131 1.474471-.820922C1.474471-.836862 1.490411-.924533 1.498381-.948443L1.880946-2.454795Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g1-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-50'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-75'/>
<use x='108.104431' y='67.546688' xlink:href='#g0-112'/>
<use x='112.865341' y='65.753425' xlink:href='#g1-118'/>
<use x='118.524611' y='67.546688' xlink:href='#g2-53'/>
<use x='123.256926' y='65.753425' xlink:href='#g3-40'/>
<use x='127.809251' y='65.753425' xlink:href='#g1-107'/>
<use x='134.298755' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='90.261245pt' height='13.522849pt' viewBox='-.239051 -.240635 90.261245 13.522849'>
<defs>
<path id='g0-105' d='M2.375093-4.97335C2.375093-5.148692 2.247572-5.276214 2.064259-5.276214C1.857036-5.276214 1.625903-5.084932 1.625903-4.845828C1.625903-4.670486 1.753425-4.542964 1.936737-4.542964C2.14396-4.542964 2.375093-4.734247 2.375093-4.97335ZM1.211457-2.048319L.781071-.948443C.74122-.828892 .70137-.73325 .70137-.597758C.70137-.207223 1.004234 .079701 1.42665 .079701C2.199751 .079701 2.526526-1.036115 2.526526-1.139726C2.526526-1.219427 2.462765-1.243337 2.406974-1.243337C2.311333-1.243337 2.295392-1.187547 2.271482-1.107846C2.088169-.470237 1.761395-.143462 1.44259-.143462C1.346949-.143462 1.251308-.183313 1.251308-.398506C1.251308-.589788 1.307098-.73325 1.41071-.980324C1.490411-1.195517 1.570112-1.41071 1.657783-1.625903L1.904857-2.271482C1.976588-2.454795 2.072229-2.701868 2.072229-2.83736C2.072229-3.235866 1.753425-3.514819 1.346949-3.514819C.573848-3.514819 .239103-2.399004 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.239601 .494147-2.319303C.71731-3.076463 1.083935-3.291656 1.323039-3.291656C1.43462-3.291656 1.514321-3.251806 1.514321-3.028643C1.514321-2.948941 1.506351-2.83736 1.42665-2.598257L1.211457-2.048319Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g1-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-51'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-75'/>
<use x='108.104431' y='67.546688' xlink:href='#g0-105'/>
<use x='111.485703' y='65.753425' xlink:href='#g1-118'/>
<use x='117.144973' y='67.546688' xlink:href='#g2-50'/>
<use x='121.877288' y='65.753425' xlink:href='#g3-40'/>
<use x='126.429614' y='65.753425' xlink:href='#g1-107'/>
<use x='132.919118' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,36 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='127.675737pt' height='13.522849pt' viewBox='-.239051 -.240635 127.675737 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g2-56' d='M2.646077-2.87721C3.092403-3.092403 3.634371-3.490909 3.634371-4.112578C3.634371-4.869738 2.86127-5.300125 2.12005-5.300125C1.275218-5.300125 .589788-4.718306 .589788-3.969116C.589788-3.674222 .6934-3.403238 .892653-3.172105C1.028144-3.004732 1.060025-2.988792 1.554172-2.677958C.565878-2.239601 .350685-1.657783 .350685-1.211457C.350685-.334745 1.235367 .167372 2.10411 .167372C3.084433 .167372 3.873474-.494147 3.873474-1.338979C3.873474-1.841096 3.602491-2.175841 3.474969-2.311333C3.339477-2.438854 3.331507-2.446824 2.646077-2.87721ZM1.41071-3.626401C1.179577-3.761893 .988294-3.993026 .988294-4.27198C.988294-4.774097 1.538232-5.092902 2.10411-5.092902C2.725778-5.092902 3.235866-4.670486 3.235866-4.112578C3.235866-3.650311 2.87721-3.259776 2.406974-3.028643L1.41071-3.626401ZM1.801245-2.534496C1.833126-2.518555 2.741719-1.960648 2.87721-1.872976C3.004732-1.801245 3.419178-1.546202 3.419178-1.067995C3.419178-.454296 2.773599-.071731 2.12005-.071731C1.41071-.071731 .804981-.557908 .804981-1.211457C.804981-1.809215 1.251308-2.279452 1.801245-2.534496Z'/>
<path id='g2-57' d='M3.124284-2.351183C3.124284-.406476 2.199751-.071731 1.737484-.071731C1.570112-.071731 1.155666-.095641 .940473-.342715C1.291158-.374595 1.315068-.637609 1.315068-.71731C1.315068-.956413 1.131756-1.091905 .940473-1.091905C.797011-1.091905 .565878-1.004234 .565878-.70137C.565878-.159402 1.012204 .167372 1.745455 .167372C2.83736 .167372 3.873474-.916563 3.873474-2.622167C3.873474-4.694396 2.956912-5.300125 2.13599-5.300125C1.195517-5.300125 .350685-4.566874 .350685-3.52279C.350685-2.494645 1.123786-1.745455 2.024408-1.745455C2.590286-1.745455 2.933001-2.10411 3.124284-2.510585V-2.351183ZM2.056289-1.968618C1.689664-1.968618 1.458531-2.13599 1.283188-2.430884C1.099875-2.725778 1.099875-3.108344 1.099875-3.514819C1.099875-3.985056 1.099875-4.319801 1.315068-4.646575C1.514321-4.933499 1.769365-5.092902 2.14396-5.092902C2.677958-5.092902 2.909091-4.566874 2.933001-4.527024C3.100374-4.136488 3.108344-3.514819 3.108344-3.355417C3.108344-2.725778 2.765629-1.968618 2.056289-1.968618Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-56'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g2-57'/>
<use x='108.536903' y='65.753425' xlink:href='#g3-40'/>
<use x='113.089229' y='65.753425' xlink:href='#g1-107'/>
<use x='122.235396' y='65.753425' xlink:href='#g0-0'/>
<use x='134.190557' y='65.753425' xlink:href='#g3-49'/>
<use x='140.043547' y='65.753425' xlink:href='#g3-41'/>
<use x='144.595873' y='65.753425' xlink:href='#g1-118'/>
<use x='150.255143' y='67.546688' xlink:href='#g2-51'/>
<use x='154.987458' y='65.753425' xlink:href='#g3-40'/>
<use x='159.539784' y='65.753425' xlink:href='#g1-107'/>
<use x='166.029288' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

@@ -0,0 +1,37 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='143.968053pt' height='13.522849pt' viewBox='-.239051 -.240635 143.968053 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g2-56' d='M2.646077-2.87721C3.092403-3.092403 3.634371-3.490909 3.634371-4.112578C3.634371-4.869738 2.86127-5.300125 2.12005-5.300125C1.275218-5.300125 .589788-4.718306 .589788-3.969116C.589788-3.674222 .6934-3.403238 .892653-3.172105C1.028144-3.004732 1.060025-2.988792 1.554172-2.677958C.565878-2.239601 .350685-1.657783 .350685-1.211457C.350685-.334745 1.235367 .167372 2.10411 .167372C3.084433 .167372 3.873474-.494147 3.873474-1.338979C3.873474-1.841096 3.602491-2.175841 3.474969-2.311333C3.339477-2.438854 3.331507-2.446824 2.646077-2.87721ZM1.41071-3.626401C1.179577-3.761893 .988294-3.993026 .988294-4.27198C.988294-4.774097 1.538232-5.092902 2.10411-5.092902C2.725778-5.092902 3.235866-4.670486 3.235866-4.112578C3.235866-3.650311 2.87721-3.259776 2.406974-3.028643L1.41071-3.626401ZM1.801245-2.534496C1.833126-2.518555 2.741719-1.960648 2.87721-1.872976C3.004732-1.801245 3.419178-1.546202 3.419178-1.067995C3.419178-.454296 2.773599-.071731 2.12005-.071731C1.41071-.071731 .804981-.557908 .804981-1.211457C.804981-1.809215 1.251308-2.279452 1.801245-2.534496Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-52'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g2-56'/>
<use x='108.536903' y='65.753425' xlink:href='#g3-40'/>
<use x='113.089229' y='65.753425' xlink:href='#g1-107'/>
<use x='119.578733' y='65.753425' xlink:href='#g3-41'/>
<use x='126.787722' y='65.753425' xlink:href='#g3-43'/>
<use x='138.549037' y='65.753425' xlink:href='#g1-118'/>
<use x='144.208307' y='67.546688' xlink:href='#g2-52'/>
<use x='148.940622' y='65.753425' xlink:href='#g3-40'/>
<use x='153.492948' y='65.753425' xlink:href='#g1-107'/>
<use x='162.639115' y='65.753425' xlink:href='#g0-0'/>
<use x='174.594276' y='65.753425' xlink:href='#g3-49'/>
<use x='180.447266' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.5 KiB

@@ -0,0 +1,34 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='120.842813pt' height='13.522849pt' viewBox='-.239051 -.240635 120.842813 13.522849'>
<defs>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g1-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g1-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g1-53'/>
<use x='66.804852' y='65.753425' xlink:href='#g2-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g0-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g2-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g2-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g0-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g1-50'/>
<use x='108.536903' y='65.753425' xlink:href='#g2-40'/>
<use x='113.089229' y='65.753425' xlink:href='#g0-107'/>
<use x='119.578733' y='65.753425' xlink:href='#g2-41'/>
<use x='126.787722' y='65.753425' xlink:href='#g2-43'/>
<use x='138.549037' y='65.753425' xlink:href='#g0-118'/>
<use x='144.208307' y='67.546688' xlink:href='#g1-52'/>
<use x='148.940622' y='65.753425' xlink:href='#g2-40'/>
<use x='153.492948' y='65.753425' xlink:href='#g0-107'/>
<use x='159.982452' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

@@ -0,0 +1,89 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='221.569587pt' height='56.726172pt' viewBox='-.239051 -.231768 221.569587 56.726172'>
<defs>
<path id='g2-97' d='M3.124284-3.036613C3.052553-3.172105 2.82142-3.514819 2.335243-3.514819C1.3868-3.514819 .342715-2.406974 .342715-1.227397C.342715-.398506 .876712 .079701 1.490411 .079701C2.000498 .079701 2.438854-.326775 2.582316-.486177C2.725778 .063761 3.267746 .079701 3.363387 .079701C3.730012 .079701 3.913325-.223163 3.977086-.358655C4.136488-.645579 4.24807-1.107846 4.24807-1.139726C4.24807-1.187547 4.216189-1.243337 4.120548-1.243337S4.008966-1.195517 3.961146-.996264C3.849564-.557908 3.698132-.143462 3.387298-.143462C3.203985-.143462 3.132254-.294894 3.132254-.518057C3.132254-.653549 3.203985-.924533 3.251806-1.123786S3.419178-1.801245 3.451059-1.944707L3.610461-2.550436C3.650311-2.741719 3.737983-3.076463 3.737983-3.116314C3.737983-3.299626 3.58655-3.363387 3.482939-3.363387C3.363387-3.363387 3.164134-3.283686 3.124284-3.036613ZM2.582316-.860772C2.183811-.310834 1.769365-.143462 1.514321-.143462C1.147696-.143462 .964384-.478207 .964384-.892653C.964384-1.267248 1.179577-2.12005 1.354919-2.470735C1.586052-2.956912 1.976588-3.291656 2.343213-3.291656C2.86127-3.291656 3.012702-2.709838 3.012702-2.614197C3.012702-2.582316 2.81345-1.801245 2.765629-1.594022C2.662017-1.219427 2.662017-1.203487 2.582316-.860772Z'/>
<path id='g2-105' d='M2.375093-4.97335C2.375093-5.148692 2.247572-5.276214 2.064259-5.276214C1.857036-5.276214 1.625903-5.084932 1.625903-4.845828C1.625903-4.670486 1.753425-4.542964 1.936737-4.542964C2.14396-4.542964 2.375093-4.734247 2.375093-4.97335ZM1.211457-2.048319L.781071-.948443C.74122-.828892 .70137-.73325 .70137-.597758C.70137-.207223 1.004234 .079701 1.42665 .079701C2.199751 .079701 2.526526-1.036115 2.526526-1.139726C2.526526-1.219427 2.462765-1.243337 2.406974-1.243337C2.311333-1.243337 2.295392-1.187547 2.271482-1.107846C2.088169-.470237 1.761395-.143462 1.44259-.143462C1.346949-.143462 1.251308-.183313 1.251308-.398506C1.251308-.589788 1.307098-.73325 1.41071-.980324C1.490411-1.195517 1.570112-1.41071 1.657783-1.625903L1.904857-2.271482C1.976588-2.454795 2.072229-2.701868 2.072229-2.83736C2.072229-3.235866 1.753425-3.514819 1.346949-3.514819C.573848-3.514819 .239103-2.399004 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.239601 .494147-2.319303C.71731-3.076463 1.083935-3.291656 1.323039-3.291656C1.43462-3.291656 1.514321-3.251806 1.514321-3.028643C1.514321-2.948941 1.506351-2.83736 1.42665-2.598257L1.211457-2.048319Z'/>
<path id='g2-109' d='M1.594022-1.307098C1.617933-1.42665 1.697634-1.729514 1.721544-1.849066C1.745455-1.928767 1.793275-2.12005 1.809215-2.199751C1.825156-2.239601 2.088169-2.757659 2.438854-3.020672C2.709838-3.227895 2.972852-3.291656 3.196015-3.291656C3.490909-3.291656 3.650311-3.116314 3.650311-2.749689C3.650311-2.558406 3.602491-2.375093 3.514819-2.016438C3.459029-1.809215 3.323537-1.275218 3.275716-1.060025L3.156164-.581818C3.116314-.446326 3.060523-.207223 3.060523-.167372C3.060523 .01594 3.211955 .079701 3.315567 .079701C3.459029 .079701 3.57858-.01594 3.634371-.111582C3.658281-.159402 3.722042-.430386 3.761893-.597758L3.945205-1.307098C3.969116-1.42665 4.048817-1.729514 4.072727-1.849066C4.184309-2.279452 4.184309-2.287422 4.367621-2.550436C4.630635-2.940971 5.00523-3.291656 5.539228-3.291656C5.826152-3.291656 5.993524-3.124284 5.993524-2.749689C5.993524-2.311333 5.65878-1.39477 5.507347-1.012204C5.427646-.804981 5.403736-.749191 5.403736-.597758C5.403736-.143462 5.778331 .079701 6.121046 .079701C6.902117 .079701 7.228892-1.036115 7.228892-1.139726C7.228892-1.219427 7.165131-1.243337 7.10934-1.243337C7.013699-1.243337 6.997758-1.187547 6.973848-1.107846C6.782565-.446326 6.447821-.143462 6.144956-.143462C6.017435-.143462 5.953674-.223163 5.953674-.406476S6.017435-.765131 6.097136-.964384C6.216687-1.267248 6.567372-2.183811 6.567372-2.630137C6.567372-3.227895 6.152927-3.514819 5.579078-3.514819C5.029141-3.514819 4.574844-3.227895 4.216189-2.733748C4.152428-3.371357 3.642341-3.514819 3.227895-3.514819C2.86127-3.514819 2.375093-3.387298 1.936737-2.81345C1.880946-3.291656 1.498381-3.514819 1.123786-3.514819C.844832-3.514819 .645579-3.347447 .510087-3.076463C.318804-2.701868 .239103-2.311333 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.621669-2.82142 .765131-3.291656 1.099875-3.291656C1.307098-3.291656 1.354919-3.092403 1.354919-2.917061C1.354919-2.773599 1.315068-2.622167 1.251308-2.359153C1.235367-2.295392 1.115816-1.825156 1.083935-1.713574L.789041-.518057C.757161-.398506 .70934-.199253 .70934-.167372C.70934 .01594 .860772 .079701 .964384 .079701C1.107846 .079701 1.227397-.01594 1.283188-.111582C1.307098-.159402 1.370859-.430386 1.41071-.597758L1.594022-1.307098Z'/>
<path id='g2-110' d='M1.594022-1.307098C1.617933-1.42665 1.697634-1.729514 1.721544-1.849066C1.833126-2.279452 1.833126-2.287422 2.016438-2.550436C2.279452-2.940971 2.654047-3.291656 3.188045-3.291656C3.474969-3.291656 3.642341-3.124284 3.642341-2.749689C3.642341-2.311333 3.307597-1.40274 3.156164-1.012204C3.052553-.749191 3.052553-.70137 3.052553-.597758C3.052553-.143462 3.427148 .079701 3.769863 .079701C4.550934 .079701 4.877709-1.036115 4.877709-1.139726C4.877709-1.219427 4.813948-1.243337 4.758157-1.243337C4.662516-1.243337 4.646575-1.187547 4.622665-1.107846C4.431382-.454296 4.096638-.143462 3.793773-.143462C3.666252-.143462 3.602491-.223163 3.602491-.406476S3.666252-.765131 3.745953-.964384C3.865504-1.267248 4.216189-2.183811 4.216189-2.630137C4.216189-3.227895 3.801743-3.514819 3.227895-3.514819C2.582316-3.514819 2.16787-3.124284 1.936737-2.82142C1.880946-3.259776 1.530262-3.514819 1.123786-3.514819C.836862-3.514819 .637609-3.331507 .510087-3.084433C.318804-2.709838 .239103-2.311333 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.621669-2.82142 .765131-3.291656 1.099875-3.291656C1.307098-3.291656 1.354919-3.092403 1.354919-2.917061C1.354919-2.773599 1.315068-2.622167 1.251308-2.359153C1.235367-2.295392 1.115816-1.825156 1.083935-1.713574L.789041-.518057C.757161-.398506 .70934-.199253 .70934-.167372C.70934 .01594 .860772 .079701 .964384 .079701C1.107846 .079701 1.227397-.01594 1.283188-.111582C1.307098-.159402 1.370859-.430386 1.41071-.597758L1.594022-1.307098Z'/>
<path id='g2-120' d='M3.993026-3.180075C3.642341-3.092403 3.626401-2.781569 3.626401-2.749689C3.626401-2.574346 3.761893-2.454795 3.937235-2.454795S4.383562-2.590286 4.383562-2.933001C4.383562-3.387298 3.881445-3.514819 3.58655-3.514819C3.211955-3.514819 2.909091-3.251806 2.725778-2.940971C2.550436-3.363387 2.13599-3.514819 1.809215-3.514819C.940473-3.514819 .454296-2.518555 .454296-2.295392C.454296-2.223661 .510087-2.191781 .573848-2.191781C.669489-2.191781 .68543-2.231631 .70934-2.327273C.892653-2.909091 1.370859-3.291656 1.785305-3.291656C2.096139-3.291656 2.247572-3.068493 2.247572-2.781569C2.247572-2.622167 2.15193-2.255542 2.088169-2.000498C2.032379-1.769365 1.857036-1.060025 1.817186-.908593C1.705604-.478207 1.41868-.143462 1.060025-.143462C1.028144-.143462 .820922-.143462 .653549-.255044C1.020174-.342715 1.020174-.67746 1.020174-.68543C1.020174-.868742 .876712-.980324 .70137-.980324C.486177-.980324 .255044-.797011 .255044-.494147C.255044-.127522 .645579 .079701 1.052055 .079701C1.474471 .079701 1.769365-.239103 1.912827-.494147C2.088169-.103611 2.454795 .079701 2.83736 .079701C3.706102 .079701 4.184309-.916563 4.184309-1.139726C4.184309-1.219427 4.120548-1.243337 4.064757-1.243337C3.969116-1.243337 3.953176-1.187547 3.929265-1.107846C3.769863-.573848 3.315567-.143462 2.8533-.143462C2.590286-.143462 2.399004-.318804 2.399004-.653549C2.399004-.812951 2.446824-.996264 2.558406-1.44259C2.614197-1.681694 2.789539-2.383064 2.82939-2.534496C2.940971-2.948941 3.219925-3.291656 3.57858-3.291656C3.618431-3.291656 3.825654-3.291656 3.993026-3.180075Z'/>
<path id='g4-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g1-20' d='M8.069738-7.10137C8.201245-7.161146 8.296887-7.220922 8.296887-7.364384C8.296887-7.49589 8.201245-7.603487 8.057783-7.603487C7.998007-7.603487 7.890411-7.555666 7.84259-7.531756L1.231382-4.411457C1.028144-4.315816 .992279-4.23213 .992279-4.136488C.992279-4.028892 1.06401-3.945205 1.231382-3.873474L7.84259-.765131C7.998007-.681445 8.021918-.681445 8.057783-.681445C8.18929-.681445 8.296887-.789041 8.296887-.920548C8.296887-1.028144 8.249066-1.099875 8.045828-1.195517L1.793275-4.136488L8.069738-7.10137ZM7.878456 1.637858C8.081694 1.637858 8.296887 1.637858 8.296887 1.398755S8.045828 1.159651 7.866501 1.159651H1.422665C1.243337 1.159651 .992279 1.159651 .992279 1.398755S1.207472 1.637858 1.41071 1.637858H7.878456Z'/>
<path id='g1-21' d='M8.057783-3.873474C8.225156-3.945205 8.296887-4.028892 8.296887-4.136488C8.296887-4.25604 8.249066-4.327771 8.057783-4.411457L1.470486-7.519801C1.303113-7.603487 1.255293-7.603487 1.231382-7.603487C1.08792-7.603487 .992279-7.49589 .992279-7.364384C.992279-7.220922 1.08792-7.161146 1.219427-7.10137L7.49589-4.148443L1.243337-1.195517C1.004234-1.08792 .992279-.992279 .992279-.920548C.992279-.789041 1.099875-.681445 1.231382-.681445C1.267248-.681445 1.291158-.681445 1.446575-.765131L8.057783-3.873474ZM7.878456 1.637858C8.081694 1.637858 8.296887 1.637858 8.296887 1.398755S8.045828 1.159651 7.866501 1.159651H1.422665C1.243337 1.159651 .992279 1.159651 .992279 1.398755S1.207472 1.637858 1.41071 1.637858H7.878456Z'/>
<path id='g0-56' d='M6.025405 5.415691C6.025405 4.435367 6.288418 2.15193 8.416438 .645579C8.571856 .526027 8.583811 .514072 8.583811 .298879C8.583811 .02391 8.571856 .011955 8.272976 .011955H8.081694C5.511333 1.398755 4.590785 3.658281 4.590785 5.415691V10.556413C4.590785 10.867248 4.60274 10.879203 4.925529 10.879203H5.69066C6.01345 10.879203 6.025405 10.867248 6.025405 10.556413V5.415691Z'/>
<path id='g0-58' d='M8.272976 10.747696C8.571856 10.747696 8.583811 10.735741 8.583811 10.460772C8.583811 10.245579 8.571856 10.233624 8.524035 10.197758C8.153425 9.92279 7.292653 9.313076 6.73076 8.2132C6.264508 7.304608 6.025405 6.38406 6.025405 5.34396V.203238C6.025405-.107597 6.01345-.119552 5.69066-.119552H4.925529C4.60274-.119552 4.590785-.107597 4.590785 .203238V5.34396C4.590785 7.113325 5.511333 9.372852 8.081694 10.747696H8.272976Z'/>
<path id='g0-60' d='M4.590785 21.316065C4.590785 21.626899 4.60274 21.638854 4.925529 21.638854H5.69066C6.01345 21.638854 6.025405 21.626899 6.025405 21.316065V16.270984C6.025405 14.824408 5.415691 12.385554 2.737733 10.759651C5.439601 9.121793 6.025405 6.659029 6.025405 5.248319V.203238C6.025405-.107597 6.01345-.119552 5.69066-.119552H4.925529C4.60274-.119552 4.590785-.107597 4.590785 .203238V5.260274C4.590785 6.264508 4.375592 8.751183 2.175841 10.424907C2.044334 10.532503 2.032379 10.544458 2.032379 10.759651S2.044334 10.9868 2.175841 11.094396C2.486675 11.333499 3.311582 11.967123 3.88543 13.174595C4.351681 14.131009 4.590785 15.195019 4.590785 16.259029V21.316065Z'/>
<path id='g0-62' d='M6.025405 .203238C6.025405-.107597 6.01345-.119552 5.69066-.119552H4.925529C4.60274-.119552 4.590785-.107597 4.590785 .203238V3.383313C4.590785 3.694147 4.60274 3.706102 4.925529 3.706102H5.69066C6.01345 3.706102 6.025405 3.694147 6.025405 3.383313V.203238Z'/>
<path id='g5-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g5-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g5-58' d='M2.199751-4.578829C2.199751-4.901619 1.924782-5.152677 1.625903-5.152677C1.279203-5.152677 1.0401-4.877709 1.0401-4.578829C1.0401-4.220174 1.338979-3.993026 1.613948-3.993026C1.936737-3.993026 2.199751-4.244085 2.199751-4.578829ZM2.199751-.585803C2.199751-.908593 1.924782-1.159651 1.625903-1.159651C1.279203-1.159651 1.0401-.884682 1.0401-.585803C1.0401-.227148 1.338979 0 1.613948 0C1.936737 0 2.199751-.251059 2.199751-.585803Z'/>
<path id='g5-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g3-60' d='M7.878456-5.822167C8.093649-5.917808 8.117559-6.001494 8.117559-6.073225C8.117559-6.204732 8.021918-6.300374 7.890411-6.300374C7.866501-6.300374 7.854545-6.288418 7.687173-6.216687L1.219427-3.239851C1.004234-3.144209 .980324-3.060523 .980324-2.988792C.980324-2.905106 .992279-2.833375 1.219427-2.725778L7.687173 .251059C7.84259 .32279 7.866501 .334745 7.890411 .334745C8.021918 .334745 8.117559 .239103 8.117559 .107597C8.117559 .035866 8.093649-.047821 7.878456-.143462L1.721544-2.976837L7.878456-5.822167Z'/>
<path id='g3-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g3-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g3-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -62.036579)'>
<use x='56.413267' y='82.789424' xlink:href='#g3-117'/>
<use x='63.075707' y='82.789424' xlink:href='#g5-40'/>
<use x='67.628032' y='82.789424' xlink:href='#g3-107'/>
<use x='74.117537' y='82.789424' xlink:href='#g5-41'/>
<use x='81.990692' y='82.789424' xlink:href='#g5-61'/>
<use x='94.416173' y='54.694523' xlink:href='#g0-56'/>
<use x='94.416173' y='65.454284' xlink:href='#g0-62'/>
<use x='94.416173' y='69.040871' xlink:href='#g0-60'/>
<use x='94.416173' y='90.560392' xlink:href='#g0-62'/>
<use x='94.416173' y='94.146979' xlink:href='#g0-58'/>
<use x='105.043009' y='65.932654' xlink:href='#g3-118'/>
<use x='110.702279' y='67.725917' xlink:href='#g4-53'/>
<use x='115.434594' y='65.932654' xlink:href='#g5-40'/>
<use x='119.98692' y='65.932654' xlink:href='#g3-107'/>
<use x='126.476424' y='65.932654' xlink:href='#g5-41'/>
<use x='142.734719' y='65.932654' xlink:href='#g5-58'/>
<use x='149.307209' y='65.932654' xlink:href='#g3-117'/>
<use x='155.969649' y='67.725917' xlink:href='#g2-109'/>
<use x='163.460175' y='67.725917' xlink:href='#g2-105'/>
<use x='166.343315' y='67.725917' xlink:href='#g2-110'/>
<use x='175.300478' y='65.932654' xlink:href='#g3-60'/>
<use x='187.725959' y='65.932654' xlink:href='#g3-118'/>
<use x='193.385229' y='67.725917' xlink:href='#g4-53'/>
<use x='198.117544' y='65.932654' xlink:href='#g5-40'/>
<use x='202.66987' y='65.932654' xlink:href='#g3-107'/>
<use x='209.159374' y='65.932654' xlink:href='#g5-41'/>
<use x='217.032529' y='65.932654' xlink:href='#g3-60'/>
<use x='229.45801' y='65.932654' xlink:href='#g3-117'/>
<use x='236.12045' y='67.725917' xlink:href='#g2-109'/>
<use x='243.610976' y='67.725917' xlink:href='#g2-97'/>
<use x='248.108986' y='67.725917' xlink:href='#g2-120'/>
<use x='105.043009' y='83.267565' xlink:href='#g3-117'/>
<use x='111.705448' y='85.060828' xlink:href='#g2-109'/>
<use x='119.195975' y='85.060828' xlink:href='#g2-97'/>
<use x='123.693984' y='85.060828' xlink:href='#g2-120'/>
<use x='142.734719' y='83.267565' xlink:href='#g5-58'/>
<use x='149.307209' y='83.267565' xlink:href='#g3-118'/>
<use x='154.966479' y='85.060828' xlink:href='#g4-53'/>
<use x='159.698794' y='83.267565' xlink:href='#g5-40'/>
<use x='164.25112' y='83.267565' xlink:href='#g3-107'/>
<use x='170.740624' y='83.267565' xlink:href='#g5-41'/>
<use x='178.613779' y='83.267565' xlink:href='#g1-21'/>
<use x='191.233105' y='83.267565' xlink:href='#g3-117'/>
<use x='197.895545' y='85.060828' xlink:href='#g2-109'/>
<use x='205.386071' y='85.060828' xlink:href='#g2-97'/>
<use x='209.884081' y='85.060828' xlink:href='#g2-120'/>
<use x='105.043009' y='100.602477' xlink:href='#g3-117'/>
<use x='111.705448' y='102.39574' xlink:href='#g2-109'/>
<use x='119.195975' y='102.39574' xlink:href='#g2-105'/>
<use x='122.079114' y='102.39574' xlink:href='#g2-110'/>
<use x='142.734719' y='100.602477' xlink:href='#g5-58'/>
<use x='149.307209' y='100.602477' xlink:href='#g3-118'/>
<use x='154.966479' y='102.39574' xlink:href='#g4-53'/>
<use x='159.698794' y='100.602477' xlink:href='#g5-40'/>
<use x='164.25112' y='100.602477' xlink:href='#g3-107'/>
<use x='170.740624' y='100.602477' xlink:href='#g5-41'/>
<use x='178.613779' y='100.602477' xlink:href='#g1-20'/>
<use x='191.233105' y='100.602477' xlink:href='#g3-117'/>
<use x='197.895545' y='102.39574' xlink:href='#g2-109'/>
<use x='205.386071' y='102.39574' xlink:href='#g2-105'/>
<use x='208.269211' y='102.39574' xlink:href='#g2-110'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

@@ -0,0 +1,33 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='116.847924pt' height='13.522849pt' viewBox='-.239051 -.240635 116.847924 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g2-55' d='M4.032877-4.853798C4.104608-4.941469 4.104608-4.95741 4.104608-5.132752H2.080199C1.880946-5.132752 1.633873-5.140722 1.43462-5.156663C1.020174-5.188543 1.012204-5.260274 .988294-5.387796H.74122L.470237-3.706102H.71731C.73325-3.825654 .820922-4.375592 .932503-4.439352C1.020174-4.479203 1.617933-4.479203 1.737484-4.479203H3.427148L2.606227-3.379328C1.697634-2.16787 1.506351-.908593 1.506351-.278954C1.506351-.199253 1.506351 .167372 1.880946 .167372S2.255542-.191283 2.255542-.286924V-.669489C2.255542-1.817186 2.446824-2.757659 2.83736-3.275716L4.032877-4.853798Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-55'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-117'/>
<use x='104.807757' y='65.753425' xlink:href='#g3-40'/>
<use x='109.360083' y='65.753425' xlink:href='#g1-107'/>
<use x='115.849587' y='65.753425' xlink:href='#g3-41'/>
<use x='123.058577' y='65.753425' xlink:href='#g0-0'/>
<use x='135.013737' y='65.753425' xlink:href='#g1-118'/>
<use x='140.673007' y='67.546688' xlink:href='#g2-53'/>
<use x='145.405322' y='65.753425' xlink:href='#g3-40'/>
<use x='149.957648' y='65.753425' xlink:href='#g1-107'/>
<use x='156.447152' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

@@ -0,0 +1,46 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='138.517752pt' height='40.514511pt' viewBox='-.239051 -.22797 138.517752 40.514511'>
<defs>
<path id='g1-54' d='M7.531756-8.093649C7.627397-8.261021 7.627397-8.284932 7.627397-8.320797C7.627397-8.404483 7.555666-8.5599 7.388294-8.5599C7.244832-8.5599 7.208966-8.488169 7.12528-8.320797L1.75741 2.116065C1.661768 2.283437 1.661768 2.307347 1.661768 2.343213C1.661768 2.438854 1.745455 2.582316 1.900872 2.582316C2.044334 2.582316 2.080199 2.510585 2.163885 2.343213L7.531756-8.093649Z'/>
<path id='g0-40' d='M5.391781 21.842092C5.391781 20.527024 4.483188 18.5066 2.402989 17.454545C3.694147 16.761146 5.236364 15.362391 5.379826 13.126775L5.391781 13.055044V4.770112C5.391781 3.789788 5.391781 3.574595 5.487422 3.120299C5.702615 2.163885 6.276463 .980324 7.79477 .083686C7.890411 .02391 7.902366 .011955 7.902366-.203238C7.902366-.466252 7.890411-.478207 7.627397-.478207C7.412204-.478207 7.388294-.478207 7.065504-.286924C4.387547 1.231382 4.23213 3.455044 4.23213 3.873474V12.373599C4.23213 13.234371 4.23213 14.20274 3.610461 15.302615C3.060523 16.282939 2.414944 16.773101 1.900872 17.119801C1.733499 17.227397 1.721544 17.239352 1.721544 17.44259C1.721544 17.657783 1.733499 17.669738 1.829141 17.729514C2.84533 18.399004 3.93325 19.463014 4.196264 21.411706C4.23213 21.67472 4.23213 21.69863 4.23213 21.842092V31.023661C4.23213 31.99203 4.829888 34.000498 7.137235 35.219925C7.412204 35.375342 7.436115 35.375342 7.627397 35.375342C7.890411 35.375342 7.902366 35.363387 7.902366 35.100374C7.902366 34.885181 7.890411 34.873225 7.84259 34.849315C7.328518 34.526526 5.762391 33.582067 5.439601 31.501868C5.391781 31.191034 5.391781 31.167123 5.391781 31.011706V21.842092Z'/>
<path id='g4-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g4-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g4-48' d='M5.355915-3.825654C5.355915-4.817933 5.296139-5.786301 4.865753-6.694894C4.375592-7.687173 3.514819-7.950187 2.929016-7.950187C2.235616-7.950187 1.3868-7.603487 .944458-6.611208C.609714-5.858032 .490162-5.116812 .490162-3.825654C.490162-2.666002 .573848-1.793275 1.004234-.944458C1.470486-.035866 2.295392 .251059 2.917061 .251059C3.957161 .251059 4.554919-.37061 4.901619-1.06401C5.332005-1.960648 5.355915-3.132254 5.355915-3.825654ZM2.917061 .011955C2.534496 .011955 1.75741-.203238 1.530262-1.506351C1.398755-2.223661 1.398755-3.132254 1.398755-3.969116C1.398755-4.94944 1.398755-5.834122 1.590037-6.539477C1.793275-7.340473 2.402989-7.711083 2.917061-7.711083C3.371357-7.711083 4.064757-7.436115 4.291905-6.40797C4.447323-5.726526 4.447323-4.782067 4.447323-3.969116C4.447323-3.16812 4.447323-2.259527 4.315816-1.530262C4.088667-.215193 3.335492 .011955 2.917061 .011955Z'/>
<path id='g4-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g4-58' d='M2.199751-4.578829C2.199751-4.901619 1.924782-5.152677 1.625903-5.152677C1.279203-5.152677 1.0401-4.877709 1.0401-4.578829C1.0401-4.220174 1.338979-3.993026 1.613948-3.993026C1.936737-3.993026 2.199751-4.244085 2.199751-4.578829ZM2.199751-.585803C2.199751-.908593 1.924782-1.159651 1.625903-1.159651C1.279203-1.159651 1.0401-.884682 1.0401-.585803C1.0401-.227148 1.338979 0 1.613948 0C1.936737 0 2.199751-.251059 2.199751-.585803Z'/>
<path id='g4-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g3-55' d='M4.032877-4.853798C4.104608-4.941469 4.104608-4.95741 4.104608-5.132752H2.080199C1.880946-5.132752 1.633873-5.140722 1.43462-5.156663C1.020174-5.188543 1.012204-5.260274 .988294-5.387796H.74122L.470237-3.706102H.71731C.73325-3.825654 .820922-4.375592 .932503-4.439352C1.020174-4.479203 1.617933-4.479203 1.737484-4.479203H3.427148L2.606227-3.379328C1.697634-2.16787 1.506351-.908593 1.506351-.278954C1.506351-.199253 1.506351 .167372 1.880946 .167372S2.255542-.191283 2.255542-.286924V-.669489C2.255542-1.817186 2.446824-2.757659 2.83736-3.275716L4.032877-4.853798Z'/>
<path id='g3-57' d='M3.124284-2.351183C3.124284-.406476 2.199751-.071731 1.737484-.071731C1.570112-.071731 1.155666-.095641 .940473-.342715C1.291158-.374595 1.315068-.637609 1.315068-.71731C1.315068-.956413 1.131756-1.091905 .940473-1.091905C.797011-1.091905 .565878-1.004234 .565878-.70137C.565878-.159402 1.012204 .167372 1.745455 .167372C2.83736 .167372 3.873474-.916563 3.873474-2.622167C3.873474-4.694396 2.956912-5.300125 2.13599-5.300125C1.195517-5.300125 .350685-4.566874 .350685-3.52279C.350685-2.494645 1.123786-1.745455 2.024408-1.745455C2.590286-1.745455 2.933001-2.10411 3.124284-2.510585V-2.351183ZM2.056289-1.968618C1.689664-1.968618 1.458531-2.13599 1.283188-2.430884C1.099875-2.725778 1.099875-3.108344 1.099875-3.514819C1.099875-3.985056 1.099875-4.319801 1.315068-4.646575C1.514321-4.933499 1.769365-5.092902 2.14396-5.092902C2.677958-5.092902 2.909091-4.566874 2.933001-4.527024C3.100374-4.136488 3.108344-3.514819 3.108344-3.355417C3.108344-2.725778 2.765629-1.968618 2.056289-1.968618Z'/>
<path id='g2-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g2-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -61.019978)'>
<use x='56.413267' y='74.719968' xlink:href='#g2-118'/>
<use x='62.072537' y='76.513231' xlink:href='#g3-57'/>
<use x='66.804852' y='74.719968' xlink:href='#g4-40'/>
<use x='71.357178' y='74.719968' xlink:href='#g2-107'/>
<use x='77.846682' y='74.719968' xlink:href='#g4-41'/>
<use x='85.719837' y='74.719968' xlink:href='#g4-61'/>
<use x='98.145318' y='54.276444' xlink:href='#g0-40'/>
<use x='107.775921' y='66.530661' xlink:href='#g4-49'/>
<use x='125.334891' y='66.530661' xlink:href='#g4-58'/>
<use x='131.907382' y='66.530661' xlink:href='#g2-118'/>
<use x='137.566652' y='68.323924' xlink:href='#g3-55'/>
<use x='142.298967' y='66.530661' xlink:href='#g4-40'/>
<use x='146.851293' y='66.530661' xlink:href='#g2-107'/>
<use x='153.340797' y='66.530661' xlink:href='#g4-41'/>
<use x='161.213952' y='66.530661' xlink:href='#g4-61'/>
<use x='173.639433' y='66.530661' xlink:href='#g4-48'/>
<use x='107.775921' y='83.865573' xlink:href='#g4-48'/>
<use x='125.334891' y='83.865573' xlink:href='#g4-58'/>
<use x='131.907382' y='83.865573' xlink:href='#g2-118'/>
<use x='137.566652' y='85.658836' xlink:href='#g3-55'/>
<use x='142.298967' y='83.865573' xlink:href='#g4-40'/>
<use x='146.851293' y='83.865573' xlink:href='#g2-107'/>
<use x='153.340797' y='83.865573' xlink:href='#g4-41'/>
<use x='161.213952' y='83.865573' xlink:href='#g1-54'/>
<use x='161.213952' y='83.865573' xlink:href='#g4-61'/>
<use x='173.639433' y='83.865573' xlink:href='#g4-48'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,32 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='110.839827pt' height='13.522849pt' viewBox='-.239051 -.240635 110.839827 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-114' d='M4.65056-4.889664C4.27995-4.817933 4.088667-4.554919 4.088667-4.291905C4.088667-4.004981 4.315816-3.90934 4.483188-3.90934C4.817933-3.90934 5.092902-4.196264 5.092902-4.554919C5.092902-4.937484 4.722291-5.272229 4.124533-5.272229C3.646326-5.272229 3.096389-5.057036 2.594271-4.327771C2.510585-4.961395 2.032379-5.272229 1.554172-5.272229C1.08792-5.272229 .848817-4.913574 .705355-4.65056C.502117-4.220174 .32279-3.502864 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.549938-3.335492 .561893-3.347447 .633624-3.622416C.812951-4.339726 1.0401-5.033126 1.518306-5.033126C1.80523-5.033126 1.888917-4.829888 1.888917-4.483188C1.888917-4.220174 1.769365-3.753923 1.685679-3.383313L1.350934-2.092154C1.303113-1.865006 1.171606-1.327024 1.111831-1.111831C1.028144-.800996 .896638-.239103 .896638-.179328C.896638-.011955 1.028144 .119552 1.207472 .119552C1.338979 .119552 1.566127 .035866 1.637858-.203238C1.673724-.298879 2.116065-2.10411 2.187796-2.379078C2.247572-2.642092 2.319303-2.893151 2.379078-3.156164C2.426899-3.323537 2.47472-3.514819 2.510585-3.670237C2.546451-3.777833 2.86924-4.363636 3.16812-4.62665C3.311582-4.758157 3.622416-5.033126 4.112578-5.033126C4.303861-5.033126 4.495143-4.99726 4.65056-4.889664Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
<path id='g1-121' d='M3.144209 1.338979C2.82142 1.793275 2.355168 2.199751 1.769365 2.199751C1.625903 2.199751 1.052055 2.175841 .872727 1.625903C.908593 1.637858 .968369 1.637858 .992279 1.637858C1.350934 1.637858 1.590037 1.327024 1.590037 1.052055S1.362889 .681445 1.183562 .681445C.992279 .681445 .573848 .824907 .573848 1.41071C.573848 2.020423 1.08792 2.438854 1.769365 2.438854C2.964882 2.438854 4.172354 1.338979 4.507098 .011955L5.678705-4.65056C5.69066-4.710336 5.71457-4.782067 5.71457-4.853798C5.71457-5.033126 5.571108-5.152677 5.391781-5.152677C5.284184-5.152677 5.033126-5.104857 4.937484-4.746202L4.052802-1.231382C3.993026-1.016189 3.993026-.992279 3.897385-.860772C3.658281-.526027 3.263761-.119552 2.689913-.119552C2.020423-.119552 1.960648-.777086 1.960648-1.099875C1.960648-1.78132 2.283437-2.701868 2.606227-3.56264C2.737733-3.90934 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.243337-1.960648 1.243337-1.566127 1.243337-1.279203C1.243337-.143462 2.056289 .119552 2.654047 .119552C3.000747 .119552 3.431133 .011955 3.849564-.430386L3.861519-.418431C3.682192 .286924 3.56264 .753176 3.144209 1.338979Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-53'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-114'/>
<use x='103.745791' y='65.753425' xlink:href='#g3-40'/>
<use x='108.298117' y='65.753425' xlink:href='#g1-107'/>
<use x='114.787621' y='65.753425' xlink:href='#g3-41'/>
<use x='121.99661' y='65.753425' xlink:href='#g0-0'/>
<use x='133.951771' y='65.753425' xlink:href='#g1-121'/>
<use x='140.088423' y='65.753425' xlink:href='#g3-40'/>
<use x='144.640748' y='65.753425' xlink:href='#g1-107'/>
<use x='151.130253' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='91.820236pt' height='13.9056pt' viewBox='-.239051 -.240635 91.820236 13.9056'>
<defs>
<path id='g0-112' d='M.414446 .964384C.350685 1.219427 .334745 1.283188 .01594 1.283188C-.095641 1.283188-.191283 1.283188-.191283 1.43462C-.191283 1.506351-.119552 1.546202-.079701 1.546202C0 1.546202 .03188 1.522291 .621669 1.522291C1.195517 1.522291 1.362889 1.546202 1.41868 1.546202C1.45056 1.546202 1.570112 1.546202 1.570112 1.39477C1.570112 1.283188 1.458531 1.283188 1.362889 1.283188C.980324 1.283188 .980324 1.235367 .980324 1.163636C.980324 1.107846 1.123786 .541968 1.362889-.390535C1.466501-.207223 1.713574 .079701 2.14396 .079701C3.124284 .079701 4.144458-1.052055 4.144458-2.207721C4.144458-2.996762 3.634371-3.514819 2.996762-3.514819C2.518555-3.514819 2.13599-3.188045 1.904857-2.948941C1.737484-3.514819 1.203487-3.514819 1.123786-3.514819C.836862-3.514819 .637609-3.331507 .510087-3.084433C.326775-2.725778 .239103-2.319303 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.629639-2.83736 .773101-3.291656 1.099875-3.291656C1.299128-3.291656 1.354919-3.108344 1.354919-2.917061C1.354919-2.83736 1.323039-2.646077 1.307098-2.582316L.414446 .964384ZM1.880946-2.454795C1.920797-2.590286 1.920797-2.606227 2.040349-2.749689C2.343213-3.108344 2.685928-3.291656 2.972852-3.291656C3.371357-3.291656 3.52279-2.901121 3.52279-2.542466C3.52279-2.247572 3.347447-1.39477 3.108344-.924533C2.901121-.494147 2.518555-.143462 2.14396-.143462C1.601993-.143462 1.474471-.765131 1.474471-.820922C1.474471-.836862 1.490411-.924533 1.498381-.948443L1.880946-2.454795Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g2-54' d='M1.099875-2.638107C1.099875-3.299626 1.155666-3.881445 1.44259-4.367621C1.681694-4.766127 2.088169-5.092902 2.590286-5.092902C2.749689-5.092902 3.116314-5.068991 3.299626-4.790037C2.940971-4.774097 2.909091-4.503113 2.909091-4.415442C2.909091-4.176339 3.092403-4.040847 3.283686-4.040847C3.427148-4.040847 3.658281-4.128518 3.658281-4.431382C3.658281-4.909589 3.299626-5.300125 2.582316-5.300125C1.474471-5.300125 .350685-4.24807 .350685-2.526526C.350685-.366625 1.354919 .167372 2.12802 .167372C2.510585 .167372 2.925031 .063761 3.283686-.278954C3.602491-.589788 3.873474-.924533 3.873474-1.617933C3.873474-2.662017 3.084433-3.395268 2.199751-3.395268C1.625903-3.395268 1.283188-3.028643 1.099875-2.638107ZM2.12802-.071731C1.705604-.071731 1.44259-.366625 1.323039-.589788C1.139726-.948443 1.123786-1.490411 1.123786-1.793275C1.123786-2.582316 1.554172-3.172105 2.16787-3.172105C2.566376-3.172105 2.805479-2.964882 2.956912-2.685928C3.124284-2.391034 3.124284-2.032379 3.124284-1.625903S3.124284-.868742 2.964882-.581818C2.757659-.215193 2.478705-.071731 2.12802-.071731Z'/>
<path id='g1-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-54'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-75'/>
<use x='108.104431' y='67.546688' xlink:href='#g0-112'/>
<use x='112.865341' y='65.753425' xlink:href='#g1-118'/>
<use x='118.524611' y='67.546688' xlink:href='#g2-53'/>
<use x='123.256926' y='65.753425' xlink:href='#g3-40'/>
<use x='127.809251' y='65.753425' xlink:href='#g1-107'/>
<use x='134.298755' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='90.261245pt' height='13.522849pt' viewBox='-.239051 -.240635 90.261245 13.522849'>
<defs>
<path id='g0-105' d='M2.375093-4.97335C2.375093-5.148692 2.247572-5.276214 2.064259-5.276214C1.857036-5.276214 1.625903-5.084932 1.625903-4.845828C1.625903-4.670486 1.753425-4.542964 1.936737-4.542964C2.14396-4.542964 2.375093-4.734247 2.375093-4.97335ZM1.211457-2.048319L.781071-.948443C.74122-.828892 .70137-.73325 .70137-.597758C.70137-.207223 1.004234 .079701 1.42665 .079701C2.199751 .079701 2.526526-1.036115 2.526526-1.139726C2.526526-1.219427 2.462765-1.243337 2.406974-1.243337C2.311333-1.243337 2.295392-1.187547 2.271482-1.107846C2.088169-.470237 1.761395-.143462 1.44259-.143462C1.346949-.143462 1.251308-.183313 1.251308-.398506C1.251308-.589788 1.307098-.73325 1.41071-.980324C1.490411-1.195517 1.570112-1.41071 1.657783-1.625903L1.904857-2.271482C1.976588-2.454795 2.072229-2.701868 2.072229-2.83736C2.072229-3.235866 1.753425-3.514819 1.346949-3.514819C.573848-3.514819 .239103-2.399004 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.239601 .494147-2.319303C.71731-3.076463 1.083935-3.291656 1.323039-3.291656C1.43462-3.291656 1.514321-3.251806 1.514321-3.028643C1.514321-2.948941 1.506351-2.83736 1.42665-2.598257L1.211457-2.048319Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g2-55' d='M4.032877-4.853798C4.104608-4.941469 4.104608-4.95741 4.104608-5.132752H2.080199C1.880946-5.132752 1.633873-5.140722 1.43462-5.156663C1.020174-5.188543 1.012204-5.260274 .988294-5.387796H.74122L.470237-3.706102H.71731C.73325-3.825654 .820922-4.375592 .932503-4.439352C1.020174-4.479203 1.617933-4.479203 1.737484-4.479203H3.427148L2.606227-3.379328C1.697634-2.16787 1.506351-.908593 1.506351-.278954C1.506351-.199253 1.506351 .167372 1.880946 .167372S2.255542-.191283 2.255542-.286924V-.669489C2.255542-1.817186 2.446824-2.757659 2.83736-3.275716L4.032877-4.853798Z'/>
<path id='g1-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-55'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-75'/>
<use x='108.104431' y='67.546688' xlink:href='#g0-105'/>
<use x='111.485703' y='65.753425' xlink:href='#g1-118'/>
<use x='117.144973' y='67.546688' xlink:href='#g2-53'/>
<use x='121.877288' y='65.753425' xlink:href='#g3-40'/>
<use x='126.429614' y='65.753425' xlink:href='#g1-107'/>
<use x='132.919118' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,39 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='137.24499pt' height='13.522849pt' viewBox='-.239051 -.240635 137.24499 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g2-55' d='M4.032877-4.853798C4.104608-4.941469 4.104608-4.95741 4.104608-5.132752H2.080199C1.880946-5.132752 1.633873-5.140722 1.43462-5.156663C1.020174-5.188543 1.012204-5.260274 .988294-5.387796H.74122L.470237-3.706102H.71731C.73325-3.825654 .820922-4.375592 .932503-4.439352C1.020174-4.479203 1.617933-4.479203 1.737484-4.479203H3.427148L2.606227-3.379328C1.697634-2.16787 1.506351-.908593 1.506351-.278954C1.506351-.199253 1.506351 .167372 1.880946 .167372S2.255542-.191283 2.255542-.286924V-.669489C2.255542-1.817186 2.446824-2.757659 2.83736-3.275716L4.032877-4.853798Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-49'/>
<use x='66.30672' y='67.546688' xlink:href='#g2-52'/>
<use x='71.039035' y='65.753425' xlink:href='#g3-40'/>
<use x='75.591361' y='65.753425' xlink:href='#g1-107'/>
<use x='82.080865' y='65.753425' xlink:href='#g3-41'/>
<use x='89.95402' y='65.753425' xlink:href='#g3-61'/>
<use x='102.379501' y='65.753425' xlink:href='#g1-118'/>
<use x='108.038771' y='67.546688' xlink:href='#g2-49'/>
<use x='112.272954' y='67.546688' xlink:href='#g2-50'/>
<use x='117.005269' y='65.753425' xlink:href='#g3-40'/>
<use x='121.557594' y='65.753425' xlink:href='#g1-107'/>
<use x='130.703762' y='65.753425' xlink:href='#g0-0'/>
<use x='142.658922' y='65.753425' xlink:href='#g3-49'/>
<use x='148.511913' y='65.753425' xlink:href='#g3-41'/>
<use x='153.064238' y='65.753425' xlink:href='#g1-118'/>
<use x='158.723509' y='67.546688' xlink:href='#g2-55'/>
<use x='163.455823' y='65.753425' xlink:href='#g3-40'/>
<use x='168.008149' y='65.753425' xlink:href='#g1-107'/>
<use x='174.497653' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

@@ -0,0 +1,39 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='148.752679pt' height='13.522849pt' viewBox='-.239051 -.240635 148.752679 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g2-56' d='M2.646077-2.87721C3.092403-3.092403 3.634371-3.490909 3.634371-4.112578C3.634371-4.869738 2.86127-5.300125 2.12005-5.300125C1.275218-5.300125 .589788-4.718306 .589788-3.969116C.589788-3.674222 .6934-3.403238 .892653-3.172105C1.028144-3.004732 1.060025-2.988792 1.554172-2.677958C.565878-2.239601 .350685-1.657783 .350685-1.211457C.350685-.334745 1.235367 .167372 2.10411 .167372C3.084433 .167372 3.873474-.494147 3.873474-1.338979C3.873474-1.841096 3.602491-2.175841 3.474969-2.311333C3.339477-2.438854 3.331507-2.446824 2.646077-2.87721ZM1.41071-3.626401C1.179577-3.761893 .988294-3.993026 .988294-4.27198C.988294-4.774097 1.538232-5.092902 2.10411-5.092902C2.725778-5.092902 3.235866-4.670486 3.235866-4.112578C3.235866-3.650311 2.87721-3.259776 2.406974-3.028643L1.41071-3.626401ZM1.801245-2.534496C1.833126-2.518555 2.741719-1.960648 2.87721-1.872976C3.004732-1.801245 3.419178-1.546202 3.419178-1.067995C3.419178-.454296 2.773599-.071731 2.12005-.071731C1.41071-.071731 .804981-.557908 .804981-1.211457C.804981-1.809215 1.251308-2.279452 1.801245-2.534496Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-56'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g2-49'/>
<use x='108.038771' y='67.546688' xlink:href='#g2-52'/>
<use x='112.771086' y='65.753425' xlink:href='#g3-40'/>
<use x='117.323412' y='65.753425' xlink:href='#g1-107'/>
<use x='123.812916' y='65.753425' xlink:href='#g3-41'/>
<use x='131.021905' y='65.753425' xlink:href='#g3-43'/>
<use x='142.78322' y='65.753425' xlink:href='#g1-118'/>
<use x='148.44249' y='67.546688' xlink:href='#g2-56'/>
<use x='153.174805' y='65.753425' xlink:href='#g3-40'/>
<use x='157.727131' y='65.753425' xlink:href='#g1-107'/>
<use x='166.873298' y='65.753425' xlink:href='#g0-0'/>
<use x='178.828459' y='65.753425' xlink:href='#g3-49'/>
<use x='184.681449' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='91.927066pt' height='13.522849pt' viewBox='-.239051 -.240635 91.927066 13.522849'>
<defs>
<path id='g0-100' d='M4.28792-5.292154C4.29589-5.308095 4.319801-5.411706 4.319801-5.419676C4.319801-5.459527 4.28792-5.531258 4.192279-5.531258C4.160399-5.531258 3.913325-5.507347 3.730012-5.491407L3.283686-5.459527C3.108344-5.443587 3.028643-5.435616 3.028643-5.292154C3.028643-5.180573 3.140224-5.180573 3.235866-5.180573C3.618431-5.180573 3.618431-5.132752 3.618431-5.061021C3.618431-5.0132 3.55467-4.750187 3.514819-4.590785L3.124284-3.036613C3.052553-3.172105 2.82142-3.514819 2.335243-3.514819C1.3868-3.514819 .342715-2.406974 .342715-1.227397C.342715-.398506 .876712 .079701 1.490411 .079701C2.000498 .079701 2.438854-.326775 2.582316-.486177C2.725778 .063761 3.267746 .079701 3.363387 .079701C3.730012 .079701 3.913325-.223163 3.977086-.358655C4.136488-.645579 4.24807-1.107846 4.24807-1.139726C4.24807-1.187547 4.216189-1.243337 4.120548-1.243337S4.008966-1.195517 3.961146-.996264C3.849564-.557908 3.698132-.143462 3.387298-.143462C3.203985-.143462 3.132254-.294894 3.132254-.518057C3.132254-.669489 3.156164-.757161 3.180075-.860772L4.28792-5.292154ZM2.582316-.860772C2.183811-.310834 1.769365-.143462 1.514321-.143462C1.147696-.143462 .964384-.478207 .964384-.892653C.964384-1.267248 1.179577-2.12005 1.354919-2.470735C1.586052-2.956912 1.976588-3.291656 2.343213-3.291656C2.86127-3.291656 3.012702-2.709838 3.012702-2.614197C3.012702-2.582316 2.81345-1.801245 2.765629-1.594022C2.662017-1.219427 2.662017-1.203487 2.582316-.860772Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-53' d='M1.115816-4.479203C1.219427-4.447323 1.538232-4.367621 1.872976-4.367621C2.86924-4.367621 3.474969-5.068991 3.474969-5.188543C3.474969-5.276214 3.419178-5.300125 3.379328-5.300125C3.363387-5.300125 3.347447-5.300125 3.275716-5.260274C2.964882-5.140722 2.598257-5.045081 2.16787-5.045081C1.697634-5.045081 1.307098-5.164633 1.060025-5.260274C.980324-5.300125 .964384-5.300125 .956413-5.300125C.852802-5.300125 .852802-5.212453 .852802-5.068991V-2.733748C.852802-2.590286 .852802-2.494645 .980324-2.494645C1.044085-2.494645 1.067995-2.526526 1.107846-2.590286C1.203487-2.709838 1.506351-3.116314 2.183811-3.116314C2.630137-3.116314 2.84533-2.749689 2.917061-2.598257C3.052553-2.311333 3.068493-1.944707 3.068493-1.633873C3.068493-1.338979 3.060523-.908593 2.83736-.557908C2.685928-.318804 2.367123-.071731 1.944707-.071731C1.42665-.071731 .916563-.398506 .73325-.916563C.757161-.908593 .804981-.908593 .812951-.908593C1.036115-.908593 1.211457-1.052055 1.211457-1.299128C1.211457-1.594022 .980324-1.697634 .820922-1.697634C.67746-1.697634 .422416-1.617933 .422416-1.275218C.422416-.557908 1.044085 .167372 1.960648 .167372C2.956912 .167372 3.801743-.605729 3.801743-1.594022C3.801743-2.518555 3.132254-3.339477 2.191781-3.339477C1.793275-3.339477 1.41868-3.211955 1.115816-2.940971V-4.479203Z'/>
<path id='g1-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-49'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-75'/>
<use x='108.104431' y='67.546688' xlink:href='#g0-100'/>
<use x='112.959881' y='65.753425' xlink:href='#g1-118'/>
<use x='118.619151' y='67.546688' xlink:href='#g2-53'/>
<use x='123.351466' y='65.753425' xlink:href='#g3-40'/>
<use x='127.903791' y='65.753425' xlink:href='#g1-107'/>
<use x='134.393295' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,29 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='86.227053pt' height='13.522849pt' viewBox='-.239051 -.240635 86.227053 13.522849'>
<defs>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g1-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g0-99' d='M4.674471-4.495143C4.447323-4.495143 4.339726-4.495143 4.172354-4.351681C4.100623-4.291905 3.969116-4.112578 3.969116-3.921295C3.969116-3.682192 4.148443-3.53873 4.375592-3.53873C4.662516-3.53873 4.985305-3.777833 4.985305-4.25604C4.985305-4.829888 4.435367-5.272229 3.610461-5.272229C2.044334-5.272229 .478207-3.56264 .478207-1.865006C.478207-.824907 1.123786 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.542217-.119552 1.279203-.836862 1.279203-1.43462C1.279203-1.853051 1.482441-3.012702 1.912827-3.825654C2.223661-4.387547 2.86924-5.033126 3.622416-5.033126C3.777833-5.033126 4.435367-5.009215 4.674471-4.495143Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g1-50'/>
<use x='66.804852' y='65.753425' xlink:href='#g2-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g0-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g2-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g2-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g0-99'/>
<use x='103.183306' y='67.546688' xlink:href='#g1-49'/>
<use x='107.915621' y='65.753425' xlink:href='#g0-118'/>
<use x='113.574891' y='67.546688' xlink:href='#g1-49'/>
<use x='118.307206' y='65.753425' xlink:href='#g2-40'/>
<use x='122.859532' y='65.753425' xlink:href='#g0-107'/>
<use x='129.349036' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

@@ -0,0 +1,45 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='213.187586pt' height='13.522849pt' viewBox='-.239051 -.240635 213.187586 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-52'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g2-50'/>
<use x='108.536903' y='65.753425' xlink:href='#g3-40'/>
<use x='113.089229' y='65.753425' xlink:href='#g1-107'/>
<use x='119.578733' y='65.753425' xlink:href='#g3-41'/>
<use x='126.787722' y='65.753425' xlink:href='#g0-0'/>
<use x='138.742883' y='65.753425' xlink:href='#g1-118'/>
<use x='144.402153' y='67.546688' xlink:href='#g2-50'/>
<use x='149.134468' y='65.753425' xlink:href='#g3-40'/>
<use x='153.686793' y='65.753425' xlink:href='#g1-107'/>
<use x='162.832961' y='65.753425' xlink:href='#g0-0'/>
<use x='174.788121' y='65.753425' xlink:href='#g3-49'/>
<use x='180.641112' y='65.753425' xlink:href='#g3-41'/>
<use x='187.850101' y='65.753425' xlink:href='#g0-0'/>
<use x='199.805261' y='65.753425' xlink:href='#g1-118'/>
<use x='205.464532' y='67.546688' xlink:href='#g2-51'/>
<use x='210.196846' y='65.753425' xlink:href='#g3-40'/>
<use x='214.749172' y='65.753425' xlink:href='#g1-107'/>
<use x='223.89534' y='65.753425' xlink:href='#g0-0'/>
<use x='235.8505' y='65.753425' xlink:href='#g3-49'/>
<use x='241.70349' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='86.227053pt' height='13.522849pt' viewBox='-.239051 -.240635 86.227053 13.522849'>
<defs>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g1-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g1-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g0-99' d='M4.674471-4.495143C4.447323-4.495143 4.339726-4.495143 4.172354-4.351681C4.100623-4.291905 3.969116-4.112578 3.969116-3.921295C3.969116-3.682192 4.148443-3.53873 4.375592-3.53873C4.662516-3.53873 4.985305-3.777833 4.985305-4.25604C4.985305-4.829888 4.435367-5.272229 3.610461-5.272229C2.044334-5.272229 .478207-3.56264 .478207-1.865006C.478207-.824907 1.123786 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.542217-.119552 1.279203-.836862 1.279203-1.43462C1.279203-1.853051 1.482441-3.012702 1.912827-3.825654C2.223661-4.387547 2.86924-5.033126 3.622416-5.033126C3.777833-5.033126 4.435367-5.009215 4.674471-4.495143Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g1-51'/>
<use x='66.804852' y='65.753425' xlink:href='#g2-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g0-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g2-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g2-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g0-99'/>
<use x='103.183306' y='67.546688' xlink:href='#g1-50'/>
<use x='107.915621' y='65.753425' xlink:href='#g0-118'/>
<use x='113.574891' y='67.546688' xlink:href='#g1-52'/>
<use x='118.307206' y='65.753425' xlink:href='#g2-40'/>
<use x='122.859532' y='65.753425' xlink:href='#g0-107'/>
<use x='129.349036' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

@@ -0,0 +1,41 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='166.499015pt' height='13.522849pt' viewBox='-.239051 -.240635 166.499015 13.522849'>
<defs>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g1-54' d='M1.099875-2.638107C1.099875-3.299626 1.155666-3.881445 1.44259-4.367621C1.681694-4.766127 2.088169-5.092902 2.590286-5.092902C2.749689-5.092902 3.116314-5.068991 3.299626-4.790037C2.940971-4.774097 2.909091-4.503113 2.909091-4.415442C2.909091-4.176339 3.092403-4.040847 3.283686-4.040847C3.427148-4.040847 3.658281-4.128518 3.658281-4.431382C3.658281-4.909589 3.299626-5.300125 2.582316-5.300125C1.474471-5.300125 .350685-4.24807 .350685-2.526526C.350685-.366625 1.354919 .167372 2.12802 .167372C2.510585 .167372 2.925031 .063761 3.283686-.278954C3.602491-.589788 3.873474-.924533 3.873474-1.617933C3.873474-2.662017 3.084433-3.395268 2.199751-3.395268C1.625903-3.395268 1.283188-3.028643 1.099875-2.638107ZM2.12802-.071731C1.705604-.071731 1.44259-.366625 1.323039-.589788C1.139726-.948443 1.123786-1.490411 1.123786-1.793275C1.123786-2.582316 1.554172-3.172105 2.16787-3.172105C2.566376-3.172105 2.805479-2.964882 2.956912-2.685928C3.124284-2.391034 3.124284-2.032379 3.124284-1.625903S3.124284-.868742 2.964882-.581818C2.757659-.215193 2.478705-.071731 2.12802-.071731Z'/>
<path id='g1-56' d='M2.646077-2.87721C3.092403-3.092403 3.634371-3.490909 3.634371-4.112578C3.634371-4.869738 2.86127-5.300125 2.12005-5.300125C1.275218-5.300125 .589788-4.718306 .589788-3.969116C.589788-3.674222 .6934-3.403238 .892653-3.172105C1.028144-3.004732 1.060025-2.988792 1.554172-2.677958C.565878-2.239601 .350685-1.657783 .350685-1.211457C.350685-.334745 1.235367 .167372 2.10411 .167372C3.084433 .167372 3.873474-.494147 3.873474-1.338979C3.873474-1.841096 3.602491-2.175841 3.474969-2.311333C3.339477-2.438854 3.331507-2.446824 2.646077-2.87721ZM1.41071-3.626401C1.179577-3.761893 .988294-3.993026 .988294-4.27198C.988294-4.774097 1.538232-5.092902 2.10411-5.092902C2.725778-5.092902 3.235866-4.670486 3.235866-4.112578C3.235866-3.650311 2.87721-3.259776 2.406974-3.028643L1.41071-3.626401ZM1.801245-2.534496C1.833126-2.518555 2.741719-1.960648 2.87721-1.872976C3.004732-1.801245 3.419178-1.546202 3.419178-1.067995C3.419178-.454296 2.773599-.071731 2.12005-.071731C1.41071-.071731 .804981-.557908 .804981-1.211457C.804981-1.809215 1.251308-2.279452 1.801245-2.534496Z'/>
<path id='g1-57' d='M3.124284-2.351183C3.124284-.406476 2.199751-.071731 1.737484-.071731C1.570112-.071731 1.155666-.095641 .940473-.342715C1.291158-.374595 1.315068-.637609 1.315068-.71731C1.315068-.956413 1.131756-1.091905 .940473-1.091905C.797011-1.091905 .565878-1.004234 .565878-.70137C.565878-.159402 1.012204 .167372 1.745455 .167372C2.83736 .167372 3.873474-.916563 3.873474-2.622167C3.873474-4.694396 2.956912-5.300125 2.13599-5.300125C1.195517-5.300125 .350685-4.566874 .350685-3.52279C.350685-2.494645 1.123786-1.745455 2.024408-1.745455C2.590286-1.745455 2.933001-2.10411 3.124284-2.510585V-2.351183ZM2.056289-1.968618C1.689664-1.968618 1.458531-2.13599 1.283188-2.430884C1.099875-2.725778 1.099875-3.108344 1.099875-3.514819C1.099875-3.985056 1.099875-4.319801 1.315068-4.646575C1.514321-4.933499 1.769365-5.092902 2.14396-5.092902C2.677958-5.092902 2.909091-4.566874 2.933001-4.527024C3.100374-4.136488 3.108344-3.514819 3.108344-3.355417C3.108344-2.725778 2.765629-1.968618 2.056289-1.968618Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g1-57'/>
<use x='66.804852' y='65.753425' xlink:href='#g2-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g0-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g2-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g2-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g0-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g1-54'/>
<use x='108.536903' y='65.753425' xlink:href='#g2-40'/>
<use x='113.089229' y='65.753425' xlink:href='#g0-107'/>
<use x='119.578733' y='65.753425' xlink:href='#g2-41'/>
<use x='126.787722' y='65.753425' xlink:href='#g2-43'/>
<use x='138.549037' y='65.753425' xlink:href='#g0-118'/>
<use x='144.208307' y='67.546688' xlink:href='#g1-56'/>
<use x='148.940622' y='65.753425' xlink:href='#g2-40'/>
<use x='153.492948' y='65.753425' xlink:href='#g0-107'/>
<use x='159.982452' y='65.753425' xlink:href='#g2-41'/>
<use x='167.191441' y='65.753425' xlink:href='#g2-43'/>
<use x='178.952756' y='65.753425' xlink:href='#g0-118'/>
<use x='184.612026' y='67.546688' xlink:href='#g1-52'/>
<use x='189.344341' y='65.753425' xlink:href='#g2-40'/>
<use x='193.896667' y='65.753425' xlink:href='#g0-107'/>
<use x='200.386171' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,89 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='221.569587pt' height='56.726172pt' viewBox='-.239051 -.231768 221.569587 56.726172'>
<defs>
<path id='g1-20' d='M8.069738-7.10137C8.201245-7.161146 8.296887-7.220922 8.296887-7.364384C8.296887-7.49589 8.201245-7.603487 8.057783-7.603487C7.998007-7.603487 7.890411-7.555666 7.84259-7.531756L1.231382-4.411457C1.028144-4.315816 .992279-4.23213 .992279-4.136488C.992279-4.028892 1.06401-3.945205 1.231382-3.873474L7.84259-.765131C7.998007-.681445 8.021918-.681445 8.057783-.681445C8.18929-.681445 8.296887-.789041 8.296887-.920548C8.296887-1.028144 8.249066-1.099875 8.045828-1.195517L1.793275-4.136488L8.069738-7.10137ZM7.878456 1.637858C8.081694 1.637858 8.296887 1.637858 8.296887 1.398755S8.045828 1.159651 7.866501 1.159651H1.422665C1.243337 1.159651 .992279 1.159651 .992279 1.398755S1.207472 1.637858 1.41071 1.637858H7.878456Z'/>
<path id='g1-21' d='M8.057783-3.873474C8.225156-3.945205 8.296887-4.028892 8.296887-4.136488C8.296887-4.25604 8.249066-4.327771 8.057783-4.411457L1.470486-7.519801C1.303113-7.603487 1.255293-7.603487 1.231382-7.603487C1.08792-7.603487 .992279-7.49589 .992279-7.364384C.992279-7.220922 1.08792-7.161146 1.219427-7.10137L7.49589-4.148443L1.243337-1.195517C1.004234-1.08792 .992279-.992279 .992279-.920548C.992279-.789041 1.099875-.681445 1.231382-.681445C1.267248-.681445 1.291158-.681445 1.446575-.765131L8.057783-3.873474ZM7.878456 1.637858C8.081694 1.637858 8.296887 1.637858 8.296887 1.398755S8.045828 1.159651 7.866501 1.159651H1.422665C1.243337 1.159651 .992279 1.159651 .992279 1.398755S1.207472 1.637858 1.41071 1.637858H7.878456Z'/>
<path id='g2-97' d='M3.124284-3.036613C3.052553-3.172105 2.82142-3.514819 2.335243-3.514819C1.3868-3.514819 .342715-2.406974 .342715-1.227397C.342715-.398506 .876712 .079701 1.490411 .079701C2.000498 .079701 2.438854-.326775 2.582316-.486177C2.725778 .063761 3.267746 .079701 3.363387 .079701C3.730012 .079701 3.913325-.223163 3.977086-.358655C4.136488-.645579 4.24807-1.107846 4.24807-1.139726C4.24807-1.187547 4.216189-1.243337 4.120548-1.243337S4.008966-1.195517 3.961146-.996264C3.849564-.557908 3.698132-.143462 3.387298-.143462C3.203985-.143462 3.132254-.294894 3.132254-.518057C3.132254-.653549 3.203985-.924533 3.251806-1.123786S3.419178-1.801245 3.451059-1.944707L3.610461-2.550436C3.650311-2.741719 3.737983-3.076463 3.737983-3.116314C3.737983-3.299626 3.58655-3.363387 3.482939-3.363387C3.363387-3.363387 3.164134-3.283686 3.124284-3.036613ZM2.582316-.860772C2.183811-.310834 1.769365-.143462 1.514321-.143462C1.147696-.143462 .964384-.478207 .964384-.892653C.964384-1.267248 1.179577-2.12005 1.354919-2.470735C1.586052-2.956912 1.976588-3.291656 2.343213-3.291656C2.86127-3.291656 3.012702-2.709838 3.012702-2.614197C3.012702-2.582316 2.81345-1.801245 2.765629-1.594022C2.662017-1.219427 2.662017-1.203487 2.582316-.860772Z'/>
<path id='g2-105' d='M2.375093-4.97335C2.375093-5.148692 2.247572-5.276214 2.064259-5.276214C1.857036-5.276214 1.625903-5.084932 1.625903-4.845828C1.625903-4.670486 1.753425-4.542964 1.936737-4.542964C2.14396-4.542964 2.375093-4.734247 2.375093-4.97335ZM1.211457-2.048319L.781071-.948443C.74122-.828892 .70137-.73325 .70137-.597758C.70137-.207223 1.004234 .079701 1.42665 .079701C2.199751 .079701 2.526526-1.036115 2.526526-1.139726C2.526526-1.219427 2.462765-1.243337 2.406974-1.243337C2.311333-1.243337 2.295392-1.187547 2.271482-1.107846C2.088169-.470237 1.761395-.143462 1.44259-.143462C1.346949-.143462 1.251308-.183313 1.251308-.398506C1.251308-.589788 1.307098-.73325 1.41071-.980324C1.490411-1.195517 1.570112-1.41071 1.657783-1.625903L1.904857-2.271482C1.976588-2.454795 2.072229-2.701868 2.072229-2.83736C2.072229-3.235866 1.753425-3.514819 1.346949-3.514819C.573848-3.514819 .239103-2.399004 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.239601 .494147-2.319303C.71731-3.076463 1.083935-3.291656 1.323039-3.291656C1.43462-3.291656 1.514321-3.251806 1.514321-3.028643C1.514321-2.948941 1.506351-2.83736 1.42665-2.598257L1.211457-2.048319Z'/>
<path id='g2-109' d='M1.594022-1.307098C1.617933-1.42665 1.697634-1.729514 1.721544-1.849066C1.745455-1.928767 1.793275-2.12005 1.809215-2.199751C1.825156-2.239601 2.088169-2.757659 2.438854-3.020672C2.709838-3.227895 2.972852-3.291656 3.196015-3.291656C3.490909-3.291656 3.650311-3.116314 3.650311-2.749689C3.650311-2.558406 3.602491-2.375093 3.514819-2.016438C3.459029-1.809215 3.323537-1.275218 3.275716-1.060025L3.156164-.581818C3.116314-.446326 3.060523-.207223 3.060523-.167372C3.060523 .01594 3.211955 .079701 3.315567 .079701C3.459029 .079701 3.57858-.01594 3.634371-.111582C3.658281-.159402 3.722042-.430386 3.761893-.597758L3.945205-1.307098C3.969116-1.42665 4.048817-1.729514 4.072727-1.849066C4.184309-2.279452 4.184309-2.287422 4.367621-2.550436C4.630635-2.940971 5.00523-3.291656 5.539228-3.291656C5.826152-3.291656 5.993524-3.124284 5.993524-2.749689C5.993524-2.311333 5.65878-1.39477 5.507347-1.012204C5.427646-.804981 5.403736-.749191 5.403736-.597758C5.403736-.143462 5.778331 .079701 6.121046 .079701C6.902117 .079701 7.228892-1.036115 7.228892-1.139726C7.228892-1.219427 7.165131-1.243337 7.10934-1.243337C7.013699-1.243337 6.997758-1.187547 6.973848-1.107846C6.782565-.446326 6.447821-.143462 6.144956-.143462C6.017435-.143462 5.953674-.223163 5.953674-.406476S6.017435-.765131 6.097136-.964384C6.216687-1.267248 6.567372-2.183811 6.567372-2.630137C6.567372-3.227895 6.152927-3.514819 5.579078-3.514819C5.029141-3.514819 4.574844-3.227895 4.216189-2.733748C4.152428-3.371357 3.642341-3.514819 3.227895-3.514819C2.86127-3.514819 2.375093-3.387298 1.936737-2.81345C1.880946-3.291656 1.498381-3.514819 1.123786-3.514819C.844832-3.514819 .645579-3.347447 .510087-3.076463C.318804-2.701868 .239103-2.311333 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.621669-2.82142 .765131-3.291656 1.099875-3.291656C1.307098-3.291656 1.354919-3.092403 1.354919-2.917061C1.354919-2.773599 1.315068-2.622167 1.251308-2.359153C1.235367-2.295392 1.115816-1.825156 1.083935-1.713574L.789041-.518057C.757161-.398506 .70934-.199253 .70934-.167372C.70934 .01594 .860772 .079701 .964384 .079701C1.107846 .079701 1.227397-.01594 1.283188-.111582C1.307098-.159402 1.370859-.430386 1.41071-.597758L1.594022-1.307098Z'/>
<path id='g2-110' d='M1.594022-1.307098C1.617933-1.42665 1.697634-1.729514 1.721544-1.849066C1.833126-2.279452 1.833126-2.287422 2.016438-2.550436C2.279452-2.940971 2.654047-3.291656 3.188045-3.291656C3.474969-3.291656 3.642341-3.124284 3.642341-2.749689C3.642341-2.311333 3.307597-1.40274 3.156164-1.012204C3.052553-.749191 3.052553-.70137 3.052553-.597758C3.052553-.143462 3.427148 .079701 3.769863 .079701C4.550934 .079701 4.877709-1.036115 4.877709-1.139726C4.877709-1.219427 4.813948-1.243337 4.758157-1.243337C4.662516-1.243337 4.646575-1.187547 4.622665-1.107846C4.431382-.454296 4.096638-.143462 3.793773-.143462C3.666252-.143462 3.602491-.223163 3.602491-.406476S3.666252-.765131 3.745953-.964384C3.865504-1.267248 4.216189-2.183811 4.216189-2.630137C4.216189-3.227895 3.801743-3.514819 3.227895-3.514819C2.582316-3.514819 2.16787-3.124284 1.936737-2.82142C1.880946-3.259776 1.530262-3.514819 1.123786-3.514819C.836862-3.514819 .637609-3.331507 .510087-3.084433C.318804-2.709838 .239103-2.311333 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.621669-2.82142 .765131-3.291656 1.099875-3.291656C1.307098-3.291656 1.354919-3.092403 1.354919-2.917061C1.354919-2.773599 1.315068-2.622167 1.251308-2.359153C1.235367-2.295392 1.115816-1.825156 1.083935-1.713574L.789041-.518057C.757161-.398506 .70934-.199253 .70934-.167372C.70934 .01594 .860772 .079701 .964384 .079701C1.107846 .079701 1.227397-.01594 1.283188-.111582C1.307098-.159402 1.370859-.430386 1.41071-.597758L1.594022-1.307098Z'/>
<path id='g2-120' d='M3.993026-3.180075C3.642341-3.092403 3.626401-2.781569 3.626401-2.749689C3.626401-2.574346 3.761893-2.454795 3.937235-2.454795S4.383562-2.590286 4.383562-2.933001C4.383562-3.387298 3.881445-3.514819 3.58655-3.514819C3.211955-3.514819 2.909091-3.251806 2.725778-2.940971C2.550436-3.363387 2.13599-3.514819 1.809215-3.514819C.940473-3.514819 .454296-2.518555 .454296-2.295392C.454296-2.223661 .510087-2.191781 .573848-2.191781C.669489-2.191781 .68543-2.231631 .70934-2.327273C.892653-2.909091 1.370859-3.291656 1.785305-3.291656C2.096139-3.291656 2.247572-3.068493 2.247572-2.781569C2.247572-2.622167 2.15193-2.255542 2.088169-2.000498C2.032379-1.769365 1.857036-1.060025 1.817186-.908593C1.705604-.478207 1.41868-.143462 1.060025-.143462C1.028144-.143462 .820922-.143462 .653549-.255044C1.020174-.342715 1.020174-.67746 1.020174-.68543C1.020174-.868742 .876712-.980324 .70137-.980324C.486177-.980324 .255044-.797011 .255044-.494147C.255044-.127522 .645579 .079701 1.052055 .079701C1.474471 .079701 1.769365-.239103 1.912827-.494147C2.088169-.103611 2.454795 .079701 2.83736 .079701C3.706102 .079701 4.184309-.916563 4.184309-1.139726C4.184309-1.219427 4.120548-1.243337 4.064757-1.243337C3.969116-1.243337 3.953176-1.187547 3.929265-1.107846C3.769863-.573848 3.315567-.143462 2.8533-.143462C2.590286-.143462 2.399004-.318804 2.399004-.653549C2.399004-.812951 2.446824-.996264 2.558406-1.44259C2.614197-1.681694 2.789539-2.383064 2.82939-2.534496C2.940971-2.948941 3.219925-3.291656 3.57858-3.291656C3.618431-3.291656 3.825654-3.291656 3.993026-3.180075Z'/>
<path id='g4-57' d='M3.124284-2.351183C3.124284-.406476 2.199751-.071731 1.737484-.071731C1.570112-.071731 1.155666-.095641 .940473-.342715C1.291158-.374595 1.315068-.637609 1.315068-.71731C1.315068-.956413 1.131756-1.091905 .940473-1.091905C.797011-1.091905 .565878-1.004234 .565878-.70137C.565878-.159402 1.012204 .167372 1.745455 .167372C2.83736 .167372 3.873474-.916563 3.873474-2.622167C3.873474-4.694396 2.956912-5.300125 2.13599-5.300125C1.195517-5.300125 .350685-4.566874 .350685-3.52279C.350685-2.494645 1.123786-1.745455 2.024408-1.745455C2.590286-1.745455 2.933001-2.10411 3.124284-2.510585V-2.351183ZM2.056289-1.968618C1.689664-1.968618 1.458531-2.13599 1.283188-2.430884C1.099875-2.725778 1.099875-3.108344 1.099875-3.514819C1.099875-3.985056 1.099875-4.319801 1.315068-4.646575C1.514321-4.933499 1.769365-5.092902 2.14396-5.092902C2.677958-5.092902 2.909091-4.566874 2.933001-4.527024C3.100374-4.136488 3.108344-3.514819 3.108344-3.355417C3.108344-2.725778 2.765629-1.968618 2.056289-1.968618Z'/>
<path id='g0-56' d='M6.025405 5.415691C6.025405 4.435367 6.288418 2.15193 8.416438 .645579C8.571856 .526027 8.583811 .514072 8.583811 .298879C8.583811 .02391 8.571856 .011955 8.272976 .011955H8.081694C5.511333 1.398755 4.590785 3.658281 4.590785 5.415691V10.556413C4.590785 10.867248 4.60274 10.879203 4.925529 10.879203H5.69066C6.01345 10.879203 6.025405 10.867248 6.025405 10.556413V5.415691Z'/>
<path id='g0-58' d='M8.272976 10.747696C8.571856 10.747696 8.583811 10.735741 8.583811 10.460772C8.583811 10.245579 8.571856 10.233624 8.524035 10.197758C8.153425 9.92279 7.292653 9.313076 6.73076 8.2132C6.264508 7.304608 6.025405 6.38406 6.025405 5.34396V.203238C6.025405-.107597 6.01345-.119552 5.69066-.119552H4.925529C4.60274-.119552 4.590785-.107597 4.590785 .203238V5.34396C4.590785 7.113325 5.511333 9.372852 8.081694 10.747696H8.272976Z'/>
<path id='g0-60' d='M4.590785 21.316065C4.590785 21.626899 4.60274 21.638854 4.925529 21.638854H5.69066C6.01345 21.638854 6.025405 21.626899 6.025405 21.316065V16.270984C6.025405 14.824408 5.415691 12.385554 2.737733 10.759651C5.439601 9.121793 6.025405 6.659029 6.025405 5.248319V.203238C6.025405-.107597 6.01345-.119552 5.69066-.119552H4.925529C4.60274-.119552 4.590785-.107597 4.590785 .203238V5.260274C4.590785 6.264508 4.375592 8.751183 2.175841 10.424907C2.044334 10.532503 2.032379 10.544458 2.032379 10.759651S2.044334 10.9868 2.175841 11.094396C2.486675 11.333499 3.311582 11.967123 3.88543 13.174595C4.351681 14.131009 4.590785 15.195019 4.590785 16.259029V21.316065Z'/>
<path id='g0-62' d='M6.025405 .203238C6.025405-.107597 6.01345-.119552 5.69066-.119552H4.925529C4.60274-.119552 4.590785-.107597 4.590785 .203238V3.383313C4.590785 3.694147 4.60274 3.706102 4.925529 3.706102H5.69066C6.01345 3.706102 6.025405 3.694147 6.025405 3.383313V.203238Z'/>
<path id='g5-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g5-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g5-58' d='M2.199751-4.578829C2.199751-4.901619 1.924782-5.152677 1.625903-5.152677C1.279203-5.152677 1.0401-4.877709 1.0401-4.578829C1.0401-4.220174 1.338979-3.993026 1.613948-3.993026C1.936737-3.993026 2.199751-4.244085 2.199751-4.578829ZM2.199751-.585803C2.199751-.908593 1.924782-1.159651 1.625903-1.159651C1.279203-1.159651 1.0401-.884682 1.0401-.585803C1.0401-.227148 1.338979 0 1.613948 0C1.936737 0 2.199751-.251059 2.199751-.585803Z'/>
<path id='g5-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g3-60' d='M7.878456-5.822167C8.093649-5.917808 8.117559-6.001494 8.117559-6.073225C8.117559-6.204732 8.021918-6.300374 7.890411-6.300374C7.866501-6.300374 7.854545-6.288418 7.687173-6.216687L1.219427-3.239851C1.004234-3.144209 .980324-3.060523 .980324-2.988792C.980324-2.905106 .992279-2.833375 1.219427-2.725778L7.687173 .251059C7.84259 .32279 7.866501 .334745 7.890411 .334745C8.021918 .334745 8.117559 .239103 8.117559 .107597C8.117559 .035866 8.093649-.047821 7.878456-.143462L1.721544-2.976837L7.878456-5.822167Z'/>
<path id='g3-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g3-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g3-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -62.036579)'>
<use x='56.413267' y='82.789424' xlink:href='#g3-117'/>
<use x='63.075707' y='82.789424' xlink:href='#g5-40'/>
<use x='67.628032' y='82.789424' xlink:href='#g3-107'/>
<use x='74.117537' y='82.789424' xlink:href='#g5-41'/>
<use x='81.990692' y='82.789424' xlink:href='#g5-61'/>
<use x='94.416173' y='54.694523' xlink:href='#g0-56'/>
<use x='94.416173' y='65.454284' xlink:href='#g0-62'/>
<use x='94.416173' y='69.040871' xlink:href='#g0-60'/>
<use x='94.416173' y='90.560392' xlink:href='#g0-62'/>
<use x='94.416173' y='94.146979' xlink:href='#g0-58'/>
<use x='105.043009' y='65.932654' xlink:href='#g3-118'/>
<use x='110.702279' y='67.725917' xlink:href='#g4-57'/>
<use x='115.434594' y='65.932654' xlink:href='#g5-40'/>
<use x='119.98692' y='65.932654' xlink:href='#g3-107'/>
<use x='126.476424' y='65.932654' xlink:href='#g5-41'/>
<use x='142.734719' y='65.932654' xlink:href='#g5-58'/>
<use x='149.307209' y='65.932654' xlink:href='#g3-117'/>
<use x='155.969649' y='67.725917' xlink:href='#g2-109'/>
<use x='163.460175' y='67.725917' xlink:href='#g2-105'/>
<use x='166.343315' y='67.725917' xlink:href='#g2-110'/>
<use x='175.300478' y='65.932654' xlink:href='#g3-60'/>
<use x='187.725959' y='65.932654' xlink:href='#g3-118'/>
<use x='193.385229' y='67.725917' xlink:href='#g4-57'/>
<use x='198.117544' y='65.932654' xlink:href='#g5-40'/>
<use x='202.66987' y='65.932654' xlink:href='#g3-107'/>
<use x='209.159374' y='65.932654' xlink:href='#g5-41'/>
<use x='217.032529' y='65.932654' xlink:href='#g3-60'/>
<use x='229.45801' y='65.932654' xlink:href='#g3-117'/>
<use x='236.12045' y='67.725917' xlink:href='#g2-109'/>
<use x='243.610976' y='67.725917' xlink:href='#g2-97'/>
<use x='248.108986' y='67.725917' xlink:href='#g2-120'/>
<use x='105.043009' y='83.267565' xlink:href='#g3-117'/>
<use x='111.705448' y='85.060828' xlink:href='#g2-109'/>
<use x='119.195975' y='85.060828' xlink:href='#g2-97'/>
<use x='123.693984' y='85.060828' xlink:href='#g2-120'/>
<use x='142.734719' y='83.267565' xlink:href='#g5-58'/>
<use x='149.307209' y='83.267565' xlink:href='#g3-118'/>
<use x='154.966479' y='85.060828' xlink:href='#g4-57'/>
<use x='159.698794' y='83.267565' xlink:href='#g5-40'/>
<use x='164.25112' y='83.267565' xlink:href='#g3-107'/>
<use x='170.740624' y='83.267565' xlink:href='#g5-41'/>
<use x='178.613779' y='83.267565' xlink:href='#g1-21'/>
<use x='191.233105' y='83.267565' xlink:href='#g3-117'/>
<use x='197.895545' y='85.060828' xlink:href='#g2-109'/>
<use x='205.386071' y='85.060828' xlink:href='#g2-97'/>
<use x='209.884081' y='85.060828' xlink:href='#g2-120'/>
<use x='105.043009' y='100.602477' xlink:href='#g3-117'/>
<use x='111.705448' y='102.39574' xlink:href='#g2-109'/>
<use x='119.195975' y='102.39574' xlink:href='#g2-105'/>
<use x='122.079114' y='102.39574' xlink:href='#g2-110'/>
<use x='142.734719' y='100.602477' xlink:href='#g5-58'/>
<use x='149.307209' y='100.602477' xlink:href='#g3-118'/>
<use x='154.966479' y='102.39574' xlink:href='#g4-57'/>
<use x='159.698794' y='100.602477' xlink:href='#g5-40'/>
<use x='164.25112' y='100.602477' xlink:href='#g3-107'/>
<use x='170.740624' y='100.602477' xlink:href='#g5-41'/>
<use x='178.613779' y='100.602477' xlink:href='#g1-20'/>
<use x='191.233105' y='100.602477' xlink:href='#g3-117'/>
<use x='197.895545' y='102.39574' xlink:href='#g2-109'/>
<use x='205.386071' y='102.39574' xlink:href='#g2-105'/>
<use x='208.269211' y='102.39574' xlink:href='#g2-110'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

@@ -0,0 +1,34 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='121.63255pt' height='13.522849pt' viewBox='-.239051 -.240635 121.63255 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-57' d='M3.124284-2.351183C3.124284-.406476 2.199751-.071731 1.737484-.071731C1.570112-.071731 1.155666-.095641 .940473-.342715C1.291158-.374595 1.315068-.637609 1.315068-.71731C1.315068-.956413 1.131756-1.091905 .940473-1.091905C.797011-1.091905 .565878-1.004234 .565878-.70137C.565878-.159402 1.012204 .167372 1.745455 .167372C2.83736 .167372 3.873474-.916563 3.873474-2.622167C3.873474-4.694396 2.956912-5.300125 2.13599-5.300125C1.195517-5.300125 .350685-4.566874 .350685-3.52279C.350685-2.494645 1.123786-1.745455 2.024408-1.745455C2.590286-1.745455 2.933001-2.10411 3.124284-2.510585V-2.351183ZM2.056289-1.968618C1.689664-1.968618 1.458531-2.13599 1.283188-2.430884C1.099875-2.725778 1.099875-3.108344 1.099875-3.514819C1.099875-3.985056 1.099875-4.319801 1.315068-4.646575C1.514321-4.933499 1.769365-5.092902 2.14396-5.092902C2.677958-5.092902 2.909091-4.566874 2.933001-4.527024C3.100374-4.136488 3.108344-3.514819 3.108344-3.355417C3.108344-2.725778 2.765629-1.968618 2.056289-1.968618Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-49'/>
<use x='66.30672' y='67.546688' xlink:href='#g2-49'/>
<use x='71.039035' y='65.753425' xlink:href='#g3-40'/>
<use x='75.591361' y='65.753425' xlink:href='#g1-107'/>
<use x='82.080865' y='65.753425' xlink:href='#g3-41'/>
<use x='89.95402' y='65.753425' xlink:href='#g3-61'/>
<use x='102.379501' y='65.753425' xlink:href='#g1-117'/>
<use x='109.04194' y='65.753425' xlink:href='#g3-40'/>
<use x='113.594266' y='65.753425' xlink:href='#g1-107'/>
<use x='120.08377' y='65.753425' xlink:href='#g3-41'/>
<use x='127.292759' y='65.753425' xlink:href='#g0-0'/>
<use x='139.24792' y='65.753425' xlink:href='#g1-118'/>
<use x='144.90719' y='67.546688' xlink:href='#g2-57'/>
<use x='149.639505' y='65.753425' xlink:href='#g3-40'/>
<use x='154.191831' y='65.753425' xlink:href='#g1-107'/>
<use x='160.681335' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

@@ -0,0 +1,49 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='148.087005pt' height='40.514511pt' viewBox='-.239051 -.22797 148.087005 40.514511'>
<defs>
<path id='g1-54' d='M7.531756-8.093649C7.627397-8.261021 7.627397-8.284932 7.627397-8.320797C7.627397-8.404483 7.555666-8.5599 7.388294-8.5599C7.244832-8.5599 7.208966-8.488169 7.12528-8.320797L1.75741 2.116065C1.661768 2.283437 1.661768 2.307347 1.661768 2.343213C1.661768 2.438854 1.745455 2.582316 1.900872 2.582316C2.044334 2.582316 2.080199 2.510585 2.163885 2.343213L7.531756-8.093649Z'/>
<path id='g0-40' d='M5.391781 21.842092C5.391781 20.527024 4.483188 18.5066 2.402989 17.454545C3.694147 16.761146 5.236364 15.362391 5.379826 13.126775L5.391781 13.055044V4.770112C5.391781 3.789788 5.391781 3.574595 5.487422 3.120299C5.702615 2.163885 6.276463 .980324 7.79477 .083686C7.890411 .02391 7.902366 .011955 7.902366-.203238C7.902366-.466252 7.890411-.478207 7.627397-.478207C7.412204-.478207 7.388294-.478207 7.065504-.286924C4.387547 1.231382 4.23213 3.455044 4.23213 3.873474V12.373599C4.23213 13.234371 4.23213 14.20274 3.610461 15.302615C3.060523 16.282939 2.414944 16.773101 1.900872 17.119801C1.733499 17.227397 1.721544 17.239352 1.721544 17.44259C1.721544 17.657783 1.733499 17.669738 1.829141 17.729514C2.84533 18.399004 3.93325 19.463014 4.196264 21.411706C4.23213 21.67472 4.23213 21.69863 4.23213 21.842092V31.023661C4.23213 31.99203 4.829888 34.000498 7.137235 35.219925C7.412204 35.375342 7.436115 35.375342 7.627397 35.375342C7.890411 35.375342 7.902366 35.363387 7.902366 35.100374C7.902366 34.885181 7.890411 34.873225 7.84259 34.849315C7.328518 34.526526 5.762391 33.582067 5.439601 31.501868C5.391781 31.191034 5.391781 31.167123 5.391781 31.011706V21.842092Z'/>
<path id='g4-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g4-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g4-48' d='M5.355915-3.825654C5.355915-4.817933 5.296139-5.786301 4.865753-6.694894C4.375592-7.687173 3.514819-7.950187 2.929016-7.950187C2.235616-7.950187 1.3868-7.603487 .944458-6.611208C.609714-5.858032 .490162-5.116812 .490162-3.825654C.490162-2.666002 .573848-1.793275 1.004234-.944458C1.470486-.035866 2.295392 .251059 2.917061 .251059C3.957161 .251059 4.554919-.37061 4.901619-1.06401C5.332005-1.960648 5.355915-3.132254 5.355915-3.825654ZM2.917061 .011955C2.534496 .011955 1.75741-.203238 1.530262-1.506351C1.398755-2.223661 1.398755-3.132254 1.398755-3.969116C1.398755-4.94944 1.398755-5.834122 1.590037-6.539477C1.793275-7.340473 2.402989-7.711083 2.917061-7.711083C3.371357-7.711083 4.064757-7.436115 4.291905-6.40797C4.447323-5.726526 4.447323-4.782067 4.447323-3.969116C4.447323-3.16812 4.447323-2.259527 4.315816-1.530262C4.088667-.215193 3.335492 .011955 2.917061 .011955Z'/>
<path id='g4-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g4-58' d='M2.199751-4.578829C2.199751-4.901619 1.924782-5.152677 1.625903-5.152677C1.279203-5.152677 1.0401-4.877709 1.0401-4.578829C1.0401-4.220174 1.338979-3.993026 1.613948-3.993026C1.936737-3.993026 2.199751-4.244085 2.199751-4.578829ZM2.199751-.585803C2.199751-.908593 1.924782-1.159651 1.625903-1.159651C1.279203-1.159651 1.0401-.884682 1.0401-.585803C1.0401-.227148 1.338979 0 1.613948 0C1.936737 0 2.199751-.251059 2.199751-.585803Z'/>
<path id='g4-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g3-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g3-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g2-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -61.019978)'>
<use x='56.413267' y='74.719968' xlink:href='#g2-118'/>
<use x='62.072537' y='76.513231' xlink:href='#g3-49'/>
<use x='66.30672' y='76.513231' xlink:href='#g3-50'/>
<use x='71.039035' y='74.719968' xlink:href='#g4-40'/>
<use x='75.591361' y='74.719968' xlink:href='#g2-107'/>
<use x='82.080865' y='74.719968' xlink:href='#g4-41'/>
<use x='89.95402' y='74.719968' xlink:href='#g4-61'/>
<use x='102.379501' y='54.276444' xlink:href='#g0-40'/>
<use x='112.010104' y='66.530661' xlink:href='#g4-49'/>
<use x='129.569074' y='66.530661' xlink:href='#g4-58'/>
<use x='136.141565' y='66.530661' xlink:href='#g2-118'/>
<use x='141.800835' y='68.323924' xlink:href='#g3-49'/>
<use x='146.035018' y='68.323924' xlink:href='#g3-49'/>
<use x='150.767333' y='66.530661' xlink:href='#g4-40'/>
<use x='155.319659' y='66.530661' xlink:href='#g2-107'/>
<use x='161.809163' y='66.530661' xlink:href='#g4-41'/>
<use x='169.682318' y='66.530661' xlink:href='#g4-61'/>
<use x='182.107799' y='66.530661' xlink:href='#g4-48'/>
<use x='112.010104' y='83.865573' xlink:href='#g4-48'/>
<use x='129.569074' y='83.865573' xlink:href='#g4-58'/>
<use x='136.141565' y='83.865573' xlink:href='#g2-118'/>
<use x='141.800835' y='85.658836' xlink:href='#g3-49'/>
<use x='146.035018' y='85.658836' xlink:href='#g3-49'/>
<use x='150.767333' y='83.865573' xlink:href='#g4-40'/>
<use x='155.319659' y='83.865573' xlink:href='#g2-107'/>
<use x='161.809163' y='83.865573' xlink:href='#g4-41'/>
<use x='169.682318' y='83.865573' xlink:href='#g1-54'/>
<use x='169.682318' y='83.865573' xlink:href='#g4-61'/>
<use x='182.107799' y='83.865573' xlink:href='#g4-48'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,30 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='82.873466pt' height='13.522849pt' viewBox='-.239051 -.240635 82.873466 13.522849'>
<defs>
<path id='g2-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g2-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g1-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g1-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g0-105' d='M3.383313-1.709589C3.383313-1.769365 3.335492-1.817186 3.263761-1.817186C3.156164-1.817186 3.144209-1.78132 3.084433-1.578082C2.773599-.490162 2.283437-.119552 1.888917-.119552C1.745455-.119552 1.578082-.155417 1.578082-.514072C1.578082-.836862 1.721544-1.195517 1.853051-1.554172L2.689913-3.777833C2.725778-3.873474 2.809465-4.088667 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.554919 1.362889-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 1.984558-3.93325 1.888917-3.670237L1.052055-1.446575C.980324-1.255293 .908593-1.06401 .908593-.848817C.908593-.310834 1.279203 .119552 1.853051 .119552C2.952927 .119552 3.383313-1.625903 3.383313-1.709589ZM3.287671-7.460025C3.287671-7.639352 3.144209-7.854545 2.881196-7.854545C2.606227-7.854545 2.295392-7.591532 2.295392-7.280697C2.295392-6.981818 2.546451-6.886177 2.689913-6.886177C3.012702-6.886177 3.287671-7.197011 3.287671-7.460025Z'/>
<path id='g0-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g0-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g0-105'/>
<use x='60.406699' y='67.546688' xlink:href='#g1-49'/>
<use x='64.640882' y='67.546688' xlink:href='#g1-52'/>
<use x='69.373197' y='65.753425' xlink:href='#g2-40'/>
<use x='73.925523' y='65.753425' xlink:href='#g0-107'/>
<use x='80.415027' y='65.753425' xlink:href='#g2-41'/>
<use x='88.288182' y='65.753425' xlink:href='#g2-61'/>
<use x='100.713663' y='65.753425' xlink:href='#g0-118'/>
<use x='106.372933' y='67.546688' xlink:href='#g1-49'/>
<use x='110.607116' y='67.546688' xlink:href='#g1-50'/>
<use x='115.339431' y='65.753425' xlink:href='#g2-40'/>
<use x='119.891756' y='65.753425' xlink:href='#g0-107'/>
<use x='126.381261' y='65.753425' xlink:href='#g2-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.3 KiB

@@ -0,0 +1,60 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='239.418344pt' height='32.737943pt' viewBox='-.239051 -.227635 239.418344 32.737943'>
<defs>
<path id='g1-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g1-49' d='M4.303861-2.183811C3.833624-2.749689 3.769863-2.81345 3.490909-3.020672C3.124284-3.299626 2.638107-3.514819 2.11208-3.514819C1.139726-3.514819 .470237-2.662017 .470237-1.713574C.470237-.781071 1.131756 .079701 2.080199 .079701C2.733748 .079701 3.498879-.263014 4.160399-1.251308C4.630635-.68543 4.694396-.621669 4.97335-.414446C5.339975-.135492 5.826152 .079701 6.352179 .079701C7.324533 .079701 7.994022-.773101 7.994022-1.721544C7.994022-2.654047 7.332503-3.514819 6.38406-3.514819C5.730511-3.514819 4.96538-3.172105 4.303861-2.183811ZM4.542964-1.888917C4.845828-2.391034 5.499377-3.211955 6.439851-3.211955C7.292653-3.211955 7.770859-2.438854 7.770859-1.721544C7.770859-.948443 7.181071-.350685 6.479701-.350685S5.308095-.932503 4.542964-1.888917ZM3.921295-1.546202C3.618431-1.044085 2.964882-.223163 2.024408-.223163C1.171606-.223163 .6934-.996264 .6934-1.713574C.6934-2.486675 1.283188-3.084433 1.984558-3.084433S3.156164-2.502615 3.921295-1.546202Z'/>
<path id='g0-2' d='M9.57609 .047821C9.193524 .167372 8.799004 .537983 8.476214 1.08792C7.974097 1.936737 7.627397 2.988792 7.017684 5.463512C5.941719 9.839103 5.212453 13.365878 4.435367 17.920797C3.718057 22.129016 3.239851 24.292902 2.761644 25.380822C2.630137 25.703611 2.367123 26.086177 2.235616 26.181818C2.092154 26.289415 1.733499 26.27746 1.494396 26.169863C1.255293 26.050311 1.219427 26.002491 1.362889 25.966625C1.853051 25.870984 1.996513 25.225405 1.590037 24.91457C1.482441 24.830884 1.422665 24.818929 1.231382 24.818929C1.052055 24.818929 .992279 24.830884 .872727 24.91457C.6934 25.058032 .633624 25.225405 .657534 25.488418C.729265 26.289415 1.733499 26.803487 2.49863 26.432877C2.797509 26.289415 3.180075 25.894894 3.419178 25.476463C3.957161 24.579826 4.291905 23.527771 4.97335 20.730262C6.025405 16.366625 6.694894 13.126775 7.460025 8.631631C8.177335 4.423412 8.667497 2.259527 9.133748 1.171606C9.27721 .860772 9.528269 .466252 9.671731 .37061S10.173848 .274969 10.400996 .382565C10.6401 .502117 10.675965 .549938 10.532503 .585803C10.054296 .681445 9.910834 1.327024 10.305355 1.637858C10.424907 1.721544 10.484682 1.745455 10.66401 1.745455C10.855293 1.745455 10.915068 1.721544 11.022665 1.637858C11.201993 1.494396 11.273724 1.327024 11.249813 1.075965C11.190037 .3467 10.31731-.167372 9.57609 .047821Z'/>
<path id='g2-100' d='M4.28792-5.292154C4.29589-5.308095 4.319801-5.411706 4.319801-5.419676C4.319801-5.459527 4.28792-5.531258 4.192279-5.531258C4.160399-5.531258 3.913325-5.507347 3.730012-5.491407L3.283686-5.459527C3.108344-5.443587 3.028643-5.435616 3.028643-5.292154C3.028643-5.180573 3.140224-5.180573 3.235866-5.180573C3.618431-5.180573 3.618431-5.132752 3.618431-5.061021C3.618431-5.0132 3.55467-4.750187 3.514819-4.590785L3.124284-3.036613C3.052553-3.172105 2.82142-3.514819 2.335243-3.514819C1.3868-3.514819 .342715-2.406974 .342715-1.227397C.342715-.398506 .876712 .079701 1.490411 .079701C2.000498 .079701 2.438854-.326775 2.582316-.486177C2.725778 .063761 3.267746 .079701 3.363387 .079701C3.730012 .079701 3.913325-.223163 3.977086-.358655C4.136488-.645579 4.24807-1.107846 4.24807-1.139726C4.24807-1.187547 4.216189-1.243337 4.120548-1.243337S4.008966-1.195517 3.961146-.996264C3.849564-.557908 3.698132-.143462 3.387298-.143462C3.203985-.143462 3.132254-.294894 3.132254-.518057C3.132254-.669489 3.156164-.757161 3.180075-.860772L4.28792-5.292154ZM2.582316-.860772C2.183811-.310834 1.769365-.143462 1.514321-.143462C1.147696-.143462 .964384-.478207 .964384-.892653C.964384-1.267248 1.179577-2.12005 1.354919-2.470735C1.586052-2.956912 1.976588-3.291656 2.343213-3.291656C2.86127-3.291656 3.012702-2.709838 3.012702-2.614197C3.012702-2.582316 2.81345-1.801245 2.765629-1.594022C2.662017-1.219427 2.662017-1.203487 2.582316-.860772Z'/>
<path id='g2-105' d='M2.375093-4.97335C2.375093-5.148692 2.247572-5.276214 2.064259-5.276214C1.857036-5.276214 1.625903-5.084932 1.625903-4.845828C1.625903-4.670486 1.753425-4.542964 1.936737-4.542964C2.14396-4.542964 2.375093-4.734247 2.375093-4.97335ZM1.211457-2.048319L.781071-.948443C.74122-.828892 .70137-.73325 .70137-.597758C.70137-.207223 1.004234 .079701 1.42665 .079701C2.199751 .079701 2.526526-1.036115 2.526526-1.139726C2.526526-1.219427 2.462765-1.243337 2.406974-1.243337C2.311333-1.243337 2.295392-1.187547 2.271482-1.107846C2.088169-.470237 1.761395-.143462 1.44259-.143462C1.346949-.143462 1.251308-.183313 1.251308-.398506C1.251308-.589788 1.307098-.73325 1.41071-.980324C1.490411-1.195517 1.570112-1.41071 1.657783-1.625903L1.904857-2.271482C1.976588-2.454795 2.072229-2.701868 2.072229-2.83736C2.072229-3.235866 1.753425-3.514819 1.346949-3.514819C.573848-3.514819 .239103-2.399004 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.239601 .494147-2.319303C.71731-3.076463 1.083935-3.291656 1.323039-3.291656C1.43462-3.291656 1.514321-3.251806 1.514321-3.028643C1.514321-2.948941 1.506351-2.83736 1.42665-2.598257L1.211457-2.048319Z'/>
<path id='g2-112' d='M.414446 .964384C.350685 1.219427 .334745 1.283188 .01594 1.283188C-.095641 1.283188-.191283 1.283188-.191283 1.43462C-.191283 1.506351-.119552 1.546202-.079701 1.546202C0 1.546202 .03188 1.522291 .621669 1.522291C1.195517 1.522291 1.362889 1.546202 1.41868 1.546202C1.45056 1.546202 1.570112 1.546202 1.570112 1.39477C1.570112 1.283188 1.458531 1.283188 1.362889 1.283188C.980324 1.283188 .980324 1.235367 .980324 1.163636C.980324 1.107846 1.123786 .541968 1.362889-.390535C1.466501-.207223 1.713574 .079701 2.14396 .079701C3.124284 .079701 4.144458-1.052055 4.144458-2.207721C4.144458-2.996762 3.634371-3.514819 2.996762-3.514819C2.518555-3.514819 2.13599-3.188045 1.904857-2.948941C1.737484-3.514819 1.203487-3.514819 1.123786-3.514819C.836862-3.514819 .637609-3.331507 .510087-3.084433C.326775-2.725778 .239103-2.319303 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.629639-2.83736 .773101-3.291656 1.099875-3.291656C1.299128-3.291656 1.354919-3.108344 1.354919-2.917061C1.354919-2.83736 1.323039-2.646077 1.307098-2.582316L.414446 .964384ZM1.880946-2.454795C1.920797-2.590286 1.920797-2.606227 2.040349-2.749689C2.343213-3.108344 2.685928-3.291656 2.972852-3.291656C3.371357-3.291656 3.52279-2.901121 3.52279-2.542466C3.52279-2.247572 3.347447-1.39477 3.108344-.924533C2.901121-.494147 2.518555-.143462 2.14396-.143462C1.601993-.143462 1.474471-.765131 1.474471-.820922C1.474471-.836862 1.490411-.924533 1.498381-.948443L1.880946-2.454795Z'/>
<path id='g2-116' d='M1.761395-3.172105H2.542466C2.693898-3.172105 2.789539-3.172105 2.789539-3.323537C2.789539-3.435118 2.685928-3.435118 2.550436-3.435118H1.825156L2.11208-4.566874C2.14396-4.686426 2.14396-4.726276 2.14396-4.734247C2.14396-4.901619 2.016438-4.98132 1.880946-4.98132C1.609963-4.98132 1.554172-4.766127 1.466501-4.407472L1.219427-3.435118H.454296C.302864-3.435118 .199253-3.435118 .199253-3.283686C.199253-3.172105 .302864-3.172105 .438356-3.172105H1.155666L.67746-1.259278C.629639-1.060025 .557908-.781071 .557908-.669489C.557908-.191283 .948443 .079701 1.370859 .079701C2.223661 .079701 2.709838-1.044085 2.709838-1.139726C2.709838-1.227397 2.638107-1.243337 2.590286-1.243337C2.502615-1.243337 2.494645-1.211457 2.438854-1.091905C2.279452-.70934 1.880946-.143462 1.39477-.143462C1.227397-.143462 1.131756-.255044 1.131756-.518057C1.131756-.669489 1.155666-.757161 1.179577-.860772L1.761395-3.172105Z'/>
<path id='g4-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g4-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g4-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g4-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g3-28' d='M3.431133-4.507098H5.415691C5.571108-4.507098 5.965629-4.507098 5.965629-4.889664C5.965629-5.152677 5.738481-5.152677 5.523288-5.152677H2.235616C1.960648-5.152677 1.554172-5.152677 1.004234-4.566874C.6934-4.220174 .310834-3.58655 .310834-3.514819S.37061-3.419178 .442341-3.419178C.526027-3.419178 .537983-3.455044 .597758-3.526775C1.219427-4.507098 1.841096-4.507098 2.139975-4.507098H3.132254L1.888917-.406476C1.829141-.227148 1.829141-.203238 1.829141-.167372C1.829141-.035866 1.912827 .131507 2.15193 .131507C2.52254 .131507 2.582316-.191283 2.618182-.37061L3.431133-4.507098Z'/>
<path id='g3-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g3-100' d='M6.01345-7.998007C6.025405-8.045828 6.049315-8.117559 6.049315-8.177335C6.049315-8.296887 5.929763-8.296887 5.905853-8.296887C5.893898-8.296887 5.308095-8.249066 5.248319-8.237111C5.045081-8.225156 4.865753-8.201245 4.65056-8.18929C4.351681-8.16538 4.267995-8.153425 4.267995-7.938232C4.267995-7.81868 4.363636-7.81868 4.531009-7.81868C5.116812-7.81868 5.128767-7.711083 5.128767-7.591532C5.128767-7.519801 5.104857-7.424159 5.092902-7.388294L4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.71731 4.244085-.968369 4.327771-1.303113L6.01345-7.998007ZM3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665Z'/>
<path id='g3-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g3-116' d='M2.402989-4.805978H3.502864C3.730012-4.805978 3.849564-4.805978 3.849564-5.021171C3.849564-5.152677 3.777833-5.152677 3.53873-5.152677H2.486675L2.929016-6.898132C2.976837-7.065504 2.976837-7.089415 2.976837-7.173101C2.976837-7.364384 2.82142-7.47198 2.666002-7.47198C2.570361-7.47198 2.295392-7.436115 2.199751-7.053549L1.733499-5.152677H.609714C.37061-5.152677 .263014-5.152677 .263014-4.925529C.263014-4.805978 .3467-4.805978 .573848-4.805978H1.637858L.848817-1.649813C.753176-1.231382 .71731-1.111831 .71731-.956413C.71731-.394521 1.111831 .119552 1.78132 .119552C2.988792 .119552 3.634371-1.625903 3.634371-1.709589C3.634371-1.78132 3.58655-1.817186 3.514819-1.817186C3.490909-1.817186 3.443088-1.817186 3.419178-1.769365C3.407223-1.75741 3.395268-1.745455 3.311582-1.554172C3.060523-.956413 2.510585-.119552 1.817186-.119552C1.458531-.119552 1.43462-.418431 1.43462-.681445C1.43462-.6934 1.43462-.920548 1.470486-1.06401L2.402989-4.805978Z'/>
<path id='g3-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -60.930322)'>
<use x='56.413267' y='71.818115' xlink:href='#g3-117'/>
<use x='63.075707' y='71.818115' xlink:href='#g4-40'/>
<use x='67.628032' y='71.818115' xlink:href='#g3-116'/>
<use x='71.855192' y='71.818115' xlink:href='#g4-41'/>
<use x='79.728347' y='71.818115' xlink:href='#g4-61'/>
<use x='92.153828' y='71.818115' xlink:href='#g3-75'/>
<use x='102.112941' y='73.611378' xlink:href='#g2-112'/>
<use x='106.873851' y='71.818115' xlink:href='#g3-101'/>
<use x='112.299291' y='71.818115' xlink:href='#g4-40'/>
<use x='116.851617' y='71.818115' xlink:href='#g3-116'/>
<use x='121.078776' y='71.818115' xlink:href='#g4-41'/>
<use x='128.287765' y='71.818115' xlink:href='#g4-43'/>
<use x='140.04908' y='71.818115' xlink:href='#g3-75'/>
<use x='150.008194' y='73.611378' xlink:href='#g2-105'/>
<use x='155.381963' y='55.545671' xlink:href='#g0-2'/>
<use x='167.337162' y='58.700512' xlink:href='#g2-116'/>
<use x='162.023743' y='82.611122' xlink:href='#g1-0'/>
<use x='168.61025' y='82.611122' xlink:href='#g1-49'/>
<use x='179.569245' y='71.818115' xlink:href='#g3-101'/>
<use x='184.994685' y='71.818115' xlink:href='#g4-40'/>
<use x='189.547011' y='71.818115' xlink:href='#g3-28'/>
<use x='195.965952' y='71.818115' xlink:href='#g4-41'/>
<use x='200.518278' y='71.818115' xlink:href='#g3-100'/>
<use x='206.600971' y='71.818115' xlink:href='#g3-28'/>
<use x='215.676576' y='71.818115' xlink:href='#g4-43'/>
<use x='227.437891' y='71.818115' xlink:href='#g3-75'/>
<use x='237.397004' y='73.611378' xlink:href='#g2-100'/>
<use x='243.447967' y='63.730356' xlink:href='#g3-100'/>
<use x='249.53066' y='63.730356' xlink:href='#g3-101'/>
<use x='254.9561' y='63.730356' xlink:href='#g4-40'/>
<use x='259.508426' y='63.730356' xlink:href='#g3-116'/>
<use x='263.735586' y='63.730356' xlink:href='#g4-41'/>
<rect x='243.447967' y='68.590229' height='.478187' width='24.83994'/>
<use x='250.713021' y='80.018777' xlink:href='#g3-100'/>
<use x='256.795714' y='80.018777' xlink:href='#g3-116'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

@@ -0,0 +1,42 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='167.894042pt' height='13.522849pt' viewBox='-.239051 -.240635 167.894042 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g1-100' d='M6.01345-7.998007C6.025405-8.045828 6.049315-8.117559 6.049315-8.177335C6.049315-8.296887 5.929763-8.296887 5.905853-8.296887C5.893898-8.296887 5.308095-8.249066 5.248319-8.237111C5.045081-8.225156 4.865753-8.201245 4.65056-8.18929C4.351681-8.16538 4.267995-8.153425 4.267995-7.938232C4.267995-7.81868 4.363636-7.81868 4.531009-7.81868C5.116812-7.81868 5.128767-7.711083 5.128767-7.591532C5.128767-7.519801 5.104857-7.424159 5.092902-7.388294L4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.71731 4.244085-.968369 4.327771-1.303113L6.01345-7.998007ZM3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-118'/>
<use x='62.072537' y='67.546688' xlink:href='#g2-52'/>
<use x='66.804852' y='65.753425' xlink:href='#g3-40'/>
<use x='71.357178' y='65.753425' xlink:href='#g1-107'/>
<use x='77.846682' y='65.753425' xlink:href='#g3-41'/>
<use x='85.719837' y='65.753425' xlink:href='#g3-61'/>
<use x='98.145318' y='65.753425' xlink:href='#g1-118'/>
<use x='103.804588' y='67.546688' xlink:href='#g2-49'/>
<use x='108.536903' y='65.753425' xlink:href='#g3-40'/>
<use x='113.089229' y='65.753425' xlink:href='#g1-107'/>
<use x='119.578733' y='65.753425' xlink:href='#g3-41'/>
<use x='126.787722' y='65.753425' xlink:href='#g0-0'/>
<use x='138.742883' y='65.753425' xlink:href='#g1-100'/>
<use x='144.825576' y='67.546688' xlink:href='#g2-50'/>
<use x='149.55789' y='65.753425' xlink:href='#g3-40'/>
<use x='154.110216' y='65.753425' xlink:href='#g1-107'/>
<use x='160.59972' y='65.753425' xlink:href='#g3-41'/>
<use x='167.808709' y='65.753425' xlink:href='#g0-0'/>
<use x='179.76387' y='65.753425' xlink:href='#g1-100'/>
<use x='185.846563' y='67.546688' xlink:href='#g2-51'/>
<use x='190.578878' y='65.753425' xlink:href='#g3-40'/>
<use x='195.131204' y='65.753425' xlink:href='#g1-107'/>
<use x='201.620708' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,31 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='98.790318pt' height='13.522849pt' viewBox='-.239051 -.240635 98.790318 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g1-100' d='M6.01345-7.998007C6.025405-8.045828 6.049315-8.117559 6.049315-8.177335C6.049315-8.296887 5.929763-8.296887 5.905853-8.296887C5.893898-8.296887 5.308095-8.249066 5.248319-8.237111C5.045081-8.225156 4.865753-8.201245 4.65056-8.18929C4.351681-8.16538 4.267995-8.153425 4.267995-7.938232C4.267995-7.81868 4.363636-7.81868 4.531009-7.81868C5.116812-7.81868 5.128767-7.711083 5.128767-7.591532C5.128767-7.519801 5.104857-7.424159 5.092902-7.388294L4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.71731 4.244085-.968369 4.327771-1.303113L6.01345-7.998007ZM3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-100'/>
<use x='62.49596' y='67.546688' xlink:href='#g2-50'/>
<use x='67.228275' y='65.753425' xlink:href='#g3-40'/>
<use x='71.780601' y='65.753425' xlink:href='#g1-107'/>
<use x='78.270105' y='65.753425' xlink:href='#g3-41'/>
<use x='86.14326' y='65.753425' xlink:href='#g3-61'/>
<use x='98.568741' y='65.753425' xlink:href='#g1-118'/>
<use x='104.228011' y='67.546688' xlink:href='#g2-49'/>
<use x='108.960326' y='65.753425' xlink:href='#g3-40'/>
<use x='113.512652' y='65.753425' xlink:href='#g1-107'/>
<use x='122.658819' y='65.753425' xlink:href='#g0-0'/>
<use x='134.61398' y='65.753425' xlink:href='#g3-49'/>
<use x='140.46697' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

@@ -0,0 +1,35 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='109.830761pt' height='13.522849pt' viewBox='-.239051 -.240635 109.830761 13.522849'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g3-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g3-49' d='M3.443088-7.663263C3.443088-7.938232 3.443088-7.950187 3.203985-7.950187C2.917061-7.627397 2.319303-7.185056 1.08792-7.185056V-6.838356C1.362889-6.838356 1.960648-6.838356 2.618182-7.149191V-.920548C2.618182-.490162 2.582316-.3467 1.530262-.3467H1.159651V0C1.482441-.02391 2.642092-.02391 3.036613-.02391S4.578829-.02391 4.901619 0V-.3467H4.531009C3.478954-.3467 3.443088-.490162 3.443088-.920548V-7.663263Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g2-51' d='M2.016438-2.662017C2.646077-2.662017 3.044583-2.199751 3.044583-1.362889C3.044583-.366625 2.478705-.071731 2.056289-.071731C1.617933-.071731 1.020174-.231133 .74122-.653549C1.028144-.653549 1.227397-.836862 1.227397-1.099875C1.227397-1.354919 1.044085-1.538232 .789041-1.538232C.573848-1.538232 .350685-1.40274 .350685-1.083935C.350685-.326775 1.163636 .167372 2.072229 .167372C3.132254 .167372 3.873474-.565878 3.873474-1.362889C3.873474-2.024408 3.347447-2.630137 2.534496-2.805479C3.164134-3.028643 3.634371-3.57061 3.634371-4.208219S2.917061-5.300125 2.088169-5.300125C1.235367-5.300125 .589788-4.837858 .589788-4.23213C.589788-3.937235 .789041-3.809714 .996264-3.809714C1.243337-3.809714 1.40274-3.985056 1.40274-4.216189C1.40274-4.511083 1.147696-4.622665 .972354-4.630635C1.307098-5.068991 1.920797-5.092902 2.064259-5.092902C2.271482-5.092902 2.87721-5.029141 2.87721-4.208219C2.87721-3.650311 2.646077-3.315567 2.534496-3.188045C2.295392-2.940971 2.11208-2.925031 1.625903-2.893151C1.474471-2.885181 1.41071-2.87721 1.41071-2.773599C1.41071-2.662017 1.482441-2.662017 1.617933-2.662017H2.016438Z'/>
<path id='g2-52' d='M3.140224-5.156663C3.140224-5.316065 3.140224-5.379826 2.972852-5.379826C2.86924-5.379826 2.86127-5.371856 2.781569-5.260274L.239103-1.570112V-1.307098H2.486675V-.645579C2.486675-.350685 2.462765-.263014 1.849066-.263014H1.665753V0C2.343213-.02391 2.359153-.02391 2.81345-.02391S3.283686-.02391 3.961146 0V-.263014H3.777833C3.164134-.263014 3.140224-.350685 3.140224-.645579V-1.307098H3.985056V-1.570112H3.140224V-5.156663ZM2.542466-4.511083V-1.570112H.518057L2.542466-4.511083Z'/>
<path id='g1-99' d='M4.674471-4.495143C4.447323-4.495143 4.339726-4.495143 4.172354-4.351681C4.100623-4.291905 3.969116-4.112578 3.969116-3.921295C3.969116-3.682192 4.148443-3.53873 4.375592-3.53873C4.662516-3.53873 4.985305-3.777833 4.985305-4.25604C4.985305-4.829888 4.435367-5.272229 3.610461-5.272229C2.044334-5.272229 .478207-3.56264 .478207-1.865006C.478207-.824907 1.123786 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.542217-.119552 1.279203-.836862 1.279203-1.43462C1.279203-1.853051 1.482441-3.012702 1.912827-3.825654C2.223661-4.387547 2.86924-5.033126 3.622416-5.033126C3.777833-5.033126 4.435367-5.009215 4.674471-4.495143Z'/>
<path id='g1-100' d='M6.01345-7.998007C6.025405-8.045828 6.049315-8.117559 6.049315-8.177335C6.049315-8.296887 5.929763-8.296887 5.905853-8.296887C5.893898-8.296887 5.308095-8.249066 5.248319-8.237111C5.045081-8.225156 4.865753-8.201245 4.65056-8.18929C4.351681-8.16538 4.267995-8.153425 4.267995-7.938232C4.267995-7.81868 4.363636-7.81868 4.531009-7.81868C5.116812-7.81868 5.128767-7.711083 5.128767-7.591532C5.128767-7.519801 5.104857-7.424159 5.092902-7.388294L4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.71731 4.244085-.968369 4.327771-1.303113L6.01345-7.998007ZM3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665Z'/>
<path id='g1-107' d='M3.359402-7.998007C3.371357-8.045828 3.395268-8.117559 3.395268-8.177335C3.395268-8.296887 3.275716-8.296887 3.251806-8.296887C3.239851-8.296887 2.809465-8.261021 2.594271-8.237111C2.391034-8.225156 2.211706-8.201245 1.996513-8.18929C1.709589-8.16538 1.625903-8.153425 1.625903-7.938232C1.625903-7.81868 1.745455-7.81868 1.865006-7.81868C2.47472-7.81868 2.47472-7.711083 2.47472-7.591532C2.47472-7.543711 2.47472-7.519801 2.414944-7.304608L.705355-.466252C.657534-.286924 .657534-.263014 .657534-.191283C.657534 .071731 .860772 .119552 .980324 .119552C1.315068 .119552 1.3868-.143462 1.482441-.514072L2.044334-2.749689C2.905106-2.654047 3.419178-2.295392 3.419178-1.721544C3.419178-1.649813 3.419178-1.601993 3.383313-1.422665C3.335492-1.243337 3.335492-1.099875 3.335492-1.0401C3.335492-.3467 3.789788 .119552 4.399502 .119552C4.94944 .119552 5.236364-.382565 5.332005-.549938C5.583064-.992279 5.738481-1.661768 5.738481-1.709589C5.738481-1.769365 5.69066-1.817186 5.618929-1.817186C5.511333-1.817186 5.499377-1.769365 5.451557-1.578082C5.284184-.956413 5.033126-.119552 4.423412-.119552C4.184309-.119552 4.028892-.239103 4.028892-.6934C4.028892-.920548 4.076712-1.183562 4.124533-1.362889C4.172354-1.578082 4.172354-1.590037 4.172354-1.733499C4.172354-2.438854 3.53873-2.833375 2.438854-2.976837C2.86924-3.239851 3.299626-3.706102 3.466999-3.88543C4.148443-4.65056 4.614695-5.033126 5.164633-5.033126C5.439601-5.033126 5.511333-4.961395 5.595019-4.889664C5.152677-4.841843 4.985305-4.531009 4.985305-4.291905C4.985305-4.004981 5.212453-3.90934 5.379826-3.90934C5.702615-3.90934 5.989539-4.184309 5.989539-4.566874C5.989539-4.913574 5.71457-5.272229 5.176588-5.272229C4.519054-5.272229 3.981071-4.805978 3.132254-3.849564C3.012702-3.706102 2.570361-3.251806 2.12802-3.084433L3.359402-7.998007Z'/>
<path id='g1-118' d='M5.463512-4.471233C5.463512-5.224408 5.080946-5.272229 4.985305-5.272229C4.698381-5.272229 4.435367-4.985305 4.435367-4.746202C4.435367-4.60274 4.519054-4.519054 4.566874-4.471233C4.686426-4.363636 4.99726-4.040847 4.99726-3.419178C4.99726-2.917061 4.27995-.119552 2.84533-.119552C2.116065-.119552 1.972603-.729265 1.972603-1.171606C1.972603-1.769365 2.247572-2.606227 2.570361-3.466999C2.761644-3.957161 2.809465-4.076712 2.809465-4.315816C2.809465-4.817933 2.450809-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.936737-5.033126 2.139975-5.033126 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.255293-1.996513 1.255293-1.625903 1.255293-1.338979C1.255293-1.075965 1.291158-.585803 1.661768-.251059C2.092154 .119552 2.689913 .119552 2.797509 .119552C4.782067 .119552 5.463512-3.789788 5.463512-4.471233Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -64.41)'>
<use x='56.413267' y='65.753425' xlink:href='#g1-100'/>
<use x='62.49596' y='67.546688' xlink:href='#g2-51'/>
<use x='67.228275' y='65.753425' xlink:href='#g3-40'/>
<use x='71.780601' y='65.753425' xlink:href='#g1-107'/>
<use x='78.270105' y='65.753425' xlink:href='#g3-41'/>
<use x='86.14326' y='65.753425' xlink:href='#g3-61'/>
<use x='98.568741' y='65.753425' xlink:href='#g1-99'/>
<use x='103.606729' y='67.546688' xlink:href='#g2-50'/>
<use x='108.339044' y='65.753425' xlink:href='#g1-118'/>
<use x='113.998314' y='67.546688' xlink:href='#g2-52'/>
<use x='118.730629' y='65.753425' xlink:href='#g3-40'/>
<use x='123.282955' y='65.753425' xlink:href='#g1-107'/>
<use x='132.429122' y='65.753425' xlink:href='#g0-0'/>
<use x='144.384283' y='65.753425' xlink:href='#g3-49'/>
<use x='150.237273' y='65.753425' xlink:href='#g3-41'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,24 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='69.934422pt' height='28.429846pt' viewBox='-.239051 -.226929 69.934422 28.429846'>
<defs>
<path id='g2-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g2-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g2-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g1-49' d='M2.502615-5.076961C2.502615-5.292154 2.486675-5.300125 2.271482-5.300125C1.944707-4.98132 1.522291-4.790037 .765131-4.790037V-4.527024C.980324-4.527024 1.41071-4.527024 1.872976-4.742217V-.653549C1.872976-.358655 1.849066-.263014 1.091905-.263014H.812951V0C1.139726-.02391 1.825156-.02391 2.183811-.02391S3.235866-.02391 3.56264 0V-.263014H3.283686C2.526526-.263014 2.502615-.358655 2.502615-.653549V-5.076961Z'/>
<path id='g0-28' d='M3.431133-4.507098H5.415691C5.571108-4.507098 5.965629-4.507098 5.965629-4.889664C5.965629-5.152677 5.738481-5.152677 5.523288-5.152677H2.235616C1.960648-5.152677 1.554172-5.152677 1.004234-4.566874C.6934-4.220174 .310834-3.58655 .310834-3.514819S.37061-3.419178 .442341-3.419178C.526027-3.419178 .537983-3.455044 .597758-3.526775C1.219427-4.507098 1.841096-4.507098 2.139975-4.507098H3.132254L1.888917-.406476C1.829141-.227148 1.829141-.203238 1.829141-.167372C1.829141-.035866 1.912827 .131507 2.15193 .131507C2.52254 .131507 2.582316-.191283 2.618182-.37061L3.431133-4.507098Z'/>
<path id='g0-84' d='M4.985305-7.292653C5.057036-7.579577 5.080946-7.687173 5.260274-7.734994C5.355915-7.758904 5.750436-7.758904 6.001494-7.758904C7.197011-7.758904 7.758904-7.711083 7.758904-6.77858C7.758904-6.599253 7.711083-6.144956 7.639352-5.702615L7.627397-5.559153C7.627397-5.511333 7.675218-5.439601 7.746949-5.439601C7.866501-5.439601 7.866501-5.499377 7.902366-5.69066L8.249066-7.806725C8.272976-7.914321 8.272976-7.938232 8.272976-7.974097C8.272976-8.105604 8.201245-8.105604 7.962142-8.105604H1.422665C1.147696-8.105604 1.135741-8.093649 1.06401-7.878456L.334745-5.726526C.32279-5.702615 .286924-5.571108 .286924-5.559153C.286924-5.499377 .334745-5.439601 .406476-5.439601C.502117-5.439601 .526027-5.487422 .573848-5.642839C1.075965-7.089415 1.327024-7.758904 2.917061-7.758904H3.718057C4.004981-7.758904 4.124533-7.758904 4.124533-7.627397C4.124533-7.591532 4.124533-7.567621 4.064757-7.352428L2.462765-.932503C2.343213-.466252 2.319303-.3467 1.052055-.3467C.753176-.3467 .669489-.3467 .669489-.119552C.669489 0 .800996 0 .860772 0C1.159651 0 1.470486-.02391 1.769365-.02391H3.634371C3.93325-.02391 4.25604 0 4.554919 0C4.686426 0 4.805978 0 4.805978-.227148C4.805978-.3467 4.722291-.3467 4.411457-.3467C3.335492-.3467 3.335492-.454296 3.335492-.633624C3.335492-.645579 3.335492-.729265 3.383313-.920548L4.985305-7.292653Z'/>
<path id='g0-99' d='M4.674471-4.495143C4.447323-4.495143 4.339726-4.495143 4.172354-4.351681C4.100623-4.291905 3.969116-4.112578 3.969116-3.921295C3.969116-3.682192 4.148443-3.53873 4.375592-3.53873C4.662516-3.53873 4.985305-3.777833 4.985305-4.25604C4.985305-4.829888 4.435367-5.272229 3.610461-5.272229C2.044334-5.272229 .478207-3.56264 .478207-1.865006C.478207-.824907 1.123786 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.542217-.119552 1.279203-.836862 1.279203-1.43462C1.279203-1.853051 1.482441-3.012702 1.912827-3.825654C2.223661-4.387547 2.86924-5.033126 3.622416-5.033126C3.777833-5.033126 4.435367-5.009215 4.674471-4.495143Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -60.741254)'>
<use x='56.413267' y='69.590446' xlink:href='#g0-99'/>
<use x='61.451256' y='71.383709' xlink:href='#g1-49'/>
<use x='69.5044' y='69.590446' xlink:href='#g2-61'/>
<use x='97.78727' y='61.502687' xlink:href='#g2-50'/>
<rect x='83.125394' y='66.36256' height='.478187' width='35.176742'/>
<use x='83.125394' y='77.791108' xlink:href='#g0-84'/>
<use x='94.268894' y='77.791108' xlink:href='#g2-43'/>
<use x='106.030209' y='77.791108' xlink:href='#g2-50'/>
<use x='111.883199' y='77.791108' xlink:href='#g0-28'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

@@ -0,0 +1,28 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='70.153459pt' height='28.605467pt' viewBox='-.239051 -.22824 70.153459 28.605467'>
<defs>
<path id='g0-0' d='M7.878456-2.749689C8.081694-2.749689 8.296887-2.749689 8.296887-2.988792S8.081694-3.227895 7.878456-3.227895H1.41071C1.207472-3.227895 .992279-3.227895 .992279-2.988792S1.207472-2.749689 1.41071-2.749689H7.878456Z'/>
<path id='g3-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g3-50' d='M5.260274-2.008468H4.99726C4.961395-1.80523 4.865753-1.147696 4.746202-.956413C4.662516-.848817 3.981071-.848817 3.622416-.848817H1.41071C1.733499-1.123786 2.462765-1.888917 2.773599-2.175841C4.590785-3.849564 5.260274-4.471233 5.260274-5.654795C5.260274-7.029639 4.172354-7.950187 2.785554-7.950187S.585803-6.766625 .585803-5.738481C.585803-5.128767 1.111831-5.128767 1.147696-5.128767C1.398755-5.128767 1.709589-5.308095 1.709589-5.69066C1.709589-6.025405 1.482441-6.252553 1.147696-6.252553C1.0401-6.252553 1.016189-6.252553 .980324-6.240598C1.207472-7.053549 1.853051-7.603487 2.630137-7.603487C3.646326-7.603487 4.267995-6.75467 4.267995-5.654795C4.267995-4.638605 3.682192-3.753923 3.000747-2.988792L.585803-.286924V0H4.94944L5.260274-2.008468Z'/>
<path id='g3-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g2-50' d='M2.247572-1.625903C2.375093-1.745455 2.709838-2.008468 2.83736-2.12005C3.331507-2.574346 3.801743-3.012702 3.801743-3.737983C3.801743-4.686426 3.004732-5.300125 2.008468-5.300125C1.052055-5.300125 .422416-4.574844 .422416-3.865504C.422416-3.474969 .73325-3.419178 .844832-3.419178C1.012204-3.419178 1.259278-3.53873 1.259278-3.841594C1.259278-4.25604 .860772-4.25604 .765131-4.25604C.996264-4.837858 1.530262-5.037111 1.920797-5.037111C2.662017-5.037111 3.044583-4.407472 3.044583-3.737983C3.044583-2.909091 2.462765-2.303362 1.522291-1.338979L.518057-.302864C.422416-.215193 .422416-.199253 .422416 0H3.57061L3.801743-1.42665H3.55467C3.53076-1.267248 3.466999-.868742 3.371357-.71731C3.323537-.653549 2.717808-.653549 2.590286-.653549H1.171606L2.247572-1.625903Z'/>
<path id='g1-28' d='M3.431133-4.507098H5.415691C5.571108-4.507098 5.965629-4.507098 5.965629-4.889664C5.965629-5.152677 5.738481-5.152677 5.523288-5.152677H2.235616C1.960648-5.152677 1.554172-5.152677 1.004234-4.566874C.6934-4.220174 .310834-3.58655 .310834-3.514819S.37061-3.419178 .442341-3.419178C.526027-3.419178 .537983-3.455044 .597758-3.526775C1.219427-4.507098 1.841096-4.507098 2.139975-4.507098H3.132254L1.888917-.406476C1.829141-.227148 1.829141-.203238 1.829141-.167372C1.829141-.035866 1.912827 .131507 2.15193 .131507C2.52254 .131507 2.582316-.191283 2.618182-.37061L3.431133-4.507098Z'/>
<path id='g1-84' d='M4.985305-7.292653C5.057036-7.579577 5.080946-7.687173 5.260274-7.734994C5.355915-7.758904 5.750436-7.758904 6.001494-7.758904C7.197011-7.758904 7.758904-7.711083 7.758904-6.77858C7.758904-6.599253 7.711083-6.144956 7.639352-5.702615L7.627397-5.559153C7.627397-5.511333 7.675218-5.439601 7.746949-5.439601C7.866501-5.439601 7.866501-5.499377 7.902366-5.69066L8.249066-7.806725C8.272976-7.914321 8.272976-7.938232 8.272976-7.974097C8.272976-8.105604 8.201245-8.105604 7.962142-8.105604H1.422665C1.147696-8.105604 1.135741-8.093649 1.06401-7.878456L.334745-5.726526C.32279-5.702615 .286924-5.571108 .286924-5.559153C.286924-5.499377 .334745-5.439601 .406476-5.439601C.502117-5.439601 .526027-5.487422 .573848-5.642839C1.075965-7.089415 1.327024-7.758904 2.917061-7.758904H3.718057C4.004981-7.758904 4.124533-7.758904 4.124533-7.627397C4.124533-7.591532 4.124533-7.567621 4.064757-7.352428L2.462765-.932503C2.343213-.466252 2.319303-.3467 1.052055-.3467C.753176-.3467 .669489-.3467 .669489-.119552C.669489 0 .800996 0 .860772 0C1.159651 0 1.470486-.02391 1.769365-.02391H3.634371C3.93325-.02391 4.25604 0 4.554919 0C4.686426 0 4.805978 0 4.805978-.227148C4.805978-.3467 4.722291-.3467 4.411457-.3467C3.335492-.3467 3.335492-.454296 3.335492-.633624C3.335492-.645579 3.335492-.729265 3.383313-.920548L4.985305-7.292653Z'/>
<path id='g1-99' d='M4.674471-4.495143C4.447323-4.495143 4.339726-4.495143 4.172354-4.351681C4.100623-4.291905 3.969116-4.112578 3.969116-3.921295C3.969116-3.682192 4.148443-3.53873 4.375592-3.53873C4.662516-3.53873 4.985305-3.777833 4.985305-4.25604C4.985305-4.829888 4.435367-5.272229 3.610461-5.272229C2.044334-5.272229 .478207-3.56264 .478207-1.865006C.478207-.824907 1.123786 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.542217-.119552 1.279203-.836862 1.279203-1.43462C1.279203-1.853051 1.482441-3.012702 1.912827-3.825654C2.223661-4.387547 2.86924-5.033126 3.622416-5.033126C3.777833-5.033126 4.435367-5.009215 4.674471-4.495143Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -61.092317)'>
<use x='56.413267' y='70.055377' xlink:href='#g1-99'/>
<use x='61.451256' y='71.84864' xlink:href='#g2-50'/>
<use x='69.5044' y='70.055377' xlink:href='#g3-61'/>
<use x='83.125394' y='61.967618' xlink:href='#g1-84'/>
<use x='94.268894' y='61.967618' xlink:href='#g0-0'/>
<use x='106.224054' y='61.967618' xlink:href='#g3-50'/>
<use x='112.077045' y='61.967618' xlink:href='#g1-28'/>
<rect x='83.125394' y='66.827491' height='.478187' width='35.37058'/>
<use x='83.222321' y='78.256039' xlink:href='#g1-84'/>
<use x='94.36582' y='78.256039' xlink:href='#g3-43'/>
<use x='106.127135' y='78.256039' xlink:href='#g3-50'/>
<use x='111.980126' y='78.256039' xlink:href='#g1-28'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

@@ -0,0 +1,48 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Generated by CodeCogs with dvisvgm 2.11.1 -->
<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='176.453266pt' height='32.737943pt' viewBox='-.239051 -.227635 176.453266 32.737943'>
<defs>
<path id='g1-0' d='M5.571108-1.809215C5.69863-1.809215 5.873973-1.809215 5.873973-1.992528S5.69863-2.175841 5.571108-2.175841H1.004234C.876712-2.175841 .70137-2.175841 .70137-1.992528S.876712-1.809215 1.004234-1.809215H5.571108Z'/>
<path id='g1-49' d='M4.303861-2.183811C3.833624-2.749689 3.769863-2.81345 3.490909-3.020672C3.124284-3.299626 2.638107-3.514819 2.11208-3.514819C1.139726-3.514819 .470237-2.662017 .470237-1.713574C.470237-.781071 1.131756 .079701 2.080199 .079701C2.733748 .079701 3.498879-.263014 4.160399-1.251308C4.630635-.68543 4.694396-.621669 4.97335-.414446C5.339975-.135492 5.826152 .079701 6.352179 .079701C7.324533 .079701 7.994022-.773101 7.994022-1.721544C7.994022-2.654047 7.332503-3.514819 6.38406-3.514819C5.730511-3.514819 4.96538-3.172105 4.303861-2.183811ZM4.542964-1.888917C4.845828-2.391034 5.499377-3.211955 6.439851-3.211955C7.292653-3.211955 7.770859-2.438854 7.770859-1.721544C7.770859-.948443 7.181071-.350685 6.479701-.350685S5.308095-.932503 4.542964-1.888917ZM3.921295-1.546202C3.618431-1.044085 2.964882-.223163 2.024408-.223163C1.171606-.223163 .6934-.996264 .6934-1.713574C.6934-2.486675 1.283188-3.084433 1.984558-3.084433S3.156164-2.502615 3.921295-1.546202Z'/>
<path id='g0-2' d='M9.57609 .047821C9.193524 .167372 8.799004 .537983 8.476214 1.08792C7.974097 1.936737 7.627397 2.988792 7.017684 5.463512C5.941719 9.839103 5.212453 13.365878 4.435367 17.920797C3.718057 22.129016 3.239851 24.292902 2.761644 25.380822C2.630137 25.703611 2.367123 26.086177 2.235616 26.181818C2.092154 26.289415 1.733499 26.27746 1.494396 26.169863C1.255293 26.050311 1.219427 26.002491 1.362889 25.966625C1.853051 25.870984 1.996513 25.225405 1.590037 24.91457C1.482441 24.830884 1.422665 24.818929 1.231382 24.818929C1.052055 24.818929 .992279 24.830884 .872727 24.91457C.6934 25.058032 .633624 25.225405 .657534 25.488418C.729265 26.289415 1.733499 26.803487 2.49863 26.432877C2.797509 26.289415 3.180075 25.894894 3.419178 25.476463C3.957161 24.579826 4.291905 23.527771 4.97335 20.730262C6.025405 16.366625 6.694894 13.126775 7.460025 8.631631C8.177335 4.423412 8.667497 2.259527 9.133748 1.171606C9.27721 .860772 9.528269 .466252 9.671731 .37061S10.173848 .274969 10.400996 .382565C10.6401 .502117 10.675965 .549938 10.532503 .585803C10.054296 .681445 9.910834 1.327024 10.305355 1.637858C10.424907 1.721544 10.484682 1.745455 10.66401 1.745455C10.855293 1.745455 10.915068 1.721544 11.022665 1.637858C11.201993 1.494396 11.273724 1.327024 11.249813 1.075965C11.190037 .3467 10.31731-.167372 9.57609 .047821Z'/>
<path id='g2-105' d='M2.375093-4.97335C2.375093-5.148692 2.247572-5.276214 2.064259-5.276214C1.857036-5.276214 1.625903-5.084932 1.625903-4.845828C1.625903-4.670486 1.753425-4.542964 1.936737-4.542964C2.14396-4.542964 2.375093-4.734247 2.375093-4.97335ZM1.211457-2.048319L.781071-.948443C.74122-.828892 .70137-.73325 .70137-.597758C.70137-.207223 1.004234 .079701 1.42665 .079701C2.199751 .079701 2.526526-1.036115 2.526526-1.139726C2.526526-1.219427 2.462765-1.243337 2.406974-1.243337C2.311333-1.243337 2.295392-1.187547 2.271482-1.107846C2.088169-.470237 1.761395-.143462 1.44259-.143462C1.346949-.143462 1.251308-.183313 1.251308-.398506C1.251308-.589788 1.307098-.73325 1.41071-.980324C1.490411-1.195517 1.570112-1.41071 1.657783-1.625903L1.904857-2.271482C1.976588-2.454795 2.072229-2.701868 2.072229-2.83736C2.072229-3.235866 1.753425-3.514819 1.346949-3.514819C.573848-3.514819 .239103-2.399004 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.239601 .494147-2.319303C.71731-3.076463 1.083935-3.291656 1.323039-3.291656C1.43462-3.291656 1.514321-3.251806 1.514321-3.028643C1.514321-2.948941 1.506351-2.83736 1.42665-2.598257L1.211457-2.048319Z'/>
<path id='g2-112' d='M.414446 .964384C.350685 1.219427 .334745 1.283188 .01594 1.283188C-.095641 1.283188-.191283 1.283188-.191283 1.43462C-.191283 1.506351-.119552 1.546202-.079701 1.546202C0 1.546202 .03188 1.522291 .621669 1.522291C1.195517 1.522291 1.362889 1.546202 1.41868 1.546202C1.45056 1.546202 1.570112 1.546202 1.570112 1.39477C1.570112 1.283188 1.458531 1.283188 1.362889 1.283188C.980324 1.283188 .980324 1.235367 .980324 1.163636C.980324 1.107846 1.123786 .541968 1.362889-.390535C1.466501-.207223 1.713574 .079701 2.14396 .079701C3.124284 .079701 4.144458-1.052055 4.144458-2.207721C4.144458-2.996762 3.634371-3.514819 2.996762-3.514819C2.518555-3.514819 2.13599-3.188045 1.904857-2.948941C1.737484-3.514819 1.203487-3.514819 1.123786-3.514819C.836862-3.514819 .637609-3.331507 .510087-3.084433C.326775-2.725778 .239103-2.319303 .239103-2.295392C.239103-2.223661 .294894-2.191781 .358655-2.191781C.462267-2.191781 .470237-2.223661 .526027-2.430884C.629639-2.83736 .773101-3.291656 1.099875-3.291656C1.299128-3.291656 1.354919-3.108344 1.354919-2.917061C1.354919-2.83736 1.323039-2.646077 1.307098-2.582316L.414446 .964384ZM1.880946-2.454795C1.920797-2.590286 1.920797-2.606227 2.040349-2.749689C2.343213-3.108344 2.685928-3.291656 2.972852-3.291656C3.371357-3.291656 3.52279-2.901121 3.52279-2.542466C3.52279-2.247572 3.347447-1.39477 3.108344-.924533C2.901121-.494147 2.518555-.143462 2.14396-.143462C1.601993-.143462 1.474471-.765131 1.474471-.820922C1.474471-.836862 1.490411-.924533 1.498381-.948443L1.880946-2.454795Z'/>
<path id='g2-116' d='M1.761395-3.172105H2.542466C2.693898-3.172105 2.789539-3.172105 2.789539-3.323537C2.789539-3.435118 2.685928-3.435118 2.550436-3.435118H1.825156L2.11208-4.566874C2.14396-4.686426 2.14396-4.726276 2.14396-4.734247C2.14396-4.901619 2.016438-4.98132 1.880946-4.98132C1.609963-4.98132 1.554172-4.766127 1.466501-4.407472L1.219427-3.435118H.454296C.302864-3.435118 .199253-3.435118 .199253-3.283686C.199253-3.172105 .302864-3.172105 .438356-3.172105H1.155666L.67746-1.259278C.629639-1.060025 .557908-.781071 .557908-.669489C.557908-.191283 .948443 .079701 1.370859 .079701C2.223661 .079701 2.709838-1.044085 2.709838-1.139726C2.709838-1.227397 2.638107-1.243337 2.590286-1.243337C2.502615-1.243337 2.494645-1.211457 2.438854-1.091905C2.279452-.70934 1.880946-.143462 1.39477-.143462C1.227397-.143462 1.131756-.255044 1.131756-.518057C1.131756-.669489 1.155666-.757161 1.179577-.860772L1.761395-3.172105Z'/>
<path id='g4-40' d='M3.88543 2.905106C3.88543 2.86924 3.88543 2.84533 3.682192 2.642092C2.486675 1.43462 1.817186-.537983 1.817186-2.976837C1.817186-5.296139 2.379078-7.292653 3.765878-8.703362C3.88543-8.810959 3.88543-8.834869 3.88543-8.870735C3.88543-8.942466 3.825654-8.966376 3.777833-8.966376C3.622416-8.966376 2.642092-8.105604 2.056289-6.933998C1.446575-5.726526 1.171606-4.447323 1.171606-2.976837C1.171606-1.912827 1.338979-.490162 1.960648 .789041C2.666002 2.223661 3.646326 3.000747 3.777833 3.000747C3.825654 3.000747 3.88543 2.976837 3.88543 2.905106Z'/>
<path id='g4-41' d='M3.371357-2.976837C3.371357-3.88543 3.251806-5.36787 2.582316-6.75467C1.876961-8.18929 .896638-8.966376 .765131-8.966376C.71731-8.966376 .657534-8.942466 .657534-8.870735C.657534-8.834869 .657534-8.810959 .860772-8.607721C2.056289-7.400249 2.725778-5.427646 2.725778-2.988792C2.725778-.669489 2.163885 1.327024 .777086 2.737733C.657534 2.84533 .657534 2.86924 .657534 2.905106C.657534 2.976837 .71731 3.000747 .765131 3.000747C.920548 3.000747 1.900872 2.139975 2.486675 .968369C3.096389-.251059 3.371357-1.542217 3.371357-2.976837Z'/>
<path id='g4-43' d='M4.770112-2.761644H8.069738C8.237111-2.761644 8.452304-2.761644 8.452304-2.976837C8.452304-3.203985 8.249066-3.203985 8.069738-3.203985H4.770112V-6.503611C4.770112-6.670984 4.770112-6.886177 4.554919-6.886177C4.327771-6.886177 4.327771-6.682939 4.327771-6.503611V-3.203985H1.028144C.860772-3.203985 .645579-3.203985 .645579-2.988792C.645579-2.761644 .848817-2.761644 1.028144-2.761644H4.327771V.537983C4.327771 .705355 4.327771 .920548 4.542964 .920548C4.770112 .920548 4.770112 .71731 4.770112 .537983V-2.761644Z'/>
<path id='g4-61' d='M8.069738-3.873474C8.237111-3.873474 8.452304-3.873474 8.452304-4.088667C8.452304-4.315816 8.249066-4.315816 8.069738-4.315816H1.028144C.860772-4.315816 .645579-4.315816 .645579-4.100623C.645579-3.873474 .848817-3.873474 1.028144-3.873474H8.069738ZM8.069738-1.649813C8.237111-1.649813 8.452304-1.649813 8.452304-1.865006C8.452304-2.092154 8.249066-2.092154 8.069738-2.092154H1.028144C.860772-2.092154 .645579-2.092154 .645579-1.876961C.645579-1.649813 .848817-1.649813 1.028144-1.649813H8.069738Z'/>
<path id='g3-28' d='M3.431133-4.507098H5.415691C5.571108-4.507098 5.965629-4.507098 5.965629-4.889664C5.965629-5.152677 5.738481-5.152677 5.523288-5.152677H2.235616C1.960648-5.152677 1.554172-5.152677 1.004234-4.566874C.6934-4.220174 .310834-3.58655 .310834-3.514819S.37061-3.419178 .442341-3.419178C.526027-3.419178 .537983-3.455044 .597758-3.526775C1.219427-4.507098 1.841096-4.507098 2.139975-4.507098H3.132254L1.888917-.406476C1.829141-.227148 1.829141-.203238 1.829141-.167372C1.829141-.035866 1.912827 .131507 2.15193 .131507C2.52254 .131507 2.582316-.191283 2.618182-.37061L3.431133-4.507098Z'/>
<path id='g3-75' d='M5.977584-4.829888C5.965629-4.865753 5.917808-4.961395 5.917808-4.99726C5.917808-5.009215 5.929763-5.021171 6.133001-5.176588L7.292653-6.085181C8.894645-7.328518 9.420672-7.746949 10.245579-7.81868C10.329265-7.830635 10.448817-7.830635 10.448817-8.033873C10.448817-8.105604 10.412951-8.16538 10.31731-8.16538C10.185803-8.16538 10.042341-8.141469 9.910834-8.141469H9.456538C9.085928-8.141469 8.691407-8.16538 8.332752-8.16538C8.249066-8.16538 8.105604-8.16538 8.105604-7.950187C8.105604-7.830635 8.18929-7.81868 8.261021-7.81868C8.392528-7.806725 8.547945-7.758904 8.547945-7.591532C8.547945-7.352428 8.18929-7.065504 8.093649-6.993773L3.407223-3.347447L4.399502-7.292653C4.507098-7.699128 4.531009-7.81868 5.379826-7.81868C5.606974-7.81868 5.71457-7.81868 5.71457-8.045828C5.71457-8.16538 5.595019-8.16538 5.535243-8.16538C5.32005-8.16538 5.068991-8.141469 4.841843-8.141469H3.431133C3.21594-8.141469 2.952927-8.16538 2.737733-8.16538C2.642092-8.16538 2.510585-8.16538 2.510585-7.938232C2.510585-7.81868 2.618182-7.81868 2.797509-7.81868C3.526775-7.81868 3.526775-7.723039 3.526775-7.591532C3.526775-7.567621 3.526775-7.49589 3.478954-7.316563L1.865006-.884682C1.75741-.466252 1.733499-.3467 .896638-.3467C.669489-.3467 .549938-.3467 .549938-.131507C.549938 0 .657534 0 .729265 0C.956413 0 1.195517-.02391 1.422665-.02391H2.82142C3.048568-.02391 3.299626 0 3.526775 0C3.622416 0 3.753923 0 3.753923-.227148C3.753923-.3467 3.646326-.3467 3.466999-.3467C2.737733-.3467 2.737733-.442341 2.737733-.561893C2.737733-.645579 2.809465-.944458 2.857285-1.135741L3.323537-2.988792L5.140722-4.411457C5.487422-3.646326 6.121046-2.116065 6.611208-.944458C6.647073-.872727 6.670984-.800996 6.670984-.71731C6.670984-.358655 6.192777-.3467 6.085181-.3467S5.858032-.3467 5.858032-.119552C5.858032 0 5.989539 0 6.025405 0C6.443836 0 6.886177-.02391 7.304608-.02391H7.878456C8.057783-.02391 8.261021 0 8.440349 0C8.51208 0 8.643587 0 8.643587-.227148C8.643587-.3467 8.53599-.3467 8.416438-.3467C7.974097-.358655 7.81868-.454296 7.639352-.884682L5.977584-4.829888Z'/>
<path id='g3-100' d='M6.01345-7.998007C6.025405-8.045828 6.049315-8.117559 6.049315-8.177335C6.049315-8.296887 5.929763-8.296887 5.905853-8.296887C5.893898-8.296887 5.308095-8.249066 5.248319-8.237111C5.045081-8.225156 4.865753-8.201245 4.65056-8.18929C4.351681-8.16538 4.267995-8.153425 4.267995-7.938232C4.267995-7.81868 4.363636-7.81868 4.531009-7.81868C5.116812-7.81868 5.128767-7.711083 5.128767-7.591532C5.128767-7.519801 5.104857-7.424159 5.092902-7.388294L4.363636-4.483188C4.23213-4.794022 3.90934-5.272229 3.287671-5.272229C1.936737-5.272229 .478207-3.526775 .478207-1.75741C.478207-.573848 1.171606 .119552 1.984558 .119552C2.642092 .119552 3.203985-.394521 3.53873-.789041C3.658281-.083686 4.220174 .119552 4.578829 .119552S5.224408-.095641 5.439601-.526027C5.630884-.932503 5.798257-1.661768 5.798257-1.709589C5.798257-1.769365 5.750436-1.817186 5.678705-1.817186C5.571108-1.817186 5.559153-1.75741 5.511333-1.578082C5.332005-.872727 5.104857-.119552 4.614695-.119552C4.267995-.119552 4.244085-.430386 4.244085-.669489C4.244085-.71731 4.244085-.968369 4.327771-1.303113L6.01345-7.998007ZM3.598506-1.422665C3.53873-1.219427 3.53873-1.195517 3.371357-.968369C3.108344-.633624 2.582316-.119552 2.020423-.119552C1.530262-.119552 1.255293-.561893 1.255293-1.267248C1.255293-1.924782 1.625903-3.263761 1.853051-3.765878C2.259527-4.60274 2.82142-5.033126 3.287671-5.033126C4.076712-5.033126 4.23213-4.052802 4.23213-3.957161C4.23213-3.945205 4.196264-3.789788 4.184309-3.765878L3.598506-1.422665Z'/>
<path id='g3-101' d='M2.139975-2.773599C2.462765-2.773599 3.275716-2.797509 3.849564-3.012702C4.758157-3.359402 4.841843-4.052802 4.841843-4.267995C4.841843-4.794022 4.387547-5.272229 3.598506-5.272229C2.343213-5.272229 .537983-4.136488 .537983-2.008468C.537983-.753176 1.255293 .119552 2.343213 .119552C3.969116 .119552 4.99726-1.147696 4.99726-1.303113C4.99726-1.374844 4.925529-1.43462 4.877709-1.43462C4.841843-1.43462 4.829888-1.422665 4.722291-1.315068C3.957161-.298879 2.82142-.119552 2.367123-.119552C1.685679-.119552 1.327024-.657534 1.327024-1.542217C1.327024-1.709589 1.327024-2.008468 1.506351-2.773599H2.139975ZM1.566127-3.012702C2.080199-4.853798 3.21594-5.033126 3.598506-5.033126C4.124533-5.033126 4.483188-4.722291 4.483188-4.267995C4.483188-3.012702 2.570361-3.012702 2.068244-3.012702H1.566127Z'/>
<path id='g3-116' d='M2.402989-4.805978H3.502864C3.730012-4.805978 3.849564-4.805978 3.849564-5.021171C3.849564-5.152677 3.777833-5.152677 3.53873-5.152677H2.486675L2.929016-6.898132C2.976837-7.065504 2.976837-7.089415 2.976837-7.173101C2.976837-7.364384 2.82142-7.47198 2.666002-7.47198C2.570361-7.47198 2.295392-7.436115 2.199751-7.053549L1.733499-5.152677H.609714C.37061-5.152677 .263014-5.152677 .263014-4.925529C.263014-4.805978 .3467-4.805978 .573848-4.805978H1.637858L.848817-1.649813C.753176-1.231382 .71731-1.111831 .71731-.956413C.71731-.394521 1.111831 .119552 1.78132 .119552C2.988792 .119552 3.634371-1.625903 3.634371-1.709589C3.634371-1.78132 3.58655-1.817186 3.514819-1.817186C3.490909-1.817186 3.443088-1.817186 3.419178-1.769365C3.407223-1.75741 3.395268-1.745455 3.311582-1.554172C3.060523-.956413 2.510585-.119552 1.817186-.119552C1.458531-.119552 1.43462-.418431 1.43462-.681445C1.43462-.6934 1.43462-.920548 1.470486-1.06401L2.402989-4.805978Z'/>
<path id='g3-117' d='M4.076712-.6934C4.23213-.02391 4.805978 .119552 5.092902 .119552C5.475467 .119552 5.762391-.131507 5.953674-.537983C6.156912-.968369 6.312329-1.673724 6.312329-1.709589C6.312329-1.769365 6.264508-1.817186 6.192777-1.817186C6.085181-1.817186 6.073225-1.75741 6.025405-1.578082C5.810212-.753176 5.595019-.119552 5.116812-.119552C4.758157-.119552 4.758157-.514072 4.758157-.669489C4.758157-.944458 4.794022-1.06401 4.913574-1.566127C4.99726-1.888917 5.080946-2.211706 5.152677-2.546451L5.642839-4.495143C5.726526-4.794022 5.726526-4.817933 5.726526-4.853798C5.726526-5.033126 5.583064-5.152677 5.403736-5.152677C5.057036-5.152677 4.97335-4.853798 4.901619-4.554919C4.782067-4.088667 4.136488-1.518306 4.052802-1.099875C4.040847-1.099875 3.574595-.119552 2.701868-.119552C2.080199-.119552 1.960648-.657534 1.960648-1.099875C1.960648-1.78132 2.295392-2.737733 2.606227-3.53873C2.749689-3.921295 2.809465-4.076712 2.809465-4.315816C2.809465-4.829888 2.438854-5.272229 1.865006-5.272229C.765131-5.272229 .32279-3.53873 .32279-3.443088C.32279-3.395268 .37061-3.335492 .454296-3.335492C.561893-3.335492 .573848-3.383313 .621669-3.550685C.908593-4.578829 1.374844-5.033126 1.829141-5.033126C1.948692-5.033126 2.139975-5.021171 2.139975-4.638605C2.139975-4.327771 2.008468-3.981071 1.829141-3.526775C1.303113-2.10411 1.243337-1.649813 1.243337-1.291158C1.243337-.071731 2.163885 .119552 2.654047 .119552C3.419178 .119552 3.837609-.406476 4.076712-.6934Z'/>
</defs>
<g id='page1' transform='matrix(1.13 0 0 1.13 -63.986043 -60.930322)'>
<use x='56.413267' y='71.818115' xlink:href='#g3-117'/>
<use x='63.075707' y='71.818115' xlink:href='#g4-40'/>
<use x='67.628032' y='71.818115' xlink:href='#g3-116'/>
<use x='71.855192' y='71.818115' xlink:href='#g4-41'/>
<use x='79.728347' y='71.818115' xlink:href='#g4-61'/>
<use x='92.153828' y='71.818115' xlink:href='#g3-75'/>
<use x='102.112941' y='73.611378' xlink:href='#g2-112'/>
<use x='106.873851' y='71.818115' xlink:href='#g3-101'/>
<use x='112.299291' y='71.818115' xlink:href='#g4-40'/>
<use x='116.851617' y='71.818115' xlink:href='#g3-116'/>
<use x='121.078776' y='71.818115' xlink:href='#g4-41'/>
<use x='128.287765' y='71.818115' xlink:href='#g4-43'/>
<use x='140.04908' y='71.818115' xlink:href='#g3-75'/>
<use x='150.008194' y='73.611378' xlink:href='#g2-105'/>
<use x='155.381963' y='55.545671' xlink:href='#g0-2'/>
<use x='167.337162' y='58.700512' xlink:href='#g2-116'/>
<use x='162.023743' y='82.611122' xlink:href='#g1-0'/>
<use x='168.61025' y='82.611122' xlink:href='#g1-49'/>
<use x='179.569245' y='71.818115' xlink:href='#g3-101'/>
<use x='184.994685' y='71.818115' xlink:href='#g4-40'/>
<use x='189.547011' y='71.818115' xlink:href='#g3-28'/>
<use x='195.965952' y='71.818115' xlink:href='#g4-41'/>
<use x='200.518278' y='71.818115' xlink:href='#g3-100'/>
<use x='206.600971' y='71.818115' xlink:href='#g3-28'/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

@@ -0,0 +1,205 @@
let Common = system.getScript("/driverlib/Common.js");
let Pinmux = system.getScript("/driverlib/pinmux.js");
let references = system.getScript("/libraries/C2000WARELibraryReferences.js");
let logger_data = system.getScript("/libraries/control/dcl/logger_data.js");
// whenever the controller changes, the list of parameters should change
function onChangeControllerChoice(inst, ui)
{
}
let config = [
{
name : "loggerPrecision",
displayName : "Precision",
description : 'Choice of Precision.',
hidden : false,
default : "F32",
options : [ {name:"FIXED",displayName:"Fixed-Point (32-bit)"},
{name:"F32",displayName:"Floating-Point (32-bit)"},
{name:"F64",displayName:"Floating-Point (64-bit)"}],
},
{
name : "structDisplay",
displayName : "Logger Structure Chosen",
description : 'Visualization of the chosen DCL structure.',
hidden : false,
getValue : (inst) => {
// choose structure based on precision only
if (inst.loggerPrecision == "FIXED"){return "LOG32";}
else if (inst.loggerPrecision == "F32") {return "FDLOG";}
else if (inst.loggerPrecision == "F64") {return "FDLOG64";}
else {return "FDLOG";}
},
default : "FDLOG"
},
{
name:"arrName",
hidden:false,
default:"",
displayName:"Re-Name Array Variable",
description:"Name of the data array for the logger, default name provided if left blank",
longDescription:"Name of the data array for the logger, default name provided if left blank. If the array already exists in memory, this will be used to point to that array."
},
{
name:"logSize",
hidden:false,
default:0x0400,
displayName:"Size",
description:"The size of the memory block in words",
longDescription:"The size of the memory block in words."
},
{
name:"arrEn",
hidden:false,
default:true,
displayName:"Create Array Object",
description:"Create the array object, for cases where the array does not already exist.",
longDescription:"Create the array object, for cases where the array does not already exist. NOTE: if this is unchecked the array must exist somewhere in the code, otherwise a compile error will occur."
},
{
name:"linkerEn",
hidden:false,
default:false,
onChange: (inst, ui) => {ui.linkerVal.hidden = ((inst.linkerEn) ? false : true);}, // hide Val when disabled
displayName:"Enable Linker Location",
description:"Linker command file used for declaring the array directly",
longDescription:"This creates a pragma to point to the given location in memory"
},
{
name:"linkerVal",
hidden:true,
default:"",
displayName:"Re-Name Linker Pragma Name",
description:"Pragma name of the location of the array in the linker command file, default name provided if left blank",
longDescription:"Pragma name of the location of the array in the linker command file, default name provided if left blank"
},
{
name:"fillEn",
hidden:false,
default:false,
onChange: (inst, ui) => {ui.fillVal.hidden = ((inst.fillEn) ? false : true);}, // hide Val when disabled
displayName:"Enable Fill",
description:"Enable filling the buffer with a given data value and resets the data",
longDescription:"Enable filling the entire array with a given value"
},
{
name:"fillVal",
hidden:true,
default:0,
displayName:"Fill Value",
description:"Fills the buffer with the given value and resets the data",
longDescription:"Fills the buffer with the given value and resets the data"
},
]
function onValidate(inst, validation) {
// only do this check if one of the floating point precisions are chosen
if (inst.loggerPrecision == "F32" || inst.loggerPrecision == "F64") {
// check if loggerPrecision matches the precision being used by FPU.js in the "Other Dependencies" section
var fpuMod = system.modules["/libraries/math/FPU/FPU.js"];
if(fpuMod)
{
if(fpuMod.$static.fpuType.replace("PU","") != inst.loggerPrecision)
{
// when controller precision == F64, and the FPU.js file has FPU32 chosen, then warn the user that performance loss will occur
if (inst.loggerPrecision == "F64" && fpuMod.$static.fpuType == "FPU32") {
// for devices that can actually support F64, tell user that they can fix the issue
let fpu_obj = system.getScript("/libraries/.meta/math/FPU/FPU.js").moduleStatic.config;
var fpu_types = fpu_obj.filter(fpu_or_tmu_list => fpu_or_tmu_list.name === "fpuType")[0].options;
var fpu64_supported = false;
if (fpu_types.length >= 2) {
// 2 options available means that both FPU32 (all Sysconfig devices) and FPU64 (some Sysconfig devices) are supported
fpu64_supported = true;
}
if (fpu64_supported)
{
validation.logWarning("Double-precision data type chosen with single-precision floating-point processor chosen. Relatively poor cycle performance should be expected. To improve performance, precision can be updated here or in 'Other Dependencies' below.", inst, "loggerPrecision");
}
// for devices that can't support F64, tell the user that performance loss should be expected
else
{
validation.logWarning("Double-precision data type chosen with single-precision floating-point processor chosen. Relatively poor cycle performance should be expected.", inst, "loggerPrecision");
}
}
else
{
// when controller precision == F32, and the FPU.js file has FPU64 chosen, there should be no issue as FPU64 is backwards compatible with FPU32 instructions and C code
}
}
}
}
}
var longDescription = `# ***Data Logging Functions***
See the DCL User's Guide for more details on the DCL logger:
[Digital Control Library User's Guide](https://dev.ti.com/tirex/explore/node?node=AKZRbh4oxv98HaO0YKjygQ__gYkahfz__LATEST)
NOTE: The Digital Control Library contains support for fixed point data logging comprising a set
of data buffer functions. It is similar to its floating point counterparts, and so the details below are similar for it.
The Digital Control Library includes a general purpose floating-point data logger utility
which is useful when testing and debugging control applications. The intended use of the
data logger utility is to capture a stream of data values in a block of memory for
subsequent analysis. The data logger is supplied in the form of a C header file and one
assembly file, and it may be used on any C2000 device irrespective of whether the DCL is
used. The utility may not be used on the CLA.
The data logger operates with arrays of 32-bit floating-point data. The location, size, and
indexing of each array are defined by three pointers capturing the start address, end
address, and data index address. All three pointers are held in a common C structure
with the data type “FDLOG”, defined as follows:
typedef volatile struct {
float *fptr;
float *lptr;
float *dptr;
} FDLOG;
Conceptually, the relationship between the array pointers and the elements of a data
array of length “N” is shown below:
*Figure: Data log pointer allocation*
![](../../libraries/.meta/control/dcl/images/figures_scaled/LOGGER_Data_log_pointer_allocation-Figure34.png)
The data index pointer (dptr) always points to the next address to be written or read, and
advances through the memory block as each new data value is written into the log. On
reaching the end of the log, the pointer is reset to the first address in the log. The data
logger header file contains a set of in-line C functions to access and manipulate data logs.
The log pointers can then be initialized in the user's code such that they reference a
memory block in a specific address range. Thereafter, the code can clear or load the
buffer a specific data value, and then begin writing data into it using the
DCL_writeLog() function. The DF22 example project shows how this is done.
The DCL also contains two functions which perform fast read and write to a data log.
These are assembly coded functions in the source file DCL_frwlog.asm.
`
var controllerModule = {
c2000wareLibraryName: "LOGGER",
displayName: "LOGGER",
defaultInstanceName: "myLOGGER",
description: "LOGGER",
longDescription:longDescription,
config: config,
references : [],
templates: {
c2000ware_libraries_c : "/libraries/control/dcl/templates/logger.c2000ware_libraries.c.xdt",
c2000ware_libraries_h : "/libraries/control/dcl/templates/logger.c2000ware_libraries.h.xdt",
},
validate : onValidate,
modules: (inst) => {
var mods = [];
var refFilesArr = logger_data.getRefFilesModuleArrFromControlStruct(inst.structDisplay);
mods = refFilesArr;
return mods;
}
};
exports = controllerModule;
@@ -0,0 +1,229 @@
//==========================================================================
// CONFIG ENTRIES DICTIONARY
// These get directly dropped into the config list of the controller.js
//==========================================================================
var config_entries = []
//==========================================================================
// REFERENCE FILES AND HEADER FILES
// Functions and data for the reference files that should be pulled in
//==========================================================================
// c and asm files, to be pulled in using submodules
var refFiles = {
"DCL_calcGamma": {"name":"DCL_calcGamma", "path":"../libraries/control/DCL/c28/source/DCL_calcGamma.asm", "alwaysInclude":false},
"DCL_clamp_C1": {"name":"DCL_clamp_C1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_C1.asm", "alwaysInclude":false},
"DCL_clamp_L1": {"name":"DCL_clamp_L1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_L1.asm", "alwaysInclude":false},
"DCL_DF11_C1": {"name":"DCL_DF11_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_C1.asm", "alwaysInclude":false},
"DCL_DF11_L1": {"name":"DCL_DF11_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_L1.asm", "alwaysInclude":false},
"DCL_DF13_C1": {"name":"DCL_DF13_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C1.asm", "alwaysInclude":false},
"DCL_DF13_C2C3": {"name":"DCL_DF13_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C2C3.asm", "alwaysInclude":false},
"DCL_DF13_L1": {"name":"DCL_DF13_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L1.asm", "alwaysInclude":false},
"DCL_DF13_L2L3": {"name":"DCL_DF13_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L2L3.asm", "alwaysInclude":false},
"DCL_DF22_C1": {"name":"DCL_DF22_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C1.asm", "alwaysInclude":false},
"DCL_DF22_C2C3": {"name":"DCL_DF22_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C2C3.asm", "alwaysInclude":false},
"DCL_DF22_L1": {"name":"DCL_DF22_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L1.asm", "alwaysInclude":false},
"DCL_DF22_L2L3": {"name":"DCL_DF22_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L2L3.asm", "alwaysInclude":false},
"DCL_DF23_C1": {"name":"DCL_DF23_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C1.asm", "alwaysInclude":false},
"DCL_DF23_C2C3": {"name":"DCL_DF23_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C2C3.asm", "alwaysInclude":false},
"DCL_DF23_L1": {"name":"DCL_DF23_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L1.asm", "alwaysInclude":false},
"DCL_DF23_L2L3": {"name":"DCL_DF23_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L2L3.asm", "alwaysInclude":false},
"DCL_error": {"name":"DCL_error", "path":"../libraries/control/DCL/c28/source/DCL_error.c", "alwaysInclude":false},
"DCL_frwlog": {"name":"DCL_frwlog", "path":"../libraries/control/DCL/c28/source/DCL_frwlog.asm", "alwaysInclude":false},
"DCL_futils": {"name":"DCL_futils", "path":"../libraries/control/DCL/c28/source/DCL_futils.asm", "alwaysInclude":false},
"DCL_futils32": {"name":"DCL_futils32", "path":"../libraries/control/DCL/c28/source/DCL_futils32.asm", "alwaysInclude":false},
"DCL_index": {"name":"DCL_index", "path":"../libraries/control/DCL/c28/source/DCL_index.asm", "alwaysInclude":false},
"DCL_NLPID_C3": {"name":"DCL_NLPID_C3", "path":"../libraries/control/DCL/c28/source/DCL_NLPID_C3.asm", "alwaysInclude":false},
"DCL_PI_A1": {"name":"DCL_PI_A1", "path":"../libraries/control/DCL/c28/source/DCL_PI_A1.asm", "alwaysInclude":false},
"DCL_PI_C1": {"name":"DCL_PI_C1", "path":"../libraries/control/DCL/c28/source/DCL_PI_C1.asm", "alwaysInclude":false},
"DCL_PI_C4": {"name":"DCL_PI_C4", "path":"../libraries/control/DCL/c28/source/DCL_PI_C4.asm", "alwaysInclude":false},
"DCL_PI_C7": {"name":"DCL_PI_C7", "path":"../libraries/control/DCL/c28/source/DCL_PI_C7.asm", "alwaysInclude":false},
"DCL_PI_L1": {"name":"DCL_PI_L1", "path":"../libraries/control/DCL/c28/source/DCL_PI_L1.asm", "alwaysInclude":false},
"DCL_PI_L2": {"name":"DCL_PI_L2", "path":"../libraries/control/DCL/c28/source/DCL_PI_L2.asm", "alwaysInclude":false},
"DCL_PI2_C2": {"name":"DCL_PI2_C2", "path":"../libraries/control/DCL/c28/source/DCL_PI2_C2.asm", "alwaysInclude":false},
"DCL_PID_A1": {"name":"DCL_PID_A1", "path":"../libraries/control/DCL/c28/source/DCL_PID_A1.asm", "alwaysInclude":false},
"DCL_PID_C1": {"name":"DCL_PID_C1", "path":"../libraries/control/DCL/c28/source/DCL_PID_C1.asm", "alwaysInclude":false},
"DCL_PID_C4": {"name":"DCL_PID_C4", "path":"../libraries/control/DCL/c28/source/DCL_PID_C4.asm", "alwaysInclude":false},
"DCL_PID_L1": {"name":"DCL_PID_L1", "path":"../libraries/control/DCL/c28/source/DCL_PID_L1.asm", "alwaysInclude":false},
"DCL_PID_L2": {"name":"DCL_PID_L2", "path":"../libraries/control/DCL/c28/source/DCL_PID_L2.asm", "alwaysInclude":false}
}
// h files, to be pulled in using c2000_libraries.h.xdt
// some of these header files have certain refFiles (asm/c files) dependencies
// NOTE: (probably) cannot move the refFilesList into the control_struct_dict since each header file references these reference files lists. If a reference file doesn't exist when the header file is imported, it may flag an error.
var headerFiles = {
"DCL": {"path":"../libraries/control/DCL/c28/include/DCL.h", "refFilesList":["DCL_error"]},
"DCLC28": {"path":"../libraries/control/DCL/c28/include/DCLC28.h", "refFilesList":["DCL_futils32","DCL_PID_A1","DCL_futils32","DCL_PI_A1"]},
"DCLCLA": {"path":"../libraries/control/DCL/c28/include/DCLCLA.h", "refFilesList":["DCL_PID_L1","DCL_PID_L2","DCL_PI_L1","DCL_PI_L2","DCL_DF11_L1","DCL_DF13_L1","DCL_DF13_L2L3","DCL_DF13_L2L3","DCL_DF22_L1","DCL_DF22_L2L3","DCL_DF22_L2L3","DCL_DF23_L1","DCL_DF23_L2L3","DCL_DF23_L2L3","DCL_clamp_L1"]},
"DCLF32": {"path":"../libraries/control/DCL/c28/include/DCLF32.h", "refFilesList":["DCL_futils","DCL_PID_C1","DCL_PID_C4","DCL_futils","DCL_PI_C1","DCL_PI_C4","DCL_PI_C7","DCL_futils","DCL_futils","DCL_DF11_C1","DCL_futils","DCL_DF13_C1","DCL_DF13_C2C3","DCL_DF13_C2C3","DCL_futils","DCL_DF22_C1","DCL_DF22_C2C3","DCL_DF22_C2C3","DCL_futils","DCL_DF23_C1","DCL_DF23_C2C3","DCL_DF23_C2C3","DCL_clamp_C1","DCL_futils"]},
"DCLF64": {"path":"../libraries/control/DCL/c28/include/DCLF64.h", "refFilesList":[]},
"DCL_fdlog": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog.h", "refFilesList":["DCL_frwlog","DCL_frwlog"]},
"DCL_fdlog64": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog64.h", "refFilesList":[]},
"DCL_log32": {"path":"../libraries/control/DCL/c28/include/DCL_log32.h", "refFilesList":[]},
"DCL_MLOG": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG.h", "refFilesList":[]},
"DCL_MLOG32": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG32.h", "refFilesList":[]},
"DCL_NLPID": {"path":"../libraries/control/DCL/c28/include/DCL_NLPID.h", "refFilesList":["DCL_futils","DCL_calcGamma","DCL_NLPID_C3"]},
"DCL_refgen": {"path":"../libraries/control/DCL/c28/include/DCL_refgen.h", "refFilesList":[]},
"DCL_refgen64": {"path":"../libraries/control/DCL/c28/include/DCL_refgen64.h", "refFilesList":[]},
"DCL_TCM": {"path":"../libraries/control/DCL/c28/include/DCL_TCM.h", "refFilesList":["DCL_index","DCL_index","DCL_index"]},
}
//==========================================================================
// CONTROL STRUCT LOOKUP DICTIONARY
// For each controller structure, determine which header files to use, and
// the config lookup list for this controller
//==========================================================================
var control_struct_dict = {
"LOG32": {"headerFilesList":["DCL_log32"], "config_entries_list":['arrName','logSize','linkerEn','linkerVal','fillEn','fillVal']},
"FDLOG": {"headerFilesList":["DCL","DCL_fdlog"], "config_entries_list":['arrName','logSize','linkerEn','linkerVal','fillEn','fillVal']},
"FDLOG64": {"headerFilesList":["DCL","DCL_fdlog64"], "config_entries_list":['arrName','logSize','linkerEn','linkerVal','fillEn','fillVal']},
}
function getHeaderFilesList(controlStruct)
{
return control_struct_dict[controlStruct]['headerFilesList'];
}
function getOptIncludePaths(controlStruct)
{
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var includePathList = []
for (var i in headerFilesList)
{
var headerFileName = headerFilesList[i];
var headerFileObj = headerFiles[headerFileName];
var headerFilePath = headerFileObj["path"];
var includePath = headerFilePath.split("/").slice(0,-1).join("/");
if (!(includePathList.includes(includePath)))
{
includePathList.push(includePath);
}
}
return includePathList;
}
function getRefFilesModuleArrFromControlStruct(controlStruct)
{
if (controlStruct.length === 0)
{
return [];
}
var arr = [];
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var pathToDynamicJsFiles = "/libraries/control/dcl/templates/dynamic_mods/"
for (var i in headerFilesList)
{
var h = headerFilesList[i]
var refFilesList = headerFiles[h]['refFilesList'];
for (var j in refFilesList)
{
var refFileName = refFilesList[j]
var moduleNamePath = pathToDynamicJsFiles + refFileName + "_dynamic.js"
// if it hasn't been added yet, add it
var alreadyInArray = arr.some(el => refFileName === el["name"])
if (!alreadyInArray)
{
arr.push({
name:refFileName,
moduleName:moduleNamePath,
});
}
}
}
// all available Sysconfig devices use at least FPU32, and so require FPU.js to be included
arr.push({name:"fpu", moduleName:"/libraries/.meta/math/FPU/FPU.js", hidden:false});
return arr;
}
function getModuleDataObj(inst)
{
var loggerChoice = inst.structDisplay;
// get the data type
var type = null;
// also get the fillLogCmd command, like "fillLog32"
var fillLogCmd = null;
if (inst.loggerPrecision == "FIXED")
{
type = "int32_t";
fillLogCmd = "DCL_fillLog32";
}
else if(inst.loggerPrecision == "F32")
{
type = "float32_t";
fillLogCmd = "DCL_fillLog";
}
else if(inst.loggerPrecision == "F64")
{
type = "float64_t";
fillLogCmd = "DCL_fillLog64";
}
// default to F32
else
{
type = "float32_t";
fillLogCmd = "DCL_fillLog";
}
// get the arrName, update with recommendation if empty string
var arrName = inst.arrName;
if (arrName=="")
{
arrName = inst.$name + "Arr";
}
// get the logSize value
var logSize = inst.logSize;
// get the linkerVal (if any)
var linkerVal = null;
if (inst.linkerEn == true)
{
linkerVal = inst.linkerVal;
// replace empty string with the instance name by default
if (linkerVal=="")
{
linkerVal = inst.$name + 'DataLogSection';
}
}
// get the fillVal (if any)
var fillVal = null;
if (inst.fillEn == true)
{
fillVal = inst.fillVal;
}
// get the initLogCmd
var initLogCmdObj = {
"FDLOG": "DCL_initLog",
"FDLOG64": "DCL_initLog64",
"LOG32": "DCL_initLog32",
};
var initLogCmd = initLogCmdObj[loggerChoice];
var resData = {
"loggerChoice":loggerChoice,
"type":type,
"instName":inst.$name,
"arrName":arrName,
"logSize":logSize,
"linkerVal":linkerVal,
"fillVal":fillVal,
"fillLogCmd":fillLogCmd,
"initLogCmd":initLogCmd,
"arrEn":inst.arrEn,
};
return resData;
}
//==========================================================================
// EXPORTS
// Export all of the functions so variables/structures can be accessed
// in other .js files
//==========================================================================
exports = {
getRefFilesModuleArrFromControlStruct: getRefFilesModuleArrFromControlStruct,
getOptIncludePaths:getOptIncludePaths,
getHeaderFilesList:getHeaderFilesList,
getModuleDataObj:getModuleDataObj,
}
@@ -0,0 +1,295 @@
let Common = system.getScript("/driverlib/Common.js");
let Pinmux = system.getScript("/driverlib/pinmux.js");
let references = system.getScript("/libraries/C2000WARELibraryReferences.js");
let refgen_data = system.getScript("/libraries/control/dcl/refgen_data.js");
// decide whether to show duty cycle option
function onChangeMode(inst, ui)
{
// hide the duty cycle option if not using PULSE type
if (inst.mode == "PULSE") {ui.duty.hidden = false;}
else {ui.duty.hidden = true; }
}
function onValidate(inst, validation) {
//**********************************************************************
// general checks
//**********************************************************************
// make sure name is not ref, which is a keyword but probably would be common mistake
if (inst.$name == "ref")
{
validation.logWarning(
"\"ref\" is a keyword and should not be used for the name of the reference generator.",
inst, "refgenPrecision");
}
// // make sure nothing is empty
// for(var e of inst)
// {
// if(inst[e].length<=0)
// {
// validation.logError("A value must be provided.", inst, e);
// }
// }
//**********************************************************************
// hard coded checks for specific parameters
//**********************************************************************
// ensure duty cycle between 0 and 1
var val = inst["duty"];
if (val<0 || val>1)
{
validation.logError(
"Value must be between 0 and 1.",
inst,
"duty"
);
}
// ensure min is less than max
if (inst["umax"] < inst["umin"])
{
validation.logError(
"Max must be greater than or equal to min.",
inst,
"umax"
);
}
// only do this check if one of the floating point precisions are chosen
if (inst.refgenPrecision == "F32" || inst.refgenPrecision == "F64") {
// check if refgenPrecision matches the precision being used by FPU.js in the "Other Dependencies" section
var fpuMod = system.modules["/libraries/math/FPU/FPU.js"];
if(fpuMod)
{
if(fpuMod.$static.fpuType.replace("PU","") != inst.refgenPrecision)
{
// when controller precision == F64, and the FPU.js file has FPU32 chosen, then warn the user that performance loss will occur
if (inst.refgenPrecision == "F64" && fpuMod.$static.fpuType == "FPU32") {
// for devices that can actually support F64, tell user that they can fix the issue
let fpu_obj = system.getScript("/libraries/.meta/math/FPU/FPU.js").moduleStatic.config;
var fpu_types = fpu_obj.filter(fpu_or_tmu_list => fpu_or_tmu_list.name === "fpuType")[0].options;
var fpu64_supported = false;
if (fpu_types.length >= 2) {
// 2 options available means that both FPU32 (all Sysconfig devices) and FPU64 (some Sysconfig devices) are supported
fpu64_supported = true;
}
if (fpu64_supported)
{
validation.logWarning("Double-precision data type chosen with single-precision floating-point processor chosen. Relatively poor cycle performance should be expected. To improve performance, precision can be updated here or in 'Other Dependencies' below.", inst, "refgenPrecision");
}
// for devices that can't support F64, tell the user that performance loss should be expected
else
{
validation.logWarning("Double-precision data type chosen with single-precision floating-point processor chosen. Relatively poor cycle performance should be expected.", inst, "refgenPrecision");
}
}
else
{
// when controller precision == F32, and the FPU.js file has FPU64 chosen, there should be no issue as FPU64 is backwards compatible with FPU32 instructions and C code
}
}
}
}
}
let config = [
{
name : "refgenPrecision",
displayName : "Precision",
description : 'Choice of Precision.',
hidden : false,
default : "F32",
options : [{name:"F32",displayName:"Floating-Point (32-bit)"},{name:"F64",displayName:"Floating-Point (64-bit)"}],
},
{
name : "structDisplay",
displayName : "Refgen Structure Chosen",
description : 'Visualization of the chosen DCL structure.',
hidden : false,
getValue : (inst) => {
// return REFGEN if 32-bit, REFGEN64 if 64-bit
return ((inst.refgenPrecision == "F32") ? "REFGEN" : "REFGEN64" );
},
default : "REFGEN"
},
{name:"mode", hidden:false, default:"SINE", displayName:"Operating Mode", description:"Operating mode", onChange:onChangeMode, options:[{name:"OFF",displayName:"OFF"},{name:"STATIC",displayName:"STATIC"},{name:"SINE",displayName:"SINE"},{name:"SQUARE",displayName:"SQUARE"},{name:"SAW",displayName:"SAW"},{name:"TRIANGLE",displayName:"TRIANGLE"},{name:"PULSE",displayName:"PULSE"},{name:"SINE2",displayName:"SINE2"},{name:"SINE3",displayName:"SINE3"}]},
{name:"sampPer", hidden:false, default:0.00001, displayName:"Sample Period (s)", description:"Sample period in seconds, rate at which DCL_runRefgen* is called", longDescription: "Typically DCL_runRefgen* and DCL_getRefgenPhase* functions would be called in an interrupt service routine to ensure they are executed at a deterministic rate. This value should match the ISR frequency."},
{
name : "signalPropertiesGroup",
displayName : "Signal Properties",
description : 'Reference signal settings',
collapsed : false,
config : [
{name:"duty", hidden:true, default:0.5, displayName:"Duty Cycle", description:"Per-unit duty cycle value of the signal"},
{name:"freq", hidden:false, default:7700, displayName:"Frequency (Hz)", description:"Signal frequency in Hz"},
{name:"freqTr", hidden:false, default:0, displayName:"Frequency Change Time", description:"Transition time (s) to reach the new frequency"},
{name:"ampl", hidden:false, default:1, displayName:"Amplitude", description:"Signal amplitude - half of peak-to-peak if sine, peak-to-peak if other types"},
{name:"amplTr", hidden:false, default:0, displayName:"Amplitude Change Time", description:"Transition time (s) to reach the new amplitude"},
{name:"offs", hidden:false, default:1, displayName:"Static Offset", description:"Value above or below zero that the generated signal will be referenced to"},
{name:"offsTr", hidden:false, default:0, displayName:"Offset Change Time", description:"Transition time (s) to reach the new offset"},
{name:"umax", hidden:false, default:2, displayName:"Maximum Signal Value", description:"Maximum allowable output"},
{name:"umin", hidden:false, default:0, displayName:"Minimum Signal Value", description:"Minimum allowable output"},
]
},
]
var longDescription = `# ***DCL Reference Generator***
See the DCL Reference Generator User's Guide for more details:
[DCL Reference Generator User's Guide](https://dev.ti.com/tirex/explore/node?node=APmkmKXTQzc2tUCl049v4A__gYkahfz__LATEST)
The DCL reference generator module is capable of producing up to three channels each made up of a dynamic waveform superimposed on a common static offset. Dynamic waveforms include a single phase sine, square, saw-tooth, triangular, or pulse output; and two or three phase sine waves.
The reference generator consists of five sub-modules: a static offset generator, a three phase waveform generator, a frequency modulator, an amplitude modulator, and an output clamp. The relationship between these sub-modules is set out below.
Figure: Reference generator architecture
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Reference_generator_architecture-Figure1.png)
## ***Static Offset Generator***
The static offset generator produces an adjustable offset onto which the dynamic component of the outputs is superimposed. The transition between two offsets is achieved using a linear ramp, the duration of which can be determined by the user.
The ramp is implemented by adding an increment to the offset each time the reference generator is run, the increment being computed when the ramp is loaded. In the floating point numerical format, resolution is lost as the size of the number increases, so adding a small number to a much larger number can result in the larger number not changing. For this reason there is an upper limit to the ramp transition time and a lower limit to the offset change which can be achieved. It is recommended that the reference generator module be used to generate outputs in the range ±1. This allows the computed ramp increment is checked against a lower limit (defined near the top of DCL_refgen.h) which is known to maintain accumulation up to the maximum accumulator value.
The function DCL_setRefgenRamp() allows the user to change both the static level and the transition time between level changes. When the user specifies a new target level, the generator outputs a linear ramp between the new and old levels in the specified time interval. Figure 2 shows an example of a static level change taking place over a specific time interval (tr).
Figure: Static level ramp
The ramp interval is programmable in units of seconds, and the function uses the generator update rate held in the CSS sub-structure to compute the incremental change in level on each update during the adjustment interval. For this reason, the update rate must be loaded into the CSS sub-structure before the level change function is called. To force an immediate (step) change to a new offset level, the ramp interval should be set to zero.
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Static_level_ramp-Figure2.png)
## ***Waveform Generator***
The waveform generator produces the dynamic component of the reference (sine waves, square waves, and so on). The frequency of the dynamic component is determined by two factors: the frequency of the desired waveform, and the update rate of the generator. Each time the DCL_runRefgen() function is called, the REFGEN generator determines a normalized angle from which the next waveform point is computed. This is done by adding a fixed angular increment to the angle variable. The increment is computed in the DCL_setRefgenFreq() function. At very low frequencies or very high update rates, the increment may violate the smallest allowable value defined in DCL_REFGEN_MIN_INC. In this case, if error handling is enabled an error will be generated, or if error handling is disabled the angle increment will be clamped to DCL_REFGEN_MIN_INC. The maximum recommended frequency of the generated waveform is one quarter of the update rate.
Prior to using the waveform generator, the user must load the correct update period into the CSS sub-structure before calling any of the REFGEN functions. This can be done using the DCL_SET_SAMPLE_RATE macro (see the example code in the function descriptions section).
The waveform generator produces three outputs denoted phase A, phase B, and phase C. The generator can produce the following waveforms.
* sinusoidal
* square
* saw-tooth
* triangular
* pulse
* 2 phase sine
* 3 phase sine
The waveform type is selected by the DCL_setRefgenMode() function which takes as an argument an enumerated 16-bit integer denoting the mode. In all cases, the frequency and amplitude of the waveforms are freely adjustable by the user.
On TMU equipped devices, sinusoidal waveform generation modes make use of TMU C intrinsics to accelerate the run function. Devices which do not have a TMU must use RTS library support functions so will execute more slowly. None of the waveforms use look-up tables so the data memory footprint of the REFGEN module is very small.
The table below shows the operating modes available in the reference generator. The mode number is in the leftmost column and the enumerated mode name in the second column from the left. Double precision modes have a '64' appended to the 'REFGEN', for example 'REFGEN64_STATIC'.
No | Mode Name | Type | Phase A | Phase B | Phase C
---|-----------------|--------------------|-----------|---------------|----------------
0 | REFGEN_OFF | No output | 0 | 0 | 0
1 | REFGEN_STATIC | Static offset only | Static | Static | Static
2 | REFGEN_SINE | Sine wave | Sine | Static | Static
3 | REFGEN_SQUARE | Square wave | Square | Static | Static
4 | REFGEN_SAW | Saw tooth wave | Saw tooth | Static | Static
5 | REFGEN_TRIANGLE | Triangle wave | Triangle | Static | Static
6 | REFGEN_PULSE | Pulsed wave | Pulse | Static | Static
7 | REFGEN_SINE2 | 2 phase sine wave | Sine | Cosine | Static
8 | REFGEN_SINE3 | 3 phase sine wave | Sine | 120 deg. sine | 240 deg. sine
The same amplitude adjustment is applied to all phases prior to their addition to the static offset. Amplitude adjustment is made using the DCL_setRefgenAmpl() function.
### ***OFF Mode***
In this mode all three outputs are forced to zero. This is the default mode.
### ***STATIC Mode***
In this mode all outputs are controlled by the static reference generator only. The waveform generator is not used.
### ***SINE Mode***
In this mode phase A is a sinewave of configurable frequency and amplitude, while phases B & C are static outputs.
*Figure: Sine wave mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Sine_wave_mode-Figure3.png)
### ***SQUARE Mode***
In this mode phase A is a square wave of configurable frequency and amplitude, superimposed on the static generator output. Phases B & C are static outputs.
*Figure: Square wave mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Square_wave_mode-Figure4.png)
### ***SAW Mode***
In this mode phase A is a saw-tooth wave of configurable frequency and amplitude superimposed on the output of the static generator. Phases B & C are static outputs. The saw-tooth output is zero when the angle is zero, and rises to the amplitude when the angle is 1.
*Figure: Saw tooth mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Saw_tooth_mode-Figure5.png)
### ***TRIANGLE Mode***
In this mode phase A is a triangle wave of configurable frequency and amplitude superimposed on the output of the static generator. Phases B & C are static outputs. The saw-tooth output is zero when the angle is zero, and increases linearly to the commanded amplitude when the angle is 0.5.
*Figure: Triangle mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Triangle_mode-Figure6.png)
### ***PULSE Mode***
In this mode phase A is a pulsed wave of configurable frequency and amplitude superimposed on the output of the static generator. Phases B & C are static outputs. The pulse width is controlled by the duty cycle setting in the DCL_REFGEN structure, which may be set using the DCL_setRefgenDuty() function. The pulse output is one when the angle is below the normalized duty cycle, and zero when the angle is greater than the normalized duty cycle value.
*Figure: Pulse mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_Pulse_mode-Figure7.png)
### ***SINE2 Mode***
In this mode, phases A & B are two sine waves of similar frequency and amplitude superimposed on the static reference generator output. The phases are separated by 90 degrees, so that the outputs form a sine/cosine pair. Phase C is the static generator output.
*Figure: 2-phase sine mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_2-phase_sine_mode-Figure8.png)
### ***SINE3 Mode***
In this mode, the three output phases are sine waves of similar frequency and amplitude superimposed on the static reference generator output. The angular separation of the phases is 120 degrees.
*Figure: 3-phase sine mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/REFGEN_3-phase_sine_mode-Figure9.png)
# ***Amplitude Modulation***
Amplitude modulation is implemented in a similar fashion to frequency modulation. The transition interval is the last argument in the function DCL_setRefgenAmpl(). Similarly, an attempt to force large transition time together with a small amplitude change will result in either an error or the minimum increment being adopted, according to whether error handling is enabled.
# ***Output Clamp***
All three reference outputs are clamped to the same upper and lower limits. Limits are loaded by the user using the DCL_setRefgenClamp() function with the only restriction that the upper limit be equal to or greater than the lower limit.
`
var refgenModule = {
c2000wareLibraryName: "REFGEN",
displayName: "REFGEN",
defaultInstanceName: "myREFGEN",
description: "REFGEN",
longDescription:longDescription,
config: config,
references : [],
templates: {
c2000ware_libraries_c : "/libraries/control/dcl/templates/refgen.c2000ware_libraries.c.xdt",
c2000ware_libraries_h : "/libraries/control/dcl/templates/refgen.c2000ware_libraries.h.xdt",
},
validate : onValidate,
modules: (inst) => {
var mods = [];
var refFilesArr = refgen_data.getRefFilesModuleArrFromControlStruct(inst.structDisplay);
mods = refFilesArr;
return mods;
}
};
exports = refgenModule;
@@ -0,0 +1,139 @@
//==========================================================================
// REFERENCE FILES AND HEADER FILES
// Functions and data for the reference files that should be pulled in
//==========================================================================
// c and asm files, to be pulled in using submodules
var refFiles = {
"DCL_calcGamma": {"name":"DCL_calcGamma", "path":"../libraries/control/DCL/c28/source/DCL_calcGamma.asm", "alwaysInclude":false},
"DCL_clamp_C1": {"name":"DCL_clamp_C1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_C1.asm", "alwaysInclude":false},
"DCL_clamp_L1": {"name":"DCL_clamp_L1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_L1.asm", "alwaysInclude":false},
"DCL_DF11_C1": {"name":"DCL_DF11_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_C1.asm", "alwaysInclude":false},
"DCL_DF11_L1": {"name":"DCL_DF11_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_L1.asm", "alwaysInclude":false},
"DCL_DF13_C1": {"name":"DCL_DF13_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C1.asm", "alwaysInclude":false},
"DCL_DF13_C2C3": {"name":"DCL_DF13_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C2C3.asm", "alwaysInclude":false},
"DCL_DF13_L1": {"name":"DCL_DF13_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L1.asm", "alwaysInclude":false},
"DCL_DF13_L2L3": {"name":"DCL_DF13_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L2L3.asm", "alwaysInclude":false},
"DCL_DF22_C1": {"name":"DCL_DF22_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C1.asm", "alwaysInclude":false},
"DCL_DF22_C2C3": {"name":"DCL_DF22_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C2C3.asm", "alwaysInclude":false},
"DCL_DF22_L1": {"name":"DCL_DF22_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L1.asm", "alwaysInclude":false},
"DCL_DF22_L2L3": {"name":"DCL_DF22_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L2L3.asm", "alwaysInclude":false},
"DCL_DF23_C1": {"name":"DCL_DF23_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C1.asm", "alwaysInclude":false},
"DCL_DF23_C2C3": {"name":"DCL_DF23_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C2C3.asm", "alwaysInclude":false},
"DCL_DF23_L1": {"name":"DCL_DF23_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L1.asm", "alwaysInclude":false},
"DCL_DF23_L2L3": {"name":"DCL_DF23_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L2L3.asm", "alwaysInclude":false},
"DCL_error": {"name":"DCL_error", "path":"../libraries/control/DCL/c28/source/DCL_error.c", "alwaysInclude":false},
"DCL_frwlog": {"name":"DCL_frwlog", "path":"../libraries/control/DCL/c28/source/DCL_frwlog.asm", "alwaysInclude":false},
"DCL_futils": {"name":"DCL_futils", "path":"../libraries/control/DCL/c28/source/DCL_futils.asm", "alwaysInclude":false},
"DCL_futils32": {"name":"DCL_futils32", "path":"../libraries/control/DCL/c28/source/DCL_futils32.asm", "alwaysInclude":false},
"DCL_index": {"name":"DCL_index", "path":"../libraries/control/DCL/c28/source/DCL_index.asm", "alwaysInclude":false},
"DCL_NLPID_C3": {"name":"DCL_NLPID_C3", "path":"../libraries/control/DCL/c28/source/DCL_NLPID_C3.asm", "alwaysInclude":false},
"DCL_PI_A1": {"name":"DCL_PI_A1", "path":"../libraries/control/DCL/c28/source/DCL_PI_A1.asm", "alwaysInclude":false},
"DCL_PI_C1": {"name":"DCL_PI_C1", "path":"../libraries/control/DCL/c28/source/DCL_PI_C1.asm", "alwaysInclude":false},
"DCL_PI_C4": {"name":"DCL_PI_C4", "path":"../libraries/control/DCL/c28/source/DCL_PI_C4.asm", "alwaysInclude":false},
"DCL_PI_C7": {"name":"DCL_PI_C7", "path":"../libraries/control/DCL/c28/source/DCL_PI_C7.asm", "alwaysInclude":false},
"DCL_PI_L1": {"name":"DCL_PI_L1", "path":"../libraries/control/DCL/c28/source/DCL_PI_L1.asm", "alwaysInclude":false},
"DCL_PI_L2": {"name":"DCL_PI_L2", "path":"../libraries/control/DCL/c28/source/DCL_PI_L2.asm", "alwaysInclude":false},
"DCL_PI2_C2": {"name":"DCL_PI2_C2", "path":"../libraries/control/DCL/c28/source/DCL_PI2_C2.asm", "alwaysInclude":false},
"DCL_PID_A1": {"name":"DCL_PID_A1", "path":"../libraries/control/DCL/c28/source/DCL_PID_A1.asm", "alwaysInclude":false},
"DCL_PID_C1": {"name":"DCL_PID_C1", "path":"../libraries/control/DCL/c28/source/DCL_PID_C1.asm", "alwaysInclude":false},
"DCL_PID_C4": {"name":"DCL_PID_C4", "path":"../libraries/control/DCL/c28/source/DCL_PID_C4.asm", "alwaysInclude":false},
"DCL_PID_L1": {"name":"DCL_PID_L1", "path":"../libraries/control/DCL/c28/source/DCL_PID_L1.asm", "alwaysInclude":false},
"DCL_PID_L2": {"name":"DCL_PID_L2", "path":"../libraries/control/DCL/c28/source/DCL_PID_L2.asm", "alwaysInclude":false}
}
// h files, to be pulled in using c2000_libraries.h.xdt
// some of these header files have certain refFiles (asm/c files) dependencies
// NOTE: (probably) cannot move the refFilesList into the control_struct_dict since each header file references these reference files lists. If a reference file doesn't exist when the header file is imported, it may flag an error.
var headerFiles = {
"DCL": {"path":"../libraries/control/DCL/c28/include/DCL.h", "refFilesList":["DCL_error"]},
"DCLC28": {"path":"../libraries/control/DCL/c28/include/DCLC28.h", "refFilesList":["DCL_futils32","DCL_PID_A1","DCL_futils32","DCL_PI_A1"]},
"DCLCLA": {"path":"../libraries/control/DCL/c28/include/DCLCLA.h", "refFilesList":["DCL_PID_L1","DCL_PID_L2","DCL_PI_L1","DCL_PI_L2","DCL_DF11_L1","DCL_DF13_L1","DCL_DF13_L2L3","DCL_DF13_L2L3","DCL_DF22_L1","DCL_DF22_L2L3","DCL_DF22_L2L3","DCL_DF23_L1","DCL_DF23_L2L3","DCL_DF23_L2L3","DCL_clamp_L1"]},
"DCLF32": {"path":"../libraries/control/DCL/c28/include/DCLF32.h", "refFilesList":["DCL_futils","DCL_PID_C1","DCL_PID_C4","DCL_futils","DCL_PI_C1","DCL_PI_C4","DCL_PI_C7","DCL_futils","DCL_futils","DCL_DF11_C1","DCL_futils","DCL_DF13_C1","DCL_DF13_C2C3","DCL_DF13_C2C3","DCL_futils","DCL_DF22_C1","DCL_DF22_C2C3","DCL_DF22_C2C3","DCL_futils","DCL_DF23_C1","DCL_DF23_C2C3","DCL_DF23_C2C3","DCL_clamp_C1","DCL_futils"]},
"DCLF64": {"path":"../libraries/control/DCL/c28/include/DCLF64.h", "refFilesList":[]},
"DCL_fdlog": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog.h", "refFilesList":["DCL_frwlog","DCL_frwlog"]},
"DCL_fdlog64": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog64.h", "refFilesList":[]},
"DCL_log32": {"path":"../libraries/control/DCL/c28/include/DCL_log32.h", "refFilesList":[]},
"DCL_MLOG": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG.h", "refFilesList":[]},
"DCL_MLOG32": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG32.h", "refFilesList":[]},
"DCL_NLPID": {"path":"../libraries/control/DCL/c28/include/DCL_NLPID.h", "refFilesList":["DCL_futils","DCL_calcGamma","DCL_NLPID_C3"]},
"DCL_refgen": {"path":"../libraries/control/DCL/c28/include/DCL_refgen.h", "refFilesList":[]},
"DCL_refgen64": {"path":"../libraries/control/DCL/c28/include/DCL_refgen64.h", "refFilesList":[]},
"DCL_TCM": {"path":"../libraries/control/DCL/c28/include/DCL_TCM.h", "refFilesList":["DCL_index","DCL_index","DCL_index"]},
}
//==========================================================================
// CONTROL STRUCT LOOKUP DICTIONARY
// For each controller structure, determine which header files to use, and
// the config lookup list for this controller
//==========================================================================
var control_struct_dict = {
"REFGEN": {"headerFilesList":["DCL","DCL_refgen"]}, // add all of config_entries to the list
"REFGEN64": {"headerFilesList":["DCL","DCL_refgen64"]}, // add all of config_entries to the list
}
function getHeaderFilesList(controlStruct)
{
return control_struct_dict[controlStruct]['headerFilesList'];
}
function getOptIncludePaths(controlStruct)
{
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var includePathList = []
for (var i in headerFilesList)
{
var headerFileName = headerFilesList[i];
var headerFileObj = headerFiles[headerFileName];
var headerFilePath = headerFileObj["path"];
var includePath = headerFilePath.split("/").slice(0,-1).join("/");
if (!(includePathList.includes(includePath)))
{
includePathList.push(includePath);
}
}
return includePathList;
}
function getRefFilesModuleArrFromControlStruct(controlStruct)
{
if (controlStruct.length === 0)
{
return [];
}
var arr = [];
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var pathToDynamicJsFiles = "/libraries/control/dcl/templates/dynamic_mods/"
for (var i in headerFilesList)
{
var h = headerFilesList[i]
var refFilesList = headerFiles[h]['refFilesList'];
for (var j in refFilesList)
{
var refFileName = refFilesList[j]
var moduleNamePath = pathToDynamicJsFiles + refFileName + "_dynamic.js"
// if it hasn't been added yet, add it
var alreadyInArray = arr.some(el => refFileName === el["name"])
if (!alreadyInArray)
{
arr.push({
name:refFileName,
moduleName:moduleNamePath,
});
}
}
}
// all available Sysconfig devices use at least FPU32, and so require FPU.js to be included
arr.push({name:"fpu", moduleName:"/libraries/.meta/math/FPU/FPU.js", hidden:false});
return arr;
}
//==========================================================================
// EXPORTS
// Export all of the functions so variables/structures can be accessed
// in other .js files
//==========================================================================
exports = {
getRefFilesModuleArrFromControlStruct: getRefFilesModuleArrFromControlStruct,
getHeaderFilesList:getHeaderFilesList,
getOptIncludePaths:getOptIncludePaths,
}
@@ -0,0 +1,214 @@
let Common = system.getScript("/driverlib/Common.js");
let Pinmux = system.getScript("/driverlib/pinmux.js");
let references = system.getScript("/libraries/C2000WARELibraryReferences.js");
let tcm_data = system.getScript("/libraries/control/dcl/tcm_data.js");
let config = [
{
name:"fdlogName",
hidden:false,
default:"",
displayName:"Re-Name FDLOG Structure",
description:"Name of the FDLOG structure for the logger, default name provided if left blank",
longDescription:"Name of the data array for the logger, default name provided if left blank"
},
{
name:"arrName",
hidden:false,
default:"",
displayName:"Re-Name Data Array",
description:"Name of the data array for the logger, default name provided if left blank",
longDescription:"Name of the data array for the logger, default name provided if left blank. If the array already exists in memory, this will be used to point to that array."
},
{
name:"arrEn",
hidden:false,
default:true,
displayName:"Create Array Object",
description:"Create the array object, for cases where the array does not already exist.",
longDescription:"Create the array object, for cases where the array does not already exist. NOTE: if this is unchecked the array must exist somewhere in the code, otherwise a compile error will occur."
},
{
name:"linkerEn",
hidden:false,
default:false,
displayName:"Enable Linker Location",
description:"Linker command file used for declaring the array directly",
longDescription:"This creates a pragma to point to the given location in memory",
onChange:(inst, ui) => {ui["linkerVal"].hidden=!inst["linkerEn"];}
},
{
name:"linkerVal",
hidden:true,
default:"",
displayName:"Re-Name Linker Pragma",
description:"Pragma name of the location of the array in the linker command file, default name provided if left blank",
longDescription:"Pragma name of the location of the array in the linker command file, default name provided if left blank"
},
{
name:"lead",
hidden:false,
default:100,
displayName:"Lead Frame Size",
description:"Amount of data samples to save ahead of the trigger point, in 32-bit words",
longDescription:"Amount of data samples to save ahead of the trigger point, in 32-bit words.\nTrigger crossing index."
},
{
name:"captSize",
hidden:false,
default:300,
displayName:"Capture Frame Size",
description:"Amount of data samples to save after the lead frame is captured, in 32-bit words",
longDescription:"Amount of data samples to save after the lead frame is captured, in 32-bit words"
},
{
name:"totSize",
hidden:false,
default:0,
displayName:"Calculated Total Size",
description:"Total number of samples of the lead frame and capture frame together.",
longDescription:"Total number of samples of the lead frame and capture frame together.",
getValue: (inst) => {return inst["lead"]+inst["captSize"];}
},
{
name:"trigMax",
hidden:false,
default:"0",
displayName:"Upper Trigger Threshold",
description:"Upper trigger threshold",
longDescription:"Upper trigger threshold. Can include variable names."
},
{
name:"trigMin",
hidden:false,
default:"0",
displayName:"Lower Trigger Threshold",
description:"Lower trigger threshold",
longDescription:"Lower trigger threshold. Can include variable names."
},
{
name:"armTCM",
hidden:false,
default:false,
displayName:"Arm TCM During Init",
description:"Arm the TCM module so it is ready to capture immediately upon initialization",
longDescription:"Arm the TCM module so it is ready to capture immediately upon initialization"
},
]
function onValidate(inst, validation){
// TCM only has FPU32 support, which is compatible with both FPU32 and FPU64, so no checks needed
}
let longDescription = `The Transient Capture Module (TCM) is a triggered data logger which captures a burst of
incoming data. A typical use is the capture of a transient response following a step input
to a control system. The trigger conditions are a pair of user defined limits on the
incoming data. The capture process is triggered by the first data point which exceeds
either limit.
A feature of the TCM is that it captures a programmable length lead frame, allowing the
user to inspect conditions immediately prior to the trigger condition. This is accomplished
with three FDLOG structures which are elements in the TCM data structure, together with
the limit pair.
Once initialized, the status of the TCM is captured in one of four
enumerated operating modes:
* TCM_idle
* TCM_armed
* TCM_capture
* TCM_complete
The current mode is available in the mode element in the TCM structure. To use the
TCM, the user must do the following in their code:
1. Arm the TCM using DCL_armTCM()
2. Log data into the TCM using DCL_runTCM()
3. Monitor the mode element in the TCM structure to determine when the capture is complete.
In the following diagrams, lead, capture, and monitor frames are indexed using the
FDLOG structures x, y, & z respectively (note that these are not the names used in the
TCM structure). FDLOG pointers are color coded blue, green, and red, respectively. To
help visualize the sequence of events, the diagram shows in light gray the data which will
eventually be logged into the TCM, and in blue the current frame contents in each mode.
## ***TCM_idle Mode***
In TCM_idle mode the TCM buffers are as shown below. All buffer contents are zero, all
frame data pointers are at the start of their respective frames and no data is being logged.
This is the condition after the DCL_initTCM() function has been called.
*Figure: TCM operation in TCM_idle mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/TCM_operation_in_TCM_idle_mode.png)
## ***TCM_armed Mode***
The TCM is armed by a call to DCL_armTCM(). In this mode, incoming data is
continually logged in the monitor frame. The monitor frame acts as a circular buffer, the
index pointer wrapping to the start of the monitor frame when it reaches the end.
Each data point is compared with the upper and lower trigger thresholds to determine
whether to initiate a capture sequence. As long as the incoming data remains within the
specified limits, the TCM remains in TCM_armed mode.
*Figure: TCM operation in TCM_armed mode*
![](../../libraries/.meta/control/dcl/images/figures_scaled/TCM_operation_in_TCM_armed_mode.png)
## ***TCM_capture Mode***
The first data point which exceeds either trigger threshold initiates a capture sequence.
The TCM automatically enters TCM_capture mode and incoming data is logged into the
capture frame. Meanwhile, the monitor frame stops collecting data and starts to un-wind
its contents into the lead frame. Notice that the monitor frame contains the lead data
sequence, but the starting point is not aligned with the frame.
*Figure: TCM operation in capture mode (monitor frame un-winding)*
![](../../libraries/.meta/control/dcl/images/figures_scaled/TCM_operation_in_capture_mode_monitor_frame_un-winding.png)
Once the lead frame is full, the monitor frame stops copying out its data. Incoming data
continues being logged into the capture frame until it is full. The monitor frame contents
have now been completely loaded into the lead frame and will be over-written.
*Figure: TCM operation in TCM_capture mode (lead frame complete)*
![](../../libraries/.meta/control/dcl/images/figures_scaled/TCM_operation_in_TCM_capture_mode_lead_frame_complete.png)
## ***TCM_complete Mode***
Once the capture frame is full, data logging stops and the TCM enters TCM_complete
mode. The capture frame pointers are adjusted to span the entire TCM buffer.
*Figure: TCM capture complete*
![](../../libraries/.meta/control/dcl/images/figures_scaled/TCM_capture_complete.png)
The buffer contents may now be read out using DCL_readLog() or DCL_freadLog().
See the DCL User's Guide for more details:
[Digital Control Library User's Guide](https://dev.ti.com/tirex/explore/node?node=AKZRbh4oxv98HaO0YKjygQ__gYkahfz__LATEST)`
var sfoModule = {
c2000wareLibraryName: "TCM",
displayName: "TCM",
defaultInstanceName: "myTCM",
description: "Transient Capture Module",
longDescription: longDescription,
config: config,
validate:onValidate,
references : [],
templates: {
c2000ware_libraries_c : "/libraries/control/dcl/templates/tcm.c2000ware_libraries.c.xdt",
c2000ware_libraries_h : "/libraries/control/dcl/templates/tcm.c2000ware_libraries.h.xdt",
},
modules: (inst) => {
var mods = [];
var refFilesArr = tcm_data.getRefFilesModuleArrFromControlStruct("TCM");
mods = refFilesArr;
return mods;
},
};
exports = sfoModule;
@@ -0,0 +1,145 @@
//==========================================================================
// CONFIG ENTRIES DICTIONARY
// These get directly dropped into the config list of the controller.js
//==========================================================================
var config_entries = [];
//==========================================================================
// REFERENCE FILES AND HEADER FILES
// Functions and data for the reference files that should be pulled in
//==========================================================================
// c and asm files, to be pulled in using submodules
var refFiles = {
"DCL_calcGamma": {"name":"DCL_calcGamma", "path":"../libraries/control/DCL/c28/source/DCL_calcGamma.asm", "alwaysInclude":false},
"DCL_clamp_C1": {"name":"DCL_clamp_C1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_C1.asm", "alwaysInclude":false},
"DCL_clamp_L1": {"name":"DCL_clamp_L1", "path":"../libraries/control/DCL/c28/source/DCL_clamp_L1.asm", "alwaysInclude":false},
"DCL_DF11_C1": {"name":"DCL_DF11_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_C1.asm", "alwaysInclude":false},
"DCL_DF11_L1": {"name":"DCL_DF11_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF11_L1.asm", "alwaysInclude":false},
"DCL_DF13_C1": {"name":"DCL_DF13_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C1.asm", "alwaysInclude":false},
"DCL_DF13_C2C3": {"name":"DCL_DF13_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_C2C3.asm", "alwaysInclude":false},
"DCL_DF13_L1": {"name":"DCL_DF13_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L1.asm", "alwaysInclude":false},
"DCL_DF13_L2L3": {"name":"DCL_DF13_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF13_L2L3.asm", "alwaysInclude":false},
"DCL_DF22_C1": {"name":"DCL_DF22_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C1.asm", "alwaysInclude":false},
"DCL_DF22_C2C3": {"name":"DCL_DF22_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_C2C3.asm", "alwaysInclude":false},
"DCL_DF22_L1": {"name":"DCL_DF22_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L1.asm", "alwaysInclude":false},
"DCL_DF22_L2L3": {"name":"DCL_DF22_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF22_L2L3.asm", "alwaysInclude":false},
"DCL_DF23_C1": {"name":"DCL_DF23_C1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C1.asm", "alwaysInclude":false},
"DCL_DF23_C2C3": {"name":"DCL_DF23_C2C3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_C2C3.asm", "alwaysInclude":false},
"DCL_DF23_L1": {"name":"DCL_DF23_L1", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L1.asm", "alwaysInclude":false},
"DCL_DF23_L2L3": {"name":"DCL_DF23_L2L3", "path":"../libraries/control/DCL/c28/source/DCL_DF23_L2L3.asm", "alwaysInclude":false},
"DCL_error": {"name":"DCL_error", "path":"../libraries/control/DCL/c28/source/DCL_error.c", "alwaysInclude":false},
"DCL_frwlog": {"name":"DCL_frwlog", "path":"../libraries/control/DCL/c28/source/DCL_frwlog.asm", "alwaysInclude":false},
"DCL_futils": {"name":"DCL_futils", "path":"../libraries/control/DCL/c28/source/DCL_futils.asm", "alwaysInclude":false},
"DCL_futils32": {"name":"DCL_futils32", "path":"../libraries/control/DCL/c28/source/DCL_futils32.asm", "alwaysInclude":false},
"DCL_index": {"name":"DCL_index", "path":"../libraries/control/DCL/c28/source/DCL_index.asm", "alwaysInclude":false},
"DCL_NLPID_C3": {"name":"DCL_NLPID_C3", "path":"../libraries/control/DCL/c28/source/DCL_NLPID_C3.asm", "alwaysInclude":false},
"DCL_PI_A1": {"name":"DCL_PI_A1", "path":"../libraries/control/DCL/c28/source/DCL_PI_A1.asm", "alwaysInclude":false},
"DCL_PI_C1": {"name":"DCL_PI_C1", "path":"../libraries/control/DCL/c28/source/DCL_PI_C1.asm", "alwaysInclude":false},
"DCL_PI_C4": {"name":"DCL_PI_C4", "path":"../libraries/control/DCL/c28/source/DCL_PI_C4.asm", "alwaysInclude":false},
"DCL_PI_C7": {"name":"DCL_PI_C7", "path":"../libraries/control/DCL/c28/source/DCL_PI_C7.asm", "alwaysInclude":false},
"DCL_PI_L1": {"name":"DCL_PI_L1", "path":"../libraries/control/DCL/c28/source/DCL_PI_L1.asm", "alwaysInclude":false},
"DCL_PI_L2": {"name":"DCL_PI_L2", "path":"../libraries/control/DCL/c28/source/DCL_PI_L2.asm", "alwaysInclude":false},
"DCL_PI2_C2": {"name":"DCL_PI2_C2", "path":"../libraries/control/DCL/c28/source/DCL_PI2_C2.asm", "alwaysInclude":false},
"DCL_PID_A1": {"name":"DCL_PID_A1", "path":"../libraries/control/DCL/c28/source/DCL_PID_A1.asm", "alwaysInclude":false},
"DCL_PID_C1": {"name":"DCL_PID_C1", "path":"../libraries/control/DCL/c28/source/DCL_PID_C1.asm", "alwaysInclude":false},
"DCL_PID_C4": {"name":"DCL_PID_C4", "path":"../libraries/control/DCL/c28/source/DCL_PID_C4.asm", "alwaysInclude":false},
"DCL_PID_L1": {"name":"DCL_PID_L1", "path":"../libraries/control/DCL/c28/source/DCL_PID_L1.asm", "alwaysInclude":false},
"DCL_PID_L2": {"name":"DCL_PID_L2", "path":"../libraries/control/DCL/c28/source/DCL_PID_L2.asm", "alwaysInclude":false}
}
// h files, to be pulled in using c2000_libraries.h.xdt
// some of these header files have certain refFiles (asm/c files) dependencies
// NOTE: (probably) cannot move the refFilesList into the control_struct_dict since each header file references these reference files lists. If a reference file doesn't exist when the header file is imported, it may flag an error.
var headerFiles = {
"DCL": {"path":"../libraries/control/DCL/c28/include/DCL.h", "refFilesList":["DCL_error"]},
"DCLC28": {"path":"../libraries/control/DCL/c28/include/DCLC28.h", "refFilesList":["DCL_futils32","DCL_PID_A1","DCL_futils32","DCL_PI_A1"]},
"DCLCLA": {"path":"../libraries/control/DCL/c28/include/DCLCLA.h", "refFilesList":["DCL_PID_L1","DCL_PID_L2","DCL_PI_L1","DCL_PI_L2","DCL_DF11_L1","DCL_DF13_L1","DCL_DF13_L2L3","DCL_DF13_L2L3","DCL_DF22_L1","DCL_DF22_L2L3","DCL_DF22_L2L3","DCL_DF23_L1","DCL_DF23_L2L3","DCL_DF23_L2L3","DCL_clamp_L1"]},
"DCLF32": {"path":"../libraries/control/DCL/c28/include/DCLF32.h", "refFilesList":["DCL_futils","DCL_PID_C1","DCL_PID_C4","DCL_futils","DCL_PI_C1","DCL_PI_C4","DCL_PI_C7","DCL_futils","DCL_futils","DCL_DF11_C1","DCL_futils","DCL_DF13_C1","DCL_DF13_C2C3","DCL_DF13_C2C3","DCL_futils","DCL_DF22_C1","DCL_DF22_C2C3","DCL_DF22_C2C3","DCL_futils","DCL_DF23_C1","DCL_DF23_C2C3","DCL_DF23_C2C3","DCL_clamp_C1","DCL_futils"]},
"DCLF64": {"path":"../libraries/control/DCL/c28/include/DCLF64.h", "refFilesList":[]},
"DCL_fdlog": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog.h", "refFilesList":["DCL_frwlog","DCL_frwlog"]},
"DCL_fdlog64": {"path":"../libraries/control/DCL/c28/include/DCL_fdlog64.h", "refFilesList":[]},
"DCL_log32": {"path":"../libraries/control/DCL/c28/include/DCL_log32.h", "refFilesList":[]},
"DCL_MLOG": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG.h", "refFilesList":[]},
"DCL_MLOG32": {"path":"../libraries/control/DCL/c28/include/DCL_MLOG32.h", "refFilesList":[]},
"DCL_NLPID": {"path":"../libraries/control/DCL/c28/include/DCL_NLPID.h", "refFilesList":["DCL_futils","DCL_calcGamma","DCL_NLPID_C3"]},
"DCL_refgen": {"path":"../libraries/control/DCL/c28/include/DCL_refgen.h", "refFilesList":[]},
"DCL_refgen64": {"path":"../libraries/control/DCL/c28/include/DCL_refgen64.h", "refFilesList":[]},
"DCL_TCM": {"path":"../libraries/control/DCL/c28/include/DCL_TCM.h", "refFilesList":["DCL_index","DCL_index","DCL_index"]},
}
//==========================================================================
// CONTROL STRUCT LOOKUP DICTIONARY
// For each controller structure, determine which header files to use, and
// the config lookup list for this controller
//==========================================================================
var control_struct_dict = {
"TCM": {"headerFilesList":["DCL_fdlog","DCL_TCM"], "config_entries_list":config_entries.map(x => x.name)}, // add all of config_entries to the list
}
function getHeaderFilesList(controlStruct)
{
// for TCM, always use "TCM" as controlStruct choice
return control_struct_dict["TCM"]['headerFilesList'];
}
function getOptIncludePaths(controlStruct)
{
// for TCM, always use "TCM" as controlStruct choice
var headerFilesList = control_struct_dict["TCM"]['headerFilesList'];
var includePathList = []
for (var i in headerFilesList)
{
var headerFileName = headerFilesList[i];
var headerFileObj = headerFiles[headerFileName];
var headerFilePath = headerFileObj["path"];
var includePath = headerFilePath.split("/").slice(0,-1).join("/");
if (!(includePathList.includes(includePath)))
{
includePathList.push(includePath);
}
}
return includePathList;
}
function getRefFilesModuleArrFromControlStruct(controlStruct)
{
if (controlStruct.length === 0)
{
return [];
}
var arr = [];
var headerFilesList = control_struct_dict[controlStruct]['headerFilesList'];
var pathToDynamicJsFiles = "/libraries/control/dcl/templates/dynamic_mods/"
for (var i in headerFilesList)
{
var h = headerFilesList[i]
var refFilesList = headerFiles[h]['refFilesList'];
for (var j in refFilesList)
{
var refFileName = refFilesList[j]
var moduleNamePath = pathToDynamicJsFiles + refFileName + "_dynamic.js"
// if it hasn't been added yet, add it
var alreadyInArray = arr.some(el => refFileName === el["name"])
if (!alreadyInArray)
{
arr.push({
name:refFileName,
moduleName:moduleNamePath,
});
}
}
}
// all available Sysconfig devices use at least FPU32, and so require FPU.js to be included
arr.push({name:"fpu", moduleName:"/libraries/.meta/math/FPU/FPU.js", hidden:false});
return arr;
}
//==========================================================================
// EXPORTS
// Export all of the functions so variables/structures can be accessed
// in other .js files
//==========================================================================
exports = {
getRefFilesModuleArrFromControlStruct: getRefFilesModuleArrFromControlStruct,
getOptIncludePaths:getOptIncludePaths,
getHeaderFilesList:getHeaderFilesList,
}
@@ -0,0 +1,62 @@
%%{
let controller_data = system.getScript("/libraries/control/dcl/controller_data.js");
var mod = system.modules['/libraries/control/dcl/controller.js'];
var controllerChoiceList = [];
if (mod != null)
{
// get all the modules
for(var i = 0; i < mod.$instances.length; i++)
{
var inst = mod.$instances[i];
var resData = controller_data.getModuleDataObj(inst);
controllerChoiceList.push(resData);
}
}
%%}
%if (mod != null)
%{
//
// DCL CONTROLLER
//
% for (var obj of controllerChoiceList)
%{
//
// `obj["instName"]` variables
//
DCL_`obj["type"]` `obj["instName"]` = `obj["defaultsListName"]`;
DCL_`obj["type"]`_SPS `obj["instName"]`_sps = `obj["type"]`_SPS_DEFAULTS;
DCL_CSS `obj["instName"]`_css = DCL_CSS_DEFAULTS;
%}
% for (var obj of controllerChoiceList)
% {
void `obj["instName"]`_init(){
//
// `obj["instName"]` settings
//
`obj["instName"]`.sps = &`obj["instName"]`_sps;
`obj["instName"]`.css = &`obj["instName"]`_css;
% for (var j in obj["configEntriesVals"])
%{
% var configEntry = obj["configEntriesVals"][j][0];
% var configVal = obj["configEntriesVals"][j][1];
% // remove any text between curly brackets in the config Entry name, Example:
% // d2{DF11}
% // becomes
% // d2
% // This is because the actual variable name in DCL for .c file output is without the curly braces.
% if (configEntry.includes("{"))
% {
% configEntry = configEntry.replace(/{.*?}/g,"");
% }
`obj["instName"]`.`configEntry` = `configVal`;
%}
}
% }
void `mod.c2000wareLibraryName`_init(){
% for (var obj of controllerChoiceList)
% {
`obj["instName"]`_init();
% }
}
%}

Some files were not shown because too many files have changed in this diff Show More