Remove Image export support. It will be moved to the front end.

This commit is contained in:
Paulo Gustavo Veiga 2021-12-31 09:13:07 -08:00
parent ac7fd7e706
commit 71fefdd8c6
62 changed files with 4 additions and 30690 deletions

View File

@ -200,23 +200,6 @@
<version>1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>1.10</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>

View File

@ -21,15 +21,10 @@ package com.wisemapping.exporter;
import org.jetbrains.annotations.NotNull;
public enum ExportFormat {
SVG("image/svg+xml", "svg"),
JPG("image/jpeg", "jpg"),
PNG("image/png", "png"),
PDF("application/pdf", "pdf"),
FREEMIND("application/freemind", "mm"),
TEXT("text/plain", "txt"),
MICROSOFT_EXCEL("application/vnd.ms-excel", "xls"),
MICROSOFT_WORD("application/msword", "doc"),
OPEN_OFFICE_WRITER("application/vnd.oasis.opendocument.text", "odt"),
MINDJET("application/vnd.mindjet.mindmanager", "mmap"),
WISEMAPPING("application/wisemapping+xml", "wxml");

View File

@ -31,13 +31,7 @@ public class ExportProperties {
}
public static ExportProperties create(final ExportFormat format) {
ExportProperties result;
if (format == ExportFormat.JPG || format == ExportFormat.PNG) {
result = new ImageProperties(format);
} else {
result = new GenericProperties(format);
}
return result;
return new GenericProperties(format);
}
public String getVersion() {
@ -54,33 +48,4 @@ public class ExportProperties {
}
}
static public class ImageProperties extends ExportProperties {
private Size size;
public Size getSize() {
return size;
}
public void setSize(Size size) {
this.size = size;
}
ImageProperties(ExportFormat format) {
super(format);
}
public enum Size {
SMALL(100), MEDIUM(800), XMEDIUM(1024), LARGE(2048);
private final int width;
Size(int width) {
this.width = width;
}
public Float getWidth() {
return (float) width;
}
}
}
}

View File

@ -19,19 +19,7 @@
package com.wisemapping.exporter;
import com.wisemapping.importer.VersionNumber;
import org.apache.batik.ext.awt.image.rendered.TileCache;
import org.apache.batik.parser.AWTTransformProducer;
import org.apache.batik.parser.ParseException;
import org.apache.batik.parser.TransformListParser;
import org.apache.batik.transcoder.Transcoder;
import org.apache.batik.transcoder.TranscoderException;
import org.apache.batik.transcoder.TranscoderInput;
import org.apache.batik.transcoder.TranscoderOutput;
import org.apache.batik.transcoder.image.ImageTranscoder;
import org.apache.batik.transcoder.image.JPEGTranscoder;
import org.apache.batik.transcoder.image.PNGTranscoder;
import org.apache.commons.io.IOUtils;
import org.apache.fop.svg.PDFTranscoder;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.w3c.dom.*;
@ -56,14 +44,9 @@ import java.util.regex.Pattern;
public class ExporterFactory {
static {
// Try to prevent OOM.
TileCache.setSize(0);
}
private static final String GROUP_NODE_NAME = "g";
private static final String IMAGE_NODE_NAME = "image";
private static final int MANGING = 50;
private static final String UTF_8_CHARSET_NAME = "UTF-8";
private final File baseImgDir;
public ExporterFactory(@NotNull final ServletContext servletContext) {
@ -74,81 +57,16 @@ public class ExporterFactory {
this.baseImgDir = baseImgDir;
}
public void export(@NotNull ExportProperties properties, @Nullable String xml, @NotNull OutputStream output, @Nullable String mapSvg) throws ExportException, IOException, TranscoderException {
public void export(@NotNull ExportProperties properties, @Nullable String xml, @NotNull OutputStream output, @Nullable String mapSvg) throws ExportException, IOException {
final ExportFormat format = properties.getFormat();
switch (format) {
case PNG: {
// Create a JPEG transcoder
final Transcoder transcoder = new PNGTranscoder();
final ExportProperties.ImageProperties imageProperties =
(ExportProperties.ImageProperties) properties;
final ExportProperties.ImageProperties.Size size = imageProperties.getSize();
transcoder.addTranscodingHint(ImageTranscoder.KEY_WIDTH, size.getWidth());
// Create the transcoder input.
final String svgString = normalizeSvg(mapSvg);
final CharArrayReader reader = new CharArrayReader(svgString.toCharArray());
final TranscoderInput input = new TranscoderInput(reader);
TranscoderOutput transcoderOutput = new TranscoderOutput(output);
// Save the image.
transcoder.transcode(input, transcoderOutput);
reader.close();
break;
}
case JPG: {
// Create a JPEG transcoder
final Transcoder transcoder = new JPEGTranscoder();
transcoder.addTranscodingHint(JPEGTranscoder.KEY_QUALITY, .99f);
final ExportProperties.ImageProperties imageProperties =
(ExportProperties.ImageProperties) properties;
final ExportProperties.ImageProperties.Size size = imageProperties.getSize();
transcoder.addTranscodingHint(ImageTranscoder.KEY_WIDTH, size.getWidth());
// Create the transcoder input.
final String svgString = normalizeSvg(mapSvg);
CharArrayReader reader = new CharArrayReader(svgString.toCharArray());
final TranscoderInput input = new TranscoderInput(reader);
TranscoderOutput trascoderOutput = new TranscoderOutput(output);
// Save the image.
transcoder.transcode(input, trascoderOutput);
reader.close();
break;
}
case PDF: {
// Create a JPEG transcoder
final Transcoder transcoder = new PDFTranscoder();
// Create the transcoder input.
final String svgString = normalizeSvg(mapSvg);
CharArrayReader reader = new CharArrayReader(svgString.toCharArray());
final TranscoderInput input = new TranscoderInput(reader);
TranscoderOutput trascoderOutput = new TranscoderOutput(output);
// Save the image.
transcoder.transcode(input, trascoderOutput);
reader.close();
break;
}
case SVG: {
final String svgString = normalizeSvg(mapSvg);
output.write(svgString.getBytes(StandardCharsets.UTF_8));
break;
}
case TEXT: {
final Exporter exporter = XSLTExporter.create(XSLTExporter.Type.TEXT);
exporter.export(xml.getBytes(StandardCharsets.UTF_8), output);
break;
}
case OPEN_OFFICE_WRITER: {
final Exporter exporter = XSLTExporter.create(XSLTExporter.Type.OPEN_OFFICE);
exporter.export(xml.getBytes(StandardCharsets.UTF_8), output);
break;
}
case MICROSOFT_EXCEL: {
final Exporter exporter = XSLTExporter.create(XSLTExporter.Type.MICROSOFT_EXCEL);
exporter.export(xml.getBytes(StandardCharsets.UTF_8), output);
@ -173,54 +91,6 @@ public class ExporterFactory {
output.close();
}
private String normalizeSvg(@NotNull String svgXml) throws ExportException {
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
final DocumentBuilder documentBuilder = factory.newDocumentBuilder();
if (!svgXml.contains("xmlns:xlink=\"http://www.w3.org/1999/xlink\"")) {
svgXml = svgXml.replaceFirst("<svg ", "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" ");
}
if (!svgXml.contains("xmlns=\"http://www.w3.org/2000/svg\"")) {
svgXml = svgXml.replaceFirst("<svg ", "<svg xmlns=\"http://www.w3.org/2000/svg\" ");
}
// Hacks for some legacy cases ....
svgXml = svgXml.replaceAll("NaN,", "0");
svgXml = svgXml.replaceAll(",NaN", "0");
// Bratik do not manage nbsp properly.
svgXml = svgXml.replaceAll(Pattern.quote("&nbsp;"), " ");
Document document;
try {
final Reader in = new CharArrayReader(svgXml.toCharArray());
final InputSource is = new InputSource(in);
document = documentBuilder.parse(is);
} catch (SAXException e) {
// It must be a corrupted SVG format. Try to hack it and try again ...
svgXml = svgXml.replaceAll("<image([^>]+)>", "<image$1/>");
svgXml = svgXml.replaceAll("\u001B", "");
final Reader in = new CharArrayReader(svgXml.toCharArray());
final InputSource is = new InputSource(in);
document = documentBuilder.parse(is);
}
resizeSVG(document);
final Node child = document.getFirstChild();
inlineImages(document, (Element) child);
return domToString(document);
} catch (ParserConfigurationException | TransformerException | SAXException | IOException e) {
throw new ExportException(e);
}
}
private static String domToString(@NotNull Document document) throws TransformerException {
DOMSource domSource = new DOMSource(document);
@ -344,76 +214,4 @@ public class ExporterFactory {
}
}
}
private static void resizeSVG(@NotNull Document document) throws ExportException {
try {
XPathFactory xPathfactory = XPathFactory.newInstance();
XPath xpath = xPathfactory.newXPath();
XPathExpression expr = xpath.compile("/svg/g/rect");
NodeList nl = (NodeList) expr.evaluate(document, XPathConstants.NODESET);
final int length = nl.getLength();
double maxX = 0, minX = 0, minY = 0, maxY = 0;
for (int i = 0; i < length; i++) {
final Element rectElem = (Element) nl.item(i);
final Element gElem = (Element) rectElem.getParentNode();
final TransformListParser p = new TransformListParser();
final AWTTransformProducer tp = new AWTTransformProducer();
p.setTransformListHandler(tp);
p.parse(gElem.getAttribute("transform"));
final AffineTransform transform = tp.getAffineTransform();
double yPos = transform.getTranslateY();
if (yPos > 0) {
yPos += Double.parseDouble(rectElem.getAttribute("height"));
}
maxY = maxY < yPos ? yPos : maxY;
minY = minY > yPos ? yPos : minY;
double xPos = transform.getTranslateX();
if (xPos > 0) {
xPos += Double.parseDouble(rectElem.getAttribute("width"));
}
maxX = maxX < xPos ? xPos : maxX;
minX = minX > xPos ? xPos : minX;
}
// Add some extra margin ...
maxX += MANGING;
minX += -MANGING;
maxY += MANGING;
minY += -MANGING;
// Calculate dimentions ...
final double width = maxX + Math.abs(minX);
final double height = maxY + Math.abs(minY);
// Finally, update centers ...
final Element svgNode = (Element) document.getFirstChild();
svgNode.setAttribute("viewBox", minX + " " + minY + " " + width + " " + height);
svgNode.setAttribute("width", Double.toString(width));
svgNode.setAttribute("height", Double.toString(height));
svgNode.setAttribute("preserveAspectRatio", "xMinYMin");
} catch (XPathExpressionException | ParseException | NumberFormatException | DOMException e) {
throw new ExportException(e);
}
}
private static String[] getTransformUnit(NamedNodeMap groupAttributes) {
final String value = groupAttributes.getNamedItem("transform").getNodeValue();
final int pos = value.indexOf("translate");
final int initTranslate = value.indexOf("(", pos);
final int endTranslate = value.indexOf(")", pos);
final String transate = value.substring(initTranslate + 1, endTranslate);
return transate.contains(",") ? transate.split(",") : transate.split(" ");
}
}

View File

@ -42,55 +42,7 @@ public class TransformerController extends BaseController {
private static final String PARAM_WISE_MAP_XML = "mapXml";
private static final String PARAM_FILENAME = "filename";
@RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"application/pdf"}, consumes = {"image/svg+xml"})
@ResponseBody
public ModelAndView transformPdf(@RequestBody @Nullable final String content) {
final Map<String, Object> values = new HashMap<String, Object>();
if (content == null || content.length() == 0) {
throw new IllegalArgumentException("Body can not be null.");
}
values.put("content", content);
return new ModelAndView("transformViewPdf", values);
}
@RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"image/svg+xml"}, consumes = {"image/svg+xml"})
@ResponseBody
public ModelAndView transformSvg(@RequestBody @Nullable final String content) {
final Map<String, Object> values = new HashMap<String, Object>();
if (content == null || content.length() == 0) {
throw new IllegalArgumentException("Body can not be null.");
}
values.put("content", content);
return new ModelAndView("transformViewSvg", values);
}
@RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"image/png"}, consumes = {"image/svg+xml"})
@ResponseBody
public ModelAndView transformPng(@RequestBody @Nullable final String content) {
final Map<String, Object> values = new HashMap<String, Object>();
if (content == null || content.length() == 0) {
throw new IllegalArgumentException("Body can not be null.");
}
values.put("content", content);
values.put("imageSize", ExportProperties.ImageProperties.Size.LARGE);
return new ModelAndView("transformViewPng", values);
}
@RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"image/jpeg"}, consumes = {"image/svg+xml"})
@ResponseBody
public ModelAndView transformJpeg(@RequestBody @Nullable final String content) throws IOException {
final Map<String, Object> values = new HashMap<String, Object>();
if (content == null || content.length() == 0) {
throw new IllegalArgumentException("Body can not be null.");
}
values.put("content", content);
values.put("imageSize", ExportProperties.ImageProperties.Size.LARGE);
return new ModelAndView("transformViewJpeg", values);
}
@RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"application/freemind"}, consumes = {"application/xml"})
@RequestMapping(method = RequestMethod.POST, value = "/transform", produces = {"application/freemind"}, consumes = {"application/xml"})
@ResponseBody
public ModelAndView transformFreemind(@RequestBody @Nullable final String content) throws IOException {
final Map<String, Object> values = new HashMap<String, Object>();
@ -100,40 +52,4 @@ public class TransformerController extends BaseController {
values.put("content", content);
return new ModelAndView("transformViewFreemind", values);
}
@RequestMapping(method = RequestMethod.POST, value = "/transform", consumes = {"application/x-www-form-urlencoded"})
public ModelAndView transform(@NotNull HttpServletRequest request) throws IOException {
final String svg = request.getParameter(PARAM_SVG_XML);
final String mapXml = request.getParameter(PARAM_WISE_MAP_XML);
final String filename = request.getParameter(PARAM_FILENAME);
// Obtains transformation type based on the last part of the URL ...
final String requestURI = request.getRequestURI();
final String format = requestURI.substring(requestURI.lastIndexOf(".") + 1);
final ExportFormat exportFormat = ExportFormat.valueOf(format.toUpperCase());
ModelAndView result;
switch (exportFormat) {
case PNG:
result = this.transformPng(svg);
break;
case JPG:
result = this.transformJpeg(svg);
break;
case PDF:
result = this.transformPdf(svg);
break;
case SVG:
result = this.transformSvg(svg);
break;
default:
throw new IllegalArgumentException("Unsupported export format");
}
if (filename != null) {
result.getModelMap().put("filename", filename);
}
return result;
}
}

View File

@ -63,10 +63,6 @@ public class TransformView extends AbstractView {
// Build format properties ...
final ExportProperties properties = ExportProperties.create(exportFormat);
if (properties instanceof ExportProperties.ImageProperties) {
final ExportProperties.ImageProperties imageProperties = (ExportProperties.ImageProperties) properties;
imageProperties.setSize(ExportProperties.ImageProperties.Size.LARGE);
}
if (version != null) {
properties.setVersion(version);
}
@ -93,7 +89,7 @@ public class TransformView extends AbstractView {
final Object mindmap = viewMap.get("mindmap");
final StreamResult result = new StreamResult(outputStream);
jaxbMarshaller.marshal(mindmap, result);
} else if (exportFormat == ExportFormat.MICROSOFT_EXCEL || exportFormat == ExportFormat.TEXT || exportFormat == ExportFormat.OPEN_OFFICE_WRITER || exportFormat == ExportFormat.MINDJET) {
} else if (exportFormat == ExportFormat.MICROSOFT_EXCEL || exportFormat == ExportFormat.TEXT || exportFormat == ExportFormat.MINDJET) {
response.setContentType(String.format("%s; charset=%s", contentType, DEFAULT_ENCODING));
factory.export(properties, content, outputStream, null);

View File

@ -91,7 +91,6 @@
<div id="export" class="buttonOn">
<img src="../../images/editor/export.svg"/>
</div>
<a id="export_anchor" href="" download=""></a>
<c:if test="${!readOnlyMode && !memoryPersistence}">
<div id="history" class="buttonOn">
<img src="../../images/editor/history.svg"/>

View File

@ -1,109 +0,0 @@
package com.wisemapping.test.export;
import com.wisemapping.exporter.ExportException;
import com.wisemapping.exporter.ExportFormat;
import com.wisemapping.exporter.ExportProperties;
import com.wisemapping.exporter.ExporterFactory;
import org.apache.batik.transcoder.TranscoderException;
import org.apache.commons.io.FileUtils;
import org.jetbrains.annotations.NotNull;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import java.io.*;
@Test
public class ExportSVGBasedTest {
private static final String DATA_DIR_PATH = "src/test/resources/data/svg/";
public static final String ICONS_BASED_PATH = "/../../../../../src/main/webapp/map-icons";
@Test(dataProvider = "Data-Provider-Function")
public void exportSvgTest(@NotNull final File svgFile, @NotNull final File pngFile, @NotNull final File pdfFile, @NotNull final File svgExpFile) throws IOException, ExportException, TranscoderException {
final String svgXml = FileUtils.readFileToString(svgFile, "UTF-8");
exportPng(svgFile, pngFile, svgXml);
exportPdf(svgFile, pdfFile, svgXml);
exportSvg(svgFile, svgExpFile, svgXml);
}
private void exportSvg(File svgFile, File pdfFile, String svgXml) throws IOException, ExportException, TranscoderException {
final ExportFormat format = ExportFormat.SVG;
final ExportProperties properties = ExportProperties.create(format);
String baseUrl = svgFile.getParentFile().getAbsolutePath() + ICONS_BASED_PATH;
ExporterFactory factory = new ExporterFactory(new File(baseUrl));
// Write content ...
if (pdfFile.exists()) {
// Export mile content ...
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
factory.export(properties, null, bos, svgXml);
} else {
OutputStream outputStream = new FileOutputStream(pdfFile, false);
factory.export(properties, null, outputStream, svgXml);
outputStream.close();
}
}
private void exportPng(File svgFile, File pngFile, String svgXml) throws ExportException, IOException, TranscoderException {
final ExportFormat format = ExportFormat.PNG;
final ExportProperties properties = ExportProperties.create(format);
final ExportProperties.ImageProperties imageProperties = (ExportProperties.ImageProperties) properties;
imageProperties.setSize(ExportProperties.ImageProperties.Size.LARGE);
String baseUrl = svgFile.getParentFile().getAbsolutePath() + ICONS_BASED_PATH;
ExporterFactory factory = new ExporterFactory(new File(baseUrl));
// Write content ...
if (pngFile.exists()) {
// Export mile content ...
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
factory.export(imageProperties, null, bos, svgXml);
} else {
OutputStream outputStream = new FileOutputStream(pngFile, false);
factory.export(imageProperties, null, outputStream, svgXml);
outputStream.close();
}
}
private void exportPdf(File svgFile, File pdfFile, String svgXml) throws ExportException, IOException, TranscoderException {
final ExportFormat format = ExportFormat.PDF;
final ExportProperties properties = ExportProperties.create(format);
String baseUrl = svgFile.getParentFile().getAbsolutePath() + ICONS_BASED_PATH;
ExporterFactory factory = new ExporterFactory(new File(baseUrl));
// Write content ...
if (pdfFile.exists()) {
// Export mile content ...
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
factory.export(properties, null, bos, svgXml);
} else {
OutputStream outputStream = new FileOutputStream(pdfFile, false);
factory.export(properties, null, outputStream, svgXml);
outputStream.close();
}
}
//This function will provide the parameter data
@DataProvider(name = "Data-Provider-Function")
public Object[][] parameterIntTestProvider() {
final File dataDir = new File(DATA_DIR_PATH);
final File[] svgFile = dataDir.listFiles((dir, name) -> name.endsWith(".svg") && !name.contains("-exp.svg"));
if (svgFile == null) {
throw new IllegalArgumentException("Wrong based path specified. Change based path...");
}
final Object[][] result = new Object[svgFile.length][4];
for (int i = 0; i < svgFile.length; i++) {
File freeMindFile = svgFile[i];
final String name = freeMindFile.getName();
result[i] = new Object[]{freeMindFile, new File(DATA_DIR_PATH, name.substring(0, name.lastIndexOf(".")) + ".png"), new File(DATA_DIR_PATH, name.substring(0, name.lastIndexOf(".")) + ".pdf"), new File(DATA_DIR_PATH, name.substring(0, name.lastIndexOf(".")) + "-exp.svg")};
}
return result;
}
}

View File

@ -1,87 +0,0 @@
package com.wisemapping.test.export;
import com.wisemapping.exporter.ExportException;
import com.wisemapping.exporter.ExportFormat;
import com.wisemapping.exporter.Exporter;
import com.wisemapping.exporter.XSLTExporter;
import com.wisemapping.model.Mindmap;
import org.apache.commons.io.FileUtils;
import org.jetbrains.annotations.NotNull;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import java.io.*;
import java.nio.charset.StandardCharsets;
@Test
public class ExportXsltBasedTest {
private static final String DATA_DIR_PATH = "src/test/resources/data/export/";
private static final String ENC_UTF_8 = "UTF-8";
@Test(dataProvider = "Data-Provider-Function")
public void exportImportExportTest(@NotNull XSLTExporter.Type type, @NotNull final File wisemap, @NotNull final File recFile) throws IOException, ExportException {
final Exporter exporter = XSLTExporter.create(type);
byte[] wiseMapContent = FileUtils.readFileToByteArray(wisemap);
if (recFile.exists()) {
// Compare rec and file ...
final String recContent = FileUtils.readFileToString(recFile, ENC_UTF_8)
.replaceAll("\n\\p{Blank}+", "\n")
.replaceAll("\n+", "\n");
// Export mile content ...
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
exporter.export(wiseMapContent, bos);
final String exportContent = bos.toString(StandardCharsets.UTF_8)
.replaceAll("\n\\p{Blank}+", "\n")
.replaceAll("\n+", "\n");
Assert.assertEquals(exportContent, recContent);
} else {
final OutputStream fos = new FileOutputStream(recFile);
exporter.export(wiseMapContent, fos);
fos.close();
}
}
private Mindmap load(@NotNull File wisemap) throws IOException {
final byte[] recContent = FileUtils.readFileToByteArray(wisemap);
final Mindmap result = new Mindmap();
result.setUnzipXml(recContent);
return result;
}
//This function will provide the parameter data
@DataProvider(name = "Data-Provider-Function")
public Object[][] parameterIntTestProvider() {
final File dataDir = new File(DATA_DIR_PATH);
final File[] freeMindFiles = dataDir.listFiles(new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.endsWith(".wxml");
}
});
final Object[][] result = new Object[freeMindFiles.length * 7][2];
for (int i = 0; i < freeMindFiles.length; i++) {
File freeMindFile = freeMindFiles[i];
final String name = freeMindFile.getName();
int pos = i * 7;
final String fileName = name.substring(0, name.lastIndexOf("."));
result[pos++] = new Object[]{XSLTExporter.Type.TEXT, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.TEXT.getFileExtension())};
result[pos++] = new Object[]{XSLTExporter.Type.CSV, freeMindFile, new File(DATA_DIR_PATH, fileName + ".csv")};
result[pos++] = new Object[]{XSLTExporter.Type.WORD, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.MICROSOFT_WORD.getFileExtension())};
result[pos++] = new Object[]{XSLTExporter.Type.LATEX, freeMindFile, new File(DATA_DIR_PATH, fileName + ".latex")};
result[pos++] = new Object[]{XSLTExporter.Type.MICROSOFT_EXCEL, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.MICROSOFT_EXCEL.getFileExtension())};
result[pos++] = new Object[]{XSLTExporter.Type.OPEN_OFFICE, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.OPEN_OFFICE_WRITER.getFileExtension())};
result[pos++] = new Object[]{XSLTExporter.Type.MINDJET, freeMindFile, new File(DATA_DIR_PATH, fileName + "." + ExportFormat.MINDJET.getFileExtension())};
}
return result;
}
}

View File

@ -1,67 +0,0 @@
package com.wisemapping.test.model;
import com.wisemapping.model.IconFamily;
import com.wisemapping.model.MindmapIcon;
import com.wisemapping.model.MindmapIcons;
import org.testng.Assert;
import org.testng.annotations.Test;
import java.io.File;
import java.util.List;
@Test
public class IconsTest {
final private static String CURRENT_JSON_ICONS = "[{\"id\": \"face\", \"icons\" : [\"face_plain\",\"face_sad\",\"face_crying\",\"face_smile\",\"face_surprise\",\"face_wink\"]},{\"id\": \"funy\", \"icons\" : [\"funy_angel\",\"funy_devilish\",\"funy_glasses\",\"funy_grin\",\"funy_kiss\",\"funy_monkey\"]},{\"id\": \"conn\", \"icons\" : [\"conn_connect\",\"conn_disconnect\"]},{\"id\": \"sport\", \"icons\" : [\"sport_basketball\",\"sport_football\",\"sport_golf\",\"sport_raquet\",\"sport_shuttlecock\",\"sport_soccer\",\"sport_tennis\"]},{\"id\": \"bulb\", \"icons\" : [\"bulb_light_on\",\"bulb_light_off\"]},{\"id\": \"thumb\", \"icons\" : [\"thumb_thumb_up\",\"thumb_thumb_down\"]},{\"id\": \"tick\", \"icons\" : [\"tick_tick\",\"tick_cross\"]},{\"id\": \"onoff\", \"icons\" : [\"onoff_clock\",\"onoff_clock_red\",\"onoff_add\",\"onoff_delete\",\"onoff_status_offline\",\"onoff_status_online\"]},{\"id\": \"money\", \"icons\" : [\"money_money\",\"money_dollar\",\"money_euro\",\"money_pound\",\"money_yen\",\"money_coins\",\"money_ruby\"]},{\"id\": \"time\", \"icons\" : [\"time_calendar\",\"time_clock\",\"time_hourglass\"]},{\"id\": \"chart\", \"icons\" : [\"chart_bar\",\"chart_line\",\"chart_curve\",\"chart_pie\",\"chart_organisation\"]},{\"id\": \"sign\", \"icons\" : [\"sign_warning\",\"sign_info\",\"sign_stop\",\"sign_help\",\"sign_cancel\"]},{\"id\": \"hard\", \"icons\" : [\"hard_cd\",\"hard_computer\",\"hard_controller\",\"hard_driver_disk\",\"hard_ipod\",\"hard_keyboard\",\"hard_mouse\",\"hard_printer\"]},{\"id\": \"soft\", \"icons\" : [\"soft_bug\",\"soft_cursor\",\"soft_database_table\",\"soft_database\",\"soft_feed\",\"soft_folder_explore\",\"soft_rss\",\"soft_penguin\"]},{\"id\": \"arrow\", \"icons\" : [\"arrow_up\",\"arrow_down\",\"arrow_left\",\"arrow_right\"]},{\"id\": \"arrowc\", \"icons\" : [\"arrowc_rotate_anticlockwise\",\"arrowc_rotate_clockwise\",\"arrowc_turn_left\",\"arrowc_turn_right\"]},{\"id\": \"people\", \"icons\" : [\"people_group\",\"people_male1\",\"people_male2\",\"people_female1\",\"people_female2\"]},{\"id\": \"mail\", \"icons\" : [\"mail_envelop\",\"mail_mailbox\",\"mail_edit\",\"mail_list\"]},{\"id\": \"flag\", \"icons\" : [\"flag_blue\",\"flag_green\",\"flag_orange\",\"flag_pink\",\"flag_purple\",\"flag_yellow\"]},{\"id\": \"bullet\", \"icons\" : [\"bullet_black\",\"bullet_blue\",\"bullet_green\",\"bullet_orange\",\"bullet_red\",\"bullet_pink\",\"bullet_purple\"]},{\"id\": \"tag\", \"icons\" : [\"tag_blue\",\"tag_green\",\"tag_orange\",\"tag_red\",\"tag_pink\",\"tag_yellow\",\"tag_purple\"]},{\"id\": \"object\", \"icons\" : [\"object_bell\",\"object_clanbomber\",\"object_key\",\"object_pencil\",\"object_phone\",\"object_magnifier\",\"object_clip\",\"object_music\",\"object_star\",\"object_wizard\",\"object_house\",\"object_cake\",\"object_camera\",\"object_palette\",\"object_rainbow\"]},{\"id\": \"weather\", \"icons\" : [\"weather_clear-night\",\"weather_clear\",\"weather_few-clouds-night\",\"weather_few-clouds\",\"weather_overcast\",\"weather_severe-alert\",\"weather_showers-scattered\",\"weather_showers\",\"weather_snow\",\"weather_storm\"]},{\"id\": \"task\", \"icons\" : [\"task_0\",\"task_25\",\"task_50\",\"task_75\",\"task_100\"]},{\"id\": \"number\", \"icons\" : [\"number_1\",\"number_2\",\"number_3\",\"number_4\",\"number_5\",\"number_6\",\"number_7\",\"number_8\",\"number_9\"]},]";
@Test
void checkImagesByFamily() throws IllegalAccessException {
List<MindmapIcon> iconByFamily = MindmapIcons.getIconByFamily(IconFamily.BULLET);
Assert.assertEquals(iconByFamily.size(), 7);
}
@Test
void checkPngFile() throws IllegalAccessException {
IconFamily[] values = IconFamily.values();
for (IconFamily family : values) {
final List<MindmapIcon> iconByFamily = MindmapIcons.getIconByFamily(family);
for (MindmapIcon mindmapIcon : iconByFamily) {
final String pngName = mindmapIcon.getId() + ".png";
final File file = new File("src/main/webapp/map-icons/icons", pngName);
Assert.assertTrue(file.exists(), "Could not be found:" + file.getAbsolutePath());
}
}
}
@Test
void jsonGenerationRepresentation() {
IconFamily[] values = IconFamily.values();
final StringBuilder result = new StringBuilder("[");
for (IconFamily family : values) {
result.append("{");
result.append("\"id\": \"" + family.name().toLowerCase() + "\"");
result.append(", \"icons\" : [");
final List<MindmapIcon> iconByFamily = MindmapIcons.getIconByFamily(family);
for (int i = 0; i < iconByFamily.size(); i++) {
if (i != 0) {
result.append(",");
}
MindmapIcon mindmapIcon = iconByFamily.get(i);
result.append("\"" + mindmapIcon.getId() + "\"");
}
result.append("]},");
}
result.append("]");
Assert.assertEquals(result.toString(), CURRENT_JSON_ICONS, "Some change has been introduced in the icons library. Please, check the IconIcons.js and update the variable.mindplot.ImageIcon.prototype.ICON_FAMILIES");
}
}

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 482 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 174 KiB

View File

@ -1,475 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="665.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-589.0 -329.0 1250.0 665.0" width="1250.0">
<path d="M-384,78 C-393,78 -404,92 -413,92" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-384,78 C-393,78 -403,63 -412,63" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-196,78 C-205,78 -216,77 -225,77" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-42,0 -85,77 -127,77 -85,80 -42,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M-303,7 C-312,7 -323,35 -332,35" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-303,7 C-312,7 -323,7 -332,7" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-303,7 C-312,7 -322,-22 -331,-22" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-207,7 C-216,7 -227,7 -236,7" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-42,0 -85,7 -127,7 -85,10 -42,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M427,255 C436,255 447,280 456,280" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M427,255 C436,255 447,253 456,253" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M427,255 C436,255 447,226 456,226" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M283,79 C292,79 303,254 312,254" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M437,133 C446,133 457,199 466,199" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M437,133 C446,133 457,172 466,172" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M437,133 C446,133 457,145 466,145" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M437,133 C446,133 457,118 466,118" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M437,133 C446,133 457,91 466,91" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M437,133 C446,133 457,64 466,64" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M283,79 C292,79 303,132 312,132" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M283,79 C292,79 303,37 312,37" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M441,-17 C450,-17 460,9 469,9" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M441,-17 C450,-17 460,-18 469,-18" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M441,-17 C450,-17 460,-45 469,-45" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M283,79 C292,79 303,-17 312,-17" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M433,-98 C442,-98 453,-72 462,-72" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M433,-98 C442,-98 453,-99 462,-99" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M433,-98 C442,-98 453,-126 462,-126" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M283,79 C292,79 303,-98 312,-98" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C42,0 86,78 128,78 86,81 42,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M-224,-61 C-233,-61 -244,-61 -253,-61" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-42,0 -85,-61 -127,-61 -85,-58 -42,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M486,-154 C495,-154 505,-154 514,-154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M379,-154 C388,-154 398,-154 407,-154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M280,-206 C289,-206 299,-154 308,-154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M280,-206 C289,-206 300,-181 309,-181" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M280,-206 C289,-206 299,-208 308,-208" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M280,-206 C289,-206 299,-235 308,-235" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M280,-206 C289,-206 300,-262 309,-262" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C42,0 85,-206 127,-206 85,-203 42,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<rect fill="#CC0033" fill-opacity="0.4" height="43" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="199" x="-99" y="-21"/>
<path d="M349,-137 C327,-65 305,7 283,79" fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none " visibility="hidden"/>
<path d="M-152,-103 C-101.33333333333333,-68.66666666666666 -50.66666666666667,-34.333333333333336 0,0" fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none " visibility="hidden"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-97,-19) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="45" rx="6.75" ry="6.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: default; " width="199" x="-2" y="-3"/>
<rect fill="#feffff" height="39" rx="5.85" ry="5.85" stroke="#0b5394" stroke-width="2px" style="cursor: default; " width="195" x="0" y="0"/>
<text fill="#3d85c6" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default; " visibility="visible" x="11" y="11">
<tspan dy="1em" x="11">Diseño de Paginas WEB</tspan>
</text>
<g focusable="true" height="17" preserveAspectRatio="none" transform="translate(011) scale(00.17)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(127,-227) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: move; " width="155" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="151" y1="21" y2="21"/>
<text fill="#ff9900" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="20.25" y="4">
<tspan dy="1em" x="20.25">Ventajas y Beneficios</tspan>
</text>
<ellipse cx="154" cy="21" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(4,4) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGrSURBVDjLvZPZLkNhFIV75zjvYm7VGFNC&#10;qoZUJ+roKUUpjRuqp61Wq0NKDMelGGqOxBSUIBKXWtWGZxAvobr8lWjChRgSF//dv9be+9trCwAI&#10;/vIE/26gXmviW5bqnb8yUK028qZjPfoPWEj4Ku5HBspgAz941IXZeze8N1bottSo8BTZviVWrEh5&#10;46EO03EXpuJOdG63otJbjBKHkEp/Ml6yNYYzpuezWL4s5VMtT8acCMQcb5XL3eJE8VgBlR7BeMGW&#10;9Z4yT9y1CeyucuhdTGDxfftaBO7G4L+zg91UocxVmCiy51NpiP3n2treUPujL8xhOjYOzZYsQWAN&#10;yRYlU4Y9Br6oHd5bDh0bCpSOixJiWx71YY09J5pM/WEbzFcDmHvwwBu2wnikg+lEj4mwBe5bC5h1&#10;OUqcwpdC60dxegRmR06TyjCF9G9z+qM2uCJmuMJmaNZaUrCSIi6X+jJIBBYtW5Cge7cd7sgoHDfD&#10;aAvKQGAlRZYc6ltJlMxX03UzlaRlBdQrzSCwksLRbOpHUSb7pcsnxCCwngvM2Rm/ugUCi84fycr4&#10;l2t8Bb6iqTxSCgNIAAAAAElFTkSuQmCC" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(309,-279) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="180" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="176" y1="17" y2="17"/>
<text fill="#e06666" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Obtención de clientes y contactos</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKDSURBVDjLjdFNTNJxHAZw69CWHjp16O2A&#10;ZB3S1ovOObaI8NBYuuZAhqjIQkzJoSIZBmSCpVuK/sE/WimU6N9SDM0R66IHbabie1hrg0MK3Zo5&#10;a8vwidgym8w8PKffvp89e35RAKJ2ipp7WDxvjltZ6jwCr5W2bpHHtqUnx+77877jsZxzlO3roAWX&#10;uw5ha1pl9MZdAW2ig8RyXyL8rnx8G6uH387AMnUMC2b6l10BJPdAfWDGhZVREuszT7D6hsTStBND&#10;urO+XQEZnEypx1a28XW2F8HFPqwtOBAYJlCde9EeEZCy4sTN4ksrRA4LZB57vZCfMElUyH4E7Ap8&#10;6r+LwIAGIy03cDr/lDNJGR/zDyBiHGc3i1ODjUIWtqbdIIexVY86kwZ3HijR/86GmqFqJGhPWs8o&#10;TkRvAgb+uZGHhVfRV3UNni41OhU8EDlstBSkwjKjhnmqAg3uUtS6y9Dzvg0ljmKkFCaRm4CJT+/5&#10;OERtG4yqZMEwdQt1biV0EyW4PVEE1dsiiMk8eMn0/w9Wp+PCNK1CQ6iBYeommkIpH5Qhy5AF/6Mr&#10;f4G955tUJlXxtsHieeWQ2LJxvVuAAkoASUcmLugZPqW0qsprEQjDx3sY3ZIMhXt1+DNw77kdmnYK&#10;SsKKx+PfoTQtYX9KtzWG2Rod6aujaJwWHk8+uDawGITeA+SPA7nDQOYgwKcAYhQQajyIY9eQEYE5&#10;feLPyV4jFC8CELkAkWMDQmoDPGsQaWYgzRjEU8vL8GARAV8T099bUwqBdgzS14D4VaiBA8gZALJ/&#10;t6j1Qqu4Hx4sIvChoyDFWZ1RmcyzORJLJsDSzoUyD5Z6FsxKN+iXn/mM5ZLwYJGAX0F/sgCQt3xB&#10;AAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(308,-252) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="115" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="111" y1="17" y2="17"/>
<text fill="#e06666" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Imagen corporativa</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJKSURBVDjLldFfSFNRHAdw88mXnuqtHu/d&#10;ufe2e/dHjUl/YEYRRsFaLViYFkUY+CcDwcqiJAjKoCiKCqRw+GCEa6vIdKOJLBPaiqy9CBlkYUUb&#10;q83Z3f32uzMX0kZ64AvnHM79nN/53RIAJYXC8+wux/EZQRDiFsu6Y8XOFdxkjG3lOE6jgABYrVbw&#10;vFS3BEA6YbNVQTLKWL9hI2RZAWGPFw3IcuVh184axMbDePrEC7vdrgOhJVQgb488MEGdMCH9zozO&#10;lgpwBtMr6kvZogBRUvYH7jdjMrQF09HjON3RDoulgvrAnP8FqFTW1NT8PvkjhamPn6BqQCj0jPog&#10;6894azCwVUUBuqGUDg15vV7oQ1WzFBWJRBzV1Zt0QK/CT8iyggAdsLlce9RkMkFLDdmsmos+Hx4O&#10;wWazgX6xRoi9GHDd4/Hkbs9k0nT7rzygx+FwUBU8hXX+AzBeXG21mOPBYCgHpNMpAmb/ANncXm3t&#10;vtwzCLi6ABi5pazwX1QORHsFtedGC6Y+f899+BcgIuJE/W69kQyN9fLNBUCsz9o/E5aBiILROxyc&#10;jm14Mx7D3NAwSwWkAmvxoYdh9LKAn37xa7LfuCsPTNxT/OqYgpkRGVpYwu2z5Xj+IoL54fUNYLCr&#10;HBgUKCI0yrc+YywPvO42RqcfykgO6YCMLz4TTrbW4Whrm+Z279UYW4PzhwxAQELKJ2HsghR81Gbe&#10;nAd626WV1xrFmq4j4jmav7zUIExWKnwVNaxsLsLygzukjoFTQrq7Qbxyxi2WzvfgNzL+mVcak7Yg&#10;AAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(308,-225) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="63" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="59" y1="17" y2="17"/>
<text fill="#e06666" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Informa</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAMCSURBVDjLTdBNaFxVGMbx/zn33plOZjIT&#10;8zmGOnFM1VoNJYFWYi2CtVSMdKUbK+LKhSAGXYhd2m6FQkEXLbiwETcWiq3WpiiSBLRqTa122pEm&#10;MZPmw8lkMt93zrnnXhdJbB54l++Ph0cEQQDAm1/l9gOnHmnbMVzXPnXto32fhueXgAqwChigCBSA&#10;z4ErNpvxPe/pvcnY8PvPdbE9NeUn6spPFF2zU2moNA1zq1W+vVs7DIxuB3riIQFAbt3gCIEtwLIh&#10;7EhSYYklJY4Fgzsj9Cai7WeuLX4stwCjdTxqg+dDRQlKGtabUHI3rtCAf6sGgA/H5hlOR3mq0+my&#10;twHtrSFJrQk11yClwAYsC6QFFgJLgA8IU+anmSLX50uL9wGlehIRi1LDo94MkDLAkiCNwJJgEbCj&#10;/AN/j3/G250D1CZ/5BWdHPsf8JTq64k7lNwADyAAywhksLF9vPI17WvXiAy8TiI9yPrs4zSunH1j&#10;W4NmXzIRJrNiEBIkG88SaKlcJuX8SezRA6zdzRASitZ4klhHKmEDvHjicsS2ZCjsSJQxSAIgIADC&#10;tSnS9i8k0kdoLn1JqEXwz/RttKsKbqP6jATwmqorLEBujkQAAohUJtglrpLofwl38QzCKeLEWtHV&#10;RV+Xl17Y9875rNys32LjY0uwpAAhMfOXSJmrJHYdxb33KdLRqPLDrEzc4PTC4dtD741PA8iDo2Od&#10;nlIn9u9OsVwOmFsxlLKXSOqf6X5yBLV8FisU0Cz3kZ/8ndzAR2Sq3TNb29lGqUPAyG+ZWYoNG2fh&#10;G14dyOP5vSzdPM0D3SHctYfITd1CHvqEhZyLUSq/BUij9dDLB56IfHF8hJOvPcYeLrLn2bcI5ybJ&#10;Xphi+rs17nx/g4n2D4i09VKp1jFaF+430Hp2ebXEufEMbbEI2Zk86q+LpPcepJQvcO/mDM8fv8CD&#10;oX7CNuTXKhitF7YAMXjsVCcwCvQBHf25k0eG0l1i3+60mFPR4HxuSLhOB/FohLZ4C3/cyWWBY9fP&#10;vfsrwH+7HFmMUqkOrwAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(309,-198) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="118" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="114" y1="17" y2="17"/>
<text fill="#cc0000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Internacionalización</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAH9SURBVDjLlZNBaxNREMcTtTkonvwAHkQP&#10;4kHBj2LBngPiqRUPgpdiDYKlLYVKBRUU2psXQwNBCrVtaowbEjasocuGDRt2l112fUs2pFLroT8P&#10;b22MNdAe5vDezP83M2/mpYDUkalxBjV6gG6B5i0P+UbY8IXmXaJpW8Q90M2fqM7M6QCquIAWvMX3&#10;Ie6BZvapuhMnB0AKJbrNbusXURdCAYqpsunfOAkgDZyjs3+RmjOD68gqbBvK1ms2vPOjAWpwhbo/&#10;zTdPYdf5jmbtIXrQjaUZFpT1A7b0CT546eOAuvMJz4E4hv4e9PpSGMUQdUFEYDug6pA3pijo18k3&#10;rw4AmhkQ92Sw1YFaTfYvEnEoIAglpNGAYl2jUFUGgM3GZ/JrUCqB0QLXk7AwgiAR+wF4vvSZbXi3&#10;ygCwYY5Tb8jSo64M6MYS4IfgBeAmYtuVlSy9/AuwLjLsKAdslaBchlYr6V0kWX1wEnHHAcuGuSWG&#10;x1isrlOucDT/UMj+PR+cJGvHlm/UtuD5wj+A9941KgoUP0KlIkUiktn/iNsdaLWhqcPj+R/DgBX3&#10;DCuNOxQKYBhSHAgJMkz4osDs4iG5WcjmYu7mrOOr/MpIM1+/xdzaNm9WD3mxDNNP4OGjfe5PfeXe&#10;ZI7s5E3Gn46RXRj7/1+QK30WyPBs8XJyHvmZfgPxTEl50XYktwAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(308,-171) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="73" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="69" y1="17" y2="17"/>
<text fill="#e06666" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Captación</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAD0SURBVCjPfdExSwJxHMbx/yTc1NrUy+h1&#10;+AZ6GUJBaYdiKVwopjmYOASiINJgEVFwUFHo4BIiDtql/SPU5BDUQb8Nomh3J8/we4bP8MBPIOYp&#10;exdtPcvyyrO6ETxR5zGwAeiMeOfmxBE8MOKXKsWwA7hjSJceZbJhW1DC5BvJDy+kNRtwzYA2BgYS&#10;nUTEAgr0+aBJC0mbe85i/0AOkw4Gn8SH0Yo2CRGMrYEralyOq/SJzrRtBEJVvMoKyJCSyd3zZh2d&#10;UMZmZOotuYOIuAuYBKbqlgVcKPN7KhvccnRsAYv49/I0ODA9Lgfgcx1+7Vc8y8/+AURAMO9/VDEv&#10;AAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="72" cy="17" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(407,-171) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="81" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="77" y1="17" y2="17"/>
<text fill="#cc0000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Fidelización</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAH2SURBVDjLjZNLTxNRGIaJv6ZNWeBwkZFL&#10;QtGAC4l/wKULV+7YILeSYukEUhJoSASVuCI0hpAYDSUQCJBSoAaC0wbBUi4aWphpO52Zlpa+nnOq&#10;CAptJ3k3M3me73LOlAAoyZfDqQdOEvyO89/vRcGZ5HeWmySFYdWHVOQN0vE58jrLJMFJ82hewVU4&#10;+bMfqdPxP9VBn+A4D88wP59PwFqmsH7UgeTJEMlsTuIyI5uRsDfCMcmtAtoyhVmOu5kkHZuFsiNA&#10;3XuEi+QCdhxluL0D/SvpoO+vhIksiItNiPqqyXgfIL403gjfoTsIL70gQBdim3VQvz2FFnwOxf8E&#10;8kYF0rIVYqcRM70Vgf/Pe/ohwsutOJdcpBpP4Mek+jPEfbWQVzkG+7tNcNsqt68tkcLZTIzM6YZ2&#10;1IbolgHq9j1o+z04nKhHRnlH2p6A32LCvFD55fIYr960VHgSSqCFVDJBEeugh+zw2jnpc0/5rthu&#10;RMBaioWBqrVrFylXOUpankIi0AjJY0DC3wD9oA9rAnc2bat+n++2UkH8XHaTZfGQlg3QdlsIbIVX&#10;4KSPAv+60L+SO/PECmJiI1lYM9SQBR7b3einfn6kEMwEIZd5Q48sQQt1Qv/xFqt2Tp5x3B8sBmYC&#10;71h926az6njdUR6hMy8O17wqFqb5Bd2o/0SFzIZrAAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="80" cy="17" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(514,-171) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="97" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="93" y1="17" y2="17"/>
<text fill="#660000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Nuevos clientes</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKDSURBVDjLjdFNTNJxHAZw69CWHjp16O2A&#10;ZB3S1ovOObaI8NBYuuZAhqjIQkzJoSIZBmSCpVuK/sE/WimU6N9SDM0R66IHbabie1hrg0MK3Zo5&#10;a8vwidgym8w8PKffvp89e35RAKJ2ipp7WDxvjltZ6jwCr5W2bpHHtqUnx+77877jsZxzlO3roAWX&#10;uw5ha1pl9MZdAW2ig8RyXyL8rnx8G6uH387AMnUMC2b6l10BJPdAfWDGhZVREuszT7D6hsTStBND&#10;urO+XQEZnEypx1a28XW2F8HFPqwtOBAYJlCde9EeEZCy4sTN4ksrRA4LZB57vZCfMElUyH4E7Ap8&#10;6r+LwIAGIy03cDr/lDNJGR/zDyBiHGc3i1ODjUIWtqbdIIexVY86kwZ3HijR/86GmqFqJGhPWs8o&#10;TkRvAgb+uZGHhVfRV3UNni41OhU8EDlstBSkwjKjhnmqAg3uUtS6y9Dzvg0ljmKkFCaRm4CJT+/5&#10;OERtG4yqZMEwdQt1biV0EyW4PVEE1dsiiMk8eMn0/w9Wp+PCNK1CQ6iBYeommkIpH5Qhy5AF/6Mr&#10;f4G955tUJlXxtsHieeWQ2LJxvVuAAkoASUcmLugZPqW0qsprEQjDx3sY3ZIMhXt1+DNw77kdmnYK&#10;SsKKx+PfoTQtYX9KtzWG2Rod6aujaJwWHk8+uDawGITeA+SPA7nDQOYgwKcAYhQQajyIY9eQEYE5&#10;feLPyV4jFC8CELkAkWMDQmoDPGsQaWYgzRjEU8vL8GARAV8T099bUwqBdgzS14D4VaiBA8gZALJ/&#10;t6j1Qqu4Hx4sIvChoyDFWZ1RmcyzORJLJsDSzoUyD5Z6FsxKN+iXn/mM5ZLwYJGAX0F/sgCQt3xB&#10;AAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-223,-82) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="100" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="96" y1="21" y2="21"/>
<text fill="#ff0000" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="20.25" y="4">
<tspan dy="1em" x="20.25">MARKETING</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(4,4) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJuSURBVDjLjZDLa1x1GIafc8uZqUlMMmms&#10;LV7SC2hLCoJQ6tou3Lj0T+jGtQjusnLlP1Bw01UJgrqUoAiC2aixDUQl2oC9TjuZSWbOOTPn/L6L&#10;a5MRfOHbvTy8zxe5O8fT3Hv9opt/784ZN0vcqN18F2P9hesPv/5X2d1P3Hj71VF4ctu92nEvttyP&#10;Nj10b/vwh7N/Hu+mTImrzaYLb8PkMcgAwoA4n8PELhzvTgWYgtUPicIh+AQd70Mdo3JS9z8WODr8&#10;mdD9BqsLrDoi61zDBP7nAiPOz5HNv4nXT7HsFOaGip0E1Nuvzbv5rpudcSNx9TryCBn9hvR38EmB&#10;ViPa569OVzC1T9KVj85lL70PPgEt81D+RfXHOu3ld/DWU5J8AC5oYBrAP05X3gMZgg5BC9L2CqE8&#10;IIl38fEILUdk0QoapiioAFbiUoA3WP0cmjEixsyLF/HWMzTvk8wuoNOeaGJouYce/oI1Xbx+QDJ/&#10;Hm2cuv87XpVEzQAvH3F6Keboq2VXpVaxXVPWUw1OlHVI2qvE2SKedXAfIMHJFy9hrS5N7znt618Q&#10;p7PABA/DfHJ0963ed59+FqsYURwj1R4yvIcMfyWdvYI0Tih7NAfP0EaJ82UIAxg/Ipo8obVwiabx&#10;C7EGNsa9bbK5y6Rzl8mWrlEd3CfJl9BTZ2m98S6Wv0z14A7uExxB5JDR/gZN7RupBNuq+3c/iE9f&#10;IckSwrig6O9RHfa+LX/8csHF12Zmom5n7qdXoCBOHSkfU3T/JtS+Fd2/01k14aap3VBlzYQdU980&#10;5dbVDwf7APufL66K+E0NfkOFNRXfUWPThFv/APJzrlrFns7aAAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="-3" cy="21" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-392,-80) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="143" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="139" y1="19" y2="19"/>
<text fill="#e06666" font-family="verdana" font-size="10.75" font-style="italic" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">son una herramienta de:</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(03) scale(00.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(128,57) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="158" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="154" y1="21" y2="21"/>
<text fill="#00ff00" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="20.25" y="4">
<tspan dy="1em" x="20.25">Tipos de Paginas WEB</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(4,4) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAItSURBVDjLfVM7bBNBEH27d7alOKfYjsM3&#10;gFLjRCAgiAoFBAIhQUNJh0SLqGgpEQW2a6LQ8VGgAAqUBqWk4bAbDEgoNCALJNtJlKDzfZaZ2bNF&#10;UJI9zc7d7c57b3ZmlTEGuw3f9x9HUXQjDEOXPMiL9ft99s/UTgDNZnOMAuYLhcL1XG4EAQUhSSC7&#10;KaZYLGBp6S3c7YIbjcYlDi6Xywfz+TxWvv8AsyeJQWISAjKICSwIAritViuI4zhLJpsGMtl3u93/&#10;JaPT6RJQggsXL8s/l4MnJw+j11sVdsOPYZVGjD+IE6XiGN68foWjlePCzmuigFE5+O68T9sUlKLZ&#10;TuLZ1tfW8ODWKWH86L8Hq91/5ZpVwFKZlTcWS+PQWkOR6dT4nQFMYhkrMyfl3aRnoFkBfROAhuM4&#10;W0ynngcfHjP+9law0KtJWqIgTMujtILjukN28ZwCeVs5y7jw5RE21iNRIQA88YFwCsw4tWdE8rdD&#10;4edqlCqwjHfG7yEpWUAmFwCd5sn27ev2HeloRwBsL9hKDRVkMi7u3zwm5QnDCJubgTBksxlKw0j3&#10;aWXXYo5MyygKKK+Hy8vvzg4ahXzJ87wprk673Q5IXY5T47jK9AyOHDogivbtnZBm23IX6vX6bQK5&#10;Onv6zDnPK+Dli6d/qOZP6Hxm6f/0v13KRmufhwC1Wm2CSvZrbu48Rj2PNsRwHU2g1Y1qtTq6020d&#10;XiaS3iH7sLj4/MSg/1PGT7td97+G8aA4FJOt1wAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="157" cy="21" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(312,-117) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: move; " width="124" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="120" y1="19" y2="19"/>
<text fill="#023bb9" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">Por su audiencia</tspan>
</text>
<ellipse cx="123" cy="19" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJkSURBVDjLhVLPSxRhGH5mf8yOs9O6aa2b&#10;6BJhsW3RilAXDSW65clDdgwkEBH/gIiI6FC3uoRBQYeooP4Aw9isQ2xG5YZEVFrINmnFto67s7sz&#10;33xf76wedEfwgxdm4H1+vO/zSkIINL7Bax/PpxLRkXhUTVuMY/7Hci4z++2e/njofmNvYDvwqe72&#10;6/2pcJsa9MMhgd7D4T5NUQ8GBibBZka3kPgaCZKk7IKbVT8qNodpcUToe6g33tadOjCyo4NYREkr&#10;pGyYHLYDMEfArHFoioTE/o70jgRVC3AIZDMqLogA9fKR12qVefblGWHui54rmDZCsoSaLVClUkMS&#10;VlYZZl7P53YkyGQ/T9+dWqoaFY6K5ZaDEo1w42GOVWaz7xv7pc0x9kxkh/uOxa6c6JSSnDz/MgJg&#10;FGM0ZCLALTzKrhZePnh1S+gXr3p2cHQ0kx7oSVwePtmWbNUCKFsCKb6+i3K1GXKQY2JfrCW/XJqQ&#10;fGNvBL/9bMsILRF1/MzxWGo3RfbHoK3VjUkgDlhEsqDXEKJ0Lgx2tSJ56JJnB13tLf3NYR9+F20C&#10;CwJSuSnw9W8hJHxdMtHeqiAYix/xEGia0ilLPuRXKnVVx41vYwRG6XEOGGsMst8PWVF3eXZgWUyi&#10;xChvCc6GMiNwja7RJjR3x3GLRFwyj4PFvPFzQTehNUn1f4e6LIfXCdxDovGR2BvEh+9lVArFNQ/B&#10;dCY/Pjq5eGfqbQGC1IPkpEkGwnREMvl09/DkxQpuPs0beDd3ets7cF/HuefL8ViU7YnIYbpcTS+Y&#10;0P9apXLe+IeSWRSfzvZs7v8PV6U0ly704DwAAAAASUVORK5CYII=" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(462,-143) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="66" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="62" y1="17" y2="17"/>
<text fill="#3d85c6" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Públicos</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKDSURBVDjLjdFNTNJxHAZw69CWHjp16O2A&#10;ZB3S1ovOObaI8NBYuuZAhqjIQkzJoSIZBmSCpVuK/sE/WimU6N9SDM0R66IHbabie1hrg0MK3Zo5&#10;a8vwidgym8w8PKffvp89e35RAKJ2ipp7WDxvjltZ6jwCr5W2bpHHtqUnx+77877jsZxzlO3roAWX&#10;uw5ha1pl9MZdAW2ig8RyXyL8rnx8G6uH387AMnUMC2b6l10BJPdAfWDGhZVREuszT7D6hsTStBND&#10;urO+XQEZnEypx1a28XW2F8HFPqwtOBAYJlCde9EeEZCy4sTN4ksrRA4LZB57vZCfMElUyH4E7Ap8&#10;6r+LwIAGIy03cDr/lDNJGR/zDyBiHGc3i1ODjUIWtqbdIIexVY86kwZ3HijR/86GmqFqJGhPWs8o&#10;TkRvAgb+uZGHhVfRV3UNni41OhU8EDlstBSkwjKjhnmqAg3uUtS6y9Dzvg0ljmKkFCaRm4CJT+/5&#10;OERtG4yqZMEwdQt1biV0EyW4PVEE1dsiiMk8eMn0/w9Wp+PCNK1CQ6iBYeommkIpH5Qhy5AF/6Mr&#10;f4G955tUJlXxtsHieeWQ2LJxvVuAAkoASUcmLugZPqW0qsprEQjDx3sY3ZIMhXt1+DNw77kdmnYK&#10;SsKKx+PfoTQtYX9KtzWG2Rod6aujaJwWHk8+uDawGITeA+SPA7nDQOYgwKcAYhQQajyIY9eQEYE5&#10;feLPyV4jFC8CELkAkWMDQmoDPGsQaWYgzRjEU8vL8GARAV8T099bUwqBdgzS14D4VaiBA8gZALJ/&#10;t6j1Qqu4Hx4sIvChoyDFWZ1RmcyzORJLJsDSzoUyD5Z6FsxKN+iXn/mM5ZLwYJGAX0F/sgCQt3xB&#10;AAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(462,-116) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="52" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="48" y1="17" y2="17"/>
<text fill="#3d85c6" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Extranet</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(462,-89) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="51" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="47" y1="17" y2="17"/>
<text fill="#3d85c6" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Intranet</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(312,-36) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: move; " width="131" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="127" y1="19" y2="19"/>
<text fill="#023bb9" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">Por su dinamismo</tspan>
</text>
<ellipse cx="130" cy="19" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHySURBVDjLtZPvT1JxFMb5O/gHskVzrrV+&#10;mFZomDdEDGkYKSXlRleY6IzcFdQ7lBgYeaELBNjFEpbWi9psRU7JnCa3VYTV/WfY01davkFk0/Xi&#10;vDp7Ps/Zc86RAZAdpmT/BWDLmun+5ZuS5X0P+paMML82SKZXeroqYGDttty22it6Po8iWeCxIAlI&#10;/5pF9Osj3M8MwPCsXex8ekVeEWAlYn+OxaKUxNx2FKmfcTzfjiH2ncNsnsfIOzu00RZxT4B1pZee&#10;3GTw4vdfVyEfxkTWAdfyMMJfHiL2LYgImcSyeAstgQt0GeBuxiQl8iEIP/iSW/eCrtiV0rLXkm3s&#10;1ThVnN6cQkj0w511osl7TioD9L29QcaNY64QhWvlHrrmtey/niasclCcEqrp81B669HoPo0yAEma&#10;BBcpuTOZQegF9S6gdUaJqms0vdRL3JYXQdEHLueD9snlovpxc2qnd8nfiIues9gXYEx30INLFvAk&#10;sB1IIPcAd9LdaPY1oEcw4HqiE2ecJ7DvHegSlGh/Y0FgywP3uhPeDRae9TG4P7nArjHQ8W2oG1Kg&#10;IkATUcmpYJNonjeC+TCMyZJwFOMfR+BadaCdo3DcdhRVT5kkTZOkC/VjJ3GKqUNHSA3NTCsR1+BA&#10;z1RrPwaFtQYH/kZF/5GKa/wDDtK86rC6fMkAAAAASUVORK5CYII=" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(469,-62) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="105" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="101" y1="17" y2="17"/>
<text fill="#3d85c6" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Por su estructura</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAFOSURBVDjLtVK7SgNRED0b9iuM2lr4QK1D&#10;QIyk0FZsJAj+gH+ilRZb2NjaRHTLmA9QFKz9huzm7t37Hu+u7IJgQjR6YLjDzOXMmcMERIR5EE5q&#10;XA4z4sqACYWEC5wfLQXf/WtMIuDSoL0A7DZDjBj/uYI0l8jzEEJYJMkvCEZM4PqZIxlzpGk+kSCY&#10;18TGtGYcx9Tv96dOqBUMBgNyzsFaC621312Ac+59yJFlGRhj5VvVoigKvniglEK32w1mkd3r9ejP&#10;PAjOhqdknYX18p1/rzo3pYqTh0OSRkJI5UMgPn4s61sX66SkhtEGcISGsQad5gH2FvehfV5BaIF2&#10;cwet5RZyKeu68pe5ubKG7dUNP5AQGltMN57Mosgr5EIiVQmYGvtc1PVicqHY+dXpk8Dg7v22XKFo&#10;1ARe9v1bDOlXKKKCs4Sn1xdU1v3vIc2CD3bN4xJjfJWvAAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(469,-35) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="111" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="107" y1="17" y2="17"/>
<text fill="#3d85c6" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Sitios Interactivos</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAIzSURBVDjLhZNbbtpQEIazgaygG4nUjXRH&#10;3QAySvvSKokEgeaBSBGFXJqAQkMxYCA03EJMzcWxCb6AAYP9d46BhqRURfqw5Zn5z5y5bAHYWufd&#10;++hbwkdkCYUYEBXCz2yv/dcDtwmOsL/yIkotHU11irY5g9QfIp5tgdmWPtsvBJbB0YOLCuaOC0kH&#10;jtIGvhQMfO9PMSYnh2A25sN8VyIrAY4ZNBvezyTvvUsNn66fIGgOXPpGD+jOwr4U4TwBetkhHLFv&#10;Yy+loqounE74MfxnKupDeBn06M+k55ThukzAYbHe6TG630lBx8dLBbsXCooSUOsBqapJ15mgPwFk&#10;EtAplcEcMIjYoiYcE8gLoobPyUcSkOH/JiOS1XGYqDOHLiOcbMCkoDZlU30ChPYcgqgze54JqLfS&#10;iE6WsUvBH0jkpmEyY4d4s6RT6U0QoaKGMppHUbKYj/pHwH8ugzvtwXfaRfr+b4HiLwshXsf+zYDo&#10;o7AmkM8/DMCdd73gIKlXVRcs7dUVDhMNJBssgyGOSxai5RFyzecreEW8vh9DkIGWBTQMQgMqjxOU&#10;OhOkmjOEciPs02wEMiYSJLZeRK+NNrVGph7dDQC+C1yJQLw+x/HtFOG8hQBv4eCHiSBvkrD93Mb1&#10;QVKoXYICJCg4VnMRKc8QFsYIZhfBAd5AWrRfDtLrUZYMFznKIF6bI1JcnH4k0C7cWfgp25tHedMy&#10;ZR90lLtTrwYZKgj79s9l+s86K8t336Z1/g2YLh6PHfCmogAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(469,-8) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="98" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="94" y1="17" y2="17"/>
<text fill="#3d85c6" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Sitios estáticos</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAMCSURBVDjLTdBNaFxVGMbx/zn33plOZjIT&#10;8zmGOnFM1VoNJYFWYi2CtVSMdKUbK+LKhSAGXYhd2m6FQkEXLbiwETcWiq3WpiiSBLRqTa122pEm&#10;MZPmw8lkMt93zrnnXhdJbB54l++Ph0cEQQDAm1/l9gOnHmnbMVzXPnXto32fhueXgAqwChigCBSA&#10;z4ErNpvxPe/pvcnY8PvPdbE9NeUn6spPFF2zU2moNA1zq1W+vVs7DIxuB3riIQFAbt3gCIEtwLIh&#10;7EhSYYklJY4Fgzsj9Cai7WeuLX4stwCjdTxqg+dDRQlKGtabUHI3rtCAf6sGgA/H5hlOR3mq0+my&#10;twHtrSFJrQk11yClwAYsC6QFFgJLgA8IU+anmSLX50uL9wGlehIRi1LDo94MkDLAkiCNwJJgEbCj&#10;/AN/j3/G250D1CZ/5BWdHPsf8JTq64k7lNwADyAAywhksLF9vPI17WvXiAy8TiI9yPrs4zSunH1j&#10;W4NmXzIRJrNiEBIkG88SaKlcJuX8SezRA6zdzRASitZ4klhHKmEDvHjicsS2ZCjsSJQxSAIgIADC&#10;tSnS9i8k0kdoLn1JqEXwz/RttKsKbqP6jATwmqorLEBujkQAAohUJtglrpLofwl38QzCKeLEWtHV&#10;RV+Xl17Y9875rNys32LjY0uwpAAhMfOXSJmrJHYdxb33KdLRqPLDrEzc4PTC4dtD741PA8iDo2Od&#10;nlIn9u9OsVwOmFsxlLKXSOqf6X5yBLV8FisU0Cz3kZ/8ndzAR2Sq3TNb29lGqUPAyG+ZWYoNG2fh&#10;G14dyOP5vSzdPM0D3SHctYfITd1CHvqEhZyLUSq/BUij9dDLB56IfHF8hJOvPcYeLrLn2bcI5ybJ&#10;Xphi+rs17nx/g4n2D4i09VKp1jFaF+430Hp2ebXEufEMbbEI2Zk86q+LpPcepJQvcO/mDM8fv8CD&#10;oX7CNuTXKhitF7YAMXjsVCcwCvQBHf25k0eG0l1i3+60mFPR4HxuSLhOB/FohLZ4C3/cyWWBY9fP&#10;vfsrwH+7HFmMUqkOrwAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(312,18) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: move; " width="138" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="134" y1="19" y2="19"/>
<text fill="#023bb9" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">Por su profundidad</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAENSURBVDjLpZM/SwNREMTnxBRpFYmctaKC&#10;fwrBSCrRLuL3iEW6+EEUG8XvIVjYWNgJdhFjIXamv3s7u/ssrtO7hFy2fcOPmd03SYwR88xi1cPg&#10;pRdjjDB1mBquju+TMt1CFcDd0V7q4GilAwpnd2A0qCvcHRSdHUBqAYgOyaUGIBQAc4fkNSJIIGgG&#10;j4ZQx4EEAY3waPUiSC5FhLoOQkbQCJvioPQfnN2ctpuNJugKNUWYsMR/gO71yYPk8tRaboGmoCvS&#10;1RQ7/c1sq7f+OBUQcjkPGb9+xmOoF6ckCQb9pmj3rz6pKtPB5e5rmq7tmxk+hqO34e1or0yXTGrj&#10;9sXGs1Ib73efh1WaZN46/wI8JLfHaN24FwAAAABJRU5ErkJggg==" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(312,113) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: move; " width="128" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="124" y1="19" y2="19"/>
<text fill="#023bb9" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">Por sus objetivos</tspan>
</text>
<ellipse cx="127" cy="19" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAH9SURBVDjLlZNBaxNREMcTtTkonvwAHkQP&#10;4kHBj2LBngPiqRUPgpdiDYKlLYVKBRUU2psXQwNBCrVtaowbEjasocuGDRt2l112fUs2pFLroT8P&#10;b22MNdAe5vDezP83M2/mpYDUkalxBjV6gG6B5i0P+UbY8IXmXaJpW8Q90M2fqM7M6QCquIAWvMX3&#10;Ie6BZvapuhMnB0AKJbrNbusXURdCAYqpsunfOAkgDZyjs3+RmjOD68gqbBvK1ms2vPOjAWpwhbo/&#10;zTdPYdf5jmbtIXrQjaUZFpT1A7b0CT546eOAuvMJz4E4hv4e9PpSGMUQdUFEYDug6pA3pijo18k3&#10;rw4AmhkQ92Sw1YFaTfYvEnEoIAglpNGAYl2jUFUGgM3GZ/JrUCqB0QLXk7AwgiAR+wF4vvSZbXi3&#10;ygCwYY5Tb8jSo64M6MYS4IfgBeAmYtuVlSy9/AuwLjLsKAdslaBchlYr6V0kWX1wEnHHAcuGuSWG&#10;x1isrlOucDT/UMj+PR+cJGvHlm/UtuD5wj+A9941KgoUP0KlIkUiktn/iNsdaLWhqcPj+R/DgBX3&#10;DCuNOxQKYBhSHAgJMkz4osDs4iG5WcjmYu7mrOOr/MpIM1+/xdzaNm9WD3mxDNNP4OGjfe5PfeXe&#10;ZI7s5E3Gn46RXRj7/1+QK30WyPBs8XJyHvmZfgPxTEl50XYktwAAAABJRU5ErkJggg==" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(466,47) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="84" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="80" y1="17" y2="17"/>
<text fill="#0b5394" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Comerciales</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJuSURBVDjLjZDLa1x1GIafc8uZqUlMMmms&#10;LV7SC2hLCoJQ6tou3Lj0T+jGtQjusnLlP1Bw01UJgrqUoAiC2aixDUQl2oC9TjuZSWbOOTPn/L6L&#10;a5MRfOHbvTy8zxe5O8fT3Hv9opt/784ZN0vcqN18F2P9hesPv/5X2d1P3Hj71VF4ctu92nEvttyP&#10;Nj10b/vwh7N/Hu+mTImrzaYLb8PkMcgAwoA4n8PELhzvTgWYgtUPicIh+AQd70Mdo3JS9z8WODr8&#10;mdD9BqsLrDoi61zDBP7nAiPOz5HNv4nXT7HsFOaGip0E1Nuvzbv5rpudcSNx9TryCBn9hvR38EmB&#10;ViPa569OVzC1T9KVj85lL70PPgEt81D+RfXHOu3ld/DWU5J8AC5oYBrAP05X3gMZgg5BC9L2CqE8&#10;IIl38fEILUdk0QoapiioAFbiUoA3WP0cmjEixsyLF/HWMzTvk8wuoNOeaGJouYce/oI1Xbx+QDJ/&#10;Hm2cuv87XpVEzQAvH3F6Keboq2VXpVaxXVPWUw1OlHVI2qvE2SKedXAfIMHJFy9hrS5N7znt618Q&#10;p7PABA/DfHJ0963ed59+FqsYURwj1R4yvIcMfyWdvYI0Tih7NAfP0EaJ82UIAxg/Ipo8obVwiabx&#10;C7EGNsa9bbK5y6Rzl8mWrlEd3CfJl9BTZ2m98S6Wv0z14A7uExxB5JDR/gZN7RupBNuq+3c/iE9f&#10;IckSwrig6O9RHfa+LX/8csHF12Zmom5n7qdXoCBOHSkfU3T/JtS+Fd2/01k14aap3VBlzYQdU980&#10;5dbVDwf7APufL66K+E0NfkOFNRXfUWPThFv/APJzrlrFns7aAAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(466,74) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="85" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="81" y1="17" y2="17"/>
<text fill="#0b5394" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Informativos</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGgSURBVDjLY/j//z8DJZgsTV+9fAu+uHo8&#10;+GzvXECWAV+c3R//mTn9/ydLu4eka3ZyY/ts63T3k4Xt+4/GlqS74JONY+9Hc5tdH4wsmAmGgWv9&#10;xQKX2nMPnapOF4A1WzsEfjSzefLB0FwUHoi/szPX/05P/f0rOWk9ugHONWefzNl44X/B/L3/o7LX&#10;nn1h4fitN6i22Tx7W5tpxqYHxmnrChh+p6X+/rd10/+fsbF/f0REmiE0n7F3rDz5wb7s6Bu3gt3V&#10;z80db69zTd1mlr11tUnGxt89Cw/8N0ha9YDhZ2LC+p8xMb9/hEdc+h4Ucu+br//JFXFNi5zKjz20&#10;KztiDzIMGFgzP+iZboQZbpSypsAgaeUjvfilqIEI9C9bf8rk3Wd8kz59sHV+BQysa8DA+vNe1+Tr&#10;ew0DfrwJCehfCceqU8fsy48ttS05xAkMLANgYP39N23K/3fq+n9wpkTXugsFQP8+B/r3DdC/pciS&#10;77WN1r9T0/v9Vkl7PU4DnKrPPJi85uJ/oH9fkpUXHCqOF9iVHn5gU7S/gG6ZiaoGAADG9LhB7Kzu&#10;8AAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(466,101) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="50" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="46" y1="17" y2="17"/>
<text fill="#0b5394" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Ocio</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAIsSURBVDjLnZPNi1JhFMbvKtoHBa1atgmC&#10;tv0VrVq0aCkGCn6mYH47ip8IflAKhibpRke00BnnKiKoiKA7qSkF08FvvToak/f0ngu2qBYzXngu&#10;3Jf3+b3nPee5VCAQcPj9/ucAQB0iyufzPXS73Wd2u/3RQQB8Wa1Wiclkqms0mrsHAQwGwy21Wn2q&#10;UCjOxGLxHVyrVCpHpVKJpWmazeVy20wmQyeTyaf/BaAKhcIrkUh04XA4vhSLxTIxX5IHULMCDd+P&#10;kxCLxbaRSETxD6DVamUbjcavWq22LZfLMBqNgGEYuJgs4TxbhG9PHnManuQgGAyypOnv/wCazaat&#10;2+1yJ735pOCMy+USBuMFvPzIwosPAMW3xzDwemA+HHL78vk82Gy2Iw5APtZoms/nHGCv2WwGP4Zz&#10;6AwWsFgsYLVacUI47jUajTvS9GcUaQ6LgL/Ne3U6HSBVgtPpZFHT6ZSrst1ug1Kp/EolEokdUveG&#10;PWAymUA2m4V0Og1kD5AxX1osFo1er2fxGpvNBiQSCVDxeJzp9/tcWWjEcsfjMVSrVUilUth5IEYg&#10;o/6Md1apVDSu46FCoRCoaDR6gp1HIwLQ7PV6ezKZbMnj8YBoKZVKUzqd7h4C5HL5bZKVU4FAMOHz&#10;+U4qHA6/RiJOAgFIJvFmrp3EUCj0gMyVqdfr0Ov1YL1eg8vl2t0oyh6P5x2JKZAwAQkVNuznjQDk&#10;b7xPgnFuNpuvyHyvtFpt+bqA3zDZAQQexaeGAAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(466,128) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="81" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="77" y1="17" y2="17"/>
<text fill="#0b5394" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Navegación</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ6SURBVDjLjZO7T1NhGMY7Mji6uJgYt8bE&#10;lTjof6CDg4sMSqIxJsRGB5F4TwQSIg1QKC0KWmkZEEsKtEcSxF5ohV5pKSicXqX3aqGn957z+PUE&#10;GopiGJ583/A+v3znvPkJAAjWR0VNJG0kGhKahCFhXcN3YBFfx8Kry6ym4xIzce88/fbWGY2k5WRb&#10;77UTTbWuYA9gDGg7EVmSIOF4g5T7HZKuMcSW5djWDyL0uRf0dCc8inYYxTcw9fAiCMBYB3gVj1z7&#10;gLhNTjKCqHkYP79KENC9Bq3uxrrqORzy+9D3tPAAccspVx1gWg0KbaZFbGllWFM+xrKkFQudV0Ce&#10;DfJsjN4+C2nracjunoPq5VXIBrowMK4V1gG1LGyWdbZwCalsBYUyh2KFQzpXxVqkAGswD3+qBDpZ&#10;wow9iYE5v26/VwfUQnnznyhvjguQYabIIpKpYD1ahI8UTT92MUSFuP5Z/9TBTgOgFrVjp3nakaG/&#10;0VmEfpX58pwzjUEquNk362s+PP8XYD/KpYTBHmRg9Wch0QX1R80dCZhYipudYQY2Auib8RmODVCa&#10;4hfUK4ngaiiLNFNFdKeCWWscXZMbWy9Unv9/gsIQU09a4pwvUeA3Uapy2C2wCKXL0DqTePLexbWP&#10;Ov79E8f0UWrencZ2poxciUWZlKssB4bcHeE83NsFuMgpo2iIpMuNa1TNu4XjhggWvb+R2K3wZdLl&#10;AZl8Fd9jRb5sD+Xx0RJBx5gdom6VsMEFDyWF0WyCeSOFcDKPnRxZYTQL5Rc/nn1w4oFsBaIhC3r6&#10;FRh5erPRhYMyHdeFw4C6zkRhmijM7CnMu0AUZonCDCnRJBqSus5/ABD6Ba5CkQS8AAAAAElFTkSu&#10;QmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(466,155) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="73" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="69" y1="17" y2="17"/>
<text fill="#0b5394" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Artísticos</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAH9SURBVDjLlZNBaxNREMcTtTkonvwAHkQP&#10;4kHBj2LBngPiqRUPgpdiDYKlLYVKBRUU2psXQwNBCrVtaowbEjasocuGDRt2l112fUs2pFLroT8P&#10;b22MNdAe5vDezP83M2/mpYDUkalxBjV6gG6B5i0P+UbY8IXmXaJpW8Q90M2fqM7M6QCquIAWvMX3&#10;Ie6BZvapuhMnB0AKJbrNbusXURdCAYqpsunfOAkgDZyjs3+RmjOD68gqbBvK1ms2vPOjAWpwhbo/&#10;zTdPYdf5jmbtIXrQjaUZFpT1A7b0CT546eOAuvMJz4E4hv4e9PpSGMUQdUFEYDug6pA3pijo18k3&#10;rw4AmhkQ92Sw1YFaTfYvEnEoIAglpNGAYl2jUFUGgM3GZ/JrUCqB0QLXk7AwgiAR+wF4vvSZbXi3&#10;ygCwYY5Tb8jSo64M6MYS4IfgBeAmYtuVlSy9/AuwLjLsKAdslaBchlYr6V0kWX1wEnHHAcuGuSWG&#10;x1isrlOucDT/UMj+PR+cJGvHlm/UtuD5wj+A9941KgoUP0KlIkUiktn/iNsdaLWhqcPj+R/DgBX3&#10;DCuNOxQKYBhSHAgJMkz4osDs4iG5WcjmYu7mrOOr/MpIM1+/xdzaNm9WD3mxDNNP4OGjfe5PfeXe&#10;ZI7s5E3Gn46RXRj7/1+QK30WyPBs8XJyHvmZfgPxTEl50XYktwAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(466,182) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="78" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="74" y1="17" y2="17"/>
<text fill="#0b5394" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="16.75" y="3">
<tspan dy="1em" x="16.75">Personales</tspan>
</text>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(3,3) scale(0.11,0.11)" width="11">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJkSURBVDjLhVLPSxRhGH5mf8yOs9O6aa2b&#10;6BJhsW3RilAXDSW65clDdgwkEBH/gIiI6FC3uoRBQYeooP4Aw9isQ2xG5YZEVFrINmnFto67s7sz&#10;33xf76wedEfwgxdm4H1+vO/zSkIINL7Bax/PpxLRkXhUTVuMY/7Hci4z++2e/njofmNvYDvwqe72&#10;6/2pcJsa9MMhgd7D4T5NUQ8GBibBZka3kPgaCZKk7IKbVT8qNodpcUToe6g33tadOjCyo4NYREkr&#10;pGyYHLYDMEfArHFoioTE/o70jgRVC3AIZDMqLogA9fKR12qVefblGWHui54rmDZCsoSaLVClUkMS&#10;VlYZZl7P53YkyGQ/T9+dWqoaFY6K5ZaDEo1w42GOVWaz7xv7pc0x9kxkh/uOxa6c6JSSnDz/MgJg&#10;FGM0ZCLALTzKrhZePnh1S+gXr3p2cHQ0kx7oSVwePtmWbNUCKFsCKb6+i3K1GXKQY2JfrCW/XJqQ&#10;fGNvBL/9bMsILRF1/MzxWGo3RfbHoK3VjUkgDlhEsqDXEKJ0Lgx2tSJ56JJnB13tLf3NYR9+F20C&#10;CwJSuSnw9W8hJHxdMtHeqiAYix/xEGia0ilLPuRXKnVVx41vYwRG6XEOGGsMst8PWVF3eXZgWUyi&#10;xChvCc6GMiNwja7RJjR3x3GLRFwyj4PFvPFzQTehNUn1f4e6LIfXCdxDovGR2BvEh+9lVArFNQ/B&#10;dCY/Pjq5eGfqbQGC1IPkpEkGwnREMvl09/DkxQpuPs0beDd3ets7cF/HuefL8ViU7YnIYbpcTS+Y&#10;0P9apXLe+IeSWRSfzvZs7v8PV6U0ly704DwAAAAASUVORK5CYII=" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(312,235) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" style="cursor: move; " width="118" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="114" y1="19" y2="19"/>
<text fill="#023bb9" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">Por su apertura</tspan>
</text>
<ellipse cx="117" cy="19" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAEGSURBVDjLpZM/LwRRFMXPspmEaGc1shHR&#10;aiXsJ5GIRixbCr6SikxIlqgJM5UohIiGdofovHf/PZVmYwZvTntPfjnn3txWCAFNNFE33L/ZKXYv&#10;+1dRgL3r7bu0PbucJp3e4GLjtsrXGq9wkA8SU7tPk87i/MwCzAyP5QNeytcnJl46XMuoNoGKDoVl&#10;TkQhJpAgmJqcBjnqkqPTXxN8qz9cD6vdHtQMxXOBt49y5XjzLB/3tau6kWewKiwoRu8jZFvn+U++&#10;GgCBlWFBQY4qr1ANcAQxgQaFjwH4TwYrQ5skYBOYKbzjiASOwCrNd2BBwZ4jAcowGJgkAuAZ2dEJ&#10;hAUqij//wn/1BesSumImTttSAAAAAElFTkSuQmCC" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(456,209) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="45" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="41" y1="17" y2="17"/>
<text fill="#bf9000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">abierta</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(456,236) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="48" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="44" y1="17" y2="17"/>
<text fill="#bf9000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">cerrada</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(456,263) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="69" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="65" y1="17" y2="17"/>
<text fill="#bf9000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">semicerrada</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-206,-14) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="83" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="79" y1="21" y2="21"/>
<text fill="#e69138" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Importancia</tspan>
</text>
<ellipse cx="-3" cy="21" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(04) scale(00.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-302,-12) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="70" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="66" y1="19" y2="19"/>
<text fill="#b45f06" font-family="verdana" font-size="10.75" font-style="italic" font-weight="normal" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">internet</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAItSURBVDjLfVM7bBNBEH27d7alOKfYjsM3&#10;gFLjRCAgiAoFBAIhQUNJh0SLqGgpEQW2a6LQ8VGgAAqUBqWk4bAbDEgoNCALJNtJlKDzfZaZ2bNF&#10;UJI9zc7d7c57b3ZmlTEGuw3f9x9HUXQjDEOXPMiL9ft99s/UTgDNZnOMAuYLhcL1XG4EAQUhSSC7&#10;KaZYLGBp6S3c7YIbjcYlDi6Xywfz+TxWvv8AsyeJQWISAjKICSwIAritViuI4zhLJpsGMtl3u93/&#10;JaPT6RJQggsXL8s/l4MnJw+j11sVdsOPYZVGjD+IE6XiGN68foWjlePCzmuigFE5+O68T9sUlKLZ&#10;TuLZ1tfW8ODWKWH86L8Hq91/5ZpVwFKZlTcWS+PQWkOR6dT4nQFMYhkrMyfl3aRnoFkBfROAhuM4&#10;W0ynngcfHjP+9law0KtJWqIgTMujtILjukN28ZwCeVs5y7jw5RE21iNRIQA88YFwCsw4tWdE8rdD&#10;4edqlCqwjHfG7yEpWUAmFwCd5sn27ev2HeloRwBsL9hKDRVkMi7u3zwm5QnDCJubgTBksxlKw0j3&#10;aWXXYo5MyygKKK+Hy8vvzg4ahXzJ87wprk673Q5IXY5T47jK9AyOHDogivbtnZBm23IX6vX6bQK5&#10;Onv6zDnPK+Dli6d/qOZP6Hxm6f/0v13KRmufhwC1Wm2CSvZrbu48Rj2PNsRwHU2g1Y1qtTq6020d&#10;XiaS3iH7sLj4/MSg/1PGT7td97+G8aA4FJOt1wAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="-3" cy="19" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-452,-41) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="125" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="121" y1="19" y2="19"/>
<text fill="#cc0000" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">medio de difusion</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAH+SURBVBgZBcE9i11VGAbQtc/sO0OCkqhg&#10;hEREAwpWAWUg8aMVf4KFaJEqQtAipTZWViKiCGOh2Ap2gmJhlSIWFsFOxUK0EsUM3pl79n4f12qH&#10;b3z3Fh7D83gC95GOJsDe0ixLk5Qq/+xv/Lw9Xd+78/HLX3Y8fXTr2nWapy4eCFKxG7Fby97SnDlY&#10;tMbxthyfzHO//nl85fNvfvnk8MbX5xa8IHx1518Vkrj54Q+qQms2vVmWZjdiu5ZR2rT01166/NCZ&#10;g/2PFjwSVMU6yjoC1oq+x6Y3VbHdlXWExPd379nf7Nmejv2Os6OC2O4KLK0RNn3RNCdr2Z5GJSpU&#10;4o+/TkhaJ30mEk5HwNuvX7Hpi76wzvjvtIwqVUSkyjqmpHS0mki8+9mPWmuWxqYvGkbFGCUAOH/+&#10;QevYI9GFSqmaHr5wkUYTAlGhqiRRiaqiNes6SOkwJwnQEqBRRRJEgkRLJGVdm6R0GLMQENE0Ekmk&#10;SkQSVVMqopyuIaUTs0J455VLAAAAAODW0U/GiKT0pTWziEj44PZ1AAAAcPPqkTmH3QiJrlEVDXDt&#10;0qsAAAAAapa5BqUnyaw0Am7//gUAAAB49tEXzTmtM5KkV/y2G/X4M5fPao03n/sUAAAAwIX7y5yB&#10;v9vhjW/fT/IkuSp5gJKElKRISYoUiSRIyD1tufs/IXxui20QsKIAAAAASUVORK5CYII=" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-398,-12) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="70" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="66" y1="19" y2="19"/>
<text fill="#cc0000" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">popular</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKDSURBVDjLjdFNTNJxHAZw69CWHjp16O2A&#10;ZB3S1ovOObaI8NBYuuZAhqjIQkzJoSIZBmSCpVuK/sE/WimU6N9SDM0R66IHbabie1hrg0MK3Zo5&#10;a8vwidgym8w8PKffvp89e35RAKJ2ipp7WDxvjltZ6jwCr5W2bpHHtqUnx+77877jsZxzlO3roAWX&#10;uw5ha1pl9MZdAW2ig8RyXyL8rnx8G6uH387AMnUMC2b6l10BJPdAfWDGhZVREuszT7D6hsTStBND&#10;urO+XQEZnEypx1a28XW2F8HFPqwtOBAYJlCde9EeEZCy4sTN4ksrRA4LZB57vZCfMElUyH4E7Ap8&#10;6r+LwIAGIy03cDr/lDNJGR/zDyBiHGc3i1ODjUIWtqbdIIexVY86kwZ3HijR/86GmqFqJGhPWs8o&#10;TkRvAgb+uZGHhVfRV3UNni41OhU8EDlstBSkwjKjhnmqAg3uUtS6y9Dzvg0ljmKkFCaRm4CJT+/5&#10;OERtG4yqZMEwdQt1biV0EyW4PVEE1dsiiMk8eMn0/w9Wp+PCNK1CQ6iBYeommkIpH5Qhy5AF/6Mr&#10;f4G955tUJlXxtsHieeWQ2LJxvVuAAkoASUcmLugZPqW0qsprEQjDx3sY3ZIMhXt1+DNw77kdmnYK&#10;SsKKx+PfoTQtYX9KtzWG2Rod6aujaJwWHk8+uDawGITeA+SPA7nDQOYgwKcAYhQQajyIY9eQEYE5&#10;feLPyV4jFC8CELkAkWMDQmoDPGsQaWYgzRjEU8vL8GARAV8T099bUwqBdgzS14D4VaiBA8gZALJ/&#10;t6j1Qqu4Hx4sIvChoyDFWZ1RmcyzORJLJsDSzoUyD5Z6FsxKN+iXn/mM5ZLwYJGAX0F/sgCQt3xB&#10;AAAAAElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-414,16) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="86" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="82" y1="19" y2="19"/>
<text fill="#cc0000" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">economico</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAIISURBVDjLlZPRT1JxFMf5E+6fwL9Ri8ls&#10;I5cSV7swL82w0SZTB6zWXOuB0cLU8HKhuAooTNrFupcAsYWjh1sRIaDgTLGXxmubD2w+9Prth29t&#10;XMWH83J+Z5/vOd9zfhoAml7h+mg3ReuhUxIdR37CrVanUXvgvvsOtk4kbJ+kEaos/bkSYCZv0wcr&#10;i7/zrTS2f32AUOX+2nPWACvd1V4KmM7fnxQP1pE+2kSuJUM+EpFpvUOS5MJVHgQSuBCwWuU72eP3&#10;EA8TWCx523NFl+Iv+zrxRgRr+wKeFJ1NVYA9y+o3mjFskbkj9SDGpTGqm2dSJmosZfRYZXPClLxN&#10;qQJsGYt2bS+MbEtCF2SVmQCTukOPikaqbxPnik4l3ohC+ilivbGKcC0Af/klXAVHczhuoC8FmDdp&#10;yl2YUrjyAlmfHytklATpJronwP9jAYbYIN3XHXTDuDGkJ6qeRzsz7XCNh1AjvshmRRXQnZWVmIQx&#10;OfTf5RFV/fw3LyJkC+6d2U5PwOjbEe3Tz4/bQp0/b92WY5VbsZtuQ3SQfpC71+R3/eAqr2ASR7I9&#10;AUSVepibUHhSFCVKQv31uXm+0nPwVQ5dgOfLM+jeXNdf6AFRnZz9NNVeKs8jtr+CCDHvRcmL8bSl&#10;qQtdo/v+TBaZ+RrcXUaQqLMZy+GVf+OAcGPaWXCckW7OBgTdslrdPxtwvK6n/CCRAAAAAElFTkSu&#10;QmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-195,56) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="72" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="68" y1="21" y2="21"/>
<text fill="#9900ff" font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Atractivas</tspan>
</text>
<ellipse cx="-3" cy="21" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(04) scale(00.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-383,58) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="162" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="158" y1="19" y2="19"/>
<text fill="#674ea7" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="19.25" y="3">
<tspan dy="1em" x="19.25">Combinacion de Colores</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(3,3) scale(0.13,0.13)" width="13">
<image height="90" preserveAspectRatio="none" style="cursor: pointer; " width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAIhSURBVDjLjZPfS1NxGMbPjX9Bl/0PXqQz&#10;IYIEWWIpRFFBQwyNQqhG4VY0dUK0gXQh+KMhu2nKIAkpAu0wkBA0f0QRtoLuFgSbOmSbZ+estsf3&#10;+e6ssE7hxXNz4PM+7/d9nqMB0A6jr3Var2hJlBFZorKochhwUpQmkO65iC3/DWwP3sJO0Av59l/Q&#10;I0qlmuux5buO7EMvcuM+5AInsRdqxo/5ART92j/hqMhIX7uMbOgudu+7YYRdsMaPozRZ1c/EIKwH&#10;miM8KyptD9xEbsyHQvAYSjZozZyC+boDxbeXYKUmkF9vcHQu7QzdRn7KD/OxqwrGW1B8cx7GZheM&#10;L1eVrO8R5N+5/nqzQWfC1miTgs1X7TA+eBT0bdOD5yudCCRaMPF+CEej2oEBKb6Za9ecTb0TRrIb&#10;ewLPLnegd/4E2l824vSLBoQ3AjgypR2IqpJ9dAeF4cbfzgJnPnVhZLEVZ23wSsyHvkgcMf0jzvTP&#10;/RqQZlSF6D11ML6Za9OZcJuA555dQN+TOKb1JGb0z3i6kKwOsBtWZs6Miu7qYPbadCYcjCUUGJ5e&#10;Q09IJ2yKVjlgiQ1jSZgzo+K1eTC+mWvTmbB3dLEGumu344AM68mGqbdLznTntXkwvplr05nwn73h&#10;AIvdZj3V+lISDmBUyj1SdbfXdjsNKPPHYLdVPaVhLAlzZlS8tn0w06n2HFDhX8Ufg91mPdkwloQ5&#10;89K2Vp0G7AOR2a7+EgKeFAAAAABJRU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="-3" cy="19" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-471,44) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="63" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="59" y1="19" y2="19"/>
<text fill="#c27ba0" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">contraste</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(03) scale(00.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-539,73) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="130" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="126" y1="19" y2="19"/>
<text fill="#c27ba0" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">significado de colores</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(03) scale(00.13)" width="0"/>
</g>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="-200" y="-106"/>
</svg>

Before

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 KiB

View File

@ -1,797 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg focusable="true" id="workspace" preserveAspectRatio="none" width="1024" height="768"
viewBox="-427.77 -328.5450000000001 903.1680000000001 677.3760000000001">
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-384,78 C-393,78 -404,92 -413,92" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-384,78 C-393,78 -403,63 -412,63" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-196,78 C-205,78 -216,77 -225,77" visibility="visible"></path>
<path style="fill:#495879 " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M0,0 C-42,0 -85,77 -127,77 -85,80 -42,5 0,7 Z" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-303,7 C-312,7 -323,35 -332,35" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-303,7 C-312,7 -323,7 -332,7" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-303,7 C-312,7 -322,-22 -331,-22" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-207,7 C-216,7 -227,7 -236,7" visibility="visible"></path>
<path style="fill:#495879 " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M0,0 C-42,0 -85,7 -127,7 -85,10 -42,5 0,7 Z" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M427,255 C436,255 447,280 456,280" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M427,255 C436,255 447,253 456,253" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M427,255 C436,255 447,226 456,226" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M283,79 C292,79 303,254 312,254" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M437,133 C446,133 457,199 466,199" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M437,133 C446,133 457,172 466,172" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M437,133 C446,133 457,145 466,145" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M437,133 C446,133 457,118 466,118" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M437,133 C446,133 457,91 466,91" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M437,133 C446,133 457,64 466,64" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M283,79 C292,79 303,132 312,132" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M283,79 C292,79 303,37 312,37" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M441,-17 C450,-17 460,9 469,9" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M441,-17 C450,-17 460,-18 469,-18" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M441,-17 C450,-17 460,-45 469,-45" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M283,79 C292,79 303,-17 312,-17" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M433,-98 C442,-98 453,-72 462,-72" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M433,-98 C442,-98 453,-99 462,-99" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M433,-98 C442,-98 453,-126 462,-126" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M283,79 C292,79 303,-98 312,-98" visibility="visible"></path>
<path style="fill:#495879 " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M0,0 C42,0 86,78 128,78 86,81 42,5 0,7 Z" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M-224,-61 C-233,-61 -244,-61 -253,-61" visibility="visible"></path>
<path style="fill:#495879 " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M0,0 C-42,0 -85,-61 -127,-61 -85,-58 -42,5 0,7 Z" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M486,-154 C495,-154 505,-154 514,-154" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M379,-154 C388,-154 398,-154 407,-154" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M280,-206 C289,-206 299,-154 308,-154" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M280,-206 C289,-206 300,-181 309,-181" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M280,-206 C289,-206 299,-208 308,-208" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M280,-206 C289,-206 299,-235 308,-235" visibility="visible"></path>
<path style="fill:none " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M280,-206 C289,-206 300,-262 309,-262" visibility="visible"></path>
<path style="fill:#495879 " stroke-width="1px" stroke="#495879" stroke-opacity="1" fill="#495879" fill-opacity="1"
d="M0,0 C42,0 85,-206 127,-206 85,-203 42,5 0,7 Z" visibility="visible"></path>
<rect width="199" height="43" rx="0" ry="0" x="-99" y="-21" stroke-width="1px" stroke="#FF9933" fill="#CC0033"
stroke-opacity="0.4" fill-opacity="0.4" visibility="hidden"></rect>
<path style="fill:none " stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4"
visibility="hidden" d="M349,-137 C327,-65 305,7 283,79"></path>
<path style="fill:none " stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4"
visibility="hidden"
d="M-152,-103 C-101.33333333333333,-68.66666666666666 -50.66666666666667,-34.333333333333336 0,0"></path>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-97,-19) scale(1,1)"
visibility="visible">
<rect width="199" height="45" rx="6.75" ry="6.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: default; "></rect>
<rect width="195" height="39" rx="5.85" ry="5.85" x="0" y="0" stroke-width="2px" fill="#feffff" stroke="#0b5394"
style="cursor: default; "></rect>
<text font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" fill="#3d85c6"
style="cursor: default; " y="11" x="11" visibility="visible">
<tspan dy="1em" x="11">Diseño de Paginas WEB</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="0" height="17"
transform="translate(NaN,11) scale(NaN,0.17)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(127,-227) scale(1,1)"
visibility="visible">
<rect width="155" height="27" rx="4.05" ry="4.05" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: move; "></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="21" x2="151"
y2="21"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#ff9900"
style="cursor: move; " y="4" x="20.25" visibility="visible">
<tspan dy="1em" x="20.25">Ventajas y Beneficios</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="154" cy="21" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(4,4) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/tick_tick.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(309,-279) scale(1,1)"
visibility="visible">
<rect width="180" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="176"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#e06666"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Obtención de clientes y contactos</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/people_group.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(308,-252) scale(1,1)"
visibility="visible">
<rect width="115" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="111"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#e06666"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Imagen corporativa</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/soft_penguin.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(308,-225) scale(1,1)"
visibility="visible">
<rect width="63" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="59"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#e06666"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Informa</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/mail_edit.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(309,-198) scale(1,1)"
visibility="visible">
<rect width="118" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="114"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#cc0000"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Internacionalización</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/thumb_thumb_up.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(308,-171) scale(1,1)"
visibility="visible">
<rect width="73" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="69"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#e06666"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Captación</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/soft_cursor.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="72" cy="17" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(407,-171) scale(1,1)"
visibility="visible">
<rect width="81" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="77"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#cc0000"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Fidelización</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/object_key.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="80" cy="17" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(514,-171) scale(1,1)"
visibility="visible">
<rect width="97" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="93"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="bold" fill="#660000"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Nuevos clientes</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/people_group.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-223,-82) scale(1,1)"
visibility="visible">
<rect width="100" height="27" rx="4.05" ry="4.05" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="21" x2="96"
y2="21"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#ff0000"
style="cursor: move; " y="4" x="20.25" visibility="visible">
<tspan dy="1em" x="20.25">MARKETING</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(4,4) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/money_coins.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="21" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-392,-80) scale(1,1)"
visibility="visible">
<rect width="143" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="139"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="italic" font-weight="normal" fill="#e06666"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">son una herramienta de:</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="13"
transform="translate(NaN,3) scale(NaN,0.13)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(128,57) scale(1,1)"
visibility="visible">
<rect width="158" height="27" rx="4.05" ry="4.05" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="21" x2="154"
y2="21"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#00ff00"
style="cursor: move; " y="4" x="20.25" visibility="visible">
<tspan dy="1em" x="20.25">Tipos de Paginas WEB</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(4,4) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/hard_computer.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="157" cy="21" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(312,-117) scale(1,1)"
visibility="visible">
<rect width="124" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: move; "></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="120"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#023bb9"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">Por su audiencia</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="123" cy="19" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/onoff_status_online.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(462,-143) scale(1,1)"
visibility="visible">
<rect width="66" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="62"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#3d85c6"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Públicos</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/people_group.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(462,-116) scale(1,1)"
visibility="visible">
<rect width="52" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="48"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#3d85c6"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">Extranet</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="11"
transform="translate(NaN,3) scale(NaN,0.11)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(462,-89) scale(1,1)"
visibility="visible">
<rect width="51" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="47"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#3d85c6"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">Intranet</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="11"
transform="translate(NaN,3) scale(NaN,0.11)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(312,-36) scale(1,1)"
visibility="visible">
<rect width="131" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: move; "></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="127"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#023bb9"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">Por su dinamismo</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="130" cy="19" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/arrowc_rotate_anticlockwise.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(469,-62) scale(1,1)"
visibility="visible">
<rect width="105" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="101"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#3d85c6"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Por su estructura</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/chart_organisation.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(469,-35) scale(1,1)"
visibility="visible">
<rect width="111" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="107"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#3d85c6"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Sitios Interactivos</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/hard_cd.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(469,-8) scale(1,1)"
visibility="visible">
<rect width="98" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="94"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#3d85c6"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Sitios estáticos</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/mail_edit.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(312,18) scale(1,1)"
visibility="visible">
<rect width="138" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: move; "></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="134"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#023bb9"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">Por su profundidad</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/arrow_down.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(312,113) scale(1,1)"
visibility="visible">
<rect width="128" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: move; "></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="124"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#023bb9"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">Por sus objetivos</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="127" cy="19" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/thumb_thumb_up.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(466,47) scale(1,1)"
visibility="visible">
<rect width="84" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="80"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#0b5394"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Comerciales</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/money_coins.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(466,74) scale(1,1)"
visibility="visible">
<rect width="85" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="81"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#0b5394"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Informativos</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/chart_line.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(466,101) scale(1,1)"
visibility="visible">
<rect width="50" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="46"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#0b5394"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Ocio</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/hard_controller.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(466,128) scale(1,1)"
visibility="visible">
<rect width="81" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="77"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#0b5394"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Navegación</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/time_hourglass.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(466,155) scale(1,1)"
visibility="visible">
<rect width="73" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="69"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#0b5394"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Artísticos</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/thumb_thumb_up.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(466,182) scale(1,1)"
visibility="visible">
<rect width="78" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="74"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#0b5394"
style="cursor: move; " y="3" x="16.75" visibility="visible">
<tspan dy="1em" x="16.75">Personales</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="11" height="11"
transform="translate(3,3) scale(0.11,0.11)">
<image preserveAspectRatio="none" xlink:href="icons/onoff_status_online.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(312,235) scale(1,1)"
visibility="visible">
<rect width="118" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0" style="cursor: move; "></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="114"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#023bb9"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">Por su apertura</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="117" cy="19" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/arrow_up.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(456,209) scale(1,1)"
visibility="visible">
<rect width="45" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="41"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#bf9000"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">abierta</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="11"
transform="translate(NaN,3) scale(NaN,0.11)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(456,236) scale(1,1)"
visibility="visible">
<rect width="48" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="44"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#bf9000"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">cerrada</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="11"
transform="translate(NaN,3) scale(NaN,0.11)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(456,263) scale(1,1)"
visibility="visible">
<rect width="69" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="rgb(241,163,39)" fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="17" x2="65"
y2="17"></line>
<text font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" fill="#bf9000"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">semicerrada</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="11"
transform="translate(NaN,3) scale(NaN,0.11)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-206,-14) scale(1,1)"
visibility="visible">
<rect width="83" height="27" rx="4.05" ry="4.05" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="21" x2="79"
y2="21"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#e69138"
style="cursor: move; " y="4" x="4" visibility="visible">
<tspan dy="1em" x="4">Importancia</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="21" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="13"
transform="translate(NaN,4) scale(NaN,0.13)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-302,-12) scale(1,1)"
visibility="visible">
<rect width="70" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="66"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="italic" font-weight="normal" fill="#b45f06"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">internet</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/hard_computer.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="19" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-452,-41) scale(1,1)"
visibility="visible">
<rect width="125" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="121"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" fill="#cc0000"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">medio de difusion</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/hard_driver_disk.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-398,-12) scale(1,1)"
visibility="visible">
<rect width="70" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="66"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" fill="#cc0000"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">popular</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/people_group.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-414,16) scale(1,1)"
visibility="visible">
<rect width="86" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="82"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" fill="#cc0000"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">economico</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/money_dollar.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-195,56) scale(1,1)"
visibility="visible">
<rect width="72" height="27" rx="4.05" ry="4.05" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="21" x2="68"
y2="21"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="bold" fill="#9900ff"
style="cursor: move; " y="4" x="4" visibility="visible">
<tspan dy="1em" x="4">Atractivas</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="21" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="13"
transform="translate(NaN,4) scale(NaN,0.13)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-383,58) scale(1,1)"
visibility="visible">
<rect width="162" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="158"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" fill="#674ea7"
style="cursor: move; " y="3" x="19.25" visibility="visible">
<tspan dy="1em" x="19.25">Combinacion de Colores</tspan>
</text>
<g preserveAspectRatio="none" focusable="true" width="13" height="13"
transform="translate(3,3) scale(0.13,0.13)">
<image preserveAspectRatio="none" xlink:href="icons/object_rainbow.png" width="90" height="90"
style="cursor: pointer; " y="5" x="5"></image>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="19" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="visible"></ellipse>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-471,44) scale(1,1)"
visibility="visible">
<rect width="63" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="59"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" fill="#c27ba0"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">contraste</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="13"
transform="translate(NaN,3) scale(NaN,0.13)"></g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-539,73) scale(1,1)"
visibility="visible">
<rect width="130" height="25" rx="3.75" ry="3.75" x="-2" y="-3" stroke-width="1px" stroke="rgb(241,163,39)"
fill="rgb(252,235,192)" stroke-opacity="0" fill-opacity="0"></rect>
<line stroke-width="1px" stroke="#495879" stroke-opacity="1" style="cursor: move; " x1="0" y1="19" x2="126"
y2="19"></line>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" fill="#c27ba0"
style="cursor: move; " y="3" x="3" visibility="visible">
<tspan dy="1em" x="3">significado de colores</tspan>
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" stroke="rgb(2,59,185)"
fill="rgb(224,229,239)" style="cursor: default; " visibility="hidden"></ellipse>
<g preserveAspectRatio="none" focusable="true" width="0" height="13"
transform="translate(NaN,3) scale(NaN,0.13)"></g>
</g>
<rect width="50" height="6" rx="0" ry="0" x="-200" y="-106" stroke-width="1px" stroke="#FF9933" fill="#CC0033"
stroke-opacity="0.4" fill-opacity="0.4" visibility="hidden"></rect>
</svg>

Before

Width:  |  Height:  |  Size: 59 KiB

View File

@ -1,225 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="688.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-183.0 -341.0 515.0 688.0" width="515.0">
<path d="M 0 0 C 32 0 65 291 97 291 C 65 294 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 259 97 259 C 65 262 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 228 97 228 C 65 231 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 195 97 195 C 65 198 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 162 98 162 C 66 165 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 129 98 129 C 66 132 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 96 98 96 C 66 99 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 63 98 63 C 66 66 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 31 97 31 C 65 34 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 26 0 52 6 78 6 C 52 9 26 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -19 98 -19 C 66 -16 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -52 98 -52 C 66 -49 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -85 98 -85 C 66 -82 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -115 98 -115 C 66 -112 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -145 98 -145 C 66 -142 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 -175 97 -175 C 65 -172 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -205 98 -205 C 66 -202 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C -33 0 -66 16 -99 16 C -66 19 -33 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -235 98 -235 C 66 -232 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C -33 0 -66 -15 -99 -15 C -66 -12 -33 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 0 0 C 32 0 66 -268 98 -268 C 66 -265 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<rect fill="#cc0033" fill-opacity="0.4" height="42" rx="0" ry="0" stroke="#ff9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="139" x="-69" y="-21"/>
<path fill-opacity="0.4" stroke="#cc0033" stroke-opacity="0.4" stroke-width="1px" style="fill: none;" visibility="hidden"/>
<path d="M -92 -46 C -61.3333 -30.6667 -30.6667 -15.3333 0 0" fill-opacity="0.4" stroke="#cc0033" stroke-opacity="0.4" stroke-width="1px" style="fill: none;" visibility="hidden"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-67 -19) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="44" rx="6.6" ry="6.6" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: default;" width="139" x="-2" y="-3"/>
<rect fill="rgb(80, 157, 192)" height="38" rx="5.7" ry="5.7" stroke="rgb(57, 113, 177)" stroke-width="2px" style="cursor: default;" width="135" x="0" y="0"/>
<text fill="#ffffff" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default;" visibility="visible" x="11" y="11">
<tspan dy="1em" x="11">Script_Bro_P1</tspan>
</text>
<g focusable="true" height="16" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -291) scale(1)" visibility="visible" width="100">
<rect fill="rgb(244, 184, 45)" fill-opacity="1" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="1" stroke-width="1px" style="cursor: move;" width="104" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="100" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">??????favor</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-133 -25) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="40" x="-2" y="-3"/>
<rect fill="#ff0000" height="21" rx="3.15" ry="3.15" stroke="rgb(2, 59, 185)" stroke-width="2px" style="cursor: move;" width="36" x="0" y="0"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">enter</tspan>
</text>
<ellipse cx="3" cy="3" fill="#ff0000" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -258) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="124" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="120" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">??/????????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-124 5) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="27" rx="4.05" ry="4.05" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="31" x="-2" y="-3"/>
<rect fill="#ff0000" height="21" rx="3.15" ry="3.15" stroke="rgb(2, 59, 185)" stroke-width="2px" style="cursor: move;" width="27" x="0" y="0"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">exit</tspan>
</text>
<ellipse cx="3" cy="3" fill="#ff0000" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -225) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="140" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="136" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">????????????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 -195) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="119" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="115" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">??????????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -165) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="140" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="136" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">????????????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -135) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="108" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="104" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">?????????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -105) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="108" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="104" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">?????????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -75) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="126" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="122" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">?????????X?</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 -42) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="116" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="112" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">??--&gt;??????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(78 -14) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="40" rx="6" ry="6" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="40" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 11) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="65" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="61" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">?????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 40) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="94" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="90" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">??--&gt;????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 73) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="50" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="46" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">??tab</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 106) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="184" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="180" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">???&gt;???????-&gt;????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(98 139) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="162" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="158" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">???&gt;????-&gt;javascript</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 172) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="147" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="143" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">???&gt;??&gt;??????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 205) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="147" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="143" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">???&gt;????&gt;????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 239) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="26" rx="3.9" ry="3.9" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="87" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="83" y1="20" y2="20"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">???????</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 268) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="147" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="143" y1="23" y2="23"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Browser ?call?SM???</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="" width="0"/>
</g>
<rect fill="#cc0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#ff9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="-140" y="-49"/>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 KiB

View File

@ -1,358 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" id="workspace" viewBox="-493.982 -333.951 1518.06 853.494"
preserveAspectRatio="none meet" focusable="true" width="1366" height="768">
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 65 291 97 291 C 65 294 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 65 259 97 259 C 65 262 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 65 228 97 228 C 65 231 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 65 195 97 195 C 65 198 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 162 98 162 C 66 165 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 129 98 129 C 66 132 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 96 98 96 C 66 99 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 63 98 63 C 66 66 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 65 31 97 31 C 65 34 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 26 0 52 6 78 6 C 52 9 26 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -19 98 -19 C 66 -16 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -52 98 -52 C 66 -49 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -85 98 -85 C 66 -82 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -115 98 -115 C 66 -112 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -145 98 -145 C 66 -142 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 65 -175 97 -175 C 65 -172 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -205 98 -205 C 66 -202 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C -33 0 -66 16 -99 16 C -66 19 -33 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -235 98 -235 C 66 -232 32 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C -33 0 -66 -15 -99 -15 C -66 -12 -33 5 0 7 Z"/>
<path visibility="visible" style="fill: #495879;" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" d="M 0 0 C 32 0 66 -268 98 -268 C 66 -265 32 5 0 7 Z"/>
<rect visibility="hidden" fill="#cc0033" fill-opacity="0.4" stroke="#ff9933" stroke-opacity="0.4" stroke-width="1px"
x="-69" y="-21" width="139" height="42" rx="0" ry="0"/>
<path visibility="hidden" style="fill: none;" fill-opacity="0.4" stroke="#cc0033" stroke-opacity="0.4"
stroke-width="1px"/>
<path visibility="hidden" style="fill: none;" fill-opacity="0.4" stroke="#cc0033" stroke-opacity="0.4"
stroke-width="1px" d="M -92 -46 C -61.3333 -30.6667 -30.6667 -15.3333 0 0"/>
<g visibility="visible" transform="translate(-67 -19) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect style="cursor: default;" fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)"
stroke-opacity="0" stroke-width="1px" x="-2" y="-3" width="139" height="44" rx="6.6" ry="6.6"/>
<rect style="cursor: default;" fill="rgb(80, 157, 192)" stroke="rgb(57, 113, 177)" stroke-width="2px" x="0"
y="0" width="135" height="38" rx="5.7" ry="5.7"/>
<text font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" visibility="visible"
style="cursor: default;" fill="#ffffff" x="11" y="11">
<tspan x="11" dy="1em">Script_Bro_P1</tspan>
</text>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="16"/>
</g>
<g visibility="visible" transform="translate(98 -291) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect style="cursor: move;" fill="rgb(244, 184, 45)" fill-opacity="1" stroke="rgb(241, 163, 39)"
stroke-opacity="1" stroke-width="1px" x="-2" y="-3" width="104" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="100"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">??????favor</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(-133 -25) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="40" height="27" rx="4.05" ry="4.05"/>
<rect style="cursor: move;" fill="#ff0000" stroke="rgb(2, 59, 185)" stroke-width="2px" x="0" y="0" width="36"
height="21" rx="3.15" ry="3.15"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">enter</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="#ff0000" stroke="rgb(2, 59, 185)" stroke-width="1px"
cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="13"/>
</g>
<g visibility="visible" transform="translate(98 -258) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="124" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="120"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">??/????????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(-124 5) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="31" height="27" rx="4.05" ry="4.05"/>
<rect style="cursor: move;" fill="#ff0000" stroke="rgb(2, 59, 185)" stroke-width="2px" x="0" y="0" width="27"
height="21" rx="3.15" ry="3.15"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">exit</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="#ff0000" stroke="rgb(2, 59, 185)" stroke-width="1px"
cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="13"/>
</g>
<g visibility="visible" transform="translate(98 -225) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="140" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="136"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">????????????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(97 -195) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="119" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="115"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">??????????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(98 -165) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="140" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="136"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">????????????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(98 -135) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="108" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="104"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">?????????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(98 -105) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="108" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="104"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">?????????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(98 -75) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="126" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="122"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">?????????X?</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(98 -42) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="116" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="112"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">??-->??????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(78 -14) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="40" height="40" rx="6" ry="6"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(97 11) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="65" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="61"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">?????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(98 40) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="94" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="90"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">??-->????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(98 73) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="50" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="46"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">??tab</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(98 106) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="184" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="180"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">???>???????->????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(98 139) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="162" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="158"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">???>????->javascript</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(97 172) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="147" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="143"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">???>??>??????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(97 205) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="147" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="143"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">???>????>????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<g visibility="visible" transform="translate(97 239) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="87" height="26" rx="3.9" ry="3.9"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="20" x2="83"
y2="20"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">???????</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="12"/>
</g>
<g visibility="visible" transform="translate(97 268) scale(1)" focusable="true" preserveAspectRatio="none"
width="100" height="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" stroke="rgb(241, 163, 39)" stroke-opacity="0"
stroke-width="1px" x="-2" y="-3" width="147" height="29" rx="4.35" ry="4.35"/>
<line style="cursor: move;" stroke="#495879" stroke-opacity="1" stroke-width="1px" x1="0" y1="23" x2="143"
y2="23"/>
<text font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" visibility="visible"
style="cursor: move;" fill="rgb(82, 92, 97)" x="4" y="4">
<tspan x="4" dy="1em">Browser ?call?SM???</tspan>
</text>
<ellipse visibility="hidden" style="cursor: default;" fill="rgb(224, 229, 239)" stroke="rgb(2, 59, 185)"
stroke-width="1px" cx="3" cy="3" rx="3" ry="3" width="6" height="6"/>
<g transform="" focusable="true" preserveAspectRatio="none" width="0" height="15"/>
</g>
<rect visibility="hidden" fill="#cc0033" fill-opacity="0.4" stroke="#ff9933" stroke-opacity="0.4" stroke-width="1px"
x="-140" y="-49" width="50" height="6" rx="0" ry="0"/>
</svg>

Before

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 510 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 455 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 564 KiB

View File

@ -1,985 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="995.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-826.0 -494.0 1805.0 995.0" width="1805.0">
<path d="M 146 323 C 155 323 165 370 174 370" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<rect fill="#cc0033" fill-opacity="0.4" height="23" rx="0" ry="0" stroke="#ff9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="51" x="84" y="302"/>
<path d="M 191 376 C 172 358.333 153 340.667 134 323" fill-opacity="0.4" stroke="#cc0033" stroke-opacity="0.4" stroke-width="1px" style="fill: none;" visibility="hidden"/>
<path d="M 86 342 C 57.3333 228 28.6667 114 0 0" fill-opacity="0.4" stroke="#cc0033" stroke-opacity="0.4" stroke-width="1px" style="fill: none;" visibility="hidden"/>
<path d="M -219 408 C -228 408 -239 432 -248 432" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -219 408 C -229 408 -239 395 -249 395" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -219 408 C -229 408 -239 370 -249 370" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -146 310 C -155 310 -166 407 -175 407" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -363 221 C -373 221 -383 195 -393 195" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 0 0 C -32 0 -64 309 -96 309 C -64 312 -32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M -366 96 C -375 96 -385 95 -394 95" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -327 -79 C -336 -79 -347 -79 -356 -79" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -144 -140 C -153 -140 -163 -217 -172 -217" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -212 -104 C -221 -104 -231 -104 -240 -104" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -271 -154 C -281 -154 -291 -179 -301 -179" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -271 -154 C -280 -154 -291 -129 -300 -129" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -271 -154 C -280 -154 -291 -154 -300 -154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -200 -217 C -209 -217 -220 -154 -229 -154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -200 -217 C -210 -217 -220 -304 -230 -304" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -279 -229 C -288 -229 -299 -204 -308 -204" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -279 -229 C -288 -229 -299 -229 -308 -229" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -279 -229 C -288 -229 -299 -254 -308 -254" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -208 -379 C -217 -379 -228 -429 -237 -429" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -144 -140 C -153 -140 -164 -104 -173 -104" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -208 -379 C -217 -379 -227 -379 -236 -379" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 146 323 C 155 323 165 295 174 295" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 146 323 C 155 323 165 320 174 320" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 198 -252 C 207 -252 218 -254 227 -254" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -216 -17 C -225 -17 -236 -29 -245 -29" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 198 -252 C 207 -252 218 -279 227 -279" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -247 333 C -256 333 -267 345 -276 345" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -247 333 C -256 333 -267 320 -276 320" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -146 310 C -156 310 -166 332 -176 332" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -557 446 C -566 446 -576 445 -585 445" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -338 433 C -348 433 -358 445 -368 445" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -338 433 C -348 433 -358 420 -368 420" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 146 323 C 155 323 165 345 174 345" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 146 323 C 155 323 165 270 174 270" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 322 97 322 C 65 325 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M -259 296 C -268 296 -279 295 -288 295" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -146 310 C -156 310 -166 295 -176 295" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -363 221 C -373 221 -383 270 -393 270" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -363 221 C -372 221 -383 245 -392 245" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -363 221 C -373 221 -383 220 -393 220" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -363 221 C -373 221 -383 170 -393 170" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -146 310 C -155 310 -166 220 -175 220" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 331 208 C 340 208 350 245 359 245" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 331 208 C 340 208 350 220 359 220" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 331 208 C 340 208 350 195 359 195" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 331 208 C 340 208 350 170 359 170" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 230 60 C 239 60 249 207 258 207" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 590 123 C 599 123 609 147 618 147" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 813 123 C 822 123 832 122 841 122" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 590 123 C 599 123 609 122 618 122" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 590 123 C 599 123 609 97 618 97" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 357 123 C 366 123 376 122 385 122" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 230 60 C 239 60 249 122 258 122" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 327 71 C 336 71 347 70 356 70" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 230 60 C 239 60 249 70 258 70" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 230 60 C 239 60 249 45 258 45" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 399 -42 C 408 -42 419 20 428 20" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 399 -42 C 408 -42 419 -4 428 -4" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 399 -42 C 408 -42 419 -29 428 -29" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 399 -42 C 408 -42 419 -54 428 -54" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 399 -42 C 408 -42 419 -79 428 -79" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 399 -42 C 408 -42 419 -104 428 -104" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 230 60 C 239 60 249 -42 258 -42" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 230 60 C 239 60 249 -129 258 -129" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 59 97 59 C 65 62 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M -202 108 C -211 108 -221 145 -230 145" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -202 108 C -211 108 -222 120 -231 120" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -202 108 C -211 108 -222 95 -231 95" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -202 108 C -211 108 -221 70 -230 70" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -144 -140 C -153 -140 -164 107 -173 107" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -216 -17 C -226 -17 -236 45 -246 45" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -216 -17 C -225 -17 -236 20 -245 20" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -216 -17 C -225 -17 -236 -4 -245 -4" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -216 -17 C -226 -17 -236 -54 -246 -54" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -216 -17 C -226 -17 -236 -79 -246 -79" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -144 -140 C -153 -140 -163 -17 -172 -17" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -200 -217 C -209 -217 -220 -229 -229 -229" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -200 -217 C -209 -217 -220 -279 -229 -279" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -208 -379 C -217 -379 -227 -329 -236 -329" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -208 -379 C -217 -379 -227 -354 -236 -354" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -208 -379 C -217 -379 -228 -404 -237 -404" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M -144 -140 C -153 -140 -164 -379 -173 -379" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 0 0 C -32 0 -65 -140 -97 -140 C -65 -137 -32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<path d="M 288 -154 C 297 -154 307 -154 316 -154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 198 -252 C 207 -252 218 -154 227 -154" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 334 -204 C 343 -204 354 -179 363 -179" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 638 -204 C 647 -204 657 -204 666 -204" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 334 -204 C 343 -204 354 -204 363 -204" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 334 -204 C 343 -204 354 -229 363 -229" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 198 -252 C 207 -252 218 -204 227 -204" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 284 -304 C 293 -304 304 -304 313 -304" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 198 -252 C 207 -252 218 -304 227 -304" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 282 -342 C 291 -342 302 -329 311 -329" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 282 -342 C 291 -342 302 -354 311 -354" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 198 -252 C 207 -252 218 -342 227 -342" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: none;" visibility="visible"/>
<path d="M 0 0 C 32 0 65 -252 97 -252 C 65 -249 32 5 0 7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill: #495879;" visibility="visible"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-67 -19) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="44" rx="6.6" ry="6.6" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: default;" width="138" x="-2" y="-3"/>
<rect fill="rgb(80, 157, 192)" height="38" rx="5.7" ry="5.7" stroke="rgb(57, 113, 177)" stroke-width="2px" style="cursor: default;" width="134" x="0" y="0"/>
<text fill="#ffffff" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default;" visibility="visible" x="11" y="11">
<tspan dy="1em" x="11">Einblicke Marc</tspan>
</text>
<g focusable="true" height="16" preserveAspectRatio="none" transform="translate(0 11) scale(0 0.16)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 -271) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="104" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="100" y1="19" y2="19"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Andere Terminals</tspan>
</text>
<ellipse cx="103" cy="19" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(227 -357) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="58" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="54" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Härkingen </tspan>
</text>
<ellipse cx="57" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(311 -369) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="107" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="103" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">wohl grösstes Terminal</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(311 -344) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="200" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="196" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">für SBBC nur nutzbar, wenn Verlad mit Dreier</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(227 -319) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="60" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="56" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Cadenazzo </tspan>
</text>
<ellipse cx="59" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(313 -319) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="110" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="106" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">SBBC, von Post benutzt</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(227 -219) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="110" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="106" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Diskriminierungsfreiheit</tspan>
</text>
<ellipse cx="109" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(363 -244) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="88" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="84" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">nur SBB C hält ein</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(363 -219) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="277" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="273" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Andere Terminals holen auch BAV-Beiträge, aber nicht diskr.frei,</tspan>
</text>
<ellipse cx="276" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(666 -219) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="73" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="69" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">z.B. Härkingen</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(363 -194) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="417" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="413" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">SBBC = Musterknabe, aber man verdient nichts als Musterknabe, Sogar Rückzahlung BAV-Beiträge</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(227 -169) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="63" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="59" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Verschlafen </tspan>
</text>
<ellipse cx="62" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(316 -169) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="190" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="186" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Ein eigenes Terminal in Härkingen/Gäu etc.</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-143 -159) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="50" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="46" y1="19" y2="19"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Kunden</tspan>
</text>
<ellipse cx="-3" cy="19" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-207 -394) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="38" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="34" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Dreier</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-395 -419) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="162" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="158" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">stark Internat., wieder Fokus auf CH</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-333 -444) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="100" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="96" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Hauptcarrier der Post</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-471 -369) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="239" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="235" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Viel Baulogistik, sehr kombiaffin, viel Kombi-Equipment</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-481 -344) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="249" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="245" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Nur Neuverkehr als KV, nie Umstellung bisheriger Kunden</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-199 -232) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="31" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="27" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Post</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-428 -294) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="203" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="199" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">lagert alle Transporte aus, aber an grosse UNT</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-278 -244) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="53" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="49" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Terminals</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-358 -319) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="132" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="128" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">War Erster im KV, rein intern</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-543 -144) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="247" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="243" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">wird als "Kundenlösung" verkauft &amp; durch SBBC gefahren</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-215 -32) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="47" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="43" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">RailCare</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-326 -94) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="84" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="80" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">für Post gefahren</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-340 -69) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="98" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="94" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Knatsch ca. 2011/12</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-664 -94) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="312" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="308" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Unwissen, was Post auf SBB-Züge draufgestellt hat (auch fremde Waren)</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-470 -19) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="229" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="225" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Railcare hat SBB-Züge als Komplettpaket vermarktet</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-418 5) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="177" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="173" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Tür zu Tür-Kompetenz, auch LKW-Flotte</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-598 30) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="356" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="352" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Betreuung RailCare durch Marc mit Ziel: verhindern, dass Railcare Post transportiert</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-201 92) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="32" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="28" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">H&amp;M</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-437 55) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="211" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="207" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Ausschreibung: UNT hat 30% unter Offerte SBB </tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-365 80) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="138" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="134" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">hat nicht funktioniert, Aufgabe</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-679 80) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="289" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="285" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Neuausschreibung. Für SBBC schwierig, Preis wieder hochzukriegen</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-465 105) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="238" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="234" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Bei C&amp;A und Vögele gesehen, dass es mit Dreier klappt</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-621 130) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="395" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="391" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Falconnier: bei H&amp;M gemeint, dass er dies in Zusammenarbeit mit Dreier realisieren könnte...</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 40) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="135" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="131" y1="19" y2="19"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Entwicklung SBB Cargo</tspan>
</text>
<ellipse cx="134" cy="19" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(258 -144) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="109" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="105" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Dispo ist nicht das Herz</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(258 -57) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="144" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="140" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Werbung beim Endkunden nötig</tspan>
</text>
<ellipse cx="143" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(428 -119) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="119" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="115" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">damit Produkt bekannt ist</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(428 -94) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="152" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="148" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">damit KV nicht nur für Neukunden</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(428 -69) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="110" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="106" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">nicht nur via Dreier etc.</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(428 -44) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="389" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="385" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Spediteure wollen manchmal nicht von sich aus aufs Bahn-KV Angebot aufmerksam machen</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(428 -19) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="211" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="207" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Kundenkampagne (Telefonanfragen, Gespräche)</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(428 5) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="231" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="227" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Ziel: Transporteure kanzeln Bahn nicht als "Seich" ab</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(258 30) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="193" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="189" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Kein Knowhow für Gesamtlösung vorhanden</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(258 55) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="72" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="68" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">DB Schenker: </tspan>
</text>
<ellipse cx="71" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(356 55) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="71" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="67" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Gesamtlösung</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(258 107) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="101" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="97" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Falls Gesamtlogistik: </tspan>
</text>
<ellipse cx="100" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(385 107) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="207" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="203" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">kein Knoehow vorhanden, müsste Firma kaufen</tspan>
</text>
<ellipse cx="206" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(618 82) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="276" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="272" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">-&gt; man hätte dann grösste Bude, aber keinen Marktanteil mehr </tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(618 107) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="197" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="193" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Marktanteil SBBC: ca. 10% (DB hat weniger)</tspan>
</text>
<ellipse cx="196" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(841 107) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="62" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="58" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Unterthema</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(618 132) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="311" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="307" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">z.B. Kauf Planzer (10%): Galliker etc. würde nicht mehr mit SBBC fahren</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(258 192) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="75" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="71" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Kauf RailCare? </tspan>
</text>
<ellipse cx="74" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(359 155) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="145" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="141" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Schon lange Vorschlag von Marc</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(359 180) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="186" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="182" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Planzer als Kunde hätte ein Problem damit</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(359 205) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="108" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="104" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">schon nur wegen Dispo</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(359 230) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="129" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="125" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Coop wäre als Kunde zurück</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-145 290) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="53" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" visibility="visible" x1="0" x2="49" y1="19" y2="19"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Branche</tspan>
</text>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.13)" width="0"/>
<ellipse cx="-3" cy="19" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-455 355) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="210" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="206" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Chaotische Industrie, Ständiges Troubleshooting</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-523 180) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="134" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="130" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Verkehrsprobleme (Stau etc.)</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-362 205) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="191" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="187" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">CEO's KV-begeistert, Problem: Disponenten</tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-519 155) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="130" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="126" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Zusatzkosten für Umstellung</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-497 205) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="108" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="104" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">roh, wenn stabile Lagef</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-553 230) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="165" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="161" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Aspekt wurde von SBBC unterschätzt</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-527 255) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="138" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="134" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Wäre Zusatzaufwand für Dispo</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-387 380) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="142" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="138" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Dispo = Herz der UNT, Effizienz</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-337 417) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="93" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="89" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Nichts zu verdienen</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(174 355) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="261" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="257" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Wechselbehälter international Standard, aber nicht wg. Bahn</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-258 280) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="86" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="82" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Subunternehmen </tspan>
</text>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-574 280) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="290" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="286" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">z.T. Drecksgeschäft: Chauffeure kaufen Lastwagen, hartes Gewerbe</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(97 303) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="25" rx="3.75" ry="3.75" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="51" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="47" y1="19" y2="19"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Produkt</tspan>
</text>
<ellipse cx="50" cy="19" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="13" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.13)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(174 255) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="250" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="246" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Kosten durch LKW statt KV werden nicht s/w ausgewiesen</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(174 330) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" width="107" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="103" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">schwierig zu verkaufen</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-562 405) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="198" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="194" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">in Brasilien eine Goldgrube, da nicht reguliert</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-556 430) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="192" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="188" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">DHL mit Steuergeldern die Welt erschlossen</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-776 430) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="195" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="191" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Zusammenarbeit mit "Konkurrenten" normal</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-246 317) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="70" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Konkurrenz CH </tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(174 280) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="90" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="86" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Binnen-KV möglich</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-485 -394) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="253" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="249" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Dreier ist akzeptiert, Planzer schlechter Ruf (kauft alle auf)</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-211 -119) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="42" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="38" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sieber </tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-572 305) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="300" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="296" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Dreier &amp; andere sagen auch, dass man mehr zusammenarbeiten sollte</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-439 -244) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="135" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="131" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">= faktisch Dreier-Stützpunkte</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-515 -219) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="211" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="207" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Post-Terminals aus eig. Angebot rausgenommen</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-555 -169) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="259" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="255" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">guter Wiederverkäufer, da an Post nur Einzelwagen verkauft</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-464 -44) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="223" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="219" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Railcare ganz draussen, Postzüge als Kundenlösung</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(227 -294) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="166" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="162" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Gossau: Notterminal: Frauenfeld Post</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(227 -269) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="267" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="263" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Schöni baut in Rothrist, Bahnanschluss obwohl nicht bahnaffin</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(174 305) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="216" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="212" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">WLV kein Wachstumsfeld, heute alles Terminware</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-649 -194) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="352" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="348" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Ausschreibung 2014: 65 Züge im Jahr, Päckli müssen nicht ausgeschrieben werden</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-764 330) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="492" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="488" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Verhandlung lenken auf Trasse, Abbruch d. Verhandlungen. Cargo hat verloren, mehrere Mio wären möglich gewesen</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-527 -269) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="223" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="219" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Härkingen, Frauenfeld, Daillens, Cadenazzo (SBBC)</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-270 -169) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="45" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="41" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Verkauf</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-435 -119) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="199" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="195" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">vermietet gar Behälter, damit Leute beginnen</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="3" cy="3" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-218 392) scale(1)" visibility="visible" width="100">
<rect fill="rgb(252, 235, 192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241, 163, 39)" stroke-opacity="0" stroke-width="1px" style="cursor: move;" width="47" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="43" y1="15" y2="15"/>
<text fill="rgb(82, 92, 97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Generell</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0 3) scale(0 0.09)" width="0"/>
<ellipse cx="-3" cy="15" fill="rgb(224, 229, 239)" height="6" rx="3" ry="3" stroke="rgb(2, 59, 185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<rect fill="#cc0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#ff9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="189" y="373"/>
</svg>

Before

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 110 KiB

View File

@ -1,276 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="345.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-595.0 -169.0 1191.0 345.0" width="1191.0">
<path stroke="#3f96ff" stroke-opacity="1" stroke-width="2px" style="fill:none " visibility="hidden"/>
<path d="M-200,-36 L-195.70774292476682,-31.807562856748987M-200,-36 L-204.19243714325103,-31.70774292476682" stroke="#9b74e6" stroke-opacity="1" stroke-width="2px" visibility="visible"/>
<path d="M-265,72 C-274,72 -285,107 -294,107" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-265,72 C-274,72 -285,82 -294,82" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-265,72 C-274,72 -285,57 -294,57" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-265,72 C-274,72 -285,32 -294,32" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-44,0 -89,72 -133,72 -89,75 -44,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M180,97 C189,97 200,120 209,120" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M180,97 C189,97 200,95 209,95" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M180,97 C189,97 199,70 208,70" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C44,0 89,97 133,97 89,100 44,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M-268,-41 C-277,-41 -288,8 -297,8" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-268,-41 C-277,-41 -288,-17 -297,-17" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-268,-41 C-277,-41 -288,-42 -297,-42" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-268,-41 C-277,-41 -288,-67 -297,-67" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-268,-41 C-277,-41 -288,-92 -297,-92" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-44,0 -89,-41 -133,-41 -89,-38 -44,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M271,-28 C281,-28 292,38 302,38" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M411,-4 C420,-4 430,20 439,20" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M411,-4 C420,-4 431,-4 440,-4" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M411,-4 C420,-4 431,-29 440,-29" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M271,-28 C280,-28 291,-4 300,-4" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M271,-28 C280,-28 290,-54 299,-54" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M271,-28 C280,-28 290,-79 299,-79" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M271,-28 C280,-28 290,-104 299,-104" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C44,0 90,-28 134,-28 90,-25 44,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<path fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none " visibility="hidden"/>
<path fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none " visibility="hidden"/>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-103,-19) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(244,184,45)" fill-opacity="1" height="44" rx="6.6" ry="6.6" stroke="rgb(241,163,39)" stroke-opacity="1" stroke-width="1px" style="cursor: default;" width="211" x="-2" y="-3"/>
<rect fill="#0a0a08" height="38" rx="5.7" ry="5.7" stroke="rgb(57,113,177)" stroke-width="2px" style="cursor: default;" width="207" x="0" y="0"/>
<text fill="#eeeeee" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default;" visibility="visible" x="31" y="11">
<tspan dy="1em" x="31">Comment démarrer ?</tspan>
</text>
<g focusable="true" height="16" preserveAspectRatio="none" transform="translate(11,11) scale(0.16,0.16)" width="16">
<image height="90" preserveAspectRatio="none" style="cursor: pointer;" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKkSURBVDjLpZPdT5JhGMb9W+BPaK3matVq&#10;ndXWOOigA6fmJ9DUcrUMlrN0mNMsKTUznQpq6pyKAm8CIogmypcg8GIiX8rHRHjhVbPt6o01nMvZ&#10;Wge/k3vP9duuZ/edAyDnf/hjoCMP2Vr3gUDj3CdV6zT1xZ6iFDaKnLEkBFOmPfaZArWT5sw60iFP&#10;+BAbOzTcQSqDZzsNRyCNkcVoaGghzDlVQKylOHJrMrUZ2Yf52y6kc36IxpyoH1lHF7EBgyMKV4jC&#10;J5U/1UVscU4IZOYEa3I1HtwI01hwxlDLhDoJD/wxGr5YGmOLAdRIrVCuhmD3JdA6SQabx12srGB0&#10;KSpc86ew4olDOGjH4x4z0gdHDD9+c4TaQQtq+k2Yt0egXYugTmoVZgV9cyHSxXTtJjZR3WNCVfcK&#10;/NE0ppYDUNu2QTMCtS0IbrsOrVMOWL27eNJtJLOCDoWXdgeTEEosqPxoBK/TwDzWY9rowy51gJ1d&#10;Gr2zLpS2aVH5QQ+Hbw88sZ7OClrGXbQrkMTTAQu4HXqUv9eh7J0OSfo7tiIU+GItilpUuM/AF2tg&#10;98eR36Q+FryQ2kjbVhximQu8dgPKxPMoeTuH4tfqDIWvCBQ2KlDQKEe9dBlGTwR36+THFZg+QoUx&#10;AL0jgsoOQzYYS+wjskcjTzSToVAkA7Hqg4Spc6tm4vgT+eIFVvmb+eCSMwLlih/cNg0KmpRoGzdl&#10;+BXOb5jAsMYNjSWAm9VjwesPR1knFilPNMu510CkdPZtqK1BvJQsoaRZjqLGaTzv1UNp9EJl9uNq&#10;xefU5QdDnFNX+Y5Qxrn9bDLUR6zjqzsMizeWYdG5gy6ZDbk8aehiuYRz5jHdeDTKvlY1IrhSMUxe&#10;4g9SuVwpdaFsgDxf2i84V9zH/us1/is/AdevBaK9Tb3EAAAAAElFTkSuQmCC" y="5"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(134,-46) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="24" rx="3.5999999999999996" ry="3.5999999999999996" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="140" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="136" y1="18" y2="18"/>
<text fill="#444444" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="18" y="3">
<tspan dy="1em" x="18">Propriétés des noeuds</tspan>
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3,3) scale(0.12,0.12)" width="12">
<image height="90" preserveAspectRatio="none" style="cursor: pointer;" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHdSURBVDjLpZNraxpBFIb3a0ggISmmNISW&#10;XmOboKihxpgUNGWNSpvaS6RpKL3Ry//Mh1wgf6PElaCyzq67O09nVjdVlJbSDy8Lw77PmfecMwZg&#10;/I/GDw3DCo8HCkZl/RlgGA0e3Yfv7+DbAfLrW+SXOvLTG+SHV/gPbuMZRnsyIDL/OASziMxkkKkU&#10;QTJJsLaGn8/iHz6nd+8mQv87Ahg2H9Th/BxZqxEkEgSrq/iVCvLsDK9awtvfxb2zjD2ARID+lVVl&#10;babTgWYTv1rFL5fBUtHbbeTJCb3EQ3ovCnRC6xAgzJtOE+ztheYIEkqbFaS3vY2zuIj77AmtYYDu&#10;sPy8/zuvunJkDKXM7tYWTiyGWFjAqeQnAD6+7ueNx/FLpRGAru7mcoj5ebqzszil7DggeF/DX1nB&#10;N82rzPqrzbRayIsLhJqMPT2N83Sdy2GApwFqRN7jFPL0tF+10cDd3MTZ2AjNUkGCoyO6y9cRxfQo&#10;wFUbpufr1ct4ZoHg+Dg067zduTmEbq4yi/UkYidDe+kaTcP4ObJIajksPd/eyx3c+N2rvPbMDPbU&#10;FPZSLKzcGjKPrbJaDsu+dQO3msfZzeGY2TCvKGYQhdSYeeJjUt21dIcjXQ7U7Kv599f4j/oF55W4&#10;g/2e3b8AAAAASUVORK5CYII=" y="5"> </image>
</g>
<ellipse cx="139" cy="18" fill="#250be3" height="6" rx="3" ry="3" stroke="#080559" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(299,-119) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="175" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="171" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="14.25" y="3">
<tspan dy="1em" x="14.25">Ajouter des liens vers des pages web</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(3,3) scale(0.09,0.09)" width="9">
<image data-original-title="" height="90" preserveAspectRatio="none" style="cursor: pointer;" title="" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAEFCu8CAAADHmlDQ1BJQ0MgUHJvZmlsZQAAeAGF&#10;VN9r01AU/tplnbDhizpnEQk+aJFuZFN0Q5y2a1e6zVrqNrchSJumbVyaxiTtfrAH2YtvOsV38Qc+&#10;+QcM2YNve5INxhRh+KyIIkz2IrOemzRNJ1MDufe73/nuOSfn5F6g+XFa0xQvDxRVU0/FwvzE5BTf&#10;8gFeHEMr/GhNi4YWSiZHQA/Tsnnvs/MOHsZsdO5v36v+Y9WalQwR8BwgvpQ1xCLhWaBpXNR0E+DW&#10;ie+dMTXCzUxzWKcECR9nOG9jgeGMjSOWZjQ1QJoJwgfFQjpLuEA4mGng8w3YzoEU5CcmqZIuizyr&#10;RVIv5WRFsgz28B9zg/JfsKiU6Zut5xCNbZoZTtF8it4fOX1wjOYA1cE/Xxi9QbidcFg246M1fkLN&#10;JK4RJr3n7nRpmO1lmpdZKRIlHCS8YlSuM2xp5gsDiZrm0+30UJKwnzS/NDNZ8+PtUJUE6zHF9fZL&#10;RvS6vdfbkZMH4zU+pynWf0D+vff1corleZLw67QejdX0W5I6Vtvb5M2mI8PEd1E/A0hCgo4cZCjg&#10;kUIMYZpjxKr4TBYZIkqk0ml0VHmyONY7KJOW7RxHeMlfDrheFvVbsrj24Pue3SXXjrwVhcW3o9hR&#10;7bWB6bqyE5obf3VhpaNu4Te55ZsbbasLCFH+iuWxSF5lyk+CUdd1NuaQU5f8dQvPMpTuJXYSWAy6&#10;rPBe+CpsCk+FF8KXv9TIzt6tEcuAcSw+q55TzcbsJdJM0utkuL+K9ULGGPmQMUNanb4kTZyKOfLa&#10;UAsnBneC6+biXC/XB567zF3h+rkIrS5yI47CF/VFfCHwvjO+Pl+3b4hhp9u+02TrozFa67vTkbqi&#10;sXqUj9sn9j2OqhMZsrG+sX5WCCu0omNqSrN0TwADJW1Ol/MFk+8RhAt8iK4tiY+rYleQTysKb5kM&#10;XpcMSa9I2S6wO4/tA7ZT1l3maV9zOfMqcOkb/cPrLjdVBl4ZwNFzLhegM3XkCbB8XizrFdsfPJ63&#10;gJE722OtPW1huos+VqvbdC5bHgG7D6vVn8+q1d3n5H8LeKP8BqkjCtbCoV8yAAAACXBIWXMAAAsT&#10;AAALEwEAmpwYAAABZGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4&#10;PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAiPgogICA8cmRmOlJERiB4&#10;bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgog&#10;ICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9&#10;Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29s&#10;PkFkb2JlIEltYWdlUmVhZHk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRp&#10;b24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Chvleg4AAAVfSURBVEgNtVZbTJRXEP7+7XLH&#10;haVRihYMCKRiwKIUi6iAEUStRlCUW6khGpsYm2gVm3pBTSpYSEkfFBIg+gAYIi80BR7QIMoLptxC&#10;UlMwlU2AKFglgLvIbTsz5N8ssFuCSWdz/j2XuZz5Zs6co5jNZty7d68JKlVWVta/f//eHBUVZeZ/&#10;DS88ftyM3NxcjI+PQ8sT69eH8B9MJhOUqqoqi7zCMrwSExMDpa2tzcwsoaGhUPr7+2WFV8Fmpqen&#10;zbaamDQajWhoaEBqaqpYOXv2DHhOYUmtVrPn+fO/odOtwJEjRzE7OytaebFYUZTPZGT1mZmZuaaw&#10;Las5S3dyanJCQxxQ29jYGNk9KmPhIr/No6Oj5rq6381FRb9Iv6amxmw0GU2aqakpXL58CW/fjqCv&#10;r0/6cXFxIqglODAxMYGHDx8gLy8fjPfk5CRcXF2gDAwM0Hjxnrw+9ppARUVFNfllXk4bGRkZ1ZL/&#10;K9iT5ZCjk6ODwM57s24MBXmOzMwMFBT8jHfv3uHcue9RV1cnfGxEMoLAFeeePHmCBw8aERQUjOHh&#10;IWGKiYnF/v1fYdOmTWBkGDGyOCfI1oqKiuBKiFy8eAmvX79Gfn4eEhISUFJSgtra38DKGUkmFpQk&#10;2Llz5x6eePToEbq6OrF5cwS2bdsmu+D5heSp95xgwd3bt2+/q9Pp3BYy2Bs3NTV1iyAh+4M9Jhvz&#10;nWlpaWcUQszk4uLibIPB7hSdyDKto6OjVk1su5yLFzwkHLbSajHv/BkRtGfxypUr6O3tkTN49eo1&#10;hIeHg/AQDZYEsNbHteLmzXw5RAUFhRSiLty9e2euFlgLWucqZ8eBAwdE6PTp77By5UpwCjo5Ocmc&#10;RiNZCvnyVrnt3p2AU6dO4c2bf5CV9Q1l0Y/gNGxvb8PhwynCoxoRQR7s27cXkZGRSE5OxqpVq1Bc&#10;fBu+vr6or69DUlISQkJCxKIKpPjIghEREWAAOG97e3vh4eGB2Ng4uLu7W4QYh0WCPJmdnS2JHBQU&#10;iJycC3BwcBAr6vaYRyVLHM+fz0FZWSk0GgUnTpwUzXwiFpIaunlxPH78hPDZsqAqsMSRCu4fO3bs&#10;2KAuLPVP9WaM/PyVr4C01atXX9i4caO/p6enbinBD1mn8L7t6Oh88fLly1wNWf06Ojp6A6GvY6T/&#10;j6bXe+m3Rm8NIXiyBFPe9X/h+CFe2ZOxGGTPlktcYFtaWtDa2iq108/PF7t2xYNCZFeVxeByPOQb&#10;mYu1wWCAj4+PnFM3N3d0d3ejo6OD7kMDSktLodfrxbB6fnlgMch5a8/L9vZ23L9/H+np6XQT1JLC&#10;F/D29parJCMjE15eXiI7MDiA27duITBwHRobG3Ho0CExyLoVOjdMc6WDOuzhwtbc3Iz4+Hg8ffoU&#10;iYmJUrpMJiMd7VhQHcerV3N3GR88fpd8e/KkKHV2dkZU1Jfz9MkCfWx6yHG5ceMnKT6RkV+IJ8+e&#10;/Ym1a9fC3z8Aa9Z8ivLycroPXdHT00Ovhjy4ubkiLCyMClOy8PPm1dNuE1JmYEiLi4vlFuZKt3fv&#10;HmzZEiUJERgYiMHBQYkNl0mOD2+Gzha02o9w8GCSVHj2lgudPbJ4aL0jLiczM7NUTv3k7TM8PIzr&#10;16+DL0E2FBT0uXjC1dPPz08KPmcsv5NsETviRD+meQZ54dixY5IgBkMfCgsLMTQ0TJn4CaW6DwIC&#10;1iElJUXuKeYNDg4WJepTQgZLfCwGWQE3xpsfpXwlabVai3KGihWrfEvonbfMMiqxQQNdnkZKAJ01&#10;JAwRN2uyDr71/FJ9epBgbHTMSHwGha1XV1evJw8OUuwClhL+wPW/SK6WznHvv7DidtGxUfAhAAAA&#10;AElFTkSuQmCC" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(299,-94) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="81" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="77" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="14.25" y="3">
<tspan dy="1em" x="14.25">Ajouter Notes</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(3,3) scale(0.09,0.09)" width="9">
<image data-original-title="" height="90" preserveAspectRatio="none" style="cursor: pointer;" title="" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAEFCu8CAAADHmlDQ1BJQ0MgUHJvZmlsZQAAeAGF&#10;VN9r01AU/tplnbDhizpnEQk+aJFuZFN0Q5y2a1e6zVrqNrchSJumbVyaxiTtfrAH2YtvOsV38Qc+&#10;+QcM2YNve5INxhRh+KyIIkz2IrOemzRNJ1MDufe73/nuOSfn5F6g+XFa0xQvDxRVU0/FwvzE5BTf&#10;8gFeHEMr/GhNi4YWSiZHQA/Tsnnvs/MOHsZsdO5v36v+Y9WalQwR8BwgvpQ1xCLhWaBpXNR0E+DW&#10;ie+dMTXCzUxzWKcECR9nOG9jgeGMjSOWZjQ1QJoJwgfFQjpLuEA4mGng8w3YzoEU5CcmqZIuizyr&#10;RVIv5WRFsgz28B9zg/JfsKiU6Zut5xCNbZoZTtF8it4fOX1wjOYA1cE/Xxi9QbidcFg246M1fkLN&#10;JK4RJr3n7nRpmO1lmpdZKRIlHCS8YlSuM2xp5gsDiZrm0+30UJKwnzS/NDNZ8+PtUJUE6zHF9fZL&#10;RvS6vdfbkZMH4zU+pynWf0D+vff1corleZLw67QejdX0W5I6Vtvb5M2mI8PEd1E/A0hCgo4cZCjg&#10;kUIMYZpjxKr4TBYZIkqk0ml0VHmyONY7KJOW7RxHeMlfDrheFvVbsrj24Pue3SXXjrwVhcW3o9hR&#10;7bWB6bqyE5obf3VhpaNu4Te55ZsbbasLCFH+iuWxSF5lyk+CUdd1NuaQU5f8dQvPMpTuJXYSWAy6&#10;rPBe+CpsCk+FF8KXv9TIzt6tEcuAcSw+q55TzcbsJdJM0utkuL+K9ULGGPmQMUNanb4kTZyKOfLa&#10;UAsnBneC6+biXC/XB567zF3h+rkIrS5yI47CF/VFfCHwvjO+Pl+3b4hhp9u+02TrozFa67vTkbqi&#10;sXqUj9sn9j2OqhMZsrG+sX5WCCu0omNqSrN0TwADJW1Ol/MFk+8RhAt8iK4tiY+rYleQTysKb5kM&#10;XpcMSa9I2S6wO4/tA7ZT1l3maV9zOfMqcOkb/cPrLjdVBl4ZwNFzLhegM3XkCbB8XizrFdsfPJ63&#10;gJE722OtPW1huos+VqvbdC5bHgG7D6vVn8+q1d3n5H8LeKP8BqkjCtbCoV8yAAAACXBIWXMAAAsT&#10;AAALEwEAmpwYAAABZGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4&#10;PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAiPgogICA8cmRmOlJERiB4&#10;bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgog&#10;ICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXA9&#10;Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29s&#10;PkFkb2JlIEltYWdlUmVhZHk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgPC9yZGY6RGVzY3JpcHRp&#10;b24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Chvleg4AAAPYSURBVEgNtVZLaFNBFL0vfU1N&#10;qvlJESsiurFabHFroVsXiv8WU63/DyIudOEHhSIIolY0qBV/aLFNDQXBjfVbtW6FVlyJCym20FLT&#10;pr80TdLGOTfMc/pM0qTgDfMyM/eee+7cuTPvaYlEglpaWj6QlObm5pfe3fsTk5OT3HQobvvqaWxs&#10;jG14YmJiQgJI8/v9Bl4DbtPWnVRUtJC0YDCYgF1N7SHSenp6eMBA0MTj8USqxgzhcJiqdu41WNBp&#10;fdZIFnTGx8fxN0Mwpwm3dzVNK5mhEYOpqamLGrjMCoyjsWjEIizo69dvtGFTFTeM0SCaWHtie3Ut&#10;D+QDwej5ekSPxWI853/6UOoIc0JJukgHTyIDUp48aiCb3UZab2+vyP+/MXkWeiLU1NQUmJ6eTuTS&#10;QqHQiC7Wv0BGLiln+7cWWPM5s9FolNA2bq7mpvY/fvxEb96+N+ahg/B+ieSSupZtVbsN0vobd4y+&#10;zJZgTALhRQUalqaOZAOQQwUj2vmzp0ymf4eLFxWxDewgCNUnQljrcDgKy8rWUMD/mBWZHq9fvf6G&#10;ylovMns2k6FJ1+X1ek9qoi4nbDbbPJMy41CcyIe61WrVxeZnNEyhdPJ2ZJNRM5iBkvHgkeP06H5y&#10;33CePR4XDQ6GGHP18kUqKVlJIh88NrYDZ3BgIEgdHZ/p3fsPrAToeWsT90+fq/tnO/iUyXpVKwUI&#10;tYpgY7EwV7JyEKoMl92necBG5oPXCE9oLpeTGm5dTwnDgYVNXl4e6xXgNIVCw3ynpUSKSQBTMqYD&#10;yHkApfBK4cVqzScUcjqpu3Ca2WQuNFHgsf7+fg45HUidxxrb29tb9ba2ti+VlZWlqjJTX9w3oyJC&#10;H14B3uLi4jPl5eXLXS6XIxNorrrBweBQZ2fXz76+vjqLYK2tqKgodTqdDuTofzS32+NeV7FutSjz&#10;PUYu1R2a60qywSXrXFjOtjLc1OlsMukkRgaTdoWHj56ggd9Bml9op6eND9gel7H6QkynW7Z0Cflu&#10;XpMcxvnFhEGonk+8L0EGGRsP09Ydu7ivkmXSdf/q5dPHIPGAb82SvKYMQvV4yv10u510r8EncVn9&#10;V3v3sZ30gQHuRN2SpDII1RXKUzo0NEzSAXvJ4SF9ACKvRPQNwlQrhMFcRV2h6mMGoYwqHk9eYi6n&#10;g3w3rqj2s/b3HjjGNvKFjQEqtUD8IDMIoYDkiy8t+X6SDliR5QOXqwzeDDEIzeel/sols21OYxk8&#10;QGofhN3igzNst9sdkUgkJ6fZGosPEhodGQ2DSwN7IBBYJXK+RZTvimyd5Gj3Xdi/qKmp+fEHbZXX&#10;tR3PbEMAAAAASUVORK5CYII=" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(299,-69) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="89" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="85" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="14.25" y="3">
<tspan dy="1em" x="14.25">Icônes fantaisie</tspan>
</text>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(3,3) scale(0.09,0.09)" width="9">
<image height="90" preserveAspectRatio="none" style="cursor: pointer;" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI&#10;WXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1QsHFBsZslJGYgAAADV0RVh0Q29tbWVudAAoYykgMjAw&#10;NCBKYWt1YiBTdGVpbmVyCgpDcmVhdGVkIHdpdGggVGhlIEdJTVCQ2YtvAAAC3klEQVQ4y6WTT2iT&#10;ZxzHP8/zvnnTWE1ramJtRYZTbGvNQGPMtG5CJyx0giC1sIPSy3rpyhC9DWSwyyhsjE4whzG8CNKp&#10;B/WioNNBW7qsrlXpSAejKmZGm6aubd5/eR4PQZz2uO/59/vy5ftH8BbG++mVvuwWrkjgiwgmRW2p&#10;rAownBxSP719L/7zGJeOyDQmu1IN+3oIRFtB1oI7j/f0PnOjF/nn7o0xZam+5A9MvUEw3k/cWBQ3&#10;WgbOxIKRNaj5WwjDBG2C76JdF+pSOMUSuR+/LKgwB3d/r6YAJIB0yLR8PhQLWLNo+x4i/C6E34E1&#10;GyG8CVG3GZamsfQsW4+fjomyyrxSIMf76W3c9XHKWlsLBhCsBVWBZRcR3s7A17e5mc0j1+0EQxMM&#10;h1jftj/1+wmzF0BKj+6GjqOohRGEATd/fcJ35yZJ9JwHUzIy8YjJ3HMwLMBBF+4QSX6CLle6AUzh&#10;kAhE21CP7yAMi86D7XQe2syJkwKosDexic7Oj6p2acBfJhBrQ5R1ouqBT8RXS2ivxPTMU6j4rzOy&#10;HzI0OMB7LTH0wj1yfz8DuwjB1eATATAxKZq6JlpxXnDt9nVG/0iT2l2gcX0d5bLHn9NTROsCnD2f&#10;5XBHM1siS2i7BCZFAFPXkHXzE2npuBxJf8ijJyUuXfmFyZzHbN6hOVZL+7YmetJx2hKHEMVb+PkH&#10;6JDIgsakxhieG7mYjn5wgOZnP7MuHiG15wBmaDtSbEDUNIFvoxdmUM9/QxmrmBu9iggZw+BXi5T9&#10;jNFtn55OWd59KsuTYFoIKZG+Cb6Hdm2UXY3VDe1g5vLgWCLD+6+LVG/15c59VXCMVoymY8hFjSgt&#10;oV/Moxb/BVcgtxzDW9XOXxcGC7I+2LdiCxOnrLhacDOx1o5UQ7ILM9aKCIbBKeHlHzA3fo3CzNiY&#10;rA/27fzGmVpB8ArZL4xe7Eq3sEngU11jSGRFyBje9a2/Yo3/Gy8BotwjCASHqZ0AAAAASUVORK5C&#10;YII=" y="5"> </image>
</g>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(300,-19) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="114" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="110" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Multiples Styles de Texte</tspan>
</text>
<ellipse cx="113" cy="15" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(440,-44) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="106" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="102" y1="15" y2="15"/>
<text fill="#ff0000" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Couleurs de caractères</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(440,-19) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="104" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="100" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="verdana" font-size="8.0625" font-style="italic" font-weight="bold" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Styles de caractères</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(439,5) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="77" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="73" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="times" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Types de caractères</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(300,30) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="90" x="-2" y="-3"/>
<rect fill="rgb(224,229,239)" height="15" rx="0" ry="0" stroke="rgb(2,59,185)" stroke-width="2px" style="cursor: move;" width="86" x="0" y="0"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Differentes Formes</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-267,-59) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="24" rx="3.5999999999999996" ry="3.5999999999999996" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="138" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="134" y1="18" y2="18"/>
<text fill="#444444" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="18" y="3">
<tspan dy="1em" x="18">Edition avec le clavier</tspan>
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3,3) scale(0.12,0.12)" width="12">
<image height="90" preserveAspectRatio="none" style="cursor: pointer;" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAHMSURBVDjLxVNNSxtRFD0jEYqgBCMU00bE&#10;WFsqSNoi1EU2WiiluHEluuumfyH0B3RbuvQHCIpbaaFSxZULQYMUAklJCQZDjUTyMfl48z5675t0&#10;AgqCuPDC5dw3M+/c8+6Z5xhjcJfowx0j9L/IZrMfPc/7QtmhaLbb7Xqr1SpTppvN5jlhlTBHuZNK&#10;peQ1AvrgK20EZSqZTK7dWkGj0einrt+JaPM2R3D28/KU8LGb2wMRIPz8LZTSkDYVPKkgPQVB6Hm8&#10;lhaFXxeZwDwM1QNGdoWN0Zza2LUi5JqfKa1tTfzYz1R6LkxGB1E8d/Hk0RAKf+t4FhtC/qyG6fEw&#10;csUqEpPDyBQuMft0xD5jhUJIOHu/BSlooFh2LTO/4I6SuwRHMQEm4hG8nIpg97iEnydl9EnpS5p/&#10;MYo3r6J0Vo33r2PoCIWl5DjaQmNlIU5rjQ/vpuxmDibkeTjffrkm+qCFP6UapOTOva6swAuQlKme&#10;spmJCHbSJYTslKnr4twYNnbzWJ6fuNG2z+tpfFpNYPvg1DZytg4rJjYgoLpT11rbCQdoug5YF8gV&#10;dkr7+OPoDKGOkBcZ14xc8devu/+AVamUP2BKTdm9ghfOvd/Gf3hhfpp0UP3EAAAAAElFTkSuQmCC&#10;" y="5"> </image>
</g>
<ellipse cx="-3" cy="18" fill="#add1f7" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-489,-107) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="196" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="192" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Se déplacer entre les noeuds avec les flèches</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-471,-82) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="178" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="174" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Pour éditer, commencer à taper du texte</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-545,-57) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="252" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="248" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Appuyer sur Ctrl/Meta+Enter pour ajouter un noeud enfant</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-543,-32) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="250" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="246" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Appuyer sur Enter pour ajouter un noeud de même niveau</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-449,-7) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="156" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="152" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Plus de ?. Cliquer sur les raccourcis</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(133,79) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="24" rx="3.5999999999999996" ry="3.5999999999999996" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="49" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="45" y1="18" y2="18"/>
<text fill="#444444" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Partage</tspan>
</text>
<ellipse cx="48" cy="18" fill="#edabff" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.12)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(208,55) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="79" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="75" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Inviter des amis</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(209,80) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="112" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="108" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Encapsuler dans un blog</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(209,105) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="88" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="84" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Publier votre carte</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-264,54) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="24" rx="3.5999999999999996" ry="3.5999999999999996" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="135" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="131" y1="18" y2="18"/>
<text fill="#444444" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="18" y="3">
<tspan dy="1em" x="18">Edition avec la souris</tspan>
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3,3) scale(0.12,0.12)" width="12">
<image height="90" preserveAspectRatio="none" style="cursor: pointer;" width="90" x="5" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAIMSURBVDjLpZLLaxpRFMZHCEIp/V/SfaGL&#10;/gXdZxMIpd0kgo6jINoH6iIIBd1kFRdmoZUOs4pVXDhKfJCA+AQfAz4QCQSf41tP77lwB2mTLtIL&#10;Z2Zzft/3nXMvBwDcc0uW5XfPAtPptD4ej9skSeo/2lCpVF6VSiVXPp+/zWazEnF6s+f6+pqccDis&#10;+v3+v+FyufyCwLedTgcmkwn0+33I5XIQiUR+xWKx78RVqdVqkEqlwOPxXP3prC8WizetVgvw7HY7&#10;YKdarUIoFFJJAvB6vQ9ut/vUZrO9ZKCONHwoFAodRVFgvV7DdrulAljD4RBUVYVerwc+nw9cLteR&#10;2WzWI4uRdaR+ttttGhkBjI3Nq9UKME29XofpdEpFo9EoOJ1OnqXmyKI+s8gsNiZoNptAkkG324X5&#10;fE4LBXF+h8NxrQlkMpkURmRx0WWz2cBsNqNz4zIxPqZDYWIIVqs1rgkkEon75XKpgeiyWCyoIwoj&#10;gH+EyZWCxWLZGI3Gt5pAUhTv0Q0bGMgcR6MRFWw0GiCKIgiCUCbw4f7NcbmLCxl3gO77ILqymcl1&#10;3RH47LFHx9UF86V6fg6rZJIC4/GYFo6FQoFAAMiVvX/qWXOtk5ODxtnpzezbV7o0dB4MBkDeBASD&#10;QeB5/ovBYNA9KYAf5fj4oPjp46UkCPIVb3qw2+09sukfJpPp6F+wJvA/9RsZICZTCkof6AAAAABJ&#10;RU5ErkJggg==" y="5"> </image>
</g>
<ellipse cx="-3" cy="18" fill="#d9b518" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-468,17) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="178" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="174" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Double-Clic sur un noeud : édite le texte</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-465,42) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="175" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="171" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Double-Clic sur le fond : créer un noeud </tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-431,67) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="141" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="137" y1="15" y2="15"/>
<text fill="#444444" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Déplacer la position des noeuds</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-397,92) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="21" rx="3.15" ry="3.15" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="107" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move;" x1="0" x2="103" y1="15" y2="15"/>
<text fill="rgb(82,92,97)" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Utiliser la barre d'outils</tspan>
</text>
<ellipse cx="3" cy="3" fill="rgb(224,229,239)" height="6" rx="3" ry="3" stroke="rgb(2,59,185)" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="9" preserveAspectRatio="none" transform="translate(0,3) scale(0,0.09)" width="0"/>
</g>
<ellipse cx="8" cy="8" fill="gray" height="6" rx="3" ry="3" stroke="#6589de" stroke-width="1px" style="cursor: pointer;" visibility="hidden" width="6"/>
<ellipse cx="8" cy="8" fill="gray" height="6" rx="3" ry="3" stroke="#6589de" stroke-width="1px" style="cursor: pointer;" visibility="hidden" width="6"/>
<line fill-opacity="0.3" stroke="#6589de" stroke-opacity="0.3" stroke-width="1px"/>
<line fill-opacity="0.3" stroke="#6589de" stroke-opacity="0.3" stroke-width="1px"/>
<path d="M-200,-36 C-199.66666666666666,-7.666666666665861 -199.33333333333334,20.66666666666586 -199,49" fill="#495879" fill-opacity="1" stroke="#9b74e6" stroke-dasharray="4,2" stroke-opacity="1" stroke-width="2px" style="fill: none; cursor: pointer;" visibility="visible"/>
</svg>

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 30 KiB

View File

@ -1,135 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="308.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-341.0 -151.0 527.0 308.0" width="527.0">
<path d="M0,0 C-20,0 -41,101 -61,101 -41,104 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M-132,45 C-141,45 -152,68 -161,68" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-212,29 C-221,29 -232,41 -241,41" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-212,29 C-221,29 -232,15 -241,15" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-132,45 C-141,45 -152,28 -161,28" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-20,0 -41,44 -61,44 -41,47 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C-20,0 -41,-12 -61,-12 -41,-9 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C20,0 42,44 62,44 42,47 20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C-20,0 -41,-45 -61,-45 -41,-42 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C20,0 42,12 62,12 42,15 20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C-20,0 -41,-78 -61,-78 -41,-75 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C20,0 42,-21 62,-21 42,-18 20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<path fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none " visibility="hidden"/>
<path fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none " visibility="hidden"/>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-31,-19) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(244,184,45)" fill-opacity="1" height="45" rx="6.75" ry="6.75" stroke="rgb(241,163,39)" stroke-opacity="1" stroke-width="1px" style="cursor: default; " width="67" x="-2" y="-3"/>
<rect fill="rgb(80,157,192)" height="39" rx="5.85" ry="5.85" stroke="rgb(57,113,177)" stroke-width="2px" style="cursor: default; " width="63" x="0" y="0"/>
<text fill="#ffffff" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default; " visibility="visible" x="11" y="11">
<tspan dy="1em" x="11">aaaa</tspan>
</text>
<g focusable="true" height="17" preserveAspectRatio="none" transform="translate(011) scale(00.17)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(62,-44) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,-101) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(62,-11) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,-68) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(62,21) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,-35) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,21) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="-3" cy="23" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-211,11) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17" y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-291,-2) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17" y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-291,24) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17" y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-211,51) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17" y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,78) scale(1,1)" visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23" y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

View File

@ -1,216 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" focusable="true" height="384.0"
id="workspace" preserveAspectRatio="xMinYMin" viewBox="-345.0 -130.0 690.0 260.0" width="512.0">
<path d="M0,0 C-20,0 -41,101 -61,101 -41,104 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M-132,45 C-141,45 -152,68 -161,68" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1"
stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-212,29 C-221,29 -232,41 -241,41" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1"
stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-212,29 C-221,29 -232,15 -241,15" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1"
stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M-132,45 C-141,45 -152,28 -161,28" fill="#495879" fill-opacity="1" stroke="#495879" stroke-opacity="1"
stroke-width="1px" style="fill:none " visibility="visible"/>
<path d="M0,0 C-20,0 -41,44 -61,44 -41,47 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C-20,0 -41,-12 -61,-12 -41,-9 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C20,0 42,44 62,44 42,47 20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C-20,0 -41,-45 -61,-45 -41,-42 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C20,0 42,12 62,12 42,15 20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C-20,0 -41,-78 -61,-78 -41,-75 -20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<path d="M0,0 C20,0 42,-21 62,-21 42,-18 20,5 0,7 Z" fill="#495879" fill-opacity="1" stroke="#495879"
stroke-opacity="1" stroke-width="1px" style="fill:#495879 " visibility="visible"/>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4"
stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<path fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none "
visibility="hidden"/>
<path fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" style="fill:none "
visibility="hidden"/>
<rect fill="#CC0033" fill-opacity="0.4" height="6" rx="0" ry="0" stroke="#FF9933" stroke-opacity="0.4"
stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-31,-19) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(244,184,45)" fill-opacity="1" height="45" rx="6.75" ry="6.75" stroke="rgb(241,163,39)"
stroke-opacity="1" stroke-width="1px" style="cursor: default; " width="67" x="-2" y="-3"/>
<rect fill="rgb(80,157,192)" height="39" rx="5.85" ry="5.85" stroke="rgb(57,113,177)" stroke-width="2px"
style="cursor: default; " width="63" x="0" y="0"/>
<text fill="#ffffff" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold"
style="cursor: default; " visibility="visible" x="11" y="11">
<tspan dy="1em" x="11">aaaa</tspan>
</text>
<g focusable="true" height="17" preserveAspectRatio="none" transform="translate(011) scale(00.17)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(62,-44) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,-101) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(62,-11) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,-68) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(62,21) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,-35) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,21) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="-3" cy="23" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-211,11) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997"
stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17"
y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="visible" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-291,-2) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997"
stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17"
y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-291,24) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997"
stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17"
y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-211,51) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997"
stroke="rgb(241,163,39)" stroke-opacity="0" stroke-width="1px" width="54" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="50" y1="17"
y2="17"/>
<text fill="#525c61" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="3" y="3">
<tspan dy="1em" x="3">Sub Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="11" preserveAspectRatio="none" transform="translate(03) scale(00.11)" width="0"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-131,78) scale(1,1)"
visibility="visible" width="100">
<rect fill="rgb(252,235,192)" fill-opacity="0" height="29" rx="4.35" ry="4.35" stroke="rgb(241,163,39)"
stroke-opacity="0" stroke-width="1px" width="74" x="-2" y="-3"/>
<line stroke="#495879" stroke-opacity="1" stroke-width="1px" style="cursor: move; " x1="0" x2="70" y1="23"
y2="23"/>
<text fill="#525c61" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
style="cursor: move; " visibility="visible" x="4" y="4">
<tspan dy="1em" x="4">Main Topic</tspan>
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px"
style="cursor: default; " visibility="hidden" width="6"/>
<g focusable="true" height="15" preserveAspectRatio="none" transform="translate(04) scale(00.15)" width="0"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

View File

@ -1,419 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" focusable="true" id="workspace" width="1600" height="508" viewBox="-806.4 -256.032 1612.8 512.064"
preserveAspectRatio="none">
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-492,161.5 -599.5,160.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-348,150 -358,150 -358,156.5 -363,161.5 -491,161.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-348,150 -358,150 -358,139.5 -363,134.5 -489.5,134.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="-257" y2="150" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,-50 -264,-50 -264,23.5 -269,28.5 -325,28.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-404,13.5 -414,13.5 -414,19.5 -419,24.5 -465.5,24.5" visibility="hidden"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-404,13.5 -414,13.5 -414,6.5 -419,1.5 -513,1.5" visibility="hidden"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-324.5,0.5 -334.5,0.5 -334.5,8.5 -339.5,13.5 -403,13.5" visibility="hidden"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,-50 -264,-50 -264,-4.5 -269,0.5 -323.5,0.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,-50 -264,-50 -264,-32.5 -269,-27.5 -333,-27.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-348.5,-90.5 -358.5,-90.5 -358.5,-59.5 -363.5,-54.5 -429,-54.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-348.5,-90.5 -358.5,-90.5 -358.5,-83.5 -363.5,-78.5 -399,-78.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-348.5,-90.5 -358.5,-90.5 -358.5,-97.5 -363.5,-102.5 -407.5,-102.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-348.5,-90.5 -358.5,-90.5 -358.5,-121.5 -363.5,-126.5 -431,-126.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,-50 -264,-50 -264,-85.5 -269,-90.5 -347.5,-90.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="-187" y2="-50" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="165,0 175,0 175,96.5 180,101.5 234,101.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="227,23.5 237,23.5 237,68.5 242,73.5 278.5,73.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="227,23.5 237,23.5 237,44.5 242,49.5 330.5,49.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="299,-0.5 309,-0.5 309,17.5 314,22.5 360,22.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="299,-0.5 366.5,-0.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="299,-0.5 309,-0.5 309,-19.5 314,-24.5 372,-24.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="227,23.5 237,23.5 237,4.5 242,-0.5 298,-0.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="165,0 175,0 175,18.5 180,23.5 226,23.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="165,0 175,0 175,-49.5 180,-54.5 338.5,-54.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="165,0 175,0 175,-73.5 180,-78.5 282.5,-78.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="165,0 175,0 175,-97.5 180,-102.5 310.5,-102.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="108" y2="0" x1="0" y1="0" visibility="visible"/>
<rect width="50" height="10" x="5" y="5" stroke-width="1px" stroke="#FF9933" fill="#CC0033" stroke-opacity="0.4"
fill-opacity="0.4" visibility="hidden"/>
<polyline fill="none" stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4"
visibility="hidden"/>
<line stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4" visibility="hidden"/>
<rect width="50" height="10" x="5" y="5" stroke-width="1px" stroke="#FF9933" fill="#CC0033" stroke-opacity="0.4"
fill-opacity="0.4" visibility="hidden"/>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(184, -119) scale(1)"
visibility="visible">
<rect width="131" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="128"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="20" visibility="visible">Aval de la Municipalidad
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/thumb_up.png" width="12" height="12" y="0" x="2"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(184, -95) scale(1)"
visibility="visible">
<rect width="103" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="100"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Es bueno ser parte ?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(184, -71) scale(1)"
visibility="visible">
<rect width="159" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="156"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Empresario Argentino pone plata ?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(318, -41) scale(1)"
visibility="visible">
<rect width="58" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="55"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Medianas
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(318, -17) scale(1)"
visibility="visible">
<rect width="53" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="50"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Grandes
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(318, 6) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Chicas
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(246, -17) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="55" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Tama??o
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(246, 33) scale(1)"
visibility="visible">
<rect width="89" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="86"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Precio Razonable
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(246, 57) scale(1)"
visibility="visible">
<rect width="37" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="34"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Tipo
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(184, 7) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="45" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Target
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(184, 85) scale(1)"
visibility="visible">
<rect width="54" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="51"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Mercado
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(106, -11) scale(1)"
visibility="visible">
<rect width="62" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="58" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#023BB9" fill="#E0E5EF"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="8" visibility="visible">Dudas?
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="61" cy="11" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-431, -143) scale(1)"
visibility="visible">
<rect width="68" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="65"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Pagina Web
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-408, -119) scale(1)"
visibility="visible">
<rect width="45" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="42"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">SETI ?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-399, -95) scale(1)"
visibility="visible">
<rect width="36" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="33"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Mail
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-429, -71) scale(1)"
visibility="visible">
<rect width="66" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="63"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Networking
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-348, -107) scale(1)"
visibility="visible">
<rect width="79" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="76"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Infraestructura
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-333, -44) scale(1)"
visibility="visible">
<rect width="64" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="61"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Innovacion
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-513, -15) scale(1)"
visibility="hidden">
<rect width="94" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="91"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="hidden">Balance de Sueldo
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-466, 8) scale(1)"
visibility="hidden">
<rect width="47" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="44"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="hidden">Sueldo
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-403, -3) scale(1)"
visibility="hidden">
<rect width="64" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="61"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="hidden">Contaduria
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-324, -16) scale(1)"
visibility="visible">
<rect width="55" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="2px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="52"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Servicios
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-325, 12) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Sistemas
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-253, -61) scale(1)"
visibility="visible">
<rect width="72" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="68" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#023BB9" fill="#E0E5EF"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="8" visibility="visible">Servicios
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="11" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-490, 118) scale(1)"
visibility="visible">
<rect width="127" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="124"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Acesoramiento de Internet
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-600, 144) scale(1)"
visibility="visible">
<rect width="93" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="90"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="20" visibility="visible">Es tan fuerte ?
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/world_link.png" width="12" height="12" y="0" x="2"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-491, 145) scale(1)"
visibility="visible">
<rect width="128" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="125"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="32" visibility="visible">Web Lista (Gratuita)
</text>
<g preserveAspectRatio="none" focusable="true" width="26" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/money.png" width="12" height="12" y="0" x="2"/>
<image href="../icons/legacy/note.png" width="12" height="12" y="0" x="14"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-347, 139) scale(1)"
visibility="visible">
<rect width="96" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="92" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#023BB9" fill="#E0E5EF"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="8" visibility="visible">Municipalidad
</text>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="11" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-43, -17) scale(1)"
visibility="visible">
<rect width="91" height="41" rx="6.1499999999999995" ry="6.1499999999999995" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#c7d8ff" stroke-opacity="1" fill-opacity="1" style="cursor: default;"/>
<rect width="87" height="35" rx="5.25" ry="5.25" x="0" y="0" stroke-width="0.5px" fill="#f7f7f7"
stroke="#023BB9" style="cursor: default;"/>
<text focusable="true" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold"
fill="#023BB9" style="cursor: default;" y="19" x="18" visibility="visible">Ezeiza
</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 203 KiB

View File

@ -1,281 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="464.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-696.0 -246.0 1220.0 464.0" width="1220.0">
<polyline fill="none" points="306,51.5 316,51.5 316,69.5 321,74.5 353.5,74.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="306,51.5 361.5,50.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="306,51.5 316,51.5 316,31.5 321,26.5 377,26.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="244.5,-50 254.5,-50 254.5,46.5 259.5,51.5 305,51.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="306,-26.5 316,-26.5 316,-7.5 321,-2.5 353.5,-2.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="306,-26.5 361.5,-26.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="306,-26.5 316,-26.5 316,-45.5 321,-50.5 377,-50.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="244.5,-50 254.5,-50 254.5,-31.5 259.5,-26.5 305,-26.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="318,-92.5 328,-92.5 328,-85.5 333,-80.5 395,-80.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="318,-92.5 328,-92.5 328,-99.5 333,-104.5 469.5,-104.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="244.5,-50 254.5,-50 254.5,-87.5 259.5,-92.5 317,-92.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="244.5,-50 254.5,-50 254.5,-126.5 259.5,-131.5 331.5,-131.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="244.5,-50 254.5,-50 254.5,-150.5 259.5,-155.5 305.5,-155.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="244.5,-50 254.5,-50 254.5,-174.5 259.5,-179.5 359,-179.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="166.5" y1="0" y2="-50"/>
<polyline fill="none" points="323.5,150 333.5,150 333.5,156.5 338.5,161.5 394,161.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="323.5,150 333.5,150 333.5,142.5 338.5,137.5 438.5,137.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="219.5" y1="0" y2="150"/>
<polyline fill="none" points="-479.5,-23.5 -646,-23.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-369.5,-50 -379.5,-50 -379.5,-28.5 -384.5,-23.5 -478.5,-23.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-467,-53.5 -616.5,-53.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-369.5,-50 -379.5,-50 -379.5,-48.5 -384.5,-53.5 -466,-53.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-369.5,-50 -379.5,-50 -379.5,-75.5 -384.5,-80.5 -480.5,-80.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="-249.5" y1="0" y2="-50"/>
<polyline fill="none" points="-254,49.5 -264,49.5 -264,82.5 -269,87.5 -337,87.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-488.5,60.5 -549.5,59.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-254,49.5 -264,49.5 -264,55.5 -269,60.5 -487.5,60.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-254,49.5 -264,49.5 -264,38.5 -269,33.5 -315,33.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-254,49.5 -264,49.5 -264,14.5 -269,9.5 -401,9.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-186.5,50 -253,49.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="-134.5" y1="0" y2="50"/>
<rect fill="#CC0033" fill-opacity="0.4" height="10" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<polyline fill="none" fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" visibility="hidden"/>
<line fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" visibility="hidden"/>
<rect fill="#CC0033" fill-opacity="0.4" height="10" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-401, -7) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="132" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="129" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Accesible desde todos lados
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-315, 17) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="46" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="43" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Mobile
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-550, 43) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="47" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="44" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">widget
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-488, 44) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="219" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="216" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Posibilidad de acceso desde la
pagina insitucional
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-337, 71) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="68" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="65" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Pay per use
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-253, 33) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="52" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="49" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">porque?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-186, 39) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="57" x="-2" y="-3"/>
<rect fill="#a6ffc2" height="22" rx="3.3" ry="3.3" stroke="#33a36f" stroke-width="0.5px" style="cursor: move;" width="53" x="0" y="0"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">web
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKgSURBVDjLlZLrS1NxGMd90ZvovdEfEBEU&#10;EhZIb0xMjdyLIuyGkiHGUFKydFKKJiRegjIyFJRwojMxzfJSaVOYeTfxtpSNuZ1tXnY2z27nsss5&#10;334uWloG9uLD7/A7z/fzPPx4IgBE7ISl3qWyelUvu9JIueZqeOdUmcCMFDgcQ3fntjSK0j/rwx+c&#10;sesIZ3jbL1j6EbCPIej5DpE3QRIoBJ3LEFb74BjIxkbXVYNdrTixS8Ca3h/y6pSTfloD0UcRjCS8&#10;BJGbRdA7QRgjd1pIfhruyeewKOMdm+rCw2GBV1tXKZh7SIEVoqAjpwVS0AlIvhBSkCGyeQRcPYDo&#10;gO1DNixvrveFBa6ZCkuAmSe1OtJpFVLATkJboWCIAE3+GYngI6ENgnUK+hcxfFiw9fWRT+RWEWTH&#10;EeRmyPhaMvYCgu5ZEpgkbzCCgPszBNsr8NY8iF4Ky5WnpLDArs41+zYnSPdF8OYi0qEcTHc6mF45&#10;mJ4M2Ftl4C1lYPU34KerwFNTWKmO/j2BfbiwghmvJuPawZsUsNVHgTPlEx6ANcjJeR9r5QfhWUqE&#10;JOlhbc+FoV42FBY4R0sPbPbKlz2LLeQB9aCbYkJhzpIFlkoDZ8zDRk0kRHYYrm8d0JYeEyyduUd3&#10;7QH9pTBqvSOV9iy0wtmZ+VNAOm+HOeM92JtlYDQN0JYcD1BtmTf/WqRtbJ/yTxtUt9fXGhPBq5Mh&#10;riVBtMYhoLkMQ1Ek5sqi3eb2O4l7buIvhlRPkmsfZ/ibax+iruosnpacQUFOOq7Fn5TUypJz/1zl&#10;nRQr5JSypRVKZRvq6htR/ewlriTH03vV7ilQ5NwaHRgchM1GY3p6Bq+bmpEii9XtWzCgqkhLuXSB&#10;TUg4L8XFxUoXk2K57obirH0L/ocfNQ8V8wE+uE0AAAAASUVORK5CYII=" y="0"> </image>
</g>
<ellipse cx="-3" cy="11" fill="#a6ffc2" height="6" rx="3" ry="3" stroke="#33a36f" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-481, -97) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="97" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="94" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Cobrar por calculo?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-617, -70) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="135" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="132" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">No lo usan por varios meses
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-466, -70) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="82" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="79" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">costo mensual?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-646, -40) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="152" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="149" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">vender el servicio no el software
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-479, -40) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="95" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="92" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">cobro por servicio?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-369, -61) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="125" x="-2" y="-3"/>
<rect fill="#7096ff" height="22" rx="3.3" ry="3.3" stroke="#385b80" stroke-width="0.5px" style="cursor: move;" width="121" x="0" y="0"/>
<text fill="#ffffff" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">Plan de Negocio
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ0SURBVDjLlZPdT9JRGMe5qFu2Lrt1a63L&#10;Wv9ATRdN5xvLsnLRipzZpIVpigjyIs3XAOUHgopoWkggP5QXSRJwJQmtm/IlAWtt3XXTfubS+nZ+&#10;P1eby6ldPGdn5+zzfb7Pc57DA8DbL9rjrYxuVsXf7W5fuC2mYawpE7QRJZpDDfz/EngYVTN9qR4E&#10;PvlgXjCiKVCPWvou/0ACxDJjSbIwDefqMPxrEzC87IDUW4Pq8Vv8PQVaX7Qw5qQRgY9ePP0wDMeS&#10;FfWTUkxmPeiI61DlFOP6SAV/VwFtRMFQCwb4CdwW10IbVcK+aMHgohmPlwdBZ11oCctx1X5p/R8B&#10;9Uzzuum1ntj1Iv1tGRtb3zH2dgSa2eZtOOOCMizD5cGyzR0lGBNdx1TP5T96E4+4WttiWg6mYr3I&#10;fk1DF1PBmxmHYlrGZkbFUDku2oSHOAFjolOuIpZ65rs5+MmKg9hWcJlZWB1UbsOhRjYz5r/MoSn4&#10;AKWWQg0nwFoyzndhijRobGWIq3XgPQU1sa2LqjCRHoc81IBK9w0OnvscRWQtBGFfEc4b8o7wNDMK&#10;OwnY3lDwZZ+h1idB/zsThpf6CezkstVN3yNwHFMrNGqCVRvlA2UQ6POkud1nTvE0EcVR1gU7JNSC&#10;nrPrWLRtw+RM7BKBXnJDP9eOYqogVNAj0Av0uTk7mtjov2+1p2yQ0hIYXnXCs+qEzF+HC9YSyIiI&#10;sK84XWTKP5tvPHdi11GupSXHW8JNW+FMAHdclSCCKDEX/iKdDgotRY17jTu31LhvHybT5RGPin5K&#10;3NWs1c0yW+lp0umc/T7b383NUdHJa44rSfJU+Qf54n/iNzi8zBtL0z1zAAAAAElFTkSuQmCC" y="0"> </image>
</g>
<ellipse cx="-3" cy="11" fill="#7096ff" height="6" rx="3" ry="3" stroke="#385b80" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(342, 121) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="101" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="98" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="32" y="9">ascTimeTable
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3, 3) scale(1)" width="26">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJvSURBVDjLpZPrS5NhGIf9W7YvBYOkhlko&#10;qCklWChv2WyKik7blnNris72bi6dus0DLZ0TDxW1odtopDs4D8MDZuLU0kXq61CijSIIasOvv94V&#10;TUfLiB74fXngup7nvrnvJABJ/5PfLnTTdcwOj4RsdYmo5glBWP6iOtzwvIKSWstI0Wgx80SBblpK&#10;tE9KQs/We7EaWoT/8wbWP61gMmCH0lMDvokT4j25TiQU/ITFkek9Ow6+7WH2gwsmahCPdwyw75uw&#10;9HEO2gUZSkfyI9zBPCJOoJ2SMmg46N61YO/rNoa39Xi41oFuXysMfh36/Fp0b7bAfWAH6RGi0Hgl&#10;WNCbzYgJaFjRv6zGuy+b9It96N3SQvNKiV9HvSaDfFEIxXItnPs23BzJQd6DDEVM0OKsoVwBG/1V&#10;MzpXVWhbkUM2K4oJBDYuGmbKIJ0qxsAbHfRLzbjcnUbFBIpx/qH3vQv9b3U03IQ/HfFkERTzfFj8&#10;w8jSpR7GBE123uFEYAzaDRIqX/2JAtJbDat/COkd7CNBva2cMvq0MGxp0PRSCPF8BXjWG3FgNHc9&#10;XPT71Ojy3sMFdfJRCeKxEsVtKwFHwALZfCUk3tIfNR8XiJwc1LmL4dg141JPKtj3WUdNFJqLGFVP&#10;C4OkR4BxajTWsChY64wmCnMxsWPCHcutKBxMVp5mxA1S+aMComToaqTRUQknLTH62kHOVEE+VQnj&#10;ahscNCy0cMBWsSI0TCQcZc5ALkEYckL5A5noWSBhfm2AecMAjbcRWV0pUTh0HE64TNf0mczcnnQy&#10;u/MilaFJCae1nw2fbz1DnVOxyGTlKeZft/Ff8x1BRssfACjTwQAAAABJRU5ErkJggg==" y="0"> </image>
<image height="12" width="12" x="14" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAANPSURBVBgZBcHdT1tlAMDh3zltORT6Ob4m&#10;tWDGMpgiU8LcEooJyiaEGbNkCkaNCVfeGP4Dr7zBG42J3hiVZInTeTMvFAPBYRhmGDBjEYaAMhht&#10;VzraUjin5+M95/V5FCklAAAA4wtjfcCHwHmgAfADh8Ci9OSXn/d9+ysAAIAipQRgfGHMD0wC115P&#10;DmjxYANloxbDBuGaCHLMZqeEK9wZIdy3vh76/hhAkVIyvjAWAG731D/XeznZT9nUsLDZKitUSY0D&#10;w0MKmyAGWWuepczSfeGIl79789ahCgBMdted6U0191BwbRxVQQiViqjCoIqCpbFvBtk7DNASeome&#10;k+1dtuXcAPAVL+2mgE/eOXPF97erk6VCxRMcmyEKVoCyCZvpIw51HS1+gBLd5GJ9B7Nrf566vji5&#10;4rsw9uKnrzVf6FR8QbKqANnIU26I5ZyPiqmylj7Gqy6itf6DFdkk7xXxF10665Lq8sP1E37gfDKS&#10;4J6RIV+t8qyvDQ/Bzr6NaVaInpSUT0yz5ZXAksSExmbeYuCZbhxLPO8H6mr8tewYGfYtg3DNKUp2&#10;mGLRI9pg0hg3yLsvULZW0OQRR08OKJRqCAXDOLaI+aWUiiLBtspIkvgDLlN3HZRgiOyWQJURmhsq&#10;hI/6KKcdTJZw7G2QEiGE4neFVyjb5USdL0a4+hw7aQ9lZ502nvB0Yx3rd7LcpwNHFZzzVuloaSOT&#10;q2Zx/gGeJct+4Yi/HhZ2E6drksyk59H/OKY7mGBk5D10Xadtbw///CK6A++PXqO6KkA2m2V5eZlo&#10;Nm75ukbOHqzub789fDql3p6ZJb4f4sobV/nos6+4deM629v/0daSwDrM89vsLDd/vEnRyNLfd4ni&#10;bimgfjP8w7RtOb9Mr/1O+CBINBwFIHZxCMO0GB0dJZVKMTQ0xODgIKZVwdduAhCLxlQ/gGM5785t&#10;3rtTT6SLfA4A4+5PKNJjYmKC2tpaAHRdR3qwMvXIGP6AmnQ6bSpSSgAGv3glbKTNnyP/xlOv9g4o&#10;iUSSgOojl8uxsbGBpmm0trbS1NSEI5zS3qM95ubmHitSSgAA2tvbfY399eOhx5GPmxubq7UqTVFQ&#10;eKCsllyfu90pus4qKFiW5WYymbyu61f/B/q4pKqmYKY6AAAAAElFTkSuQmCC" y="0"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(342, 145) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="56" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="53" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="20" y="9">lantiv
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3, 3) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAANPSURBVBgZBcHdT1tlAMDh3zltORT6Ob4m&#10;tWDGMpgiU8LcEooJyiaEGbNkCkaNCVfeGP4Dr7zBG42J3hiVZInTeTMvFAPBYRhmGDBjEYaAMhht&#10;VzraUjin5+M95/V5FCklAAAA4wtjfcCHwHmgAfADh8Ci9OSXn/d9+ysAAIAipQRgfGHMD0wC115P&#10;DmjxYANloxbDBuGaCHLMZqeEK9wZIdy3vh76/hhAkVIyvjAWAG731D/XeznZT9nUsLDZKitUSY0D&#10;w0MKmyAGWWuepczSfeGIl79789ahCgBMdted6U0191BwbRxVQQiViqjCoIqCpbFvBtk7DNASeome&#10;k+1dtuXcAPAVL+2mgE/eOXPF97erk6VCxRMcmyEKVoCyCZvpIw51HS1+gBLd5GJ9B7Nrf566vji5&#10;4rsw9uKnrzVf6FR8QbKqANnIU26I5ZyPiqmylj7Gqy6itf6DFdkk7xXxF10665Lq8sP1E37gfDKS&#10;4J6RIV+t8qyvDQ/Bzr6NaVaInpSUT0yz5ZXAksSExmbeYuCZbhxLPO8H6mr8tewYGfYtg3DNKUp2&#10;mGLRI9pg0hg3yLsvULZW0OQRR08OKJRqCAXDOLaI+aWUiiLBtspIkvgDLlN3HZRgiOyWQJURmhsq&#10;hI/6KKcdTJZw7G2QEiGE4neFVyjb5USdL0a4+hw7aQ9lZ502nvB0Yx3rd7LcpwNHFZzzVuloaSOT&#10;q2Zx/gGeJct+4Yi/HhZ2E6drksyk59H/OKY7mGBk5D10Xadtbw///CK6A++PXqO6KkA2m2V5eZlo&#10;Nm75ukbOHqzub789fDql3p6ZJb4f4sobV/nos6+4deM629v/0daSwDrM89vsLDd/vEnRyNLfd4ni&#10;bimgfjP8w7RtOb9Mr/1O+CBINBwFIHZxCMO0GB0dJZVKMTQ0xODgIKZVwdduAhCLxlQ/gGM5785t&#10;3rtTT6SLfA4A4+5PKNJjYmKC2tpaAHRdR3qwMvXIGP6AmnQ6bSpSSgAGv3glbKTNnyP/xlOv9g4o&#10;iUSSgOojl8uxsbGBpmm0trbS1NSEI5zS3qM95ubmHitSSgAA2tvbfY399eOhx5GPmxubq7UqTVFQ&#10;eKCsllyfu90pus4qKFiW5WYymbyu61f/B/q4pKqmYKY6AAAAAElFTkSuQmCC" y="0"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(218, 139) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="109" x="-2" y="-3"/>
<rect fill="#d94e4e" height="22" rx="3.3" ry="3.3" stroke="#806238" stroke-width="0.5px" style="cursor: move;" width="105" x="0" y="0"/>
<text fill="#ffffff" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">Competencia
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJYSURBVDjLY/j//z8DJRhMmJQd+x89/W4I&#10;RQbY1x5L8590dzmy5PuIqC4gfvA+PPIyEMfhNqD06H+L9gfG9p33/jr23OMEiX30DTj8yT/oFxCf&#10;+hAYfBeIfwPxIyBWwjSg5Mh/tYZHzDr1D34aND7Y9tXOsf2Lg/O/z85uNjCFn908lT56eH985xXw&#10;zXvygwYUA4yLD/9Xcm+QlS572JWesP7XVyOL79/MLKci22Rc/6DXvPH+X8um+79t2u7/tOu4/w9u&#10;gFHxof8wha+1LP89NHT9iaxZIf/BCpWie7/Vi+/N/25kqvrN2Oz/suiO6QgDig6ADfgtJrX0p6TM&#10;b1u/Xd+5Eh9M4k16yCyQdH+HYOK9H6JJd+tgBv7U0j3wXVvvA9wAg8J9/6sNAvT/8gr++8Mn1MYQ&#10;8aCFIfzBf6bwB3+Zwx/8Ywu7H44e+j8VVX4hDMjf+/8/I6v/fya2OyghHHCn3GuRw3TvJTZnPJdY&#10;nXVbbA436Le49Aa4Afp5u///ZGAJ+c3AIg5T4DXT0stjpuULj1nmD9xmW6x1nWu2z2W+6RenBcbx&#10;IHmga6XgBujl7vw/R1TDAabZscNommOn0UeHLsNFDj2GPDBxh37DDrtJ+u8x0oFu9vb/liU6khal&#10;2jPNS3UfAem3FmU6Gej+tqjX5rBo0rln1qI9GdWArG3/jTI0/Q0z1N3UAyxdgTQ4NQpreMjCFAqp&#10;OoHZRvnqUhpROhmmxRo8cAO0M7f8187Y/F8rYxMQb/yvlbYBiNf/1wTh1HX/NUA4ZS0Ur/mvkbwa&#10;jOEGUIIBf5BxjDvwFIUAAAAASUVORK5CYII=" y="0"> </image>
</g>
<ellipse cx="108" cy="11" fill="#d94e4e" height="6" rx="3" ry="3" stroke="#806238" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(263, -196) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="100" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="97" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">embeddable widget
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(263, -172) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="47" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="44" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">mobile
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(263, -148) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="73" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="70" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Very intuitive
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(337, -121) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="137" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="134" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">ability to create custom rules
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(337, -97) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="62" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="59" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Distribuido
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(263, -109) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="58" x="-2" y="-3"/>
<ellipse cx="57" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="55" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Algorithm
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(325, -67) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="56" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="53" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">clipboard
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(325, -43) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="41" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="38" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">excel
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(325, -19) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="33" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="30" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">csv
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(263, -43) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="46" x="-2" y="-3"/>
<ellipse cx="45" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="43" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">import
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(325, 10) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="56" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="53" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">clipboard
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(325, 34) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="41" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="38" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">excel
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(325, 58) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="33" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="30" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">csv
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(263, 35) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="46" x="-2" y="-3"/>
<ellipse cx="45" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="43" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">export
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(165, -61) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="83" x="-2" y="-3"/>
<rect fill="#d9ff70" height="22" rx="3.3" ry="3.3" stroke="#6c8038" stroke-width="0.5px" style="cursor: move;" width="79" x="0" y="0"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">Features
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ+SURBVBgZlcFLSBRhAAfw/858s860aygi&#10;ptIp9NChoDzkxYNUYIcO0TUIOghFUNElvEad6lBkdEqCIugi3QQfLR2yQumBaPh+7Li7o/uanfme&#10;s1972IOEQv5+Ma01DuPRh+U+StlEhSsZUnElprXGQd6kdomUsoOJaiflojXk4mIM+pZjaXCp8Gsl&#10;TwkOMDLlOVyoCamiXhkpVCOJRDyGpG2CCYlsgSPvh4TgACGVt21L97Y0meBCg0kNyiW28wHiJrC8&#10;VYAo0wsE+3g1vtRdquYeHyXHUfAldkohKJcIuUSjbWI5XYKXLQ5/fnk1RbDHyJTnSKHeCbF6SbVM&#10;GCteH5pxAk7cQLbAQZmAGbOQccuQZTqGGoK615M5woX6aRPdZTkn4a+7kehMmdOzMmptaDOTNkEu&#10;zxE3gaAcQITMQ42BugpVHUzIrqRjwCJVOA3nzPLvMzKScujPxnK04RbRdIQgYBxhIYSs0DRqDNSF&#10;nHUKIUG5xKZXQTweg5Potmyde9hz/quZ9RbgukWsLWQQlvxFFQkXNQbqKgFvDRhHyCRCKrC27cOx&#10;YmhrPksyP5rQMzAPd3FJZVdzoyrip+cn7yvUENSVQnajvclCSAUqlIMyCa8oYVsmoPsxM/pJRVVx&#10;am7ywTz2IKi5+WLmXqNjXI4TA5lCgIRtwjI1GqwYhJBY39hFLt0+NPtxcB7/IIPPvt9N2MaTRNwA&#10;ZQKWqbGeLmFnxwf1GZhPwXz+RXH2HPsgPuVP25qT0DrCZtbHpltEwQuGlRBjEedexFVaCenOjd9R&#10;2Acp+RQb2xFMaKS3iiju+v3Tb69N4T8RGtBjK/lSRoWKKsYGvr2/nsIh/AUG0IfiieuuUQAAAABJ&#10;RU5ErkJggg==" y="0"> </image>
</g>
<ellipse cx="82" cy="11" fill="#d9ff70" height="6" rx="3" ry="3" stroke="#6c8038" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-55, -17) scale(1)" visibility="visible" width="100">
<rect fill="#c7d8ff" fill-opacity="1" height="41" rx="6.1499999999999995" ry="6.1499999999999995" stroke="#77555a" stroke-opacity="1" stroke-width="1px" style="cursor: default;" width="114" x="-2" y="-3"/>
<rect fill="#f7f7f7" height="35" rx="5.25" ry="5.25" stroke="#023BB9" stroke-width="0.5px" style="cursor: default;" width="110" x="0" y="0"/>
<text fill="#023BB9" focusable="true" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default;" visibility="visible" x="18" y="19">timetable
</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

View File

@ -1,470 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" focusable="true" id="workspace" width="1600" height="307"
viewBox="-560 -107.44999999999999 1120 214.89999999999998" preserveAspectRatio="none">
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="306,51.5 316,51.5 316,69.5 321,74.5 353.5,74.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="306,51.5 361.5,50.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="306,51.5 316,51.5 316,31.5 321,26.5 377,26.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="244.5,-50 254.5,-50 254.5,46.5 259.5,51.5 305,51.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="306,-26.5 316,-26.5 316,-7.5 321,-2.5 353.5,-2.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="306,-26.5 361.5,-26.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="306,-26.5 316,-26.5 316,-45.5 321,-50.5 377,-50.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="244.5,-50 254.5,-50 254.5,-31.5 259.5,-26.5 305,-26.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="318,-92.5 328,-92.5 328,-85.5 333,-80.5 395,-80.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="318,-92.5 328,-92.5 328,-99.5 333,-104.5 469.5,-104.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="244.5,-50 254.5,-50 254.5,-87.5 259.5,-92.5 317,-92.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="244.5,-50 254.5,-50 254.5,-126.5 259.5,-131.5 331.5,-131.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="244.5,-50 254.5,-50 254.5,-150.5 259.5,-155.5 305.5,-155.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="244.5,-50 254.5,-50 254.5,-174.5 259.5,-179.5 359,-179.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="166.5" y2="-50" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="323.5,150 333.5,150 333.5,156.5 338.5,161.5 394,161.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="323.5,150 333.5,150 333.5,142.5 338.5,137.5 438.5,137.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="219.5" y2="150" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-479.5,-23.5 -646,-23.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-369.5,-50 -379.5,-50 -379.5,-28.5 -384.5,-23.5 -478.5,-23.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-467,-53.5 -616.5,-53.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-369.5,-50 -379.5,-50 -379.5,-48.5 -384.5,-53.5 -466,-53.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-369.5,-50 -379.5,-50 -379.5,-75.5 -384.5,-80.5 -480.5,-80.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="-249.5" y2="-50" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,49.5 -264,49.5 -264,82.5 -269,87.5 -337,87.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-488.5,60.5 -549.5,59.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,49.5 -264,49.5 -264,55.5 -269,60.5 -487.5,60.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,49.5 -264,49.5 -264,38.5 -269,33.5 -315,33.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-254,49.5 -264,49.5 -264,14.5 -269,9.5 -401,9.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-186.5,50 -253,49.5"
visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="-134.5" y2="50" x1="0" y1="0" visibility="visible"/>
<rect width="50" height="10" x="5" y="5" stroke-width="1px" stroke="#FF9933" fill="#CC0033" stroke-opacity="0.4"
fill-opacity="0.4" visibility="hidden"/>
<polyline fill="none" stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4"
visibility="hidden"/>
<line stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4" visibility="hidden"/>
<rect width="50" height="10" x="5" y="5" stroke-width="1px" stroke="#FF9933" fill="#CC0033" stroke-opacity="0.4"
fill-opacity="0.4" visibility="hidden"/>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-401, -7) scale(1)"
visibility="visible">
<rect width="132" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="129"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Accesible desde todos lados
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-315, 17) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Mobile
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-550, 43) scale(1)"
visibility="visible">
<rect width="47" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="44"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">widget
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-488, 44) scale(1)"
visibility="visible">
<rect width="219" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="216"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Posibilidad de acceso desde la
pagina insitucional
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-337, 71) scale(1)"
visibility="visible">
<rect width="68" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="65"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Pay per use
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-253, 33) scale(1)"
visibility="visible">
<rect width="52" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="49"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">porque?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-186, 39) scale(1)"
visibility="visible">
<rect width="57" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="53" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#33a36f" fill="#a6ffc2"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="22" visibility="visible">web
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/lightbulb.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="11" stroke-width="1px" fill="#a6ffc2"
style="cursor: default;" visibility="visible" stroke="#33a36f"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-481, -97) scale(1)"
visibility="visible">
<rect width="97" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="94"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Cobrar por calculo?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-617, -70) scale(1)"
visibility="visible">
<rect width="135" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="132"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">No lo usan por varios meses
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-466, -70) scale(1)"
visibility="visible">
<rect width="82" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="79"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">costo mensual?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-646, -40) scale(1)"
visibility="visible">
<rect width="152" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="149"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">vender el servicio no el software
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-479, -40) scale(1)"
visibility="visible">
<rect width="95" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="92"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">cobro por servicio?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-369, -61) scale(1)"
visibility="visible">
<rect width="125" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="121" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#385b80" fill="#7096ff"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#ffffff" style="cursor: move;" y="12" x="22" visibility="visible">Plan de Negocio
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/money.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="11" stroke-width="1px" fill="#7096ff"
style="cursor: default;" visibility="visible" stroke="#385b80"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(342, 121) scale(1)"
visibility="visible">
<rect width="101" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="98"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="32" visibility="visible">ascTimeTable
</text>
<g preserveAspectRatio="none" focusable="true" width="26" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/add.png" width="12" height="12" y="0" x="2"/>
<image href="../icons/legacy/world_link.png" width="12" height="12" y="0" x="14"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(342, 145) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="20" visibility="visible">lantiv
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/world_link.png" width="12" height="12" y="0" x="2"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(218, 139) scale(1)"
visibility="visible">
<rect width="109" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="105" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#806238" fill="#d94e4e"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#ffffff" style="cursor: move;" y="12" x="22" visibility="visible">Competencia
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/chart_curve.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="108" cy="11" stroke-width="1px" fill="#d94e4e"
style="cursor: default;" visibility="visible" stroke="#806238"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(263, -196) scale(1)"
visibility="visible">
<rect width="100" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="97"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">embeddable widget
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(263, -172) scale(1)"
visibility="visible">
<rect width="47" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="44"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">mobile
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(263, -148) scale(1)"
visibility="visible">
<rect width="73" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="70"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Very intuitive
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(337, -121) scale(1)"
visibility="visible">
<rect width="137" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="134"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">ability to create custom rules
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(337, -97) scale(1)"
visibility="visible">
<rect width="62" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="59"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Distribuido
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(263, -109) scale(1)"
visibility="visible">
<rect width="58" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="57" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="55"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Algorithm
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(325, -67) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">clipboard
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(325, -43) scale(1)"
visibility="visible">
<rect width="41" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="38"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">excel
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(325, -19) scale(1)"
visibility="visible">
<rect width="33" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="30"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">csv
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(263, -43) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="45" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">import
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(325, 10) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">clipboard
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(325, 34) scale(1)"
visibility="visible">
<rect width="41" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="38"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">excel
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(325, 58) scale(1)"
visibility="visible">
<rect width="33" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="30"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">csv
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(263, 35) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="45" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">export
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(165, -61) scale(1)"
visibility="visible">
<rect width="83" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="79" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#6c8038" fill="#d9ff70"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="22" visibility="visible">Features
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/connect.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="82" cy="11" stroke-width="1px" fill="#d9ff70"
style="cursor: default;" visibility="visible" stroke="#6c8038"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-55, -17) scale(1)"
visibility="visible">
<rect width="114" height="41" rx="6.1499999999999995" ry="6.1499999999999995" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#c7d8ff" stroke-opacity="1" fill-opacity="1" style="cursor: default;"/>
<rect width="110" height="35" rx="5.25" ry="5.25" x="0" y="0" stroke-width="0.5px" fill="#f7f7f7"
stroke="#023BB9" style="cursor: default;"/>
<text focusable="true" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold"
fill="#023BB9" style="cursor: default;" y="19" x="18" visibility="visible">timetable
</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 35 KiB

View File

@ -1,281 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="464.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-731.0 -246.0 1269.0 464.0" width="1269.0">
<polyline fill="none" points="320,51.5 330,51.5 330,69.5 335,74.5 367.5,74.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="320,51.5 375.5,50.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="320,51.5 330,51.5 330,31.5 335,26.5 391,26.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="258.5,-50 268.5,-50 268.5,46.5 273.5,51.5 319,51.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="320,-26.5 330,-26.5 330,-7.5 335,-2.5 367.5,-2.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="320,-26.5 375.5,-26.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="320,-26.5 330,-26.5 330,-45.5 335,-50.5 391,-50.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="258.5,-50 268.5,-50 268.5,-31.5 273.5,-26.5 319,-26.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="332,-92.5 342,-92.5 342,-85.5 347,-80.5 409,-80.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="332,-92.5 342,-92.5 342,-99.5 347,-104.5 483.5,-104.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="258.5,-50 268.5,-50 268.5,-87.5 273.5,-92.5 331,-92.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="258.5,-50 268.5,-50 268.5,-126.5 273.5,-131.5 345.5,-131.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="258.5,-50 268.5,-50 268.5,-150.5 273.5,-155.5 319.5,-155.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="258.5,-50 268.5,-50 268.5,-174.5 273.5,-179.5 373,-179.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="180.5" y1="0" y2="-50"/>
<polyline fill="none" points="350.5,150 360.5,150 360.5,156.5 365.5,161.5 421,161.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="350.5,150 360.5,150 360.5,142.5 365.5,137.5 465.5,137.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="246.5" y1="0" y2="150"/>
<polyline fill="none" points="-514.5,-23.5 -681,-23.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-404.5,-50 -414.5,-50 -414.5,-28.5 -419.5,-23.5 -513.5,-23.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-502,-53.5 -651.5,-53.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-404.5,-50 -414.5,-50 -414.5,-48.5 -419.5,-53.5 -501,-53.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-404.5,-50 -414.5,-50 -414.5,-75.5 -419.5,-80.5 -515.5,-80.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="-284.5" y1="0" y2="-50"/>
<polyline fill="none" points="-255,49.5 -265,49.5 -265,82.5 -270,87.5 -338,87.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-489.5,60.5 -550.5,59.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-255,49.5 -265,49.5 -265,55.5 -270,60.5 -488.5,60.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-255,49.5 -265,49.5 -265,38.5 -270,33.5 -316,33.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-255,49.5 -265,49.5 -265,14.5 -270,9.5 -402,9.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<polyline fill="none" points="-187.5,50 -254,49.5" stroke="#495879" stroke-opacity="1" stroke-width="1px" visibility="visible"/>
<line stroke="#495879" stroke-width="1px" visibility="visible" x1="0" x2="-135.5" y1="0" y2="50"/>
<rect fill="#CC0033" fill-opacity="0.4" height="10" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<polyline fill="none" fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" visibility="hidden"/>
<line fill-opacity="0.4" stroke="#CC0033" stroke-opacity="0.4" stroke-width="1px" visibility="hidden"/>
<rect fill="#CC0033" fill-opacity="0.4" height="10" stroke="#FF9933" stroke-opacity="0.4" stroke-width="1px" visibility="hidden" width="50" x="5" y="5"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-402, -7) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="132" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="129" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Accesible desde todos lados
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-316, 17) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="46" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="43" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Mobile
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-551, 43) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="47" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="44" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">widget
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-489, 44) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="219" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="216" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Posibilidad de acceso desde la
pagina insitucional
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-338, 71) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="68" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="65" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Pay per use
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-254, 33) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="52" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="49" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">porque?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-187, 39) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="57" x="-2" y="-3"/>
<rect fill="#a6ffc2" height="22" rx="3.3" ry="3.3" stroke="#33a36f" stroke-width="0.5px" style="cursor: move;" width="53" x="0" y="0"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">web
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAKgSURBVDjLlZLrS1NxGMd90ZvovdEfEBEU&#10;EhZIb0xMjdyLIuyGkiHGUFKydFKKJiRegjIyFJRwojMxzfJSaVOYeTfxtpSNuZ1tXnY2z27nsss5&#10;334uWloG9uLD7/A7z/fzPPx4IgBE7ISl3qWyelUvu9JIueZqeOdUmcCMFDgcQ3fntjSK0j/rwx+c&#10;sesIZ3jbL1j6EbCPIej5DpE3QRIoBJ3LEFb74BjIxkbXVYNdrTixS8Ca3h/y6pSTfloD0UcRjCS8&#10;BJGbRdA7QRgjd1pIfhruyeewKOMdm+rCw2GBV1tXKZh7SIEVoqAjpwVS0AlIvhBSkCGyeQRcPYDo&#10;gO1DNixvrveFBa6ZCkuAmSe1OtJpFVLATkJboWCIAE3+GYngI6ENgnUK+hcxfFiw9fWRT+RWEWTH&#10;EeRmyPhaMvYCgu5ZEpgkbzCCgPszBNsr8NY8iF4Ky5WnpLDArs41+zYnSPdF8OYi0qEcTHc6mF45&#10;mJ4M2Ftl4C1lYPU34KerwFNTWKmO/j2BfbiwghmvJuPawZsUsNVHgTPlEx6ANcjJeR9r5QfhWUqE&#10;JOlhbc+FoV42FBY4R0sPbPbKlz2LLeQB9aCbYkJhzpIFlkoDZ8zDRk0kRHYYrm8d0JYeEyyduUd3&#10;7QH9pTBqvSOV9iy0wtmZ+VNAOm+HOeM92JtlYDQN0JYcD1BtmTf/WqRtbJ/yTxtUt9fXGhPBq5Mh&#10;riVBtMYhoLkMQ1Ek5sqi3eb2O4l7buIvhlRPkmsfZ/ibax+iruosnpacQUFOOq7Fn5TUypJz/1zl&#10;nRQr5JSypRVKZRvq6htR/ewlriTH03vV7ilQ5NwaHRgchM1GY3p6Bq+bmpEii9XtWzCgqkhLuXSB&#10;TUg4L8XFxUoXk2K57obirH0L/ocfNQ8V8wE+uE0AAAAASUVORK5CYII=" y="0"> </image>
</g>
<ellipse cx="-3" cy="11" fill="#a6ffc2" height="6" rx="3" ry="3" stroke="#33a36f" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-516, -97) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="97" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="94" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Cobrar por calculo?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-652, -70) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="135" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="132" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">No lo usan por varios meses
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-501, -70) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="82" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="79" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">costo mensual?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-681, -40) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="152" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="149" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">vender el servicio no el software
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-514, -40) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="95" x="-2" y="-3"/>
<ellipse cx="-3" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="92" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">cobro por servicio?
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-404, -61) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="125" x="-2" y="-3"/>
<rect fill="#7096ff" height="22" rx="3.3" ry="3.3" stroke="#385b80" stroke-width="0.5px" style="cursor: move;" width="121" x="0" y="0"/>
<text fill="#ffffff" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">Plan de Negocio
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ0SURBVDjLlZPdT9JRGMe5qFu2Lrt1a63L&#10;Wv9ATRdN5xvLsnLRipzZpIVpigjyIs3XAOUHgopoWkggP5QXSRJwJQmtm/IlAWtt3XXTfubS+nZ+&#10;P1eby6ldPGdn5+zzfb7Pc57DA8DbL9rjrYxuVsXf7W5fuC2mYawpE7QRJZpDDfz/EngYVTN9qR4E&#10;PvlgXjCiKVCPWvou/0ACxDJjSbIwDefqMPxrEzC87IDUW4Pq8Vv8PQVaX7Qw5qQRgY9ePP0wDMeS&#10;FfWTUkxmPeiI61DlFOP6SAV/VwFtRMFQCwb4CdwW10IbVcK+aMHgohmPlwdBZ11oCctx1X5p/R8B&#10;9Uzzuum1ntj1Iv1tGRtb3zH2dgSa2eZtOOOCMizD5cGyzR0lGBNdx1TP5T96E4+4WttiWg6mYr3I&#10;fk1DF1PBmxmHYlrGZkbFUDku2oSHOAFjolOuIpZ65rs5+MmKg9hWcJlZWB1UbsOhRjYz5r/MoSn4&#10;AKWWQg0nwFoyzndhijRobGWIq3XgPQU1sa2LqjCRHoc81IBK9w0OnvscRWQtBGFfEc4b8o7wNDMK&#10;OwnY3lDwZZ+h1idB/zsThpf6CezkstVN3yNwHFMrNGqCVRvlA2UQ6POkud1nTvE0EcVR1gU7JNSC&#10;nrPrWLRtw+RM7BKBXnJDP9eOYqogVNAj0Av0uTk7mtjov2+1p2yQ0hIYXnXCs+qEzF+HC9YSyIiI&#10;sK84XWTKP5tvPHdi11GupSXHW8JNW+FMAHdclSCCKDEX/iKdDgotRY17jTu31LhvHybT5RGPin5K&#10;3NWs1c0yW+lp0umc/T7b383NUdHJa44rSfJU+Qf54n/iNzi8zBtL0z1zAAAAAElFTkSuQmCC" y="0"> </image>
</g>
<ellipse cx="-3" cy="11" fill="#7096ff" height="6" rx="3" ry="3" stroke="#385b80" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(369, 121) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="101" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="98" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="32" y="9">ascTimeTable
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3, 3) scale(1)" width="26">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJvSURBVDjLpZPrS5NhGIf9W7YvBYOkhlko&#10;qCklWChv2WyKik7blnNris72bi6dus0DLZ0TDxW1odtopDs4D8MDZuLU0kXq61CijSIIasOvv94V&#10;TUfLiB74fXngup7nvrnvJABJ/5PfLnTTdcwOj4RsdYmo5glBWP6iOtzwvIKSWstI0Wgx80SBblpK&#10;tE9KQs/We7EaWoT/8wbWP61gMmCH0lMDvokT4j25TiQU/ITFkek9Ow6+7WH2gwsmahCPdwyw75uw&#10;9HEO2gUZSkfyI9zBPCJOoJ2SMmg46N61YO/rNoa39Xi41oFuXysMfh36/Fp0b7bAfWAH6RGi0Hgl&#10;WNCbzYgJaFjRv6zGuy+b9It96N3SQvNKiV9HvSaDfFEIxXItnPs23BzJQd6DDEVM0OKsoVwBG/1V&#10;MzpXVWhbkUM2K4oJBDYuGmbKIJ0qxsAbHfRLzbjcnUbFBIpx/qH3vQv9b3U03IQ/HfFkERTzfFj8&#10;w8jSpR7GBE123uFEYAzaDRIqX/2JAtJbDat/COkd7CNBva2cMvq0MGxp0PRSCPF8BXjWG3FgNHc9&#10;XPT71Ojy3sMFdfJRCeKxEsVtKwFHwALZfCUk3tIfNR8XiJwc1LmL4dg141JPKtj3WUdNFJqLGFVP&#10;C4OkR4BxajTWsChY64wmCnMxsWPCHcutKBxMVp5mxA1S+aMComToaqTRUQknLTH62kHOVEE+VQnj&#10;ahscNCy0cMBWsSI0TCQcZc5ALkEYckL5A5noWSBhfm2AecMAjbcRWV0pUTh0HE64TNf0mczcnnQy&#10;u/MilaFJCae1nw2fbz1DnVOxyGTlKeZft/Ff8x1BRssfACjTwQAAAABJRU5ErkJggg==" y="0"> </image>
<image height="12" width="12" x="14" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAANPSURBVBgZBcHdT1tlAMDh3zltORT6Ob4m&#10;tWDGMpgiU8LcEooJyiaEGbNkCkaNCVfeGP4Dr7zBG42J3hiVZInTeTMvFAPBYRhmGDBjEYaAMhht&#10;VzraUjin5+M95/V5FCklAAAA4wtjfcCHwHmgAfADh8Ci9OSXn/d9+ysAAIAipQRgfGHMD0wC115P&#10;DmjxYANloxbDBuGaCHLMZqeEK9wZIdy3vh76/hhAkVIyvjAWAG731D/XeznZT9nUsLDZKitUSY0D&#10;w0MKmyAGWWuepczSfeGIl79789ahCgBMdted6U0191BwbRxVQQiViqjCoIqCpbFvBtk7DNASeome&#10;k+1dtuXcAPAVL+2mgE/eOXPF97erk6VCxRMcmyEKVoCyCZvpIw51HS1+gBLd5GJ9B7Nrf566vji5&#10;4rsw9uKnrzVf6FR8QbKqANnIU26I5ZyPiqmylj7Gqy6itf6DFdkk7xXxF10665Lq8sP1E37gfDKS&#10;4J6RIV+t8qyvDQ/Bzr6NaVaInpSUT0yz5ZXAksSExmbeYuCZbhxLPO8H6mr8tewYGfYtg3DNKUp2&#10;mGLRI9pg0hg3yLsvULZW0OQRR08OKJRqCAXDOLaI+aWUiiLBtspIkvgDLlN3HZRgiOyWQJURmhsq&#10;hI/6KKcdTJZw7G2QEiGE4neFVyjb5USdL0a4+hw7aQ9lZ502nvB0Yx3rd7LcpwNHFZzzVuloaSOT&#10;q2Zx/gGeJct+4Yi/HhZ2E6drksyk59H/OKY7mGBk5D10Xadtbw///CK6A++PXqO6KkA2m2V5eZlo&#10;Nm75ukbOHqzub789fDql3p6ZJb4f4sobV/nos6+4deM629v/0daSwDrM89vsLDd/vEnRyNLfd4ni&#10;bimgfjP8w7RtOb9Mr/1O+CBINBwFIHZxCMO0GB0dJZVKMTQ0xODgIKZVwdduAhCLxlQ/gGM5785t&#10;3rtTT6SLfA4A4+5PKNJjYmKC2tpaAHRdR3qwMvXIGP6AmnQ6bSpSSgAGv3glbKTNnyP/xlOv9g4o&#10;iUSSgOojl8uxsbGBpmm0trbS1NSEI5zS3qM95ubmHitSSgAA2tvbfY399eOhx5GPmxubq7UqTVFQ&#10;eKCsllyfu90pus4qKFiW5WYymbyu61f/B/q4pKqmYKY6AAAAAElFTkSuQmCC" y="0"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(369, 145) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="56" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="53" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="20" y="9">lantiv
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(3, 3) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAANPSURBVBgZBcHdT1tlAMDh3zltORT6Ob4m&#10;tWDGMpgiU8LcEooJyiaEGbNkCkaNCVfeGP4Dr7zBG42J3hiVZInTeTMvFAPBYRhmGDBjEYaAMhht&#10;VzraUjin5+M95/V5FCklAAAA4wtjfcCHwHmgAfADh8Ci9OSXn/d9+ysAAIAipQRgfGHMD0wC115P&#10;DmjxYANloxbDBuGaCHLMZqeEK9wZIdy3vh76/hhAkVIyvjAWAG731D/XeznZT9nUsLDZKitUSY0D&#10;w0MKmyAGWWuepczSfeGIl79789ahCgBMdted6U0191BwbRxVQQiViqjCoIqCpbFvBtk7DNASeome&#10;k+1dtuXcAPAVL+2mgE/eOXPF97erk6VCxRMcmyEKVoCyCZvpIw51HS1+gBLd5GJ9B7Nrf566vji5&#10;4rsw9uKnrzVf6FR8QbKqANnIU26I5ZyPiqmylj7Gqy6itf6DFdkk7xXxF10665Lq8sP1E37gfDKS&#10;4J6RIV+t8qyvDQ/Bzr6NaVaInpSUT0yz5ZXAksSExmbeYuCZbhxLPO8H6mr8tewYGfYtg3DNKUp2&#10;mGLRI9pg0hg3yLsvULZW0OQRR08OKJRqCAXDOLaI+aWUiiLBtspIkvgDLlN3HZRgiOyWQJURmhsq&#10;hI/6KKcdTJZw7G2QEiGE4neFVyjb5USdL0a4+hw7aQ9lZ502nvB0Yx3rd7LcpwNHFZzzVuloaSOT&#10;q2Zx/gGeJct+4Yi/HhZ2E6drksyk59H/OKY7mGBk5D10Xadtbw///CK6A++PXqO6KkA2m2V5eZlo&#10;Nm75ukbOHqzub789fDql3p6ZJb4f4sobV/nos6+4deM629v/0daSwDrM89vsLDd/vEnRyNLfd4ni&#10;bimgfjP8w7RtOb9Mr/1O+CBINBwFIHZxCMO0GB0dJZVKMTQ0xODgIKZVwdduAhCLxlQ/gGM5785t&#10;3rtTT6SLfA4A4+5PKNJjYmKC2tpaAHRdR3qwMvXIGP6AmnQ6bSpSSgAGv3glbKTNnyP/xlOv9g4o&#10;iUSSgOojl8uxsbGBpmm0trbS1NSEI5zS3qM95ubmHitSSgAA2tvbfY399eOhx5GPmxubq7UqTVFQ&#10;eKCsllyfu90pus4qKFiW5WYymbyu61f/B/q4pKqmYKY6AAAAAElFTkSuQmCC" y="0"> </image>
</g>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(245, 139) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="109" x="-2" y="-3"/>
<rect fill="#d94e4e" height="22" rx="3.3" ry="3.3" stroke="#806238" stroke-width="0.5px" style="cursor: move;" width="105" x="0" y="0"/>
<text fill="#ffffff" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">Competencia
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJYSURBVDjLY/j//z8DJRhMmJQd+x89/W4I&#10;RQbY1x5L8590dzmy5PuIqC4gfvA+PPIyEMfhNqD06H+L9gfG9p33/jr23OMEiX30DTj8yT/oFxCf&#10;+hAYfBeIfwPxIyBWwjSg5Mh/tYZHzDr1D34aND7Y9tXOsf2Lg/O/z85uNjCFn908lT56eH985xXw&#10;zXvygwYUA4yLD/9Xcm+QlS572JWesP7XVyOL79/MLKci22Rc/6DXvPH+X8um+79t2u7/tOu4/w9u&#10;gFHxof8wha+1LP89NHT9iaxZIf/BCpWie7/Vi+/N/25kqvrN2Oz/suiO6QgDig6ADfgtJrX0p6TM&#10;b1u/Xd+5Eh9M4k16yCyQdH+HYOK9H6JJd+tgBv7U0j3wXVvvA9wAg8J9/6sNAvT/8gr++8Mn1MYQ&#10;8aCFIfzBf6bwB3+Zwx/8Ywu7H44e+j8VVX4hDMjf+/8/I6v/fya2OyghHHCn3GuRw3TvJTZnPJdY&#10;nXVbbA436Le49Aa4Afp5u///ZGAJ+c3AIg5T4DXT0stjpuULj1nmD9xmW6x1nWu2z2W+6RenBcbx&#10;IHmga6XgBujl7vw/R1TDAabZscNommOn0UeHLsNFDj2GPDBxh37DDrtJ+u8x0oFu9vb/liU6khal&#10;2jPNS3UfAem3FmU6Gej+tqjX5rBo0rln1qI9GdWArG3/jTI0/Q0z1N3UAyxdgTQ4NQpreMjCFAqp&#10;OoHZRvnqUhpROhmmxRo8cAO0M7f8187Y/F8rYxMQb/yvlbYBiNf/1wTh1HX/NUA4ZS0Ur/mvkbwa&#10;jOEGUIIBf5BxjDvwFIUAAAAASUVORK5CYII=" y="0"> </image>
</g>
<ellipse cx="108" cy="11" fill="#d94e4e" height="6" rx="3" ry="3" stroke="#806238" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(277, -196) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="100" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="97" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">embeddable widget
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(277, -172) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="47" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="44" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">mobile
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(277, -148) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="73" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="70" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Very intuitive
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(351, -121) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="137" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="134" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">ability to create custom rules
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(351, -97) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="62" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="59" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Distribuido
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(277, -109) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="58" x="-2" y="-3"/>
<ellipse cx="57" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="55" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">Algorithm
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(339, -67) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="56" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="53" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">clipboard
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(339, -43) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="41" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="38" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">excel
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(339, -19) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="33" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="30" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">csv
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(277, -43) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="46" x="-2" y="-3"/>
<ellipse cx="45" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="43" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">import
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(339, 10) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="56" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="53" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">clipboard
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(339, 34) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="41" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="38" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">excel
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(339, 58) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="33" x="-2" y="-3"/>
<ellipse cx="3" cy="3" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="30" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">csv
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(277, 35) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="23" rx="3.4499999999999997" ry="3.4499999999999997" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="46" x="-2" y="-3"/>
<ellipse cx="45" cy="17" fill="#E0E5EF" height="6" rx="3" ry="3" stroke="#023BB9" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
<line stroke="#495879" stroke-width="1px" style="cursor: move;" visibility="hidden" x1="-1" x2="43" y1="17" y2="17"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="6" y="9">export
</text>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(179, -61) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="0" stroke-width="1px" width="83" x="-2" y="-3"/>
<rect fill="#d9ff70" height="22" rx="3.3" ry="3.3" stroke="#6c8038" stroke-width="0.5px" style="cursor: move;" width="79" x="0" y="0"/>
<text fill="#525c61" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" style="cursor: move;" visibility="visible" x="22" y="12">Features
</text>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(4, 4) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJ+SURBVBgZlcFLSBRhAAfw/858s860aygi&#10;ptIp9NChoDzkxYNUYIcO0TUIOghFUNElvEad6lBkdEqCIugi3QQfLR2yQumBaPh+7Li7o/uanfme&#10;s1972IOEQv5+Ma01DuPRh+U+StlEhSsZUnElprXGQd6kdomUsoOJaiflojXk4mIM+pZjaXCp8Gsl&#10;TwkOMDLlOVyoCamiXhkpVCOJRDyGpG2CCYlsgSPvh4TgACGVt21L97Y0meBCg0kNyiW28wHiJrC8&#10;VYAo0wsE+3g1vtRdquYeHyXHUfAldkohKJcIuUSjbWI5XYKXLQ5/fnk1RbDHyJTnSKHeCbF6SbVM&#10;GCteH5pxAk7cQLbAQZmAGbOQccuQZTqGGoK615M5woX6aRPdZTkn4a+7kehMmdOzMmptaDOTNkEu&#10;zxE3gaAcQITMQ42BugpVHUzIrqRjwCJVOA3nzPLvMzKScujPxnK04RbRdIQgYBxhIYSs0DRqDNSF&#10;nHUKIUG5xKZXQTweg5Potmyde9hz/quZ9RbgukWsLWQQlvxFFQkXNQbqKgFvDRhHyCRCKrC27cOx&#10;YmhrPksyP5rQMzAPd3FJZVdzoyrip+cn7yvUENSVQnajvclCSAUqlIMyCa8oYVsmoPsxM/pJRVVx&#10;am7ywTz2IKi5+WLmXqNjXI4TA5lCgIRtwjI1GqwYhJBY39hFLt0+NPtxcB7/IIPPvt9N2MaTRNwA&#10;ZQKWqbGeLmFnxwf1GZhPwXz+RXH2HPsgPuVP25qT0DrCZtbHpltEwQuGlRBjEedexFVaCenOjd9R&#10;2Acp+RQb2xFMaKS3iiju+v3Tb69N4T8RGtBjK/lSRoWKKsYGvr2/nsIh/AUG0IfiieuuUQAAAABJ&#10;RU5ErkJggg==" y="0"> </image>
</g>
<ellipse cx="82" cy="11" fill="#d9ff70" height="6" rx="3" ry="3" stroke="#6c8038" stroke-width="1px" style="cursor: default;" visibility="visible" width="6"/>
</g>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-55, -17) scale(1)" visibility="visible" width="100">
<rect fill="#c7d8ff" fill-opacity="1" height="41" rx="6.1499999999999995" ry="6.1499999999999995" stroke="#77555a" stroke-opacity="1" stroke-width="1px" style="cursor: default;" width="114" x="-2" y="-3"/>
<rect fill="#f7f7f7" height="35" rx="5.25" ry="5.25" stroke="#023BB9" stroke-width="0.5px" style="cursor: default;" width="110" x="0" y="0"/>
<text fill="#023BB9" focusable="true" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default;" visibility="visible" x="18" y="19">timetable
</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

View File

@ -1,470 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" focusable="true" id="workspace" width="1600" height="307"
viewBox="-560 -107.44999999999999 1120 214.89999999999998" preserveAspectRatio="none">
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="320,51.5 330,51.5 330,69.5 335,74.5 367.5,74.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="320,51.5 375.5,50.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="320,51.5 330,51.5 330,31.5 335,26.5 391,26.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="258.5,-50 268.5,-50 268.5,46.5 273.5,51.5 319,51.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="320,-26.5 330,-26.5 330,-7.5 335,-2.5 367.5,-2.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="320,-26.5 375.5,-26.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="320,-26.5 330,-26.5 330,-45.5 335,-50.5 391,-50.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="258.5,-50 268.5,-50 268.5,-31.5 273.5,-26.5 319,-26.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="332,-92.5 342,-92.5 342,-85.5 347,-80.5 409,-80.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="332,-92.5 342,-92.5 342,-99.5 347,-104.5 483.5,-104.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="258.5,-50 268.5,-50 268.5,-87.5 273.5,-92.5 331,-92.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="258.5,-50 268.5,-50 268.5,-126.5 273.5,-131.5 345.5,-131.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="258.5,-50 268.5,-50 268.5,-150.5 273.5,-155.5 319.5,-155.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="258.5,-50 268.5,-50 268.5,-174.5 273.5,-179.5 373,-179.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="180.5" y2="-50" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="350.5,150 360.5,150 360.5,156.5 365.5,161.5 421,161.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="350.5,150 360.5,150 360.5,142.5 365.5,137.5 465.5,137.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="246.5" y2="150" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-514.5,-23.5 -681,-23.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-404.5,-50 -414.5,-50 -414.5,-28.5 -419.5,-23.5 -513.5,-23.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-502,-53.5 -651.5,-53.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-404.5,-50 -414.5,-50 -414.5,-48.5 -419.5,-53.5 -501,-53.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-404.5,-50 -414.5,-50 -414.5,-75.5 -419.5,-80.5 -515.5,-80.5" visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="-284.5" y2="-50" x1="0" y1="0" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-255,49.5 -265,49.5 -265,82.5 -270,87.5 -338,87.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-489.5,60.5 -550.5,59.5"
visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-255,49.5 -265,49.5 -265,55.5 -270,60.5 -488.5,60.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-255,49.5 -265,49.5 -265,38.5 -270,33.5 -316,33.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1"
points="-255,49.5 -265,49.5 -265,14.5 -270,9.5 -402,9.5" visibility="visible"/>
<polyline fill="none" stroke-width="1px" stroke="#495879" stroke-opacity="1" points="-187.5,50 -254,49.5"
visibility="visible"/>
<line stroke-width="1px" stroke="#495879" x2="-135.5" y2="50" x1="0" y1="0" visibility="visible"/>
<rect width="50" height="10" x="5" y="5" stroke-width="1px" stroke="#FF9933" fill="#CC0033" stroke-opacity="0.4"
fill-opacity="0.4" visibility="hidden"/>
<polyline fill="none" stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4"
visibility="hidden"/>
<line stroke-width="1px" stroke="#CC0033" stroke-opacity="0.4" fill-opacity="0.4" visibility="hidden"/>
<rect width="50" height="10" x="5" y="5" stroke-width="1px" stroke="#FF9933" fill="#CC0033" stroke-opacity="0.4"
fill-opacity="0.4" visibility="hidden"/>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-402, -7) scale(1)"
visibility="visible">
<rect width="132" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="129"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Accesible desde todos lados
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-316, 17) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Mobile
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-551, 43) scale(1)"
visibility="visible">
<rect width="47" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="44"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">widget
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-489, 44) scale(1)"
visibility="visible">
<rect width="219" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="216"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Posibilidad de acceso desde la
pagina insitucional
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-338, 71) scale(1)"
visibility="visible">
<rect width="68" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="65"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Pay per use
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-254, 33) scale(1)"
visibility="visible">
<rect width="52" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="49"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">porque?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-187, 39) scale(1)"
visibility="visible">
<rect width="57" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="53" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#33a36f" fill="#a6ffc2"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="22" visibility="visible">web
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/lightbulb.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="11" stroke-width="1px" fill="#a6ffc2"
style="cursor: default;" visibility="visible" stroke="#33a36f"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-516, -97) scale(1)"
visibility="visible">
<rect width="97" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="94"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Cobrar por calculo?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-652, -70) scale(1)"
visibility="visible">
<rect width="135" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="132"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">No lo usan por varios meses
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-501, -70) scale(1)"
visibility="visible">
<rect width="82" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="79"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">costo mensual?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-681, -40) scale(1)"
visibility="visible">
<rect width="152" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="149"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">vender el servicio no el software
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-514, -40) scale(1)"
visibility="visible">
<rect width="95" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="92"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">cobro por servicio?
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-404, -61) scale(1)"
visibility="visible">
<rect width="125" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="121" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#385b80" fill="#7096ff"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#ffffff" style="cursor: move;" y="12" x="22" visibility="visible">Plan de Negocio
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/money.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="-3" cy="11" stroke-width="1px" fill="#7096ff"
style="cursor: default;" visibility="visible" stroke="#385b80"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(369, 121) scale(1)"
visibility="visible">
<rect width="101" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="98"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="32" visibility="visible">ascTimeTable
</text>
<g preserveAspectRatio="none" focusable="true" width="26" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/add.png" width="12" height="12" y="0" x="2"/>
<image href="../icons/legacy/world_link.png" width="12" height="12" y="0" x="14"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(369, 145) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="20" visibility="visible">lantiv
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(3, 3) scale(1)">
<image href="../icons/legacy/world_link.png" width="12" height="12" y="0" x="2"/>
</g>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(245, 139) scale(1)"
visibility="visible">
<rect width="109" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="105" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#806238" fill="#d94e4e"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#ffffff" style="cursor: move;" y="12" x="22" visibility="visible">Competencia
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/chart_curve.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="108" cy="11" stroke-width="1px" fill="#d94e4e"
style="cursor: default;" visibility="visible" stroke="#806238"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(277, -196) scale(1)"
visibility="visible">
<rect width="100" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="97"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">embeddable widget
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(277, -172) scale(1)"
visibility="visible">
<rect width="47" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="44"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">mobile
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(277, -148) scale(1)"
visibility="visible">
<rect width="73" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="70"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Very intuitive
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(351, -121) scale(1)"
visibility="visible">
<rect width="137" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="134"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">ability to create custom rules
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(351, -97) scale(1)"
visibility="visible">
<rect width="62" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="59"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Distribuido
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(277, -109) scale(1)"
visibility="visible">
<rect width="58" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="57" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="55"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">Algorithm
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(339, -67) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">clipboard
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(339, -43) scale(1)"
visibility="visible">
<rect width="41" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="38"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">excel
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(339, -19) scale(1)"
visibility="visible">
<rect width="33" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="30"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">csv
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(277, -43) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="45" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">import
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(339, 10) scale(1)"
visibility="visible">
<rect width="56" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="53"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">clipboard
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(339, 34) scale(1)"
visibility="visible">
<rect width="41" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="38"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">excel
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(339, 58) scale(1)"
visibility="visible">
<rect width="33" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="3" cy="3" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="hidden" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="30"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">csv
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(277, 35) scale(1)"
visibility="visible">
<rect width="46" height="23" rx="3.4499999999999997" ry="3.4499999999999997" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#dbe2e6" stroke-opacity="0" fill-opacity="0"/>
<ellipse width="6" height="6" rx="3" ry="3" cx="45" cy="17" stroke-width="1px" fill="#E0E5EF"
style="cursor: default;" visibility="visible" stroke="#023BB9"/>
<line stroke-width="1px" stroke="#495879" style="cursor: move;" visibility="hidden" x1="-1" y1="17" x2="43"
y2="17"/>
<text focusable="true" font-family="verdana" font-size="8.0625" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="9" x="6" visibility="visible">export
</text>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(179, -61) scale(1)"
visibility="visible">
<rect width="83" height="28" rx="4.2" ry="4.2" x="-2" y="-3" stroke-width="1px" stroke="#77555a" fill="#dbe2e6"
stroke-opacity="0" fill-opacity="0"/>
<rect width="79" height="22" rx="3.3" ry="3.3" x="0" y="0" stroke-width="0.5px" stroke="#6c8038" fill="#d9ff70"
style="cursor: move;"/>
<text focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal"
fill="#525c61" style="cursor: move;" y="12" x="22" visibility="visible">Features
</text>
<g preserveAspectRatio="none" focusable="true" width="14" height="12" transform="translate(4, 4) scale(1)">
<image href="../icons/legacy/connect.png" width="12" height="12" y="0" x="2"/>
</g>
<ellipse width="6" height="6" rx="3" ry="3" cx="82" cy="11" stroke-width="1px" fill="#d9ff70"
style="cursor: default;" visibility="visible" stroke="#6c8038"/>
</g>
<g preserveAspectRatio="none" focusable="true" width="100" height="100" transform="translate(-55, -17) scale(1)"
visibility="visible">
<rect width="114" height="41" rx="6.1499999999999995" ry="6.1499999999999995" x="-2" y="-3" stroke-width="1px"
stroke="#77555a" fill="#c7d8ff" stroke-opacity="1" fill-opacity="1" style="cursor: default;"/>
<rect width="110" height="35" rx="5.25" ry="5.25" x="0" y="0" stroke-width="0.5px" fill="#f7f7f7"
stroke="#023BB9" style="cursor: default;"/>
<text focusable="true" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold"
fill="#023BB9" style="cursor: default;" y="19" x="18" visibility="visible">timetable
</text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 35 KiB

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" focusable="true" height="151.0" id="workspace" preserveAspectRatio="xMinYMin" viewBox="-224.0 -101.0 274.0 151.0" width="274.0">
<path d="M0,0 C-38,0 -54,-40 -92,-40" fill-opacity="1.0999999999999999" stroke="#495879" stroke-opacity="1.0999999999999999" stroke-width="1px" style="fill: none;" visibility="visible"/>
<g focusable="true" height="100" preserveAspectRatio="none" transform="translate(-23, -17) scale(1)" visibility="visible" width="100">
<rect fill="#dbe2e6" fill-opacity="0" height="41" rx="6.1499999999999995" ry="6.1499999999999995" stroke="#77555a" stroke-opacity="0" stroke-width="1px" style="cursor: default;" width="50" x="-2" y="-3"/>
<rect fill="#f7f7f7" height="35" rx="5.25" ry="5.25" stroke="#023BB9" stroke-width="0.5px" style="cursor: default;" width="46" x="0" y="0"/>
<text fill="#023BB9" focusable="true" font-family="verdana" font-size="13.4375" font-style="normal" font-weight="bold" style="cursor: default;" visibility="visible" x="18" y="19">t
</text>
</g>
<g fill-opacity="1.0999999999999999" focusable="true" height="100" preserveAspectRatio="none" stroke-opacity="1.0999999999999999" transform="translate(-174, -51) scale(1)" visibility="visible" width="100">
<rect fill="#c7d8ff" fill-opacity="1" height="28" rx="4.2" ry="4.2" stroke="#77555a" stroke-opacity="1" stroke-width="1px" style="cursor: move;" width="88" x="-2" y="-3"/>
<rect fill="#E0E5EF" height="22" rx="3.3" ry="3.3" stroke="#023BB9" stroke-width="0.5px" style="cursor: move;" visibility="visible" width="84" x="0" y="0"/>
<text fill="#525c61" fill-opacity="1.0999999999999999" focusable="true" font-family="verdana" font-size="10.75" font-style="normal" font-weight="normal" stroke-opacity="1.0999999999999999" style="cursor: move;" visibility="visible" x="22" y="12">Main Topic
</text>
<ellipse cx="3" cy="3" fill="#E0E5EF" fill-opacity="1.0999999999999999" height="6" rx="3" ry="3" stroke="#023BB9" stroke-opacity="1.0999999999999999" stroke-width="1px" style="cursor: default;" visibility="hidden" width="6"/>
<g focusable="true" height="12" preserveAspectRatio="none" transform="translate(8, 2) scale(1)" width="14">
<image height="12" width="12" x="2" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0&#10;U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAMESURBVDjLXZNrSFNxGMYPgQQRfYv6EgR9&#10;kCgKohtFgRAVQUHQh24GQReqhViWlVYbZJlZmZmombfVpJXTdHa3reM8uszmWpqnmQuX5drmLsdj&#10;enR7ev9DR3Xgd3h43+d5/pw/HA4AN9zITSPUhJ14R0xn87+h2ZzJvZVInJpzAQOXQOQMt+/5rvhM&#10;CLXv9Vjrt1rSXitmwj+Jua1+Ox+2HfGNdGf6yW8l5sUKPNVcRsiaPDA22Ahv6/7Ae/0aKdviQ0G7&#10;B/c6f8Zg+gbfh079Mjno0MhS58lflOsgEjh3BXc+bM/0DzbvDwj314znt/bjof0HdPw3FBq6kP+o&#10;CxVNfdDZvqPsrQmf6zdFRtyPJgbrFoqUTeS+FnPrekpmiC2lS+QcUx+qrf0wmFzodYfgC0nwhoYh&#10;9oegfdmLsmYXHj7JhV23erS7ZNYHyibGLiLtXsO19BoHSiwu6Ok09gwFg/gy8BO/STOkKFBk7EWh&#10;2YkLeh5Hy4Ws2B2w157iDvOpxw4UPRPRTSfL41FIsow7ZeXwUFF4dBQ1L96A/xLEFf1HMC/LxAt2&#10;5PH+VN0HXH1gh2dEwdBoBGO0OKvW4L7hCdIvavBSsMIRVHCi0ArmZZl4wbYrz/yHSq1Ql9vQLylU&#10;EoE7GMal3OuxMG/7CO848N6n4HheK5iXZeIFmy88Nu+8aYJG24G3ziB+0Ee7wwqemlvQ5w9hcAJw&#10;yUDtpwBOFLeBeVkmXpB0qlK9RV2HlLsCsvUivHRhQwoQjhCkA1TgJX1OK0JVzIN5WSZesPZ44XKi&#10;a+P5BqSS4aq+BzZXABLdhyQrsJPOqv4MVcEbMA/zsky8gLHyYO7hI9laecOZWuzLfYXU2zzSblmQ&#10;erMZqjwTknOeY9dlIw5kVcrMG/8XpoQgCEkOhwNNJn5i7bFSrFDpsCrFEIPpLacr0WxpibYIQpS8&#10;6/8pMBqNswnJ6XSivqHBv3R3pmbxzgwz4Z+EaTXtwqIogrzjxIJ4QVVV1UyihxgjFv3/K09Bu/lE&#10;kBgg5rLZH+fT5dvfn7iFAAAAAElFTkSuQmCC" y="0"> </image>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

View File

@ -1,33 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="-560 -98.69999999999999 1120 197.39999999999998" height="282" width="1600"
id="workspace" focusable="true">
<path fill-opacity="1.0999999999999999" visibility="visible" d="M0,0 C-38,0 -54,-40 -92,-40"
stroke-opacity="1.0999999999999999" stroke="#495879" stroke-width="1px" style="fill: none;"></path>
<g visibility="visible" transform="translate(-23, -17) scale(1)" height="100" width="100" focusable="true"
preserveAspectRatio="none">
<rect style="cursor: default;" fill-opacity="0" stroke-opacity="0" fill="#dbe2e6" stroke="#77555a"
stroke-width="1px" y="-3" x="-2" ry="6.1499999999999995" rx="6.1499999999999995" height="41"
width="50"></rect>
<rect style="cursor: default;" stroke="#023BB9" fill="#f7f7f7" stroke-width="0.5px" y="0" x="0" ry="5.25"
rx="5.25" height="35" width="46"></rect>
<text visibility="visible" x="18" y="19" style="cursor: default;" fill="#023BB9" font-weight="bold"
font-style="normal" font-size="13.4375" font-family="verdana" focusable="true">t
</text>
</g>
<g fill-opacity="1.0999999999999999" stroke-opacity="1.0999999999999999" visibility="visible"
transform="translate(-174, -51) scale(1)" height="100" width="100" focusable="true" preserveAspectRatio="none">
<rect style="cursor: move;" fill-opacity="1" stroke-opacity="1" fill="#c7d8ff" stroke="#77555a"
stroke-width="1px" y="-3" x="-2" ry="4.2" rx="4.2" height="28" width="88"></rect>
<rect visibility="visible" style="cursor: move;" fill="#E0E5EF" stroke="#023BB9" stroke-width="0.5px" y="0"
x="0" ry="3.3" rx="3.3" height="22" width="84"></rect>
<text fill-opacity="1.0999999999999999" stroke-opacity="1.0999999999999999" visibility="visible" x="22" y="12"
style="cursor: move;" fill="#525c61" font-weight="normal" font-style="normal" font-size="10.75"
font-family="verdana" focusable="true">Main Topic
</text>
<ellipse fill-opacity="1.0999999999999999" stroke-opacity="1.0999999999999999" stroke="#023BB9"
visibility="hidden" style="cursor: default;" fill="#E0E5EF" stroke-width="1px" cy="3" cx="3" ry="3"
rx="3" height="6" width="6"></ellipse>
<g transform="translate(8, 2) scale(1)" height="12" width="14" focusable="true" preserveAspectRatio="none">
<image x="2" y="0" height="12" width="12" href="../icons/onoff_clock.png">
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 381 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 215 KiB