mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-11 01:33:24 +01:00
fix exporter to freemind issues (shape, font styles and font sizes)
This commit is contained in:
parent
81b138cf62
commit
802c9d3375
@ -177,17 +177,23 @@ public class FreemindExporter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String wiseShape = mindmapTopic.getShape();
|
||||||
|
if (wiseShape != null && !ShapeStyle.LINE.equals(ShapeStyle.fromValue(wiseShape))) {
|
||||||
freemindNode.setBACKGROUNDCOLOR(mindmapTopic.getBgColor());
|
freemindNode.setBACKGROUNDCOLOR(mindmapTopic.getBgColor());
|
||||||
|
}
|
||||||
final String shape = mindmapTopic.getShape();
|
final String shape = mindmapTopic.getShape();
|
||||||
if (shape != null && !shape.isEmpty()) {
|
if (shape != null && !shape.isEmpty()) {
|
||||||
if (isRoot && !ShapeStyle.ROUNDED_RECTANGLE.getStyle().endsWith(shape) || !isRoot && !ShapeStyle.LINE.getStyle().endsWith(shape)) {
|
if (isRoot && !ShapeStyle.ROUNDED_RECTANGLE.getStyle().endsWith(shape) || !isRoot && !ShapeStyle.LINE.getStyle().endsWith(shape)) {
|
||||||
|
|
||||||
String style = shape;
|
String style = shape;
|
||||||
if (ShapeStyle.ROUNDED_RECTANGLE.getStyle().equals(shape)) {
|
if (ShapeStyle.ROUNDED_RECTANGLE.getStyle().equals(shape) || ShapeStyle.ELLIPSE.getStyle().equals(shape)) {
|
||||||
style = "bubble";
|
style = "bubble";
|
||||||
}
|
}
|
||||||
freemindNode.setSTYLE(style);
|
freemindNode.setSTYLE(style);
|
||||||
}
|
}
|
||||||
|
} else if (!isRoot) {
|
||||||
|
String style = "fork";
|
||||||
|
freemindNode.setSTYLE(style);
|
||||||
}
|
}
|
||||||
|
|
||||||
addIconNode(freemindNode, mindmapTopic);
|
addIconNode(freemindNode, mindmapTopic);
|
||||||
@ -277,7 +283,7 @@ public class FreemindExporter
|
|||||||
final Font font = objectFactory.createFont();
|
final Font font = objectFactory.createFont();
|
||||||
final String[] part = fontStyle.split(";", 6);
|
final String[] part = fontStyle.split(";", 6);
|
||||||
int countParts = part.length;
|
int countParts = part.length;
|
||||||
boolean updated = false;
|
boolean fontNodeNeeded = false;
|
||||||
|
|
||||||
if (!fontStyle.endsWith(FreemindConstant.EMPTY_FONT_STYLE)) {
|
if (!fontStyle.endsWith(FreemindConstant.EMPTY_FONT_STYLE)) {
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
@ -285,7 +291,7 @@ public class FreemindExporter
|
|||||||
// Font name
|
// Font name
|
||||||
if (idx < countParts && part[idx].length() != 0) {
|
if (idx < countParts && part[idx].length() != 0) {
|
||||||
font.setNAME(part[idx]);
|
font.setNAME(part[idx]);
|
||||||
updated = true;
|
fontNodeNeeded = true;
|
||||||
}
|
}
|
||||||
idx++;
|
idx++;
|
||||||
|
|
||||||
@ -293,11 +299,11 @@ public class FreemindExporter
|
|||||||
if (idx < countParts && part[idx].length() != 0) {
|
if (idx < countParts && part[idx].length() != 0) {
|
||||||
final String size = part[idx];
|
final String size = part[idx];
|
||||||
if (size != null && !size.isEmpty()) {
|
if (size != null && !size.isEmpty()) {
|
||||||
int freeSize = Integer.parseInt(size);
|
int wiseSize = Integer.parseInt(size);
|
||||||
Integer fsize = wiseToFreeFontSize.get(freeSize);
|
Integer freeSize = wiseToFreeFontSize.get(wiseSize);
|
||||||
if(fsize!=null){
|
if(freeSize!=null){
|
||||||
font.setSIZE(BigInteger.valueOf(fsize));
|
font.setSIZE(BigInteger.valueOf(freeSize));
|
||||||
updated = true;
|
fontNodeNeeded = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -306,23 +312,26 @@ public class FreemindExporter
|
|||||||
// Font Color
|
// Font Color
|
||||||
if (idx < countParts && part[idx].length() != 0) {
|
if (idx < countParts && part[idx].length() != 0) {
|
||||||
freemindNode.setCOLOR(part[idx]);
|
freemindNode.setCOLOR(part[idx]);
|
||||||
updated = true;
|
|
||||||
}
|
}
|
||||||
idx++;
|
idx++;
|
||||||
|
|
||||||
// Font Styles
|
// Font Styles
|
||||||
if (idx < countParts && part[idx].length() != 0) {
|
if (idx < countParts && part[idx].length() != 0) {
|
||||||
font.setBOLD(Boolean.TRUE.toString());
|
font.setBOLD(Boolean.TRUE.toString());
|
||||||
updated = true;
|
fontNodeNeeded = true;
|
||||||
}
|
}
|
||||||
idx++;
|
idx++;
|
||||||
|
|
||||||
if (idx < countParts && part[idx].length() != 0) {
|
if (idx < countParts && part[idx].length() != 0) {
|
||||||
font.setITALIC(Boolean.TRUE.toString());
|
font.setITALIC(Boolean.TRUE.toString());
|
||||||
updated = true;
|
fontNodeNeeded = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (updated) {
|
if (fontNodeNeeded) {
|
||||||
|
// font size should be set if freemind node has font properties note
|
||||||
|
if (font.getSIZE() == null) {
|
||||||
|
font.setSIZE(BigInteger.valueOf(wiseToFreeFontSize.get(8)));
|
||||||
|
}
|
||||||
freemindNode.getArrowlinkOrCloudOrEdge().add(font);
|
freemindNode.getArrowlinkOrCloudOrEdge().add(font);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,8 @@ public enum ShapeStyle
|
|||||||
LINE("line"),
|
LINE("line"),
|
||||||
ROUNDED_RECTANGLE("rounded rectagle"),
|
ROUNDED_RECTANGLE("rounded rectagle"),
|
||||||
RECTANGLE("rectagle"),
|
RECTANGLE("rectagle"),
|
||||||
ELLIPSE("elipse");
|
ELLIPSE("elipse"),
|
||||||
|
IMAGE("image");
|
||||||
|
|
||||||
private String style;
|
private String style;
|
||||||
|
|
||||||
@ -36,4 +37,13 @@ public enum ShapeStyle
|
|||||||
{
|
{
|
||||||
return style;
|
return style;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static ShapeStyle fromValue(String value) {
|
||||||
|
for (ShapeStyle shapeStyle : ShapeStyle.values()) {
|
||||||
|
if (shapeStyle.getStyle().equals(value)) {
|
||||||
|
return shapeStyle;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException("Shape value \"" + value + "\" doesn't match with a value shape style.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,262 +1,262 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node ID="ID_null" TEXT="corona">
|
<node ID="ID_null" TEXT="corona">
|
||||||
<node ID="ID_null" POSITION="right" TEXT="The Beer market">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="The Beer market">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Future">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Future">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Sales were decreasing due to competitive media budgets"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Sales were decreasing due to competitive media budgets"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Inbev in talks with Anh Bush">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Inbev in talks with Anh Bush">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Two biggest companies will create huge company"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Two biggest companies will create huge company"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="other merger talks"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="other merger talks"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="domestic and foreign threats"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="domestic and foreign threats"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Beer Marketing">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Beer Marketing">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="People drink marketing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="People drink marketing"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2007">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2007">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Anh Bush">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Anh Bush">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="produces in foreign markets"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="produces in foreign markets"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Heineken">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Heineken">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Dutch"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Dutch"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="reputation of top selling beer in world"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="reputation of top selling beer in world"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="marketing">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="marketing">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2006 aggressive marketing campaign">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2006 aggressive marketing campaign">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Heineken Premium Light"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Heineken Premium Light"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="superior taste"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="superior taste"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="no mythology"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="no mythology"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="premium brand"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="premium brand"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="premium beer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="premium beer"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="produces beer domestically">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="produces beer domestically">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="parent of local distributors">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="parent of local distributors">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="distribution"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="distribution"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="importing">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="importing">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="import taxes passed on to consumer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="import taxes passed on to consumer"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="marketing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="marketing"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="SAP Miller"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="SAP Miller"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="inbev"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="inbev"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2004 merger">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2004 merger">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="largest merge">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="largest merge">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="worth 12.8 billion"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="worth 12.8 billion"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="#5 Am Bev - Brazil"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="#5 Am Bev - Brazil"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="#1 Interbrew"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="#1 Interbrew"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Interbrew">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Interbrew">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="flagship brand: Stella Artois"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="flagship brand: Stella Artois"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="local managers controlling brands"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="local managers controlling brands"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="sales in 110 countries"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="sales in 110 countries"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aquired breweries in 20 countries"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aquired breweries in 20 countries"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Belgian"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Belgian"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="startup costs high">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="startup costs high">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="industry supported conectration"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="industry supported conectration"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="90s national leaders expanded abroad"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="90s national leaders expanded abroad"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="different countries had different tastes"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="different countries had different tastes"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="colsolition happened in 1800s"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="colsolition happened in 1800s"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="no means of transport"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="no means of transport"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="many local breweries"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="many local breweries"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="traditionally a clustered market"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="traditionally a clustered market"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Carloz Fernandez CEO">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Carloz Fernandez CEO">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Expanding production ">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Expanding production ">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="300 million investment"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="300 million investment"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="renovate facility in Zacatecas"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="renovate facility in Zacatecas"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="vision: top five brewers">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="vision: top five brewers">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="top 10 beer producers in world">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="top 10 beer producers in world">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Corona Extra">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Corona Extra">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Since 1997 #1 import in US">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Since 1997 #1 import in US">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="outsold competitor by 50%"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="outsold competitor by 50%"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="56% shar of domestic market"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="56% shar of domestic market"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="worlds fourth best selling beer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="worlds fourth best selling beer"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2005">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2005">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="export sales 30%"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="export sales 30%"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="4% increase domestically"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="4% increase domestically"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="12.3 % exports"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="12.3 % exports"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="7.8 % sales growth compounded over ten years"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="7.8 % sales growth compounded over ten years"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="International Business model">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="International Business model">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Capitalize on NAFTA"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Capitalize on NAFTA"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Growing international demand"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Growing international demand"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="experienced local distributors"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="experienced local distributors"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="CEO Since 1997">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="CEO Since 1997">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="29 years old">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="29 years old">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="working there since 13"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="working there since 13"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Modelo in world">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Modelo in world">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="One of top 10 breweries in world"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="One of top 10 breweries in world"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Fifth largest distributor in world">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Fifth largest distributor in world">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="in 12 years"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="in 12 years"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Can they sustain that trend"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Can they sustain that trend"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="International market protected Modelo from unstable peso"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="International market protected Modelo from unstable peso"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="Mexico Industry">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="Mexico Industry">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="FEMSA">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="FEMSA">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="foriegn market">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="foriegn market">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Recently partnered with Heiniken for US market">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Recently partnered with Heiniken for US market">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2005 18.7% growth"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2005 18.7% growth"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="90s entry to us market failed"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="90s entry to us market failed"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Partnership Heiniken">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Partnership Heiniken">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Distribution in US"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Distribution in US"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="domestic market">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="domestic market">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="NAFTA SACoca cola">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="NAFTA SACoca cola">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Exclusive distributor"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Exclusive distributor"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="997 to 2004 taking domestic market share"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="997 to 2004 taking domestic market share"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="leads domestic premium beer market"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="leads domestic premium beer market"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Owns Oxxo C">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Owns Oxxo C">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="CA largest chain of conv stores"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="CA largest chain of conv stores"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="production and distribution in Mexico: peso not a threat"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="production and distribution in Mexico: peso not a threat"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="37% of domestic market"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="37% of domestic market"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="modelo">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="modelo">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="62.8% of market"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="62.8% of market"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="NAFTA S.A. An Bucsh"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="NAFTA S.A. An Bucsh"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="imported beer only 1% sales">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="imported beer only 1% sales">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="half were anh bcsh dist by modelo"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="half were anh bcsh dist by modelo"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="one of the largest domestic beer markets"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="one of the largest domestic beer markets"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="has most trade agreements in world"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="has most trade agreements in world"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Modelo in Mexico">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Modelo in Mexico">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Largest Beer producer and distrubutor in Mexico">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Largest Beer producer and distrubutor in Mexico">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="corona 56% share"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="corona 56% share"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1971, Antonino Fernandez was appointed CEO">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1971, Antonino Fernandez was appointed CEO">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Anheuser-Busch 17.7 % of the equity">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Anheuser-Busch 17.7 % of the equity">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="The 50.2 % represented 43.9% voting"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="The 50.2 % represented 43.9% voting"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Mexican Stock exchange in 1994"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Mexican Stock exchange in 1994"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="History to 1970">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="History to 1970">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bought the brands and assets of the Toluca y Mexico Brewery">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bought the brands and assets of the Toluca y Mexico Brewery">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="country's oldest brand of beer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="country's oldest brand of beer"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1935"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1935"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1940s period of strong growth ">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1940s period of strong growth ">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="improve distribution methods and produc¬tion facilities ">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="improve distribution methods and produc¬tion facilities ">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="distribution: direct with profit sharing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="distribution: direct with profit sharing"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="concentrate domesti¬cally "/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="concentrate domesti¬cally "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Corona 2nd Brand">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Corona 2nd Brand">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Clear Glass Customers preference"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Clear Glass Customers preference"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Modelo 1st Brand"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Modelo 1st Brand"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="focus on Mexico City"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="focus on Mexico City"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="formed in 1922">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="formed in 1922">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Fernandez Family Sole owner since 1936"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Fernandez Family Sole owner since 1936"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Diez sole owner 1936"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Diez sole owner 1936"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Iriarte died in 1932"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Iriarte died in 1932"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Pablo Diez Fernandez, Braulio Irare, Marin Oyamburr"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Pablo Diez Fernandez, Braulio Irare, Marin Oyamburr"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="US Beer Market">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="US Beer Market">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="volume main driver"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="volume main driver"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="dense network of regional craft brewing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="dense network of regional craft brewing"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="80% of market">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="80% of market">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Miller"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Miller"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="adolf coors"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="adolf coors"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="AB">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="AB">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="75% of industry profits"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="75% of industry profits"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Groth expectations reduced"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Groth expectations reduced"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Consumption six times higher per cap"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Consumption six times higher per cap"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2nd largest nest to China"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2nd largest nest to China"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="Modelo in US">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="Modelo in US">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Us dist contracts">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Us dist contracts">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Gambrinus">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Gambrinus">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="eastern dist"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="eastern dist"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1986"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1986"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Chicago based Barton Beers 1st">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Chicago based Barton Beers 1st">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="largest importer in 25 western states"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="largest importer in 25 western states"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="production in Mexico"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="production in Mexico"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Modelo had final say on brand image"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Modelo had final say on brand image"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="procermex inc">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="procermex inc">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Coordinate"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Coordinate"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Supervise"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Supervise"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Support"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Support"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Modelo us subsidiary"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Modelo us subsidiary"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="importer/distributors">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="importer/distributors">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="advertixing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="advertixing"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="customs"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="customs"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="pricing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="pricing"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="insurance"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="insurance"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="transportation"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="transportation"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="competitive relationship"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="competitive relationship"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Autonomous"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Autonomous"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Local Companies"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Local Companies"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Marketing">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Marketing">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1996ad budget">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1996ad budget">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="an bsch 192 mil"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="an bsch 192 mil"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Heiniken 15 mil"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Heiniken 15 mil"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Corona 5.1 mil"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Corona 5.1 mil"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Fun in the sun">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Fun in the sun">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="relaxation"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="relaxation"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="escape"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="escape"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Barton Beer's idea"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Barton Beer's idea"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="dependable second choise"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="dependable second choise"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="beer for non beer drinkers"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="beer for non beer drinkers"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="found new following"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="found new following"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="not testosterone driven"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="not testosterone driven"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="not selling premium quality"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="not selling premium quality"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="surfing mythology"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="surfing mythology"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="2007 5 beers to us">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="2007 5 beers to us">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="131 million cases"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="131 million cases"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Heineken">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Heineken">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Main Import Comptitor"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Main Import Comptitor"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="3 of top 8 beers in US"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="3 of top 8 beers in US"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="History">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="History">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1991">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1991">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="distributors took the loss"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="distributors took the loss"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="doubling of federal excise tax on beer">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="doubling of federal excise tax on beer">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="distributor absorb the tax 92"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="distributor absorb the tax 92"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="sales decrease of 15 percent"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="sales decrease of 15 percent"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="rapid growth 1980s">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="rapid growth 1980s">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="second most popular imported beer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="second most popular imported beer"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="gained popularity in southern states"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="gained popularity in southern states"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Amalgamated Distillery Products Inc. (">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Amalgamated Distillery Products Inc. (">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="later renamed Barton Beers Ltd."/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="later renamed Barton Beers Ltd."/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="1979"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="1979"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
@ -15,37 +15,37 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_28" POSITION="right" TEXT="SaberMás trabaja con, desde y para la motivación"/>
|
<node ID="ID_28" POSITION="right" TEXT="SaberMás trabaja con, desde y para la motivación"/>
|
||||||
<node ID="ID_32" POSITION="right" TEXT="Trabajamos en equipo en nuestros proyectos "/>
|
<node ID="ID_32" POSITION="right" STYLE="fork" TEXT="Trabajamos en equipo en nuestros proyectos "/>
|
||||||
<node ID="ID_30" POSITION="right" TEXT="Cada uno va a su ritmo, y cada cual pone sus límites"/>
|
<node ID="ID_30" POSITION="right" STYLE="fork" TEXT="Cada uno va a su ritmo, y cada cual pone sus límites"/>
|
||||||
<node ID="ID_31" POSITION="right" TEXT="Aprendemos todos de todos"/>
|
<node ID="ID_31" POSITION="right" STYLE="fork" TEXT="Aprendemos todos de todos"/>
|
||||||
<node ID="ID_33" POSITION="right" TEXT="Valoramos lo que hemos aprendido"/>
|
<node ID="ID_33" POSITION="right" STYLE="fork" TEXT="Valoramos lo que hemos aprendido"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_3" POSITION="right" TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas "/>
|
<node ID="ID_3" POSITION="right" STYLE="fork" TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas "/>
|
||||||
<node ID="ID_4" POSITION="right" TEXT="Trabajo basado en la experimentación y en la investigación"/>
|
<node ID="ID_4" POSITION="right" STYLE="fork" TEXT="Trabajo basado en la experimentación y en la investigación"/>
|
||||||
<node ID="ID_8" POSITION="left" TEXT="Alternativa a otras actividades de ocio"/>
|
<node ID="ID_8" POSITION="left" STYLE="fork" TEXT="Alternativa a otras actividades de ocio"/>
|
||||||
<node ID="ID_37" POSITION="right" TEXT="Actividades centradas en el contexto cercano"/>
|
<node ID="ID_37" POSITION="right" STYLE="fork" TEXT="Actividades centradas en el contexto cercano"/>
|
||||||
<node ID="ID_6" POSITION="left" TEXT="Duración limitada: 5-6 semanas"/>
|
<node ID="ID_6" POSITION="left" STYLE="fork" TEXT="Duración limitada: 5-6 semanas"/>
|
||||||
<node ID="ID_5" POSITION="right" TEXT="Utilización de medios de expresión artística, digitales y analógicos"/>
|
<node ID="ID_5" POSITION="right" STYLE="fork" TEXT="Utilización de medios de expresión artística, digitales y analógicos"/>
|
||||||
<node ID="ID_9" POSITION="left" TEXT="Precio también limitado: 100-120?"/>
|
<node ID="ID_9" POSITION="left" STYLE="fork" TEXT="Precio también limitado: 100-120?"/>
|
||||||
<node ID="ID_23" POSITION="right" TEXT="Uso de la tecnología durante todo el proceso de aprendizaje"/>
|
<node ID="ID_23" POSITION="right" STYLE="fork" TEXT="Uso de la tecnología durante todo el proceso de aprendizaje"/>
|
||||||
<node ID="ID_7" POSITION="left" TEXT="Niños y niñas que quieren saber más"/>
|
<node ID="ID_7" POSITION="left" STYLE="fork" TEXT="Niños y niñas que quieren saber más"/>
|
||||||
<node ID="ID_22" POSITION="right" TEXT="Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)"/>
|
<node ID="ID_22" POSITION="right" STYLE="fork" TEXT="Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)"/>
|
||||||
<node ID="ID_10" POSITION="left" TEXT="De 8 a 12 años, sin separación por edades"/>
|
<node ID="ID_10" POSITION="left" STYLE="fork" TEXT="De 8 a 12 años, sin separación por edades"/>
|
||||||
<node ID="ID_19" POSITION="left" TEXT="Máximo 10/1 por taller"/>
|
<node ID="ID_19" POSITION="left" STYLE="fork" TEXT="Máximo 10/1 por taller"/>
|
||||||
<node ID="ID_2" POSITION="right" TEXT="Talleres temáticos">
|
<node ID="ID_2" POSITION="right" STYLE="fork" TEXT="Talleres temáticos">
|
||||||
<node ID="ID_13" POSITION="right" TEXT="Naturaleza">
|
<node ID="ID_13" POSITION="right" STYLE="fork" TEXT="Naturaleza">
|
||||||
<node ID="ID_17" POSITION="right" TEXT="Animales, Plantas, Piedras"/>
|
<node ID="ID_17" POSITION="right" STYLE="fork" TEXT="Animales, Plantas, Piedras"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_21" POSITION="right" TEXT="Arqueología"/>
|
<node ID="ID_21" POSITION="right" STYLE="fork" TEXT="Arqueología"/>
|
||||||
<node ID="ID_25" POSITION="right" TEXT="Culturas Antiguas">
|
<node ID="ID_25" POSITION="right" STYLE="fork" TEXT="Culturas Antiguas">
|
||||||
<node ID="ID_26" POSITION="right" TEXT="Egipto, Grecia, China..."/>
|
<node ID="ID_26" POSITION="right" STYLE="fork" TEXT="Egipto, Grecia, China..."/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_18" POSITION="right" TEXT="Energía"/>
|
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Energía"/>
|
||||||
<node ID="ID_38" POSITION="right" TEXT="Paleontología"/>
|
<node ID="ID_38" POSITION="right" STYLE="fork" TEXT="Paleontología"/>
|
||||||
<node ID="ID_16" POSITION="right" TEXT="Astronomía"/>
|
<node ID="ID_16" POSITION="right" STYLE="fork" TEXT="Astronomía"/>
|
||||||
<node ID="ID_20" POSITION="right" TEXT="Arquitectura"/>
|
<node ID="ID_20" POSITION="right" STYLE="fork" TEXT="Arquitectura"/>
|
||||||
<node ID="ID_11" POSITION="right" TEXT="Cocina"/>
|
<node ID="ID_11" POSITION="right" STYLE="fork" TEXT="Cocina"/>
|
||||||
<node ID="ID_24" POSITION="right" TEXT="Poesía"/>
|
<node ID="ID_24" POSITION="right" STYLE="fork" TEXT="Poesía"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</map>
|
</map>
|
File diff suppressed because one or more lines are too long
@ -12,7 +12,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_56" POSITION="right" STYLE="bubble" TEXT="Landscape of measures">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_56" POSITION="right" STYLE="bubble" TEXT="Landscape of measures">
|
||||||
<node ID="ID_45" POSITION="right" TEXT="Diversity index of innovation support instruments in the region">
|
<node ID="ID_45" POSITION="right" STYLE="fork" TEXT="Diversity index of innovation support instruments in the region">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -22,12 +22,12 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_57" POSITION="right" TEXT="Existing investments in measures"/>
|
<node ID="ID_57" POSITION="right" STYLE="fork" TEXT="Existing investments in measures"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_38" POSITION="right" STYLE="bubble" TEXT="What other regions do differently">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_38" POSITION="right" STYLE="bubble" TEXT="What other regions do differently">
|
||||||
<node ID="ID_46" POSITION="right" TEXT="Balance of measure index"/>
|
<node ID="ID_46" POSITION="right" STYLE="fork" TEXT="Balance of measure index"/>
|
||||||
<node ID="ID_77" POSITION="right" TEXT="Profile comparison with other regions"/>
|
<node ID="ID_77" POSITION="right" STYLE="fork" TEXT="Profile comparison with other regions"/>
|
||||||
<node ID="ID_112" POSITION="right" TEXT="Number of specific types of measures per capita"/>
|
<node ID="ID_112" POSITION="right" STYLE="fork" TEXT="Number of specific types of measures per capita"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_6" POSITION="left" STYLE="bubble" TEXT="How to design & implement measures">
|
<node ID="ID_6" POSITION="left" STYLE="bubble" TEXT="How to design & implement measures">
|
||||||
@ -42,9 +42,9 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_41" POSITION="left" STYLE="bubble" TEXT="Good practices"/>
|
<node BACKGROUND_COLOR="#feffff" ID="ID_41" POSITION="left" STYLE="bubble" TEXT="Good practices"/>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_80" POSITION="left" STYLE="bubble" TEXT="Diagnostics">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_80" POSITION="left" STYLE="bubble" TEXT="Diagnostics">
|
||||||
<node ID="ID_81" POSITION="left" TEXT="Internal business innovation factors"/>
|
<node ID="ID_81" POSITION="left" STYLE="fork" TEXT="Internal business innovation factors"/>
|
||||||
<node ID="ID_359" POSITION="left" TEXT="Return on investment to innovation">
|
<node ID="ID_359" POSITION="left" STYLE="fork" TEXT="Return on investment to innovation">
|
||||||
<node ID="ID_360" POSITION="left">
|
<node ID="ID_360" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -56,7 +56,7 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_361" POSITION="left">
|
<node ID="ID_361" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -67,7 +67,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_362" POSITION="left">
|
<node ID="ID_362" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -79,7 +79,7 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_363" POSITION="left">
|
<node ID="ID_363" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -91,13 +91,13 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_364" POSITION="left" TEXT="Increase in the number of innovative companies with in-house R&D">
|
<node ID="ID_364" POSITION="left" STYLE="fork" TEXT="Increase in the number of innovative companies with in-house R&D">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_365" POSITION="left" TEXT="Increase in th number of innovative companies without in-house R&D">
|
<node ID="ID_365" POSITION="left" STYLE="fork" TEXT="Increase in th number of innovative companies without in-house R&D">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_366" POSITION="left">
|
<node ID="ID_366" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -109,7 +109,7 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_367" POSITION="left">
|
<node ID="ID_367" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -121,7 +121,7 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_368" POSITION="left">
|
<node ID="ID_368" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -133,17 +133,17 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_369" POSITION="left" TEXT="Number of international patents">
|
<node ID="ID_369" POSITION="left" STYLE="fork" TEXT="Number of international patents">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_370" POSITION="left" TEXT="Start-up activity (as a percentage of start-up activity in the whole Federation)"/>
|
<node ID="ID_370" POSITION="left" STYLE="fork" TEXT="Start-up activity (as a percentage of start-up activity in the whole Federation)"/>
|
||||||
<node ID="ID_393" POSITION="left" TEXT="Number of innovative companies to the number of students ">
|
<node ID="ID_393" POSITION="left" STYLE="fork" TEXT="Number of innovative companies to the number of students ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_394" POSITION="left" TEXT="Number of innovative companies to the number of researchers ">
|
<node ID="ID_394" POSITION="left" STYLE="fork" TEXT="Number of innovative companies to the number of researchers ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_400" POSITION="left" TEXT="Volume of license agreements to the volume of R&D support from the regional budget ">
|
<node ID="ID_400" POSITION="left" STYLE="fork" TEXT="Volume of license agreements to the volume of R&D support from the regional budget ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -168,37 +168,37 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_15" POSITION="right" TEXT="Wages">
|
<node ID="ID_15" POSITION="right" STYLE="fork" TEXT="Wages">
|
||||||
<node ID="ID_12" POSITION="right" TEXT="Dynamics of real wages"/>
|
<node ID="ID_12" POSITION="right" STYLE="fork" TEXT="Dynamics of real wages"/>
|
||||||
<node ID="ID_14" POSITION="right" TEXT="Average wage (compare to the Fed)"/>
|
<node ID="ID_14" POSITION="right" STYLE="fork" TEXT="Average wage (compare to the Fed)"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_86" POSITION="right" TEXT="Productivity">
|
<node ID="ID_86" POSITION="right" STYLE="fork" TEXT="Productivity">
|
||||||
<node ID="ID_190" POSITION="right" TEXT="Labor productivity">
|
<node ID="ID_190" POSITION="right" STYLE="fork" TEXT="Labor productivity">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_191" POSITION="right" TEXT="Labor productivity growth rate"/>
|
<node ID="ID_191" POSITION="right" STYLE="fork" TEXT="Labor productivity growth rate"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_87" POSITION="right" TEXT="Jobs">
|
<node ID="ID_87" POSITION="right" STYLE="fork" TEXT="Jobs">
|
||||||
<node ID="ID_13" POSITION="right" TEXT="Share of high-productive jobs">
|
<node ID="ID_13" POSITION="right" STYLE="fork" TEXT="Share of high-productive jobs">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_88" POSITION="right" TEXT="Share of creative industries jobs"/>
|
<node ID="ID_88" POSITION="right" STYLE="fork" TEXT="Share of creative industries jobs"/>
|
||||||
<node ID="ID_336" POSITION="right" TEXT="Uneployment rate of university graduates">
|
<node ID="ID_336" POSITION="right" STYLE="fork" TEXT="Uneployment rate of university graduates">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_89" POSITION="right" TEXT="Income">
|
<node ID="ID_89" POSITION="right" STYLE="fork" TEXT="Income">
|
||||||
<node ID="ID_11" POSITION="right" TEXT="GRP per capita and its growth rate"/>
|
<node ID="ID_11" POSITION="right" STYLE="fork" TEXT="GRP per capita and its growth rate"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_8" POSITION="right" STYLE="bubble" TEXT="Influencing factors">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_8" POSITION="right" STYLE="bubble" TEXT="Influencing factors">
|
||||||
<node ID="ID_55" POSITION="right" TEXT="Economy">
|
<node ID="ID_55" POSITION="right" STYLE="fork" TEXT="Economy">
|
||||||
<node ID="ID_166" POSITION="right" TEXT="Economic structure"/>
|
<node ID="ID_166" POSITION="right" STYLE="fork" TEXT="Economic structure"/>
|
||||||
<node ID="ID_395" POSITION="right" TEXT="Volume of manufacturing production per capita "/>
|
<node ID="ID_395" POSITION="right" STYLE="fork" TEXT="Volume of manufacturing production per capita "/>
|
||||||
<node ID="ID_396" POSITION="right" TEXT="Manufacturing value added per capita (non-natural resource-based)"/>
|
<node ID="ID_396" POSITION="right" STYLE="fork" TEXT="Manufacturing value added per capita (non-natural resource-based)"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_9" POSITION="right" TEXT="The enabling environment">
|
<node ID="ID_9" POSITION="right" STYLE="fork" TEXT="The enabling environment">
|
||||||
<node ID="ID_16" POSITION="right" TEXT="Ease of doing business">
|
<node ID="ID_16" POSITION="right" STYLE="fork" TEXT="Ease of doing business">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -207,11 +207,11 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_412" POSITION="right" TEXT="Level of administrative barriers (number and cost of administrative procedures) ">
|
<node ID="ID_412" POSITION="right" STYLE="fork" TEXT="Level of administrative barriers (number and cost of administrative procedures) ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_18" POSITION="right" TEXT="Competition index">
|
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Competition index">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -221,8 +221,8 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_120" POSITION="right" TEXT="Workforce">
|
<node ID="ID_120" POSITION="right" STYLE="fork" TEXT="Workforce">
|
||||||
<node ID="ID_19" POSITION="right" TEXT="Quality of education">
|
<node ID="ID_19" POSITION="right" STYLE="fork" TEXT="Quality of education">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -231,12 +231,12 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_337" POSITION="right" TEXT="Inrease in the number of International students">
|
<node ID="ID_337" POSITION="right" STYLE="fork" TEXT="Inrease in the number of International students">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_121" POSITION="right" TEXT="Quantity of education">
|
<node ID="ID_121" POSITION="right" STYLE="fork" TEXT="Quantity of education">
|
||||||
<node ID="ID_122" POSITION="right" TEXT="Participation in life-long learning">
|
<node ID="ID_122" POSITION="right" STYLE="fork" TEXT="Participation in life-long learning">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
@ -247,10 +247,10 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_333" POSITION="right" TEXT="Increase in literarecy ">
|
<node ID="ID_333" POSITION="right" STYLE="fork" TEXT="Increase in literarecy ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_188" POSITION="right">
|
<node ID="ID_188" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -261,7 +261,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_276" POSITION="right">
|
<node ID="ID_276" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -272,16 +272,16 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_332" POSITION="right" TEXT="Increase in University students">
|
<node ID="ID_332" POSITION="right" STYLE="fork" TEXT="Increase in University students">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_351" POSITION="right" TEXT="Government expenditure on General University Funding"/>
|
<node ID="ID_351" POSITION="right" STYLE="fork" TEXT="Government expenditure on General University Funding"/>
|
||||||
<node ID="ID_409" POSITION="right" TEXT="Access to training, information, and consulting support ">
|
<node ID="ID_409" POSITION="right" STYLE="fork" TEXT="Access to training, information, and consulting support ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_285" POSITION="right" TEXT="Science & engineering workforce">
|
<node ID="ID_285" POSITION="right" STYLE="fork" TEXT="Science & engineering workforce">
|
||||||
<node ID="ID_147" POSITION="right" TEXT="Availability of scientists and engineers">
|
<node ID="ID_147" POSITION="right" STYLE="fork" TEXT="Availability of scientists and engineers">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -291,34 +291,34 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_189" POSITION="right" TEXT="Amount of researches per 10 thousands population">
|
<node ID="ID_189" POSITION="right" STYLE="fork" TEXT="Amount of researches per 10 thousands population">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_284" POSITION="right" TEXT="Average wage of researches per average wage in the region"/>
|
<node ID="ID_284" POSITION="right" STYLE="fork" TEXT="Average wage of researches per average wage in the region"/>
|
||||||
<node ID="ID_286" POSITION="right" TEXT="Share of researchers in the total number of employees in the region"/>
|
<node ID="ID_286" POSITION="right" STYLE="fork" TEXT="Share of researchers in the total number of employees in the region"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_132" POSITION="right" TEXT="Government">
|
<node ID="ID_132" POSITION="right" STYLE="fork" TEXT="Government">
|
||||||
<node ID="ID_134" POSITION="right" TEXT="Total expenditure of general government as a percentage of GDP"/>
|
<node ID="ID_134" POSITION="right" STYLE="fork" TEXT="Total expenditure of general government as a percentage of GDP"/>
|
||||||
<node ID="ID_352" POSITION="right" TEXT="Government expenditure on Economic Development"/>
|
<node ID="ID_352" POSITION="right" STYLE="fork" TEXT="Government expenditure on Economic Development"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_342" POSITION="right" TEXT="Access to finance">
|
<node ID="ID_342" POSITION="right" STYLE="fork" TEXT="Access to finance">
|
||||||
<node ID="ID_387" POSITION="right" TEXT="Deals">
|
<node ID="ID_387" POSITION="right" STYLE="fork" TEXT="Deals">
|
||||||
<node ID="ID_345" POSITION="right" TEXT="Venture capital investments for start-ups as a percentage of GDP"/>
|
<node ID="ID_345" POSITION="right" STYLE="fork" TEXT="Venture capital investments for start-ups as a percentage of GDP"/>
|
||||||
<node ID="ID_344" POSITION="right" TEXT="Amounts of business angel, pre-seed, seed and venture financing"/>
|
<node ID="ID_344" POSITION="right" STYLE="fork" TEXT="Amounts of business angel, pre-seed, seed and venture financing"/>
|
||||||
<node ID="ID_348" POSITION="right" TEXT="Amount of public co-funding of business R&D"/>
|
<node ID="ID_348" POSITION="right" STYLE="fork" TEXT="Amount of public co-funding of business R&D"/>
|
||||||
<node ID="ID_385" POSITION="right" TEXT="Number of startups received venture financing "/>
|
<node ID="ID_385" POSITION="right" STYLE="fork" TEXT="Number of startups received venture financing "/>
|
||||||
<node ID="ID_386" POSITION="right" TEXT="Number of companies received equity investments ">
|
<node ID="ID_386" POSITION="right" STYLE="fork" TEXT="Number of companies received equity investments ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_388" POSITION="right" TEXT="Available">
|
<node ID="ID_388" POSITION="right" STYLE="fork" TEXT="Available">
|
||||||
<node ID="ID_347" POSITION="right" TEXT="Amount of matching grants available in the region for business R&D"/>
|
<node ID="ID_347" POSITION="right" STYLE="fork" TEXT="Amount of matching grants available in the region for business R&D"/>
|
||||||
<node ID="ID_346" POSITION="right" TEXT="Number of Business Angels"/>
|
<node ID="ID_346" POSITION="right" STYLE="fork" TEXT="Number of Business Angels"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_135" POSITION="right" TEXT="ICT">
|
<node ID="ID_135" POSITION="right" STYLE="fork" TEXT="ICT">
|
||||||
<node ID="ID_17" POSITION="right" TEXT="ICT use">
|
<node ID="ID_17" POSITION="right" STYLE="fork" TEXT="ICT use">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -328,17 +328,17 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_136" POSITION="right" TEXT="Broadband penetration "/>
|
<node ID="ID_136" POSITION="right" STYLE="fork" TEXT="Broadband penetration "/>
|
||||||
<node ID="ID_334" POSITION="right" TEXT="Internet penetration"/>
|
<node ID="ID_334" POSITION="right" STYLE="fork" TEXT="Internet penetration"/>
|
||||||
<node ID="ID_335" POSITION="right" TEXT="Computer literacy "/>
|
<node ID="ID_335" POSITION="right" STYLE="fork" TEXT="Computer literacy "/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_10" POSITION="right" TEXT="Behavior of innovation actors">
|
<node ID="ID_10" POSITION="right" STYLE="fork" TEXT="Behavior of innovation actors">
|
||||||
<node ID="ID_167" POSITION="right" TEXT="Access to markets">
|
<node ID="ID_167" POSITION="right" STYLE="fork" TEXT="Access to markets">
|
||||||
<node ID="ID_97" POSITION="right" TEXT="FDI">
|
<node ID="ID_97" POSITION="right" STYLE="fork" TEXT="FDI">
|
||||||
<node ID="ID_96" POSITION="right" TEXT="foreign JVs"/>
|
<node ID="ID_96" POSITION="right" STYLE="fork" TEXT="foreign JVs"/>
|
||||||
<node ID="ID_157" POSITION="right" TEXT="Inflow of foreign direct investments in high-technology industries"/>
|
<node ID="ID_157" POSITION="right" STYLE="fork" TEXT="Inflow of foreign direct investments in high-technology industries"/>
|
||||||
<node ID="ID_158" POSITION="right" TEXT="Foreign direct investment jobs">
|
<node ID="ID_158" POSITION="right" STYLE="fork" TEXT="Foreign direct investment jobs">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -348,12 +348,12 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_159" POSITION="right" TEXT="FDI as a share of regional non natural resource-based GRP "/>
|
<node ID="ID_159" POSITION="right" STYLE="fork" TEXT="FDI as a share of regional non natural resource-based GRP "/>
|
||||||
<node ID="ID_160" POSITION="right" TEXT="Number of foreign subsidiaries operating in the region"/>
|
<node ID="ID_160" POSITION="right" STYLE="fork" TEXT="Number of foreign subsidiaries operating in the region"/>
|
||||||
<node ID="ID_161" POSITION="right" TEXT="Share of foreign controlled enterprises"/>
|
<node ID="ID_161" POSITION="right" STYLE="fork" TEXT="Share of foreign controlled enterprises"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_168" POSITION="right" TEXT="Exports">
|
<node ID="ID_168" POSITION="right" STYLE="fork" TEXT="Exports">
|
||||||
<node ID="ID_169" POSITION="right" TEXT="Export intensity in manufacturing and services">
|
<node ID="ID_169" POSITION="right" STYLE="fork" TEXT="Export intensity in manufacturing and services">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
@ -364,7 +364,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_375" POSITION="right">
|
<node ID="ID_375" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -376,7 +376,7 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_377" POSITION="right">
|
<node ID="ID_377" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -389,10 +389,10 @@
|
|||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_338" POSITION="right" TEXT="Share of high-technology products in government procurements"/>
|
<node ID="ID_338" POSITION="right" STYLE="fork" TEXT="Share of high-technology products in government procurements"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_34" POSITION="right" TEXT="Entrepreneurship culture">
|
<node ID="ID_34" POSITION="right" STYLE="fork" TEXT="Entrepreneurship culture">
|
||||||
<node ID="ID_150" POSITION="right" TEXT="Fear of failure rate">
|
<node ID="ID_150" POSITION="right" STYLE="fork" TEXT="Fear of failure rate">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -402,7 +402,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_151" POSITION="right" TEXT="Entrepreneurship as desirable career choice">
|
<node ID="ID_151" POSITION="right" STYLE="fork" TEXT="Entrepreneurship as desirable career choice">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -412,7 +412,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_152" POSITION="right" TEXT="High Status Successful Entrepreneurship">
|
<node ID="ID_152" POSITION="right" STYLE="fork" TEXT="High Status Successful Entrepreneurship">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -423,9 +423,9 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_54" POSITION="right" TEXT="Collaboration & partnerships">
|
<node ID="ID_54" POSITION="right" STYLE="fork" TEXT="Collaboration & partnerships">
|
||||||
<node ID="ID_163" POSITION="right" TEXT="Number of business contracts with foreign partners for R&D collaboration"/>
|
<node ID="ID_163" POSITION="right" STYLE="fork" TEXT="Number of business contracts with foreign partners for R&D collaboration"/>
|
||||||
<node ID="ID_164" POSITION="right" TEXT="Share of R&D financed from foreign sources">
|
<node ID="ID_164" POSITION="right" STYLE="fork" TEXT="Share of R&D financed from foreign sources">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -435,7 +435,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_165" POSITION="right" TEXT="Firms collaborating on innovation with organizations in other countries">
|
<node ID="ID_165" POSITION="right" STYLE="fork" TEXT="Firms collaborating on innovation with organizations in other countries">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -445,7 +445,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_173" POSITION="right">
|
<node ID="ID_173" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -456,7 +456,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_174" POSITION="right">
|
<node ID="ID_174" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -467,10 +467,10 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_358" POSITION="right" TEXT="science and industry links"/>
|
<node ID="ID_358" POSITION="right" STYLE="fork" TEXT="science and industry links"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_115" POSITION="right" TEXT="Technology absorption">
|
<node ID="ID_115" POSITION="right" STYLE="fork" TEXT="Technology absorption">
|
||||||
<node ID="ID_116" POSITION="right" TEXT="Local supplier quality">
|
<node ID="ID_116" POSITION="right" STYLE="fork" TEXT="Local supplier quality">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -480,7 +480,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_127" POSITION="right">
|
<node ID="ID_127" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -491,10 +491,10 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_129" POSITION="right" TEXT="Number of purchased new technologies">
|
<node ID="ID_129" POSITION="right" STYLE="fork" TEXT="Number of purchased new technologies">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_354" POSITION="right">
|
<node ID="ID_354" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -505,9 +505,9 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_355" POSITION="right" TEXT="Machinery and equipment"/>
|
<node ID="ID_355" POSITION="right" STYLE="fork" TEXT="Machinery and equipment"/>
|
||||||
<node ID="ID_356" POSITION="right" TEXT="Software and databases"/>
|
<node ID="ID_356" POSITION="right" STYLE="fork" TEXT="Software and databases"/>
|
||||||
<node ID="ID_373" POSITION="right">
|
<node ID="ID_373" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -519,14 +519,14 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_374" POSITION="right" TEXT="Share of wastes in the total volume of production (by sector)">
|
<node ID="ID_374" POSITION="right" STYLE="fork" TEXT="Share of wastes in the total volume of production (by sector)">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_123" POSITION="right" TEXT="Innovation activities in firms">
|
<node ID="ID_123" POSITION="right" STYLE="fork" TEXT="Innovation activities in firms">
|
||||||
<node ID="ID_35" POSITION="right" TEXT="Share of innovative companies"/>
|
<node ID="ID_35" POSITION="right" STYLE="fork" TEXT="Share of innovative companies"/>
|
||||||
<node ID="ID_128" POSITION="right" TEXT="Business R&D expenditures per GRP"/>
|
<node ID="ID_128" POSITION="right" STYLE="fork" TEXT="Business R&D expenditures per GRP"/>
|
||||||
<node ID="ID_145" POSITION="right" TEXT="Factors hampering innovation">
|
<node ID="ID_145" POSITION="right" STYLE="fork" TEXT="Factors hampering innovation">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -536,22 +536,22 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_350" POSITION="right" TEXT="Expenditure on innovation by firm size"/>
|
<node ID="ID_350" POSITION="right" STYLE="fork" TEXT="Expenditure on innovation by firm size"/>
|
||||||
<node ID="ID_357" POSITION="right" TEXT="R&D and other intellectl property products"/>
|
<node ID="ID_357" POSITION="right" STYLE="fork" TEXT="R&D and other intellectl property products"/>
|
||||||
<node ID="ID_390" POSITION="right" TEXT="Growth of the number of innovative companies "/>
|
<node ID="ID_390" POSITION="right" STYLE="fork" TEXT="Growth of the number of innovative companies "/>
|
||||||
<node ID="ID_398" POSITION="right" TEXT="Outpus">
|
<node ID="ID_398" POSITION="right" STYLE="fork" TEXT="Outpus">
|
||||||
<node ID="ID_124" POSITION="right" TEXT="Volume of new to Russian market production per GRP"/>
|
<node ID="ID_124" POSITION="right" STYLE="fork" TEXT="Volume of new to Russian market production per GRP"/>
|
||||||
<node ID="ID_376" POSITION="right" TEXT="Volume of new to world market production per total production">
|
<node ID="ID_376" POSITION="right" STYLE="fork" TEXT="Volume of new to world market production per total production">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_389" POSITION="right" TEXT="Growth of the volume of production of innovative companies "/>
|
<node ID="ID_389" POSITION="right" STYLE="fork" TEXT="Growth of the volume of production of innovative companies "/>
|
||||||
<node ID="ID_397" POSITION="right" TEXT="Volume of innovation production per capita ">
|
<node ID="ID_397" POSITION="right" STYLE="fork" TEXT="Volume of innovation production per capita ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_148" POSITION="right" TEXT="Entrepreneurial activities">
|
<node ID="ID_148" POSITION="right" STYLE="fork" TEXT="Entrepreneurial activities">
|
||||||
<node ID="ID_117" POSITION="right" TEXT="New business density">
|
<node ID="ID_117" POSITION="right" STYLE="fork" TEXT="New business density">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -561,7 +561,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_119" POSITION="right" TEXT="Volume of newly registered corporations ">
|
<node ID="ID_119" POSITION="right" STYLE="fork" TEXT="Volume of newly registered corporations ">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -571,11 +571,11 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_170" POSITION="right" TEXT="Share of gazelle companies in the total number of businesses"/>
|
<node ID="ID_170" POSITION="right" STYLE="fork" TEXT="Share of gazelle companies in the total number of businesses"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_277" POSITION="right" TEXT="R&D production">
|
<node ID="ID_277" POSITION="right" STYLE="fork" TEXT="R&D production">
|
||||||
<node ID="ID_280" POSITION="right" TEXT="Outputs">
|
<node ID="ID_280" POSITION="right" STYLE="fork" TEXT="Outputs">
|
||||||
<node ID="ID_279" POSITION="right">
|
<node ID="ID_279" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -586,9 +586,9 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_278" POSITION="right" TEXT="Amount of PCT-applications per 1 mln. population"/>
|
<node ID="ID_278" POSITION="right" STYLE="fork" TEXT="Amount of PCT-applications per 1 mln. population"/>
|
||||||
<node ID="ID_281" POSITION="right" TEXT="Number of domestic patent applications per R&D expenditures"/>
|
<node ID="ID_281" POSITION="right" STYLE="fork" TEXT="Number of domestic patent applications per R&D expenditures"/>
|
||||||
<node ID="ID_282" POSITION="right">
|
<node ID="ID_282" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -600,15 +600,15 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_283" POSITION="right" TEXT="Publication activity of regional scientists and researches"/>
|
<node ID="ID_283" POSITION="right" STYLE="fork" TEXT="Publication activity of regional scientists and researches"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_340" POSITION="right" TEXT="Inputs">
|
<node ID="ID_340" POSITION="right" STYLE="fork" TEXT="Inputs">
|
||||||
<node ID="ID_341" POSITION="right" TEXT="Regional and local budget expenditures on R&D"/>
|
<node ID="ID_341" POSITION="right" STYLE="fork" TEXT="Regional and local budget expenditures on R&D"/>
|
||||||
<node ID="ID_349" POSITION="right" TEXT="Government R&D expenditure "/>
|
<node ID="ID_349" POSITION="right" STYLE="fork" TEXT="Government R&D expenditure "/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_415" POSITION="right" TEXT="Public sector innovation">
|
<node ID="ID_415" POSITION="right" STYLE="fork" TEXT="Public sector innovation">
|
||||||
<node ID="ID_416" POSITION="right">
|
<node ID="ID_416" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -619,8 +619,8 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_418" POSITION="right" TEXT="E-government index"/>
|
<node ID="ID_418" POSITION="right" STYLE="fork" TEXT="E-government index"/>
|
||||||
<node ID="ID_419" POSITION="right">
|
<node ID="ID_419" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -633,10 +633,10 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_113" POSITION="right" TEXT="Supporting organizations">
|
<node ID="ID_113" POSITION="right" STYLE="fork" TEXT="Supporting organizations">
|
||||||
<node ID="ID_51" POSITION="right" TEXT="Research institutions">
|
<node ID="ID_51" POSITION="right" STYLE="fork" TEXT="Research institutions">
|
||||||
<node ID="ID_171" POSITION="right" TEXT="Collaboration">
|
<node ID="ID_171" POSITION="right" STYLE="fork" TEXT="Collaboration">
|
||||||
<node ID="ID_172" POSITION="right">
|
<node ID="ID_172" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -649,16 +649,16 @@
|
|||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_184" POSITION="right" TEXT="Resources">
|
<node ID="ID_184" POSITION="right" STYLE="fork" TEXT="Resources">
|
||||||
<node ID="ID_137" POSITION="right" TEXT="R&D expenditures per 1 researcher"/>
|
<node ID="ID_137" POSITION="right" STYLE="fork" TEXT="R&D expenditures per 1 researcher"/>
|
||||||
<node ID="ID_146" POSITION="right" TEXT="Average wage of researches per average wage in the region"/>
|
<node ID="ID_146" POSITION="right" STYLE="fork" TEXT="Average wage of researches per average wage in the region"/>
|
||||||
<node ID="ID_353" POSITION="right" TEXT="High education expenditure on R&D"/>
|
<node ID="ID_353" POSITION="right" STYLE="fork" TEXT="High education expenditure on R&D"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_185" POSITION="right" TEXT="Scientific outputs">
|
<node ID="ID_185" POSITION="right" STYLE="fork" TEXT="Scientific outputs">
|
||||||
<node ID="ID_306" POSITION="right" TEXT="Publications">
|
<node ID="ID_306" POSITION="right" STYLE="fork" TEXT="Publications">
|
||||||
<node ID="ID_304" POSITION="right" TEXT="Impact of publications in the ISI database (h-index)"/>
|
<node ID="ID_304" POSITION="right" STYLE="fork" TEXT="Impact of publications in the ISI database (h-index)"/>
|
||||||
<node ID="ID_186" POSITION="right" TEXT="Number of publications in international journals per worker per year"/>
|
<node ID="ID_186" POSITION="right" STYLE="fork" TEXT="Number of publications in international journals per worker per year"/>
|
||||||
<node ID="ID_303" POSITION="right">
|
<node ID="ID_303" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -670,10 +670,10 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_187" POSITION="right" TEXT="Number of foreign patents granted per staff"/>
|
<node ID="ID_187" POSITION="right" STYLE="fork" TEXT="Number of foreign patents granted per staff"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_312" POSITION="right" TEXT="Supportive measures">
|
<node ID="ID_312" POSITION="right" STYLE="fork" TEXT="Supportive measures">
|
||||||
<node ID="ID_313" POSITION="right" TEXT="Diversity index of university entrepreneurship support measures">
|
<node ID="ID_313" POSITION="right" STYLE="fork" TEXT="Diversity index of university entrepreneurship support measures">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -684,9 +684,9 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_299" POSITION="right" TEXT="Commercialization">
|
<node ID="ID_299" POSITION="right" STYLE="fork" TEXT="Commercialization">
|
||||||
<node ID="ID_308" POSITION="right" TEXT="Licensing">
|
<node ID="ID_308" POSITION="right" STYLE="fork" TEXT="Licensing">
|
||||||
<node ID="ID_298" POSITION="right">
|
<node ID="ID_298" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -698,8 +698,8 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_309" POSITION="right" TEXT="Spin-offs">
|
<node ID="ID_309" POSITION="right" STYLE="fork" TEXT="Spin-offs">
|
||||||
<node ID="ID_300" POSITION="right">
|
<node ID="ID_300" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -711,9 +711,9 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_310" POSITION="right" TEXT="Industry contracts">
|
<node ID="ID_310" POSITION="right" STYLE="fork" TEXT="Industry contracts">
|
||||||
<node ID="ID_297" POSITION="right" TEXT="Industry revenue per staff "/>
|
<node ID="ID_297" POSITION="right" STYLE="fork" TEXT="Industry revenue per staff "/>
|
||||||
<node ID="ID_305" POSITION="right">
|
<node ID="ID_305" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -725,8 +725,8 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_307" POSITION="right" TEXT="Share of industry income from foreign companies"/>
|
<node ID="ID_307" POSITION="right" STYLE="fork" TEXT="Share of industry income from foreign companies"/>
|
||||||
<node ID="ID_90" POSITION="right">
|
<node ID="ID_90" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -737,12 +737,12 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_311" POSITION="right" TEXT="Difficulties faced by research organization in collaborating with SMEs"/>
|
<node ID="ID_311" POSITION="right" STYLE="fork" TEXT="Difficulties faced by research organization in collaborating with SMEs"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_153" POSITION="right" TEXT="Private market">
|
<node ID="ID_153" POSITION="right" STYLE="fork" TEXT="Private market">
|
||||||
<node ID="ID_154" POSITION="right" TEXT="Number of innovation & IP services organizations">
|
<node ID="ID_154" POSITION="right" STYLE="fork" TEXT="Number of innovation & IP services organizations">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -752,7 +752,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_155" POSITION="right" TEXT="Number of private innovation infrastructure organizations ">
|
<node ID="ID_155" POSITION="right" STYLE="fork" TEXT="Number of private innovation infrastructure organizations ">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -762,18 +762,18 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_410" POSITION="right" TEXT="Access to certification and licensing for specific activities "/>
|
<node ID="ID_410" POSITION="right" STYLE="fork" TEXT="Access to certification and licensing for specific activities "/>
|
||||||
<node ID="ID_411" POSITION="right" TEXT="Access to suppliers of equipment, production and engineering services "/>
|
<node ID="ID_411" POSITION="right" STYLE="fork" TEXT="Access to suppliers of equipment, production and engineering services "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_114" POSITION="right" TEXT="Innovation infrastructure">
|
<node ID="ID_114" POSITION="right" STYLE="fork" TEXT="Innovation infrastructure">
|
||||||
<node ID="ID_327" POSITION="right" TEXT="Investments">
|
<node ID="ID_327" POSITION="right" STYLE="fork" TEXT="Investments">
|
||||||
<node ID="ID_315" POSITION="right" TEXT="Public investment in innovation infrastructure"/>
|
<node ID="ID_315" POSITION="right" STYLE="fork" TEXT="Public investment in innovation infrastructure"/>
|
||||||
<node ID="ID_328" POSITION="right" TEXT="Increase of government investment in innovation infrastructure"/>
|
<node ID="ID_328" POSITION="right" STYLE="fork" TEXT="Increase of government investment in innovation infrastructure"/>
|
||||||
<node ID="ID_339" POSITION="right" TEXT=" Number of Development institution projects performed in the region"/>
|
<node ID="ID_339" POSITION="right" STYLE="fork" TEXT=" Number of Development institution projects performed in the region"/>
|
||||||
<node ID="ID_391" POSITION="right" TEXT="Volume of seed investments by the regional budget "/>
|
<node ID="ID_391" POSITION="right" STYLE="fork" TEXT="Volume of seed investments by the regional budget "/>
|
||||||
<node ID="ID_392" POSITION="right" TEXT="Volume of venture financing from the regional budget "/>
|
<node ID="ID_392" POSITION="right" STYLE="fork" TEXT="Volume of venture financing from the regional budget "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_413" POSITION="right" TEXT="Volume of state support per one company "/>
|
<node ID="ID_413" POSITION="right" STYLE="fork" TEXT="Volume of state support per one company "/>
|
||||||
<arrowlink DESTINATION="ID_4" STARTARROW="Default"/>
|
<arrowlink DESTINATION="ID_4" STARTARROW="Default"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -790,10 +790,10 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_42" POSITION="left" STYLE="bubble" TEXT="Demand for measure">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_42" POSITION="left" STYLE="bubble" TEXT="Demand for measure">
|
||||||
<node ID="ID_50" POSITION="left" TEXT="Quality of beneficiaries">
|
<node ID="ID_50" POSITION="left" STYLE="fork" TEXT="Quality of beneficiaries">
|
||||||
<node ID="ID_292" POSITION="left" TEXT="Growth rates of employment in supported innovative firms"/>
|
<node ID="ID_292" POSITION="left" STYLE="fork" TEXT="Growth rates of employment in supported innovative firms"/>
|
||||||
<node ID="ID_293" POSITION="left" TEXT="Growth rates of employment in supported innovative firms"/>
|
<node ID="ID_293" POSITION="left" STYLE="fork" TEXT="Growth rates of employment in supported innovative firms"/>
|
||||||
<node ID="ID_323" POSITION="left" TEXT="Role of IP for tenants/clients">
|
<node ID="ID_323" POSITION="left" STYLE="fork" TEXT="Role of IP for tenants/clients">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -804,8 +804,8 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_326" POSITION="left" TEXT="Share of tenants with innovation activities"/>
|
<node ID="ID_326" POSITION="left" STYLE="fork" TEXT="Share of tenants with innovation activities"/>
|
||||||
<node ID="ID_329" POSITION="left">
|
<node ID="ID_329" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -817,7 +817,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_330" POSITION="left">
|
<node ID="ID_330" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -829,15 +829,15 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_78" POSITION="left" TEXT="Number of beneficiaries">
|
<node ID="ID_78" POSITION="left" STYLE="fork" TEXT="Number of beneficiaries">
|
||||||
<node ID="ID_383" POSITION="left" TEXT="Number of projects conducted by companies in cooperation with innovation infrastructure"/>
|
<node ID="ID_383" POSITION="left" STYLE="fork" TEXT="Number of projects conducted by companies in cooperation with innovation infrastructure"/>
|
||||||
<node ID="ID_325" POSITION="left" TEXT="Scope and intensity of use of services offered to firms"/>
|
<node ID="ID_325" POSITION="left" STYLE="fork" TEXT="Scope and intensity of use of services offered to firms"/>
|
||||||
<node ID="ID_384" POSITION="left" TEXT="Number of companies supported by the infrastructure (training, information, consultations, etc.)"/>
|
<node ID="ID_384" POSITION="left" STYLE="fork" TEXT="Number of companies supported by the infrastructure (training, information, consultations, etc.)"/>
|
||||||
<node ID="ID_401" POSITION="left" TEXT="Increase in the number of business applying for public support programmes (regional, federal, international) "/>
|
<node ID="ID_401" POSITION="left" STYLE="fork" TEXT="Increase in the number of business applying for public support programmes (regional, federal, international) "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_182" POSITION="left" TEXT="Degree of access">
|
<node ID="ID_182" POSITION="left" STYLE="fork" TEXT="Degree of access">
|
||||||
<node ID="ID_52" POSITION="left" TEXT="Level of awareness">
|
<node ID="ID_52" POSITION="left" STYLE="fork" TEXT="Level of awareness">
|
||||||
<node ID="ID_181" POSITION="left">
|
<node ID="ID_181" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -849,8 +849,8 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_53" POSITION="left" TEXT="Transparency">
|
<node ID="ID_53" POSITION="left" STYLE="fork" TEXT="Transparency">
|
||||||
<node ID="ID_175" POSITION="left">
|
<node ID="ID_175" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -863,7 +863,7 @@
|
|||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_183" POSITION="left">
|
<node ID="ID_183" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -876,15 +876,15 @@
|
|||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_176" POSITION="left" TEXT="Number of applicants">
|
<node ID="ID_176" POSITION="left" STYLE="fork" TEXT="Number of applicants">
|
||||||
<node ID="ID_177" POSITION="left" TEXT="Increase in the number of business applying for public support programmes"/>
|
<node ID="ID_177" POSITION="left" STYLE="fork" TEXT="Increase in the number of business applying for public support programmes"/>
|
||||||
<node ID="ID_178" POSITION="left" TEXT="Number of companies that know about a particular program"/>
|
<node ID="ID_178" POSITION="left" STYLE="fork" TEXT="Number of companies that know about a particular program"/>
|
||||||
<node ID="ID_179" POSITION="left" TEXT="Increase in the number of start-ups applying to receive VC investments"/>
|
<node ID="ID_179" POSITION="left" STYLE="fork" TEXT="Increase in the number of start-ups applying to receive VC investments"/>
|
||||||
<node ID="ID_180" POSITION="left" TEXT="Increase in the number of start-ups applying for a place in the incubators"/>
|
<node ID="ID_180" POSITION="left" STYLE="fork" TEXT="Increase in the number of start-ups applying for a place in the incubators"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="Inputs of measures">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="Inputs of measures">
|
||||||
<node ID="ID_110" POSITION="left" TEXT="Qualified staff">
|
<node ID="ID_110" POSITION="left" STYLE="fork" TEXT="Qualified staff">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -894,44 +894,44 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_111" POSITION="left" TEXT="Budget per beneficiary"/>
|
<node ID="ID_111" POSITION="left" STYLE="fork" TEXT="Budget per beneficiary"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_48" POSITION="left" STYLE="bubble" TEXT="Performance of measure">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_48" POSITION="left" STYLE="bubble" TEXT="Performance of measure">
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_47" POSITION="left" TEXT="Implementation of measure">
|
<node ID="ID_47" POSITION="left" TEXT="Implementation of measure">
|
||||||
<node ID="ID_106" POSITION="left" TEXT="Target vs. actual KPIs"/>
|
<node ID="ID_106" POSITION="left" STYLE="fork" TEXT="Target vs. actual KPIs"/>
|
||||||
<node ID="ID_287" POSITION="left" TEXT="Intermediate outputs per budget"/>
|
<node ID="ID_287" POSITION="left" STYLE="fork" TEXT="Intermediate outputs per budget"/>
|
||||||
<node ID="ID_372" POSITION="left" TEXT="Qualification of staff">
|
<node ID="ID_372" POSITION="left" STYLE="fork" TEXT="Qualification of staff">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_58" POSITION="left" TEXT="Output of measure">
|
<node ID="ID_58" POSITION="left" STYLE="fork" TEXT="Output of measure">
|
||||||
<node ID="ID_101" POSITION="left" TEXT="Opinion surveys">
|
<node ID="ID_101" POSITION="left" STYLE="fork" TEXT="Opinion surveys">
|
||||||
<node ID="ID_102" POSITION="left" TEXT="Opinions of beneficiaries"/>
|
<node ID="ID_102" POSITION="left" STYLE="fork" TEXT="Opinions of beneficiaries"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_103" POSITION="left" TEXT="Hard metrics">
|
<node ID="ID_103" POSITION="left" STYLE="fork" TEXT="Hard metrics">
|
||||||
<node ID="ID_289" POSITION="left" TEXT="Output per headcount (e.g. staff, researchers)"/>
|
<node ID="ID_289" POSITION="left" STYLE="fork" TEXT="Output per headcount (e.g. staff, researchers)"/>
|
||||||
<node ID="ID_288" POSITION="left" TEXT="Productivity analysis"/>
|
<node ID="ID_288" POSITION="left" STYLE="fork" TEXT="Productivity analysis"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_49" POSITION="left" STYLE="bubble" TEXT="Impact of measure">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_49" POSITION="left" STYLE="bubble" TEXT="Impact of measure">
|
||||||
<node ID="ID_79" POSITION="left" TEXT="Opinion surveys">
|
<node ID="ID_79" POSITION="left" STYLE="fork" TEXT="Opinion surveys">
|
||||||
<node ID="ID_294" POSITION="left" TEXT="Perception of support impact (opinion polls)"/>
|
<node ID="ID_294" POSITION="left" STYLE="fork" TEXT="Perception of support impact (opinion polls)"/>
|
||||||
<node ID="ID_404" POSITION="left" TEXT="Perception of the activity of regional government by the regional companies "/>
|
<node ID="ID_404" POSITION="left" STYLE="fork" TEXT="Perception of the activity of regional government by the regional companies "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_104" POSITION="left" TEXT="Hard metrics">
|
<node ID="ID_104" POSITION="left" STYLE="fork" TEXT="Hard metrics">
|
||||||
<node ID="ID_331" POSITION="left" TEXT="Increase in number of small innovation enterprises "/>
|
<node ID="ID_331" POSITION="left" STYLE="fork" TEXT="Increase in number of small innovation enterprises "/>
|
||||||
<node ID="ID_402" POSITION="left" TEXT="Growth of the total volume of salary in the supported companies (excluding inflation) ">
|
<node ID="ID_402" POSITION="left" STYLE="fork" TEXT="Growth of the total volume of salary in the supported companies (excluding inflation) ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_403" POSITION="left" TEXT="Growth of the volume of regional taxes paid by the supported companies ">
|
<node ID="ID_403" POSITION="left" STYLE="fork" TEXT="Growth of the volume of regional taxes paid by the supported companies ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_405" POSITION="left" TEXT="Growth of the volume of export at the supported companies "/>
|
<node ID="ID_405" POSITION="left" STYLE="fork" TEXT="Growth of the volume of export at the supported companies "/>
|
||||||
<node ID="ID_406" POSITION="left" TEXT="Number of new products/projects at the companies that received support "/>
|
<node ID="ID_406" POSITION="left" STYLE="fork" TEXT="Number of new products/projects at the companies that received support "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_290" POSITION="left" TEXT="Impact assessment "/>
|
<node ID="ID_290" POSITION="left" STYLE="fork" TEXT="Impact assessment "/>
|
||||||
<node ID="ID_291" POSITION="left">
|
<node ID="ID_291" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -943,7 +943,7 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_296" POSITION="left">
|
<node ID="ID_296" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -960,8 +960,8 @@
|
|||||||
<node BACKGROUND_COLOR="#e0e5ef" ID="ID_69" POSITION="left" STYLE="bubble" TEXT="How to improve image">
|
<node BACKGROUND_COLOR="#e0e5ef" ID="ID_69" POSITION="left" STYLE="bubble" TEXT="How to improve image">
|
||||||
<font SIZE="18"/>
|
<font SIZE="18"/>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_75" POSITION="left" STYLE="bubble" TEXT="Rankings">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_75" POSITION="left" STYLE="bubble" TEXT="Rankings">
|
||||||
<node ID="ID_70" POSITION="left" TEXT="macro indicators"/>
|
<node ID="ID_70" POSITION="left" STYLE="fork" TEXT="macro indicators"/>
|
||||||
<node ID="ID_71" POSITION="left" TEXT="meso-indicators"/>
|
<node ID="ID_71" POSITION="left" STYLE="fork" TEXT="meso-indicators"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_76" POSITION="left" STYLE="bubble" TEXT="Innovation investment climate">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_76" POSITION="left" STYLE="bubble" TEXT="Innovation investment climate">
|
||||||
<arrowlink DESTINATION="ID_9" STARTARROW="Default"/>
|
<arrowlink DESTINATION="ID_9" STARTARROW="Default"/>
|
||||||
@ -978,15 +978,15 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node BACKGROUND_COLOR="#feffff" ID="ID_61" POSITION="right" STYLE="bubble" TEXT="Competitive niches">
|
<node BACKGROUND_COLOR="#feffff" ID="ID_61" POSITION="right" STYLE="bubble" TEXT="Competitive niches">
|
||||||
<node ID="ID_59" POSITION="right" TEXT="Clusters behavior">
|
<node ID="ID_59" POSITION="right" STYLE="fork" TEXT="Clusters behavior">
|
||||||
<node ID="ID_60" POSITION="right" TEXT="Cluster EU star rating"/>
|
<node ID="ID_60" POSITION="right" STYLE="fork" TEXT="Cluster EU star rating"/>
|
||||||
<node ID="ID_318" POSITION="right" TEXT="Share of value added of cluster enterprises in GRP"/>
|
<node ID="ID_318" POSITION="right" STYLE="fork" TEXT="Share of value added of cluster enterprises in GRP"/>
|
||||||
<node ID="ID_320" POSITION="right" TEXT="Share of cluster products in the relevant world market segment ">
|
<node ID="ID_320" POSITION="right" STYLE="fork" TEXT="Share of cluster products in the relevant world market segment ">
|
||||||
<icon BUILTIN="messagebox_warning"/>
|
<icon BUILTIN="messagebox_warning"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_321" POSITION="right" TEXT="Share of export in cluster total volume of sales"/>
|
<node ID="ID_321" POSITION="right" STYLE="fork" TEXT="Share of export in cluster total volume of sales"/>
|
||||||
<node ID="ID_379" POSITION="right" TEXT="Growth of the volume of production in the cluster companies"/>
|
<node ID="ID_379" POSITION="right" STYLE="fork" TEXT="Growth of the volume of production in the cluster companies"/>
|
||||||
<node ID="ID_380" POSITION="right">
|
<node ID="ID_380" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -997,31 +997,31 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_381" POSITION="right" TEXT="Growth of the volume of innovation production in the cluster"/>
|
<node ID="ID_381" POSITION="right" STYLE="fork" TEXT="Growth of the volume of innovation production in the cluster"/>
|
||||||
<node ID="ID_407" POSITION="right" TEXT="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) "/>
|
<node ID="ID_407" POSITION="right" STYLE="fork" TEXT="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) "/>
|
||||||
<node ID="ID_408" POSITION="right" TEXT="Internal behavior">
|
<node ID="ID_408" POSITION="right" STYLE="fork" TEXT="Internal behavior">
|
||||||
<node ID="ID_319" POSITION="right" TEXT="Median wage in the cluster"/>
|
<node ID="ID_319" POSITION="right" STYLE="fork" TEXT="Median wage in the cluster"/>
|
||||||
<node ID="ID_382" POSITION="right" TEXT="Growth of the volume of R&D in the cluster"/>
|
<node ID="ID_382" POSITION="right" STYLE="fork" TEXT="Growth of the volume of R&D in the cluster"/>
|
||||||
<node ID="ID_108" POSITION="right" TEXT="Cluster collaboration"/>
|
<node ID="ID_108" POSITION="right" STYLE="fork" TEXT="Cluster collaboration"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_66" POSITION="right" TEXT="R&D">
|
<node ID="ID_66" POSITION="right" STYLE="fork" TEXT="R&D">
|
||||||
<node ID="ID_65" POSITION="right" TEXT="Patent map"/>
|
<node ID="ID_65" POSITION="right" STYLE="fork" TEXT="Patent map"/>
|
||||||
<node ID="ID_371" POSITION="right" TEXT="Publications map"/>
|
<node ID="ID_371" POSITION="right" STYLE="fork" TEXT="Publications map"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_67" POSITION="right" TEXT="Industry">
|
<node ID="ID_67" POSITION="right" STYLE="fork" TEXT="Industry">
|
||||||
<node ID="ID_63" POSITION="right" TEXT="FDI map"/>
|
<node ID="ID_63" POSITION="right" STYLE="fork" TEXT="FDI map"/>
|
||||||
<node ID="ID_62" POSITION="right" TEXT="Gazelle map"/>
|
<node ID="ID_62" POSITION="right" STYLE="fork" TEXT="Gazelle map"/>
|
||||||
<node ID="ID_131" POSITION="right" TEXT="Business R&D expenditures as a share of revenues by sector"/>
|
<node ID="ID_131" POSITION="right" STYLE="fork" TEXT="Business R&D expenditures as a share of revenues by sector"/>
|
||||||
<node ID="ID_378" POSITION="right" TEXT="Share of regional products in the world market"/>
|
<node ID="ID_378" POSITION="right" STYLE="fork" TEXT="Share of regional products in the world market"/>
|
||||||
<node ID="ID_414" POSITION="right" TEXT="Expenditure on innovation by firm size, by sector "/>
|
<node ID="ID_414" POSITION="right" STYLE="fork" TEXT="Expenditure on innovation by firm size, by sector "/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_72" POSITION="right" TEXT="Entrepreneurship">
|
<node ID="ID_72" POSITION="right" STYLE="fork" TEXT="Entrepreneurship">
|
||||||
<node ID="ID_73" POSITION="right" TEXT="Startup map"/>
|
<node ID="ID_73" POSITION="right" STYLE="fork" TEXT="Startup map"/>
|
||||||
<node ID="ID_74" POSITION="right" TEXT="Venture investment map"/>
|
<node ID="ID_74" POSITION="right" STYLE="fork" TEXT="Venture investment map"/>
|
||||||
<node ID="ID_317" POSITION="right" TEXT="Attractiveness to public competitive funding">
|
<node ID="ID_317" POSITION="right" STYLE="fork" TEXT="Attractiveness to public competitive funding">
|
||||||
<node ID="ID_316" POSITION="right" TEXT="Fed and regional seed fund investments"/>
|
<node ID="ID_316" POSITION="right" STYLE="fork" TEXT="Fed and regional seed fund investments"/>
|
||||||
<node ID="ID_314" POSITION="right">
|
<node ID="ID_314" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -1036,7 +1036,7 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ffffff" ID="ID_64" POSITION="right" STYLE="bubble" TEXT="Competitiveness support factors">
|
<node BACKGROUND_COLOR="#ffffff" ID="ID_64" POSITION="right" STYLE="bubble" TEXT="Competitiveness support factors">
|
||||||
<node ID="ID_68" POSITION="right" TEXT="Private investment in innovation"/>
|
<node ID="ID_68" POSITION="right" STYLE="fork" TEXT="Private investment in innovation"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,31 +1,31 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node BACKGROUND_COLOR="#32e36a" ID="ID_1" TEXT="PPM Plan">
|
<node ID="ID_1" TEXT="PPM Plan">
|
||||||
<node ID="ID_5" POSITION="right" TEXT="Finance">
|
<node ID="ID_5" POSITION="right" STYLE="fork" TEXT="Finance">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_206" POSITION="left" TEXT="Governance & Executive">
|
<node ID="ID_206" POSITION="left" STYLE="fork" TEXT="Governance & Executive">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_3" POSITION="right" TEXT="Administration">
|
<node ID="ID_3" POSITION="right" STYLE="fork" TEXT="Administration">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_18" LINK="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit" POSITION="right" TEXT="Backlog Management">
|
<node ID="ID_18" LINK="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit" POSITION="right" TEXT="Backlog Management">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_204" POSITION="left" TEXT="Client Project Management">
|
<node ID="ID_204" POSITION="left" STYLE="fork" TEXT="Client Project Management">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_268" POSITION="left" TEXT="Probono">
|
<node ID="ID_268" POSITION="left" STYLE="fork" TEXT="Probono">
|
||||||
<node ID="ID_269" POSITION="left"/>
|
<node ID="ID_269" POSITION="left" STYLE="fork"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_10" POSITION="left" TEXT="Freeform IT">
|
<node ID="ID_10" POSITION="left" STYLE="fork" TEXT="Freeform IT">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_247" POSITION="right" TEXT="Community Outreach">
|
<node ID="ID_247" POSITION="right" STYLE="fork" TEXT="Community Outreach">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_154" POSITION="right" TEXT="Human Resources">
|
<node ID="ID_154" POSITION="right" STYLE="fork" TEXT="Human Resources">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -35,16 +35,16 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_16" POSITION="left" TEXT="Freeform Hosting">
|
<node ID="ID_16" POSITION="left" STYLE="fork" TEXT="Freeform Hosting">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_4" POSITION="right" TEXT="Business Development ">
|
<node ID="ID_4" POSITION="right" STYLE="fork" TEXT="Business Development ">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_261" POSITION="right" TEXT="R&D">
|
<node ID="ID_261" POSITION="right" STYLE="fork" TEXT="R&D">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
<node ID="ID_263" POSITION="right" TEXT="Goals"/>
|
<node ID="ID_263" POSITION="right" STYLE="fork" TEXT="Goals"/>
|
||||||
<node ID="ID_264" POSITION="right" TEXT="Formulize"/>
|
<node ID="ID_264" POSITION="right" STYLE="fork" TEXT="Formulize"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</map>
|
</map>
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="5W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Finance"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2064nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Governance & Executive"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="3W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Administration"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1854nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Backlog Management"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/><ap:Hyperlink Url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/></ap:Topic><ap:Topic OId="2044nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Client Project Management"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2684nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="2694nezC90m8NYAi2fjQvw=="><ap:Text PlainText=""><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Probono"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1054nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Freeform IT"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2474nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Community Outreach"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1544nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Human Resources"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1654nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Freeform Hosting"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="4W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Business Development "><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2614nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="2634nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Goals"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2644nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Formulize"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="R&D"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="PPM Plan"><ap:Font/></ap:Text><ap:Color FillColor="ff32e36a"/><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="5W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Finance"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2064nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Governance & Executive"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="3W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Administration"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1854nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Backlog Management"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/><ap:Hyperlink Url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/></ap:Topic><ap:Topic OId="2044nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Client Project Management"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2684nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="2694nezC90m8NYAi2fjQvw=="><ap:Text PlainText=""><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Probono"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1054nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Freeform IT"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2474nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Community Outreach"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1544nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Human Resources"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1654nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Freeform Hosting"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="4W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Business Development "><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2614nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="2634nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Goals"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2644nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Formulize"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="R&D"><ap:Font Bold="true" Size="12"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="PPM Plan"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
@ -1,6 +1,6 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_0" TEXT="">
|
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_0" TEXT="">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
@ -12,26 +12,26 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_1" POSITION="right" STYLE="bubble" TEXT="objectifs journée">
|
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_1" POSITION="right" STYLE="bubble" TEXT="objectifs journée">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_2" POSITION="right" STYLE="bubble" TEXT=""business plan" associatif ?">
|
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_2" POSITION="right" STYLE="bubble" TEXT=""business plan" associatif ?">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_3" POSITION="right" STYLE="bubble" TEXT="modèle / activités responsabilités">
|
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_3" POSITION="right" STYLE="bubble" TEXT="modèle / activités responsabilités">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_4" POSITION="right" STYLE="bubble" TEXT="articulations / LOG">
|
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_4" POSITION="right" STYLE="bubble" TEXT="articulations / LOG">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_5" POSITION="right" STYLE="bubble" TEXT="SWOT">
|
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_5" POSITION="right" STYLE="bubble" TEXT="SWOT">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_6" POSITION="right" STYLE="bubble" TEXT="">
|
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_6" POSITION="right" STYLE="bubble" TEXT="">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
<node ID="ID_7" POSITION="right" TEXT="l'entreprise a aujourd'hui un potentiel important">
|
<node ID="ID_7" POSITION="right" TEXT="l'entreprise a aujourd'hui un potentiel important">
|
||||||
<node ID="ID_8" POSITION="right" TEXT="compétences professionnel"/>
|
<node ID="ID_8" POSITION="right" TEXT="compétences professionnel"/>
|
||||||
@ -77,7 +77,7 @@
|
|||||||
<node ID="ID_45" POSITION="right" TEXT="pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve"/>
|
<node ID="ID_45" POSITION="right" TEXT="pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_46" POSITION="right" STYLE="bubble" TEXT="Risques : cauchemars, dangers">
|
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_46" POSITION="right" STYLE="bubble" TEXT="Risques : cauchemars, dangers">
|
||||||
<font BOLD="true" NAME="Arial"/>
|
<font BOLD="true" NAME="Arial" SIZE="12"/>
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
<node ID="ID_47" POSITION="right" TEXT="disparition des forces vives, départ de membres actuels"/>
|
<node ID="ID_47" POSITION="right" TEXT="disparition des forces vives, départ de membres actuels"/>
|
||||||
<node ID="ID_48" POSITION="right" TEXT="opportunités atteignables mais difficile"/>
|
<node ID="ID_48" POSITION="right" TEXT="opportunités atteignables mais difficile"/>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,17 +1,15 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node ID="ID_1" TEXT="Artigos GF comentários interessantes">
|
<node ID="ID_1" TEXT="Artigos GF comentários interessantes">
|
||||||
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_2" POSITION="left" STYLE="rectagle" TEXT="Poorter 1999. Functional Ecology. 13:396-410">
|
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_2" POSITION="left" STYLE="rectagle" TEXT="Poorter 1999. Functional Ecology. 13:396-410">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#cccccc"/>
|
<edge COLOR="#cccccc"/>
|
||||||
<node ID="ID_3" POSITION="left" TEXT="Espécies pioneiras crescem mais rápido do que as não pioneiras">
|
<node ID="ID_3" POSITION="left" STYLE="fork" TEXT="Espécies pioneiras crescem mais rápido do que as não pioneiras">
|
||||||
<node ID="ID_4" POSITION="left" TEXT="Tolerância a sombra está relacionada com persistência e não com crescimento"/>
|
<node ID="ID_4" POSITION="left" STYLE="fork" TEXT="Tolerância a sombra está relacionada com persistência e não com crescimento"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_17" POSITION="right" STYLE="rectagle" TEXT="Chazdon 2010. Biotropica. 42(1): 31–40">
|
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_17" POSITION="right" STYLE="rectagle" TEXT="Chazdon 2010. Biotropica. 42(1): 31–40">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#cccccc"/>
|
<edge COLOR="#cccccc"/>
|
||||||
<node ID="ID_24" POSITION="right" TEXT="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. "/>
|
<node ID="ID_24" POSITION="right" STYLE="fork" TEXT="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. "/>
|
||||||
<node ID="ID_22" POSITION="right">
|
<node ID="ID_22" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -28,7 +26,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_23" POSITION="right">
|
<node ID="ID_23" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -42,7 +40,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_25" POSITION="right">
|
<node ID="ID_25" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -60,7 +58,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_26" POSITION="right">
|
<node ID="ID_26" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -73,7 +71,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_27" POSITION="right">
|
<node ID="ID_27" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -87,7 +85,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_28" POSITION="right">
|
<node ID="ID_28" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -106,7 +104,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_29" POSITION="right">
|
<node ID="ID_29" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -141,7 +139,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_30" POSITION="right">
|
<node ID="ID_30" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -154,7 +152,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_31" POSITION="right">
|
<node ID="ID_31" POSITION="right" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -184,7 +182,7 @@
|
|||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#cccccc" ID="ID_5" POSITION="left" STYLE="rectagle" TEXT="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities">
|
<node BACKGROUND_COLOR="#cccccc" ID="ID_5" POSITION="left" STYLE="rectagle" TEXT="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities">
|
||||||
<edge COLOR="#cccccc"/>
|
<edge COLOR="#cccccc"/>
|
||||||
<node ID="ID_6" POSITION="left">
|
<node ID="ID_6" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -202,7 +200,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_7" POSITION="left">
|
<node ID="ID_7" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -215,7 +213,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_8" POSITION="left">
|
<node ID="ID_8" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -237,10 +235,10 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_9" POSITION="left" TEXT="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal."/>
|
<node ID="ID_9" POSITION="left" STYLE="fork" TEXT="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal."/>
|
||||||
<node ID="ID_12" POSITION="left" TEXT="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro"/>
|
<node ID="ID_12" POSITION="left" STYLE="fork" TEXT="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro"/>
|
||||||
<node ID="ID_13" POSITION="left" TEXT="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb."/>
|
<node ID="ID_13" POSITION="left" STYLE="fork" TEXT="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb."/>
|
||||||
<node ID="ID_14" POSITION="left">
|
<node ID="ID_14" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -264,7 +262,7 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_15" POSITION="left">
|
<node ID="ID_15" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
|
@ -10,56 +10,56 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="hygiëne"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="hygiëne"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="diensten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="diensten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="energie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="energie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kamer herkent gebruiker"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kamer herkent gebruiker"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="automatische lichten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="automatische lichten"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="inrichting (woning)">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="inrichting (woning)">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="advies">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="advies">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kleuren en stijlen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kleuren en stijlen"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="monitoring">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="monitoring">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="eigendomsverificatie"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="eigendomsverificatie"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kwaliteit"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kwaliteit"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="medicijnen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="medicijnen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="alternatieven"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="alternatieven"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="neveneffecten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="neveneffecten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="werking"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="werking"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kwaliteit"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kwaliteit"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="electronica">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="electronica">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="monitoring">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="monitoring">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="productie verloop">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="productie verloop">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="testfasen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="testfasen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wat/wanneer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wat/wanneer"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="door wie"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="door wie"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="levensloop">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="levensloop">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="gebruikscycli"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="gebruikscycli"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kwaliteit">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kwaliteit">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="reparatieservice"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="reparatieservice"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="rechtstreekse link naar producent bij falen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="rechtstreekse link naar producent bij falen"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="eigendomsverificatie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="eigendomsverificatie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="afdanking (sluikstorten)"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="afdanking (sluikstorten)"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="koop-verkoop"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="koop-verkoop"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="GPS tracking"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="GPS tracking"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="voeding">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="voeding">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="zie bij handelingen -->winkelen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="zie bij handelingen -->winkelen"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" STYLE="rectagle" TEXT="kleding">
|
<node ID="ID_null" POSITION="left" STYLE="rectagle" TEXT="kleding">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="stijlen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="stijlen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="begeleiding bij het winkelen naar gelijkaardige kleding"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="begeleiding bij het winkelen naar gelijkaardige kleding"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="monitoring">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="monitoring">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -69,17 +69,17 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kwaliteitsinfo bij aankoop">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kwaliteitsinfo bij aankoop">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="reviews"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="reviews"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="info uit cloud"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="info uit cloud"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="informatiebronnen per merk">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="informatiebronnen per merk">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="slimme kledij"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="slimme kledij"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="veiligheid">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="veiligheid">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="criminaliteit">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="criminaliteit">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -88,25 +88,25 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Aantal ongevallen/criminele feiten registreren">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Aantal ongevallen/criminele feiten registreren">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Terugkoppeling naar politie/verkeersdienst"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Terugkoppeling naar politie/verkeersdienst"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Meer controle"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Meer controle"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Mapping van probleemsituaties"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Mapping van probleemsituaties"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="diefstal">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="diefstal">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="tracking via gps"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="tracking via gps"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wapenhandel">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wapenhandel">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="opsporen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="opsporen"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="drugs">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="drugs">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="opsporen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="opsporen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="testen per woonregio (via afvoerstelsels)"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="testen per woonregio (via afvoerstelsels)"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="individuele tests"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="individuele tests"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="verkeer">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="verkeer">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -115,32 +115,32 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="ongevallen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="ongevallen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="info over de staat van het wegdek">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="info over de staat van het wegdek">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aanpassing van max. snelheid"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aanpassing van max. snelheid"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="waarschuwingen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="waarschuwingen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wegenwerken"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wegenwerken"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="oorzaak">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="oorzaak">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="opsporen van vluchtmisdrijf"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="opsporen van vluchtmisdrijf"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Automatisch opbellen van hulpdiensten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Automatisch opbellen van hulpdiensten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="nagaan van de oorzaak"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="nagaan van de oorzaak"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="preventie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="preventie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bestraffen van chauffeurs?"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bestraffen van chauffeurs?"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="roekeloos rijgedrag opsporen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="roekeloos rijgedrag opsporen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="via sensoren aan boord versnelling, manouvres, snelheid,... registreren"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="via sensoren aan boord versnelling, manouvres, snelheid,... registreren"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Openbare fietsen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Openbare fietsen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Fiets bestellen in grote steden"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Fiets bestellen in grote steden"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Trackingsysteem, # fietsen op 1 plaats"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Trackingsysteem, # fietsen op 1 plaats"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Openbaar vervoer"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Openbaar vervoer"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="filevorming">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="filevorming">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Omleiding zoeken"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Omleiding zoeken"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="preventie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="preventie">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -153,15 +153,15 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ffffff" ID="ID_null" POSITION="left" TEXT="handelingen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="handelingen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="winkelen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="winkelen">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="winkelhulp">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="winkelhulp">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="boodschappenlijst">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="boodschappenlijst">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="alternatieven indien uitverkocht"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="alternatieven indien uitverkocht"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="dichtste bij bovenaan"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="dichtste bij bovenaan"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="recepten generator">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="recepten generator">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -171,37 +171,37 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bestellingen op afstand"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bestellingen op afstand"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="digitale portemonnee"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="digitale portemonnee"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="productinfo">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="productinfo">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="alternatieve producten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="alternatieve producten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="diëet checker"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="diëet checker"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kwaliteit">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kwaliteit">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="voedingstoffen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="voedingstoffen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bio"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bio"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="databases v. reviews"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="databases v. reviews"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="via cloud"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="via cloud"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="prijs"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="prijs"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="allergie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="allergie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Salmonella sensor"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Salmonella sensor"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Sensor voor vers fruit en vlees"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Sensor voor vers fruit en vlees"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Gezondheidscontrole"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Gezondheidscontrole"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="industrie"/>
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="industrie"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aandoeningen en situaties">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aandoeningen en situaties">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="dementen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="dementen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="eten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="eten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wassen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wassen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wegloopdetectie"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wegloopdetectie"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="zwangerschap">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="zwangerschap">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="geboortetimer">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="geboortetimer">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -211,8 +211,8 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="info over voeding">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="info over voeding">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="via cloud info over voeding">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="via cloud info over voeding">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -222,24 +222,24 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wat is gezond"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wat is gezond"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="baby monitoren"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="baby monitoren"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="sport">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="sport">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="opvolging van de sporter">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="opvolging van de sporter">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="gps"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="gps"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="cadans"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="cadans"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="energieverbruik"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="energieverbruik"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bloeddruk"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bloeddruk"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="hartslag"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="hartslag"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="cultuur">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="cultuur">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="festival"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="festival"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="bouw">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="bouw">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -248,33 +248,33 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="opvolging zoals plannen zijn getekend">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="opvolging zoals plannen zijn getekend">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="nameten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="nameten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="juistheid van materialen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="juistheid van materialen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="isolatie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="isolatie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="warmtemetingen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="warmtemetingen"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="ziektes">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="ziektes">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="stress">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="stress">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="monitoring">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="monitoring">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="in welke afdeling een probleem">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="in welke afdeling een probleem">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aanpak"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aanpak"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aan welke factoren ligt dat"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aan welke factoren ligt dat"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="afreageren"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="afreageren"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="thuisverzorging">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="thuisverzorging">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="link naar ziekenhuis"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="link naar ziekenhuis"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="link naar dokter"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="link naar dokter"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="meting van de symptomen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="meting van de symptomen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="objectieve metingen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="objectieve metingen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="toevoeging van eigen waarneming"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="toevoeging van eigen waarneming"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="verschillende ziektes">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="verschillende ziektes">
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -283,86 +283,86 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="anorexia">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="anorexia">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="eten ze voldoende"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="eten ze voldoende"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="nagaan of ze eten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="nagaan of ze eten"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="astma">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="astma">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="detectie van luchtkwaliteit">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="detectie van luchtkwaliteit">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="in kaart brengen van">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="in kaart brengen van">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="allergie veroorzakende deeltjes"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="allergie veroorzakende deeltjes"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="pollen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="pollen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="vervuiling"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="vervuiling"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="epilepsie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="epilepsie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aanval voorspellen??"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aanval voorspellen??"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="diabetes">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="diabetes">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="suikerspiegel meten">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="suikerspiegel meten">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="automatische inspuiting"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="automatische inspuiting"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="alert indien te laag"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="alert indien te laag"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aids">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aids">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="vergroten van de database aan info"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="vergroten van de database aan info"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="mucoviscidose">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="mucoviscidose">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="alert voor donor"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="alert voor donor"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="longcapaciteit meten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="longcapaciteit meten"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="MS">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="MS">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bevorderen van communicatie tijdens de aftakeling">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bevorderen van communicatie tijdens de aftakeling">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="naar familie en vrienden toe"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="naar familie en vrienden toe"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="naar de dokters toe"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="naar de dokters toe"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="feedback van de lichaamsconditie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="feedback van de lichaamsconditie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aan dokter">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aan dokter">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="op afstand consulatie"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="op afstand consulatie"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="volledig overzicht"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="volledig overzicht"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="contacteert patient indien nodig"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="contacteert patient indien nodig"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="link">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="link">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="naar behandelend arts"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="naar behandelend arts"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="naar hulpdiensten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="naar hulpdiensten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="naar ziekenhuis"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="naar ziekenhuis"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="aan de patiënt">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="aan de patiënt">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="waarschuwingen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="waarschuwingen"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="milieu">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="milieu">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="alternatieve energie">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="alternatieve energie">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="kernenergie"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="kernenergie"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="zon"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="zon"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="wind"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="wind"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="waterreserves">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="waterreserves">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="vervuiling"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="vervuiling"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="reserves"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="reserves"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="eco systemen">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="eco systemen">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="diversiteit"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="diversiteit"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="dioxines"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="dioxines"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="afval">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="afval">
|
||||||
<node ID="ID_null" POSITION="left"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="cradle 2 cradle"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="cradle 2 cradle"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="riolen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="riolen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="verwerking"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="verwerking"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="pollutie"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="pollutie"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="mag ik dit door mijn gootsteen kappen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="mag ik dit door mijn gootsteen kappen"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bosbouw">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bosbouw">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="bodemvervuiling">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="bodemvervuiling">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="onderzoek"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="onderzoek"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="parasieten"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="parasieten"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="ziektes bij bomen"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="ziektes bij bomen"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -152,12 +152,12 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_3" POSITION="left" STYLE="elipse" TEXT="Tipos de computadora">
|
<node ID="ID_3" POSITION="left" STYLE="bubble" TEXT="Tipos de computadora">
|
||||||
<font BOLD="true" SIZE="18"/>
|
<font BOLD="true" SIZE="18"/>
|
||||||
<node ID="ID_8" POSITION="left" STYLE="elipse" TEXT="Computadora personal de escritorio o Desktop">
|
<node ID="ID_8" POSITION="left" STYLE="bubble" TEXT="Computadora personal de escritorio o Desktop">
|
||||||
<font BOLD="true" SIZE="12"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_10" POSITION="left" STYLE="elipse">
|
<node ID="ID_10" POSITION="left" STYLE="bubble">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -168,13 +168,13 @@
|
|||||||
</richcontent>
|
</richcontent>
|
||||||
<font BOLD="true" SIZE="12"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_11" POSITION="left" STYLE="elipse" TEXT="Laptop">
|
<node ID="ID_11" POSITION="left" STYLE="bubble" TEXT="Laptop">
|
||||||
<font BOLD="true" SIZE="12"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_12" POSITION="left" STYLE="elipse" TEXT="Servidor">
|
<node ID="ID_12" POSITION="left" STYLE="bubble" TEXT="Servidor">
|
||||||
<font BOLD="true" SIZE="12"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_13" POSITION="left" STYLE="elipse" TEXT="Tablet PC">
|
<node ID="ID_13" POSITION="left" STYLE="bubble" TEXT="Tablet PC">
|
||||||
<font BOLD="true" SIZE="12"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node BACKGROUND_COLOR="#f2981b" ID="ID_null" LINK="prospace.com" TEXT="Prospace">
|
<node ID="ID_null" LINK="prospace.com" TEXT="Prospace">
|
||||||
<edge COLOR="#cc5627"/>
|
<edge COLOR="#cc5627"/>
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
@ -9,26 +9,26 @@
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Third Party ">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Third Party ">
|
||||||
<node ID="ID_null" LINK="thumbshots.org" POSITION="left" STYLE="rectagle" TEXT="Thumbshot"/>
|
<node ID="ID_null" LINK="thumbshots.org" POSITION="left" STYLE="rectagle" TEXT="Thumbshot"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Newspapers">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Newspapers">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="College Newspapers"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="College Newspapers"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="right" TEXT="Partnerships">
|
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="Partnerships">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Websites">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Websites">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Business Networks">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Business Networks">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="konnects.com"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="konnects.com"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Xing"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Xing"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Career Counseling">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Career Counseling">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Professional Associations"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Professional Associations"/>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="Fraternity"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Fraternity"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_null" POSITION="left" TEXT="White-Label">
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="White-Label">
|
||||||
<node ID="ID_null" POSITION="left" TEXT="http://www.harrisconnect.com/"/>
|
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="http://www.harrisconnect.com/"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</map>
|
</map>
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Thumbshot"><ap:Font/></ap:Text><ap:SubTopicShape/><ap:Hyperlink Url="thumbshots.org"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Third Party "><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="College Newspapers"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Newspapers"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="konnects.com"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Xing"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Business Networks"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Websites"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Partnerships"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Professional Associations"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Fraternity"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Career Counseling"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="http://www.harrisconnect.com/"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="White-Label"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Prospace"><ap:Font/></ap:Text><ap:Color FillColor="fff2981b"/><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/><ap:Hyperlink Url="prospace.com"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Thumbshot"><ap:Font/></ap:Text><ap:SubTopicShape/><ap:Hyperlink Url="thumbshots.org"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Third Party "><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="College Newspapers"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Newspapers"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="konnects.com"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Xing"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Business Networks"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Websites"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Partnerships"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Professional Associations"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Fraternity"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Career Counseling"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="http://www.harrisconnect.com/"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="White-Label"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Prospace"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/><ap:Hyperlink Url="prospace.com"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
@ -1,3 +1,3 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node ID="ID_1" STYLE="elipse" TEXT="Clickview Overview"/>
|
<node ID="ID_1" STYLE="bubble" TEXT="Clickview Overview"/>
|
||||||
</map>
|
</map>
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Clickview Overview"><ap:Font/></ap:Text><ap:SubTopicShape/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Clickview Overview"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
@ -1,3 +1,3 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node ID="ID_1" STYLE="elipse" TEXT="Clickview Overview"/>
|
<node ID="ID_1" STYLE="bubble" TEXT="Clickview Overview"/>
|
||||||
</map>
|
</map>
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Clickview Overview"><ap:Font/></ap:Text><ap:SubTopicShape/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Clickview Overview"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>
|
@ -3,211 +3,164 @@
|
|||||||
<font SIZE="24"/>
|
<font SIZE="24"/>
|
||||||
<edge COLOR="#ffffff"/>
|
<edge COLOR="#ffffff"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_134" POSITION="right" STYLE="bubble" TEXT="Y ERES UN TURISTA">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_134" POSITION="right" STYLE="bubble" TEXT="Y ERES UN TURISTA">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_4" POSITION="left" STYLE="bubble" TEXT="Y ERES UN RESIDENTE">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_4" POSITION="left" STYLE="bubble" TEXT="Y ERES UN RESIDENTE">
|
||||||
<font BOLD="true"/>
|
<font BOLD="true" SIZE="12"/>
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_6" POSITION="left" STYLE="bubble" TEXT="Divertirte">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_6" POSITION="left" STYLE="bubble" TEXT="Divertirte">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_136" POSITION="left" TEXT="Te gusta la rumba">
|
<node ID="ID_136" POSITION="left" STYLE="fork" TEXT="Te gusta la rumba">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_137" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_137" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_216" POSITION="left" TEXT="Para bailar">
|
<node ID="ID_216" POSITION="left" STYLE="fork" TEXT="Para bailar">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_224" POSITION="left" STYLE="bubble" TEXT="Mango's">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_224" POSITION="left" STYLE="bubble" TEXT="Mango's">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_226" POSITION="left" STYLE="bubble" TEXT="Kukaramakara">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_226" POSITION="left" STYLE="bubble" TEXT="Kukaramakara">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_235" POSITION="left" STYLE="bubble" TEXT="El Pub">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_235" POSITION="left" STYLE="bubble" TEXT="El Pub">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_233" POSITION="left" STYLE="bubble" TEXT="B Lounge">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_233" POSITION="left" STYLE="bubble" TEXT="B Lounge">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_234" POSITION="left" STYLE="bubble" TEXT="Mamma Juana">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_234" POSITION="left" STYLE="bubble" TEXT="Mamma Juana">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_217" POSITION="left" TEXT="Para oír música">
|
<node ID="ID_217" POSITION="left" STYLE="fork" TEXT="Para oír música">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_225" POSITION="left" STYLE="bubble" TEXT="Palmahía">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_225" POSITION="left" STYLE="bubble" TEXT="Palmahía">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_236" POSITION="left" STYLE="bubble" TEXT="El Deck">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_236" POSITION="left" STYLE="bubble" TEXT="El Deck">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_232" POSITION="left" STYLE="bubble" TEXT="Hard Rock Café">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_232" POSITION="left" STYLE="bubble" TEXT="Hard Rock Café">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_222" POSITION="left" TEXT="¿Y para tocar música?">
|
<node ID="ID_222" POSITION="left" STYLE="fork" TEXT="¿Y para tocar música?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_223" POSITION="left" STYLE="bubble" TEXT="Red de Escuelas de Música">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_223" POSITION="left" STYLE="bubble" TEXT="Red de Escuelas de Música">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_173" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_173" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_174" POSITION="left" STYLE="bubble" TEXT="Hacer deporte sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_174" POSITION="left" STYLE="bubble" TEXT="Hacer deporte sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_208" POSITION="left" TEXT="Al aire libre">
|
<node ID="ID_208" POSITION="left" STYLE="fork" TEXT="Al aire libre">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_213" POSITION="left" STYLE="bubble" TEXT="Los domingos y festivos en la ciclovía">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_213" POSITION="left" STYLE="bubble" TEXT="Los domingos y festivos en la ciclovía">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_214" POSITION="left" STYLE="bubble" TEXT="En caminatas por los parques">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_214" POSITION="left" STYLE="bubble" TEXT="En caminatas por los parques">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_209" POSITION="left" TEXT="En un centro">
|
<node ID="ID_209" POSITION="left" STYLE="fork" TEXT="En un centro">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_212" POSITION="left" STYLE="bubble" TEXT="Estadio Atanasio Girardot">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_212" POSITION="left" STYLE="bubble" TEXT="Estadio Atanasio Girardot">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_215" POSITION="left" STYLE="bubble" TEXT="Unidad Deportiva Atanasio Girardot">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_215" POSITION="left" STYLE="bubble" TEXT="Unidad Deportiva Atanasio Girardot">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_211" POSITION="left" STYLE="bubble" TEXT="Unidades Deportivas INDER">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_211" POSITION="left" STYLE="bubble" TEXT="Unidades Deportivas INDER">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_210" POSITION="left" STYLE="bubble" TEXT="Polideportivo UPB">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_210" POSITION="left" STYLE="bubble" TEXT="Polideportivo UPB">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_138" POSITION="left" STYLE="bubble" TEXT="Algo más calmado">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_138" POSITION="left" STYLE="bubble" TEXT="Algo más calmado">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_139" POSITION="left" TEXT="¿Salir de compras?">
|
<node ID="ID_139" POSITION="left" STYLE="fork" TEXT="¿Salir de compras?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_141" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_141" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_143" POSITION="left" TEXT="¿Traes dinero en el bolsillo?">
|
<node ID="ID_143" POSITION="left" STYLE="fork" TEXT="¿Traes dinero en el bolsillo?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_145" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_145" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_146" POSITION="left" TEXT="¿Dónde sacar dinero?">
|
<node ID="ID_146" POSITION="left" STYLE="fork" TEXT="¿Dónde sacar dinero?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_147" POSITION="left" STYLE="bubble" TEXT="En Cajeros Automáticos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_147" POSITION="left" STYLE="bubble" TEXT="En Cajeros Automáticos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_148" POSITION="left" STYLE="bubble" TEXT="En un Banco">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_148" POSITION="left" STYLE="bubble" TEXT="En un Banco">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_149" POSITION="left" STYLE="bubble" TEXT="Bancolombia">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_149" POSITION="left" STYLE="bubble" TEXT="Bancolombia">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_150" POSITION="left" STYLE="bubble" TEXT="Banco Santander">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_150" POSITION="left" STYLE="bubble" TEXT="Banco Santander">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_151" POSITION="left" STYLE="bubble" TEXT="Banco BBVA">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_151" POSITION="left" STYLE="bubble" TEXT="Banco BBVA">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_152" POSITION="left" STYLE="bubble" TEXT="Banco Caja Social">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_152" POSITION="left" STYLE="bubble" TEXT="Banco Caja Social">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_153" POSITION="left" STYLE="bubble" TEXT="Banco AV Villas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_153" POSITION="left" STYLE="bubble" TEXT="Banco AV Villas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_154" POSITION="left" STYLE="bubble" TEXT="Banco de Bogotá">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_154" POSITION="left" STYLE="bubble" TEXT="Banco de Bogotá">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_155" POSITION="left" STYLE="bubble" TEXT="Banco Popular">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_155" POSITION="left" STYLE="bubble" TEXT="Banco Popular">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_156" POSITION="left" STYLE="bubble" TEXT="Davivienda">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_156" POSITION="left" STYLE="bubble" TEXT="Davivienda">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_157" POSITION="left" STYLE="bubble" TEXT="Otros">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_157" POSITION="left" STYLE="bubble" TEXT="Otros">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_144" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_144" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_158" POSITION="left" TEXT="En mediana cantidad">
|
<node ID="ID_158" POSITION="left" STYLE="fork" TEXT="En mediana cantidad">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_160" POSITION="left" STYLE="bubble" TEXT="Centro de la Moda (Itaguí)">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_160" POSITION="left" STYLE="bubble" TEXT="Centro de la Moda (Itaguí)">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_161" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Boulevar El Hueco">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_161" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Boulevar El Hueco">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_162" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Japón">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_162" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Japón">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_163" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Hollywood">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_163" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Hollywood">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_167" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Palacio Nacional">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_167" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Palacio Nacional">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_159" POSITION="left" TEXT="En gran cantidad">
|
<node ID="ID_159" POSITION="left" STYLE="fork" TEXT="En gran cantidad">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_164" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Punto Clave">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_164" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Punto Clave">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_165" POSITION="left" STYLE="bubble" TEXT="Centro Comercial El Tesoro">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_165" POSITION="left" STYLE="bubble" TEXT="Centro Comercial El Tesoro">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_166" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Santafé">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_166" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Santafé">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_168" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Monterrey">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_168" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Monterrey">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_169" POSITION="left" STYLE="bubble" TEXT="Centro Comercial San Diego">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_169" POSITION="left" STYLE="bubble" TEXT="Centro Comercial San Diego">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_170" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Oviedo">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_170" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Oviedo">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_171" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Unicentro">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_171" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Unicentro">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_172" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Mayorca">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_172" POSITION="left" STYLE="bubble" TEXT="Centro Comercial Mayorca">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -215,128 +168,99 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_142" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_142" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_175" POSITION="left" TEXT="¿Ir a comer algo?">
|
<node ID="ID_175" POSITION="left" STYLE="fork" TEXT="¿Ir a comer algo?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_176" POSITION="left" STYLE="bubble" TEXT="Un café o algo así">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_176" POSITION="left" STYLE="bubble" TEXT="Un café o algo así">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_178" POSITION="left" STYLE="bubble" TEXT="Versalles">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_178" POSITION="left" STYLE="bubble" TEXT="Versalles">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_179" POSITION="left" STYLE="bubble" TEXT="El Astor">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_179" POSITION="left" STYLE="bubble" TEXT="El Astor">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_177" POSITION="left" STYLE="bubble" TEXT="Un buen almuerzo">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_177" POSITION="left" STYLE="bubble" TEXT="Un buen almuerzo">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_180" POSITION="left" STYLE="bubble" TEXT="San Carbón">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_180" POSITION="left" STYLE="bubble" TEXT="San Carbón">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_181" POSITION="left" STYLE="bubble" TEXT="Hatoviejo">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_181" POSITION="left" STYLE="bubble" TEXT="Hatoviejo">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_182" POSITION="left" STYLE="bubble" TEXT="Triada">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_182" POSITION="left" STYLE="bubble" TEXT="Triada">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_183" POSITION="left" STYLE="bubble" TEXT="Il Forno">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_183" POSITION="left" STYLE="bubble" TEXT="Il Forno">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_227" POSITION="left" STYLE="bubble" TEXT="Mondongo's">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_227" POSITION="left" STYLE="bubble" TEXT="Mondongo's">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_140" POSITION="left" TEXT="¿Algo educativo y divertido?">
|
<node ID="ID_140" POSITION="left" STYLE="fork" TEXT="¿Algo educativo y divertido?">
|
||||||
<node ID="ID_184" POSITION="left" TEXT="¿Parques?">
|
<node ID="ID_184" POSITION="left" STYLE="fork" TEXT="¿Parques?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_186" POSITION="left" STYLE="bubble" TEXT="Educativos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_186" POSITION="left" STYLE="bubble" TEXT="Educativos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_188" POSITION="left" STYLE="bubble" TEXT="Parque Explora">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_188" POSITION="left" STYLE="bubble" TEXT="Parque Explora">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_194" POSITION="left" STYLE="bubble" TEXT="Museo Interactivo EPM">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_194" POSITION="left" STYLE="bubble" TEXT="Museo Interactivo EPM">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_189" POSITION="left" TEXT="Conocer más centros educativos">
|
<node ID="ID_189" POSITION="left" STYLE="fork" TEXT="Conocer más centros educativos">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_198" POSITION="left" STYLE="bubble" TEXT="Universidad de Antioquia">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_198" POSITION="left" STYLE="bubble" TEXT="Universidad de Antioquia">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_199" POSITION="left" STYLE="bubble" TEXT="Universidad Nacional">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_199" POSITION="left" STYLE="bubble" TEXT="Universidad Nacional">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_200" POSITION="left" STYLE="bubble" TEXT="Universidad de Medellín">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_200" POSITION="left" STYLE="bubble" TEXT="Universidad de Medellín">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_201" POSITION="left" STYLE="bubble" TEXT="Universidad EAFIT">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_201" POSITION="left" STYLE="bubble" TEXT="Universidad EAFIT">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_202" POSITION="left" STYLE="bubble" TEXT="Universidad Pontificia Bolivariana">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_202" POSITION="left" STYLE="bubble" TEXT="Universidad Pontificia Bolivariana">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_203" POSITION="left" STYLE="bubble" TEXT="Fundación Universitaria Luis Amigó">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_203" POSITION="left" STYLE="bubble" TEXT="Fundación Universitaria Luis Amigó">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_204" POSITION="left" STYLE="bubble" TEXT="Universidad Santo Tomás">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_204" POSITION="left" STYLE="bubble" TEXT="Universidad Santo Tomás">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_205" POSITION="left" STYLE="bubble" TEXT="Universidad CES">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_205" POSITION="left" STYLE="bubble" TEXT="Universidad CES">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_187" POSITION="left" STYLE="bubble" TEXT="Divertidos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_187" POSITION="left" STYLE="bubble" TEXT="Divertidos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_195" POSITION="left" STYLE="bubble" TEXT="Parque de Las Aguas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_195" POSITION="left" STYLE="bubble" TEXT="Parque de Las Aguas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_196" POSITION="left" STYLE="bubble" TEXT="Parque Norte">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_196" POSITION="left" STYLE="bubble" TEXT="Parque Norte">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_197" POSITION="left" STYLE="bubble" TEXT="Aeroparque Juan Pablo II">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_197" POSITION="left" STYLE="bubble" TEXT="Aeroparque Juan Pablo II">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_185" POSITION="left" TEXT="¿Otros centros?">
|
<node ID="ID_185" POSITION="left" STYLE="fork" TEXT="¿Otros centros?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f2f2f2" ID="ID_190" POSITION="left" STYLE="bubble" TEXT="El Planetario de Medellín">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f2f2f2" ID="ID_190" POSITION="left" STYLE="bubble" TEXT="El Planetario de Medellín">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f2f2f2" ID="ID_191" POSITION="left" STYLE="bubble" TEXT="La Plaza de Toros La Macarena">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f2f2f2" ID="ID_191" POSITION="left" STYLE="bubble" TEXT="La Plaza de Toros La Macarena">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_192" POSITION="left" STYLE="bubble" TEXT="Jardín Botánico Joaquín Antonio Uribe">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_192" POSITION="left" STYLE="bubble" TEXT="Jardín Botánico Joaquín Antonio Uribe">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_193" POSITION="left" STYLE="bubble" TEXT="Zoológico de Santa Fe">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_193" POSITION="left" STYLE="bubble" TEXT="Zoológico de Santa Fe">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -346,71 +270,55 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_5" POSITION="left" STYLE="bubble" TEXT="Conocer más de tu ciudad">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_5" POSITION="left" STYLE="bubble" TEXT="Conocer más de tu ciudad">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_7" POSITION="left" STYLE="bubble" TEXT="De la historia">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_7" POSITION="left" STYLE="bubble" TEXT="De la historia">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_10" POSITION="left" STYLE="bubble" TEXT="De una manera divertida">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_10" POSITION="left" STYLE="bubble" TEXT="De una manera divertida">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_12" POSITION="left" TEXT="¿Te gustan los teatros?">
|
<node ID="ID_12" POSITION="left" STYLE="fork" TEXT="¿Te gustan los teatros?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_14" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_14" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_15" POSITION="left" TEXT="¿Los Clásicos?">
|
<node ID="ID_15" POSITION="left" STYLE="fork" TEXT="¿Los Clásicos?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_16" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_16" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_21" POSITION="left" TEXT="Entonces puedes visitar">
|
<node ID="ID_21" POSITION="left" STYLE="fork" TEXT="Entonces puedes visitar">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_19" POSITION="left" STYLE="bubble" TEXT="Teatro Pablo Tobón Uribe">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_19" POSITION="left" STYLE="bubble" TEXT="Teatro Pablo Tobón Uribe">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_18" POSITION="left" STYLE="bubble" TEXT="Teatro Lido">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_18" POSITION="left" STYLE="bubble" TEXT="Teatro Lido">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_20" POSITION="left" STYLE="bubble" TEXT="Teatro Metropolitano">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_20" POSITION="left" STYLE="bubble" TEXT="Teatro Metropolitano">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_22" POSITION="left" STYLE="bubble" TEXT="Teatro Porfirio Barba Jacob">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_22" POSITION="left" STYLE="bubble" TEXT="Teatro Porfirio Barba Jacob">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_17" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_17" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_23" POSITION="left" TEXT="Seguro te gustarán estos">
|
<node ID="ID_23" POSITION="left" STYLE="fork" TEXT="Seguro te gustarán estos">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_24" POSITION="left" STYLE="bubble" TEXT="El Peque��o Teatro">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_24" POSITION="left" STYLE="bubble" TEXT="El Peque��o Teatro">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_25" POSITION="left" STYLE="bubble" TEXT="Teatro de Muñecos La Fanfarria">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_25" POSITION="left" STYLE="bubble" TEXT="Teatro de Muñecos La Fanfarria">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_26" POSITION="left" STYLE="bubble" TEXT="Teatro El Águila Descalza">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_26" POSITION="left" STYLE="bubble" TEXT="Teatro El Águila Descalza">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_27" POSITION="left" STYLE="bubble" TEXT="Teatro Manicomio De Mu��ecos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_27" POSITION="left" STYLE="bubble" TEXT="Teatro Manicomio De Mu��ecos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_28" POSITION="left" STYLE="bubble" TEXT="Teatro Matacandelas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_28" POSITION="left" STYLE="bubble" TEXT="Teatro Matacandelas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_29" POSITION="left" STYLE="bubble" TEXT="Teatro Universidad de Medellín">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_29" POSITION="left" STYLE="bubble" TEXT="Teatro Universidad de Medellín">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_30" POSITION="left" STYLE="bubble" TEXT="Teatro Caja Negra">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_30" POSITION="left" STYLE="bubble" TEXT="Teatro Caja Negra">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -418,53 +326,41 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_13" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_13" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_31" POSITION="left" TEXT="¿Qué tal los museos?">
|
<node ID="ID_31" POSITION="left" STYLE="fork" TEXT="¿Qué tal los museos?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_33" POSITION="left" STYLE="bubble" TEXT="Están bien">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_33" POSITION="left" STYLE="bubble" TEXT="Están bien">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_34" POSITION="left" TEXT="¿De los antiguos?">
|
<node ID="ID_34" POSITION="left" STYLE="fork" TEXT="¿De los antiguos?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_35" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_35" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_37" POSITION="left" STYLE="bubble" TEXT="Museo de Antioquia">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_37" POSITION="left" STYLE="bubble" TEXT="Museo de Antioquia">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_38" POSITION="left" STYLE="bubble" TEXT="Museo Cementerio San Pedro">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_38" POSITION="left" STYLE="bubble" TEXT="Museo Cementerio San Pedro">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_41" POSITION="left" STYLE="bubble" TEXT="Museo El Castillo">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_41" POSITION="left" STYLE="bubble" TEXT="Museo El Castillo">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_36" POSITION="left" STYLE="bubble" TEXT="Algo más nuevo, mejor">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_36" POSITION="left" STYLE="bubble" TEXT="Algo más nuevo, mejor">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_39" POSITION="left" STYLE="bubble" TEXT="Museo de Arte Moderno (MAMM)">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_39" POSITION="left" STYLE="bubble" TEXT="Museo de Arte Moderno (MAMM)">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_40" POSITION="left" STYLE="bubble" TEXT="Museo Universitario Universidad de Antioquia (MUUA)">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_40" POSITION="left" STYLE="bubble" TEXT="Museo Universitario Universidad de Antioquia (MUUA)">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_42" POSITION="left" STYLE="bubble" TEXT="Casa Museo Maestro Pedro Nel Gómez">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_42" POSITION="left" STYLE="bubble" TEXT="Casa Museo Maestro Pedro Nel Gómez">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_43" POSITION="left" STYLE="bubble" TEXT="Casa Museo Gardeliana ">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_43" POSITION="left" STYLE="bubble" TEXT="Casa Museo Gardeliana ">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_32" POSITION="left" STYLE="bubble" TEXT="No te gustan">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_32" POSITION="left" STYLE="bubble" TEXT="No te gustan">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -472,75 +368,57 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_11" POSITION="left" STYLE="bubble" TEXT="De la historia que está en los libros">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_11" POSITION="left" STYLE="bubble" TEXT="De la historia que está en los libros">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_44" POSITION="left" TEXT="¿Quieres ir a una biblioteca?">
|
<node ID="ID_44" POSITION="left" STYLE="fork" TEXT="¿Quieres ir a una biblioteca?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_45" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_45" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_47" POSITION="left" STYLE="bubble" TEXT="De las tradicionales">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_47" POSITION="left" STYLE="bubble" TEXT="De las tradicionales">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_49" POSITION="left" STYLE="bubble" TEXT="Biblioteca Pública Piloto">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_49" POSITION="left" STYLE="bubble" TEXT="Biblioteca Pública Piloto">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_50" POSITION="left" STYLE="bubble" TEXT="Biblioteca EPM">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_50" POSITION="left" STYLE="bubble" TEXT="Biblioteca EPM">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_48" POSITION="left" STYLE="bubble" TEXT="Parques biblioteca">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_48" POSITION="left" STYLE="bubble" TEXT="Parques biblioteca">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_52" POSITION="left" STYLE="bubble" TEXT="España">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_52" POSITION="left" STYLE="bubble" TEXT="España">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_51" POSITION="left" STYLE="bubble" TEXT="San Javier">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_51" POSITION="left" STYLE="bubble" TEXT="San Javier">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_55" POSITION="left" STYLE="bubble" TEXT="La Quintana">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_55" POSITION="left" STYLE="bubble" TEXT="La Quintana">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_53" POSITION="left" STYLE="bubble" TEXT="La Ladera">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_53" POSITION="left" STYLE="bubble" TEXT="La Ladera">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_54" POSITION="left" STYLE="bubble" TEXT="Belén">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_54" POSITION="left" STYLE="bubble" TEXT="Belén">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_46" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_46" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_65" POSITION="left" TEXT="¿Algo más de mapas?">
|
<node ID="ID_65" POSITION="left" STYLE="fork" TEXT="¿Algo más de mapas?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_66" POSITION="left" STYLE="bubble" TEXT="Sí, de historia de verdad">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_66" POSITION="left" STYLE="bubble" TEXT="Sí, de historia de verdad">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_68" POSITION="left" STYLE="bubble" TEXT="Archivo Histórico de Medellín">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_68" POSITION="left" STYLE="bubble" TEXT="Archivo Histórico de Medellín">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_69" POSITION="left" STYLE="bubble" TEXT="Academia de Historia de Antioquia">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_69" POSITION="left" STYLE="bubble" TEXT="Academia de Historia de Antioquia">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_67" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_67" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_61" POSITION="left" TEXT="¿Mejor a un parque?">
|
<node ID="ID_61" POSITION="left" STYLE="fork" TEXT="¿Mejor a un parque?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_62" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_62" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_63" POSITION="left" STYLE="bubble" TEXT="Tampoco">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_63" POSITION="left" STYLE="bubble" TEXT="Tampoco">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -551,121 +429,91 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_9" POSITION="left" STYLE="bubble" TEXT="De la geografía">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_9" POSITION="left" STYLE="bubble" TEXT="De la geografía">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_70" POSITION="left" STYLE="bubble" TEXT="Parques naturales">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_70" POSITION="left" STYLE="bubble" TEXT="Parques naturales">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_72" POSITION="left" STYLE="bubble" TEXT="Parque ecológico Piedras Blancas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_72" POSITION="left" STYLE="bubble" TEXT="Parque ecológico Piedras Blancas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_73" POSITION="left" STYLE="bubble" TEXT="Ecoparque Cerro El Volador">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_73" POSITION="left" STYLE="bubble" TEXT="Ecoparque Cerro El Volador">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_74" POSITION="left" STYLE="bubble" TEXT="Parque Ecológico Cerro Nutibara">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_74" POSITION="left" STYLE="bubble" TEXT="Parque Ecológico Cerro Nutibara">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_75" POSITION="left" STYLE="bubble" TEXT="Parque Ecoturístico Arví">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f5f5f5" ID="ID_75" POSITION="left" STYLE="bubble" TEXT="Parque Ecoturístico Arví">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_71" POSITION="left" STYLE="bubble" TEXT="Parques urbanos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_71" POSITION="left" STYLE="bubble" TEXT="Parques urbanos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_76" POSITION="left" TEXT="¿De los tradicionales?">
|
<node ID="ID_76" POSITION="left" STYLE="fork" TEXT="¿De los tradicionales?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_79" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_79" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f7f7f7" ID="ID_77" POSITION="left" STYLE="bubble" TEXT="Plazas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f7f7f7" ID="ID_77" POSITION="left" STYLE="bubble" TEXT="Plazas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_81" POSITION="left" STYLE="bubble" TEXT="Plaza de San Antonio">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_81" POSITION="left" STYLE="bubble" TEXT="Plaza de San Antonio">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_82" POSITION="left" STYLE="bubble" TEXT="Plaza Botero">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_82" POSITION="left" STYLE="bubble" TEXT="Plaza Botero">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_83" POSITION="left" STYLE="bubble" TEXT="Plaza Cisneros">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_83" POSITION="left" STYLE="bubble" TEXT="Plaza Cisneros">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_85" POSITION="left" STYLE="bubble" TEXT="Plazuela San Ignacio">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_85" POSITION="left" STYLE="bubble" TEXT="Plazuela San Ignacio">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_84" POSITION="left" STYLE="bubble" TEXT="Plaza de la Libertad">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_84" POSITION="left" STYLE="bubble" TEXT="Plaza de la Libertad">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_86" POSITION="left" STYLE="bubble" TEXT="Plazuela Nutibara">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_86" POSITION="left" STYLE="bubble" TEXT="Plazuela Nutibara">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_87" POSITION="left" STYLE="bubble" TEXT="Plazuela de la Veracruz">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_87" POSITION="left" STYLE="bubble" TEXT="Plazuela de la Veracruz">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#f7f7f7" ID="ID_78" POSITION="left" STYLE="bubble" TEXT="Parques">
|
<node BACKGROUND_COLOR="#000000" COLOR="#f7f7f7" ID="ID_78" POSITION="left" STYLE="bubble" TEXT="Parques">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_88" POSITION="left" STYLE="bubble" TEXT="Parque de Bolívar">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_88" POSITION="left" STYLE="bubble" TEXT="Parque de Bolívar">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_89" POSITION="left" STYLE="bubble" TEXT="Parque de Berrío">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_89" POSITION="left" STYLE="bubble" TEXT="Parque de Berrío">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_90" POSITION="left" STYLE="bubble" TEXT="Parque de Boston">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_90" POSITION="left" STYLE="bubble" TEXT="Parque de Boston">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_91" POSITION="left" STYLE="bubble" TEXT="Parque del Poblado">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_91" POSITION="left" STYLE="bubble" TEXT="Parque del Poblado">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_92" POSITION="left" STYLE="bubble" TEXT="Parque de Belén">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_92" POSITION="left" STYLE="bubble" TEXT="Parque de Belén">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_93" POSITION="left" STYLE="bubble" TEXT="Parque del Periodista">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_93" POSITION="left" STYLE="bubble" TEXT="Parque del Periodista">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_80" POSITION="left" STYLE="bubble" TEXT="No, algo distinto">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_80" POSITION="left" STYLE="bubble" TEXT="No, algo distinto">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_94" POSITION="left" STYLE="bubble" TEXT="Parque Lleras">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_94" POSITION="left" STYLE="bubble" TEXT="Parque Lleras">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_95" POSITION="left" STYLE="bubble" TEXT="Parque de los Pies Descalzos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_95" POSITION="left" STYLE="bubble" TEXT="Parque de los Pies Descalzos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_96" POSITION="left" STYLE="bubble" TEXT="Parque Lineal La Presidenta">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_96" POSITION="left" STYLE="bubble" TEXT="Parque Lineal La Presidenta">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_97" POSITION="left" STYLE="bubble" TEXT="Parque de Los Deseos">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_97" POSITION="left" STYLE="bubble" TEXT="Parque de Los Deseos">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_98" POSITION="left" STYLE="bubble" TEXT="Parque de La Bailarina">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_98" POSITION="left" STYLE="bubble" TEXT="Parque de La Bailarina">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_99" POSITION="left" STYLE="bubble" TEXT="Parque Juanes de La Paz">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_99" POSITION="left" STYLE="bubble" TEXT="Parque Juanes de La Paz">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -675,88 +523,67 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_8" POSITION="left" STYLE="bubble" TEXT="Otra información">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_8" POSITION="left" STYLE="bubble" TEXT="Otra información">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_102" POSITION="left" TEXT="¿Una emergencia?">
|
<node ID="ID_102" POSITION="left" STYLE="fork" TEXT="¿Una emergencia?">
|
||||||
<node ID="ID_105" POSITION="left" TEXT="Sí">
|
<node ID="ID_105" POSITION="left" STYLE="fork" TEXT="Sí">
|
||||||
<node ID="ID_107" POSITION="left" TEXT="¿Tienes teléfono?">
|
<node ID="ID_107" POSITION="left" STYLE="fork" TEXT="¿Tienes teléfono?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_108" POSITION="left" STYLE="bubble" TEXT="Sí">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_108" POSITION="left" STYLE="bubble" TEXT="Sí">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_117" POSITION="left" STYLE="bubble" TEXT="Policía: Llama al 112">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_117" POSITION="left" STYLE="bubble" TEXT="Policía: Llama al 112">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_119" POSITION="left" STYLE="bubble" TEXT="Seguridad: Llama al 123">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_119" POSITION="left" STYLE="bubble" TEXT="Seguridad: Llama al 123">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_118" POSITION="left" STYLE="bubble" TEXT="Salud: Llama al 125">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_118" POSITION="left" STYLE="bubble" TEXT="Salud: Llama al 125">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ff0000" COLOR="#fcfcfc" ID="ID_120" POSITION="left" STYLE="bubble" TEXT="Información: ">
|
<node BACKGROUND_COLOR="#ff0000" COLOR="#fcfcfc" ID="ID_120" POSITION="left" STYLE="bubble" TEXT="Información: ">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="No, es mejor ir">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="No, es mejor ir">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_100" POSITION="left" TEXT="¿Algún punto de Salud?">
|
<node ID="ID_100" POSITION="left" STYLE="fork" TEXT="¿Algún punto de Salud?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_101" POSITION="left" STYLE="bubble" TEXT="Hospitales">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_101" POSITION="left" STYLE="bubble" TEXT="Hospitales">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_121" POSITION="left" STYLE="bubble" TEXT="Hospital Universitario San Vicente de Paúl">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_121" POSITION="left" STYLE="bubble" TEXT="Hospital Universitario San Vicente de Paúl">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_122" POSITION="left" STYLE="bubble" TEXT="Hospital Pablo Tobón Uribe">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_122" POSITION="left" STYLE="bubble" TEXT="Hospital Pablo Tobón Uribe">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_123" POSITION="left" STYLE="bubble" TEXT="Hospital General de Medellín">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_123" POSITION="left" STYLE="bubble" TEXT="Hospital General de Medellín">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_104" POSITION="left" STYLE="bubble" TEXT="Clínicas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_104" POSITION="left" STYLE="bubble" TEXT="Clínicas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_124" POSITION="left" STYLE="bubble" TEXT="Clínica Soma">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_124" POSITION="left" STYLE="bubble" TEXT="Clínica Soma">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_125" POSITION="left" STYLE="bubble" TEXT="Clínica Medellín">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_125" POSITION="left" STYLE="bubble" TEXT="Clínica Medellín">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_126" POSITION="left" STYLE="bubble" TEXT="Clínica CES">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_126" POSITION="left" STYLE="bubble" TEXT="Clínica CES">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_127" POSITION="left" STYLE="bubble" TEXT="Clínica Las Américas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_127" POSITION="left" STYLE="bubble" TEXT="Clínica Las Américas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_131" POSITION="left" STYLE="bubble" TEXT="Clínica Cardiovascular">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_131" POSITION="left" STYLE="bubble" TEXT="Clínica Cardiovascular">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_128" POSITION="left" STYLE="bubble" TEXT="Clínica Las Vegas">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_128" POSITION="left" STYLE="bubble" TEXT="Clínica Las Vegas">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_129" POSITION="left" STYLE="bubble" TEXT="Clínica El Rosario">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_129" POSITION="left" STYLE="bubble" TEXT="Clínica El Rosario">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_130" POSITION="left" STYLE="bubble" TEXT="Clínica El Prado">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_130" POSITION="left" STYLE="bubble" TEXT="Clínica El Prado">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_132" POSITION="left" STYLE="bubble" TEXT="Clínica El Sagrado Corazón">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_132" POSITION="left" STYLE="bubble" TEXT="Clínica El Sagrado Corazón">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
@ -764,32 +591,26 @@
|
|||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_106" POSITION="left" TEXT="No">
|
<node ID="ID_106" POSITION="left" STYLE="fork" TEXT="No">
|
||||||
<node ID="ID_103" POSITION="left" TEXT="¿Estás perdido?">
|
<node ID="ID_103" POSITION="left" STYLE="fork" TEXT="¿Estás perdido?">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_110" POSITION="left" STYLE="bubble" TEXT="Un poco">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_110" POSITION="left" STYLE="bubble" TEXT="Un poco">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node ID="ID_112" POSITION="left" TEXT="Puedes utilizar">
|
<node ID="ID_112" POSITION="left" STYLE="fork" TEXT="Puedes utilizar">
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_113" POSITION="left" STYLE="bubble" TEXT="Un bus">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_113" POSITION="left" STYLE="bubble" TEXT="Un bus">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_114" POSITION="left" STYLE="bubble" TEXT="El Metro">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_114" POSITION="left" STYLE="bubble" TEXT="El Metro">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_116" POSITION="left" STYLE="bubble" TEXT="Metro Cable">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_116" POSITION="left" STYLE="bubble" TEXT="Metro Cable">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_115" POSITION="left" STYLE="bubble" TEXT="El Metroplús">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_115" POSITION="left" STYLE="bubble" TEXT="El Metroplús">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_111" POSITION="left" STYLE="bubble" TEXT="No">
|
<node BACKGROUND_COLOR="#000000" COLOR="#ffffff" ID="ID_111" POSITION="left" STYLE="bubble" TEXT="No">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#000000"/>
|
<edge COLOR="#000000"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,56 +1,51 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node BACKGROUND_COLOR="#0a0a08" COLOR="#dfcfe6" ID="ID_1" TEXT="Welcome To WiseMapping">
|
<node COLOR="#dfcfe6" ID="ID_1" TEXT="Welcome To WiseMapping">
|
||||||
<font/>
|
<node COLOR="#ffffff" ID="ID_11" POSITION="right" STYLE="fork" TEXT="Try it Now!">
|
||||||
<node BACKGROUND_COLOR="#250be3" COLOR="#ffffff" ID="ID_11" POSITION="right" TEXT="Try it Now!">
|
|
||||||
<font/>
|
|
||||||
<edge COLOR="#080559"/>
|
<edge COLOR="#080559"/>
|
||||||
<node COLOR="#001be6" ID="ID_12" POSITION="right" TEXT="Double Click">
|
<node COLOR="#001be6" ID="ID_12" POSITION="right" STYLE="fork" TEXT="Double Click">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node COLOR="#001be6" ID="ID_13" POSITION="right" TEXT=" INS to insert">
|
<node COLOR="#001be6" ID="ID_13" POSITION="right" STYLE="fork" TEXT=" INS to insert">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node COLOR="#001be6" ID="ID_14" POSITION="right" TEXT="Drag map to move">
|
<node COLOR="#001be6" ID="ID_14" POSITION="right" STYLE="fork" TEXT="Drag map to move">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#d9b518" COLOR="#104f11" ID="ID_2" POSITION="left" TEXT="Productivity">
|
<node COLOR="#104f11" ID="ID_2" POSITION="left" STYLE="fork" TEXT="Productivity">
|
||||||
<icon BUILTIN="bar"/>
|
<icon BUILTIN="bar"/>
|
||||||
<font/>
|
<node ID="ID_3" POSITION="left" STYLE="fork" TEXT="Share your ideas">
|
||||||
<node ID="ID_3" POSITION="left" TEXT="Share your ideas">
|
|
||||||
<icon BUILTIN="idea"/>
|
<icon BUILTIN="idea"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_27" POSITION="left" STYLE="image"/>
|
<node ID="ID_27" POSITION="left" STYLE="image"/>
|
||||||
<node ID="ID_4" POSITION="left" TEXT="Brainstorming"/>
|
<node ID="ID_4" POSITION="left" STYLE="fork" TEXT="Brainstorming"/>
|
||||||
<node ID="ID_5" POSITION="left" TEXT="Visual "/>
|
<node ID="ID_5" POSITION="left" STYLE="fork" TEXT="Visual "/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#edabff" COLOR="#602378" ID="ID_6" POSITION="right" TEXT="Mind Mapping">
|
<node COLOR="#602378" ID="ID_6" POSITION="right" STYLE="fork" TEXT="Mind Mapping">
|
||||||
<font/>
|
<node ID="ID_7" POSITION="right" STYLE="fork" TEXT="Share with Collegues"/>
|
||||||
<node ID="ID_7" POSITION="right" TEXT="Share with Collegues"/>
|
<node ID="ID_8" POSITION="right" STYLE="fork" TEXT="Online"/>
|
||||||
<node ID="ID_8" POSITION="right" TEXT="Online"/>
|
<node ID="ID_9" POSITION="right" STYLE="fork" TEXT="Anyplace, Anytime"/>
|
||||||
<node ID="ID_9" POSITION="right" TEXT="Anyplace, Anytime"/>
|
<node ID="ID_10" POSITION="right" STYLE="fork" TEXT="Free!!!"/>
|
||||||
<node ID="ID_10" POSITION="right" TEXT="Free!!!"/>
|
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#add1f7" COLOR="#0c1d6b" ID="ID_22" POSITION="left" TEXT="Web 2.0 Tool">
|
<node COLOR="#0c1d6b" ID="ID_22" POSITION="left" STYLE="fork" TEXT="Web 2.0 Tool">
|
||||||
<font/>
|
<node ID="ID_23" POSITION="left" STYLE="fork" TEXT="Collaborate"/>
|
||||||
<node ID="ID_23" POSITION="left" TEXT="Collaborate"/>
|
<node ID="ID_24" POSITION="left" STYLE="fork" TEXT="No plugin required">
|
||||||
<node ID="ID_24" POSITION="left" TEXT="No plugin required">
|
|
||||||
<icon BUILTIN="disconnect"/>
|
<icon BUILTIN="disconnect"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_25" POSITION="left" TEXT="Share"/>
|
<node ID="ID_25" POSITION="left" STYLE="fork" TEXT="Share"/>
|
||||||
<node ID="ID_26" POSITION="left" TEXT="Easy to use"/>
|
<node ID="ID_26" POSITION="left" STYLE="fork" TEXT="Easy to use"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_15" POSITION="right" TEXT="Features">
|
<node ID="ID_15" POSITION="right" STYLE="fork" TEXT="Features">
|
||||||
<node ID="ID_16" LINK="http://www.digg.com" POSITION="right" TEXT="Links to Sites">
|
<node ID="ID_16" LINK="http://www.digg.com" POSITION="right" STYLE="fork" TEXT="Links to Sites">
|
||||||
<font SIZE="10"/>
|
<font SIZE="10"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_17" POSITION="right" TEXT="Fonts"/>
|
<node ID="ID_17" POSITION="right" STYLE="fork" TEXT="Fonts"/>
|
||||||
<node ID="ID_18" POSITION="right" TEXT="Topic Color"/>
|
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Topic Color"/>
|
||||||
<node ID="ID_19" POSITION="right" TEXT="Topic Shapes"/>
|
<node ID="ID_19" POSITION="right" TEXT="Topic Shapes"/>
|
||||||
<node ID="ID_20" POSITION="right" TEXT="Icons">
|
<node ID="ID_20" POSITION="right" STYLE="fork" TEXT="Icons">
|
||||||
<icon BUILTIN="rainbow"/>
|
<icon BUILTIN="rainbow"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_21" POSITION="right" TEXT="History Changes">
|
<node ID="ID_21" POSITION="right" STYLE="fork" TEXT="History Changes">
|
||||||
<icon BUILTIN="turn_left"/>
|
<icon BUILTIN="turn_left"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,26 +1,23 @@
|
|||||||
<map version="1.0.1">
|
<map version="1.0.1">
|
||||||
<node BACKGROUND_COLOR="#0a0a08" COLOR="#dfcfe6" ID="ID_1" TEXT="Welcome To WiseMapping">
|
<node COLOR="#dfcfe6" ID="ID_1" TEXT="Welcome To WiseMapping">
|
||||||
<font/>
|
<node COLOR="#ffffff" ID="ID_11" POSITION="right" STYLE="fork" TEXT="Try it Now!">
|
||||||
<node BACKGROUND_COLOR="#250be3" COLOR="#ffffff" ID="ID_11" POSITION="right" TEXT="Try it Now!">
|
|
||||||
<font/>
|
|
||||||
<edge COLOR="#080559"/>
|
<edge COLOR="#080559"/>
|
||||||
<node COLOR="#001be6" ID="ID_12" POSITION="right" TEXT="Double Click">
|
<node COLOR="#001be6" ID="ID_12" POSITION="right" STYLE="fork" TEXT="Double Click">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node COLOR="#001be6" ID="ID_13" POSITION="right" TEXT=" INS to insert">
|
<node COLOR="#001be6" ID="ID_13" POSITION="right" STYLE="fork" TEXT=" INS to insert">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
<node COLOR="#001be6" ID="ID_14" POSITION="right" TEXT="Drag map to move">
|
<node COLOR="#001be6" ID="ID_14" POSITION="right" STYLE="fork" TEXT="Drag map to move">
|
||||||
<font ITALIC="true"/>
|
<font ITALIC="true" SIZE="12"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#d9b518" COLOR="#104f11" ID="ID_2" POSITION="left" TEXT="Productivity">
|
<node COLOR="#104f11" ID="ID_2" POSITION="left" STYLE="fork" TEXT="Productivity">
|
||||||
<icon BUILTIN="bar"/>
|
<icon BUILTIN="bar"/>
|
||||||
<font/>
|
<node ID="ID_3" POSITION="left" STYLE="fork" TEXT="Share your ideas">
|
||||||
<node ID="ID_3" POSITION="left" TEXT="Share your ideas">
|
|
||||||
<icon BUILTIN="idea"/>
|
<icon BUILTIN="idea"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_4" POSITION="left">
|
<node ID="ID_4" POSITION="left" STYLE="fork">
|
||||||
<richcontent TYPE="NODE">
|
<richcontent TYPE="NODE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -33,18 +30,16 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_5" POSITION="left" TEXT="Visual "/>
|
<node ID="ID_5" POSITION="left" STYLE="fork" TEXT="Visual "/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#edabff" COLOR="#602378" ID="ID_6" POSITION="right" TEXT="Mind Mapping">
|
<node COLOR="#602378" ID="ID_6" POSITION="right" STYLE="fork" TEXT="Mind Mapping">
|
||||||
<font/>
|
<node ID="ID_7" POSITION="right" STYLE="fork" TEXT="Share with Collegues"/>
|
||||||
<node ID="ID_7" POSITION="right" TEXT="Share with Collegues"/>
|
<node ID="ID_8" POSITION="right" STYLE="fork" TEXT="Online"/>
|
||||||
<node ID="ID_8" POSITION="right" TEXT="Online"/>
|
<node ID="ID_9" POSITION="right" STYLE="fork" TEXT="Anyplace, Anytime"/>
|
||||||
<node ID="ID_9" POSITION="right" TEXT="Anyplace, Anytime"/>
|
<node ID="ID_10" POSITION="right" STYLE="fork" TEXT="Free!!!"/>
|
||||||
<node ID="ID_10" POSITION="right" TEXT="Free!!!"/>
|
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#add1f7" COLOR="#0c1d6b" ID="ID_22" POSITION="left" TEXT="Web 2.0 Tool">
|
<node COLOR="#0c1d6b" ID="ID_22" POSITION="left" STYLE="fork" TEXT="Web 2.0 Tool">
|
||||||
<font/>
|
<node ID="ID_23" POSITION="left" STYLE="fork" TEXT="Collaborate">
|
||||||
<node ID="ID_23" POSITION="left" TEXT="Collaborate">
|
|
||||||
<richcontent TYPE="NOTE">
|
<richcontent TYPE="NOTE">
|
||||||
<html>
|
<html>
|
||||||
<head/>
|
<head/>
|
||||||
@ -54,23 +49,23 @@
|
|||||||
</html>
|
</html>
|
||||||
</richcontent>
|
</richcontent>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_24" POSITION="left" TEXT="No plugin required">
|
<node ID="ID_24" POSITION="left" STYLE="fork" TEXT="No plugin required">
|
||||||
<icon BUILTIN="disconnect"/>
|
<icon BUILTIN="disconnect"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_25" POSITION="left" TEXT="Share"/>
|
<node ID="ID_25" POSITION="left" STYLE="fork" TEXT="Share"/>
|
||||||
<node ID="ID_26" POSITION="left" TEXT="Easy to use"/>
|
<node ID="ID_26" POSITION="left" STYLE="fork" TEXT="Easy to use"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_15" POSITION="right" TEXT="Features">
|
<node ID="ID_15" POSITION="right" STYLE="fork" TEXT="Features">
|
||||||
<node ID="ID_16" LINK="http://www.digg.com" POSITION="right" TEXT="Links to Sites">
|
<node ID="ID_16" LINK="http://www.digg.com" POSITION="right" STYLE="fork" TEXT="Links to Sites">
|
||||||
<font SIZE="10"/>
|
<font SIZE="10"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_17" POSITION="right" TEXT="Fonts"/>
|
<node ID="ID_17" POSITION="right" STYLE="fork" TEXT="Fonts"/>
|
||||||
<node ID="ID_18" POSITION="right" TEXT="Topic Color"/>
|
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Topic Color"/>
|
||||||
<node ID="ID_19" POSITION="right" TEXT="Topic Shapes"/>
|
<node ID="ID_19" POSITION="right" TEXT="Topic Shapes"/>
|
||||||
<node ID="ID_20" POSITION="right" TEXT="Icons">
|
<node ID="ID_20" POSITION="right" STYLE="fork" TEXT="Icons">
|
||||||
<icon BUILTIN="rainbow"/>
|
<icon BUILTIN="rainbow"/>
|
||||||
</node>
|
</node>
|
||||||
<node ID="ID_21" POSITION="right" TEXT="History Changes">
|
<node ID="ID_21" POSITION="right" STYLE="fork" TEXT="History Changes">
|
||||||
<icon BUILTIN="turn_left"/>
|
<icon BUILTIN="turn_left"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -30,19 +30,15 @@
|
|||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#f20707" ID="ID_11" POSITION="left" STYLE="rectagle" TEXT="Node Text Color">
|
<node BACKGROUND_COLOR="#f20707" ID="ID_11" POSITION="left" STYLE="rectagle" TEXT="Node Text Color">
|
||||||
<node BACKGROUND_COLOR="#0000cc" COLOR="#ffff00" ID="ID_12" POSITION="left" STYLE="rectagle" TEXT="Fork">
|
<node BACKGROUND_COLOR="#0000cc" COLOR="#ffff00" ID="ID_12" POSITION="left" STYLE="rectagle" TEXT="Fork">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#ccffcc" COLOR="#ff6666" ID="ID_13" POSITION="left" STYLE="bubble" TEXT="Bubble">
|
<node BACKGROUND_COLOR="#ccffcc" COLOR="#ff6666" ID="ID_13" POSITION="left" STYLE="bubble" TEXT="Bubble">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#00ffff" COLOR="#009999" ID="ID_14" POSITION="left" STYLE="rectagle" TEXT="As parent">
|
<node BACKGROUND_COLOR="#00ffff" COLOR="#009999" ID="ID_14" POSITION="left" STYLE="rectagle" TEXT="As parent">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
<node BACKGROUND_COLOR="#990099" COLOR="#009999" ID="ID_15" POSITION="left" STYLE="rectagle" TEXT="Combined">
|
<node BACKGROUND_COLOR="#990099" COLOR="#009999" ID="ID_15" POSITION="left" STYLE="rectagle" TEXT="Combined">
|
||||||
<font/>
|
|
||||||
<edge COLOR="#808080"/>
|
<edge COLOR="#808080"/>
|
||||||
</node>
|
</node>
|
||||||
</node>
|
</node>
|
||||||
|
Loading…
Reference in New Issue
Block a user