使用 Apache POI XDGF 读取 vsdx 文件

引入依赖

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-core</artifactId>
    <version>2.22.1</version>
</dependency>
<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-slf4j-impl</artifactId>
    <version>2.22.1</version>
</dependency>
<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-1.2-api</artifactId>
    <version>2.22.1</version>
</dependency>
<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-api</artifactId>
    <version>2.22.1</version>
</dependency>

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>5.2.5</version>
</dependency>

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>5.2.5</version>
</dependency>

<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.15.1</version>
</dependency>

下载示例文件:A flowchart diagram that details the steps for buying a property

Java代码如下:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

import org.apache.poi.xdgf.extractor.XDGFVisioExtractor;
import org.apache.poi.xdgf.usermodel.XmlVisioDocument;
import org.w3c.dom.Node;

public class VsdxReadTest {

	public static void main(final String[] args) throws FileNotFoundException, IOException {
		final XmlVisioDocument xvd = new XmlVisioDocument(new FileInputStream("data\\vsdx\\tf16403429.vsdx"));
		// open VSD file
		final XDGFVisioExtractor extractor = new XDGFVisioExtractor(xvd);
		System.out.println("------text-----");
		System.out.println(extractor.getText());
		System.out.println("------text-----");

		extractor.getDocument().getPages().forEach(p -> {
			final StringBuilder bud = new StringBuilder();
			System.out.println("页名:" + p.getName());

			p.getContent().getXmlObject().getShapes().getShapeList().forEach(s -> {
				System.out.println("------xml-----" + s.getID() + "---" + s.getName());
				System.out.println(s);
				System.out.println("------xml-----" + s.getID() + "---" + s.getName());

				for (int i = 0; i < s.getDomNode().getChildNodes().getLength(); i++) {
					final Node n = s.getDomNode().getChildNodes().item(i);
					printNode(bud, n, 1);

					if (n.getChildNodes().getLength() > 0) {
						Boolean print2 = Boolean.FALSE;
						for (int j = 0; j < n.getChildNodes().getLength(); j++) {
							final Node n2 = n.getChildNodes().item(j);
							if (printNode(bud, n2, 2)) {
								print2 = Boolean.TRUE;
							}

							if (n2.getChildNodes().getLength() > 0) {
								Boolean print3 = Boolean.FALSE;
								for (int k = 0; k < n2.getChildNodes().getLength(); k++) {
									final Node n3 = n2.getChildNodes().item(k);
									if (printNode(bud, n3, 3)) {
										print3 = Boolean.TRUE;
									}
								}
								if (print3) {
									bud.append(System.lineSeparator());
								}
							}
						}
						if (print2) {
							bud.append(System.lineSeparator());
						}
					}
				}

			});

			System.out.println("------text-----");
			System.out.println(bud.toString());
			System.out.println("------text-----");
		});

	}

	private static Boolean printNode(final StringBuilder bud, final Node node, final int level) {
		if (node.getNodeName().contains("#text")) {
			bud.append(node.getNodeValue());
			return Boolean.TRUE;
		}
		return Boolean.FALSE;
	}

}

输出结果如下

------text-----
​Property buying Flowchart
Start with an agent 
you trust
Consult with agent to determine your property wants and needs
Review and complete paperwork
Go to preferred lender,
get pre-qualified and
pre-approval for loan amount
With agent, analyze
market to choose properties of interest
View properties
with agent
​A
​A
Select ideal property
and write offer to
purchase
Negotiate
& Counteroffer: Agreement?
Accept the contract
Secure underwriting,
obtain loan approval
Select/Contact closing attorney for title exam
and title insurance
Schedule inspection
and survey
Close on the
property
Yes
No

------text-----
页名:Page-1
------xml-----188---null
<xml-fragment ID="188" Type="Shape" LineStyle="3" FillStyle="3" TextStyle="3" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="4.14"/>
  <main:Cell N="PinY" V="11.03"/>
  <main:Cell N="Width" V="7.77"/>
  <main:Cell N="Height" V="0.56"/>
  <main:Cell N="LocPinX" V="3.885" F="Width*0.5"/>
  <main:Cell N="LocPinY" V="0.28" F="Height*0.5"/>
  <main:Cell N="Angle" V="0"/>
  <main:Cell N="FlipX" V="0"/>
  <main:Cell N="FlipY" V="0"/>
  <main:Cell N="ResizeMode" V="0"/>
  <main:Cell N="EventDblClick" V="0" F="OPENTEXTWIN()"/>
  <main:Cell N="LinePattern" V="0" F="THEMEGUARD(0)"/>
  <main:Cell N="FillPattern" V="0" F="THEMEGUARD(0)"/>
  <main:Cell N="ShdwPattern" V="0" F="THEMEGUARD(0)"/>
  <main:Cell N="LineGradientEnabled" V="0" F="THEMEGUARD(FALSE)"/>
  <main:Cell N="FillGradientEnabled" V="0" F="THEMEGUARD(FALSE)"/>
  <main:Cell N="QuickStyleVariation" V="3"/>
  <main:Cell N="ObjType" V="1"/>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="179000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="0"/>
      <main:Cell N="Style" V="17"/>
      <main:Cell N="Size" V="0.25"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Cell N="NoFill" V="0"/>
    <main:Cell N="NoLine" V="0"/>
    <main:Cell N="NoShow" V="0"/>
    <main:Cell N="NoSnap" V="0"/>
    <main:Cell N="NoQuickDrag" V="0"/>
    <main:Row T="RelMoveTo" IX="1">
      <main:Cell N="X" V="0"/>
      <main:Cell N="Y" V="0"/>
    </main:Row>
    <main:Row T="RelLineTo" IX="2">
      <main:Cell N="X" V="1"/>
      <main:Cell N="Y" V="0"/>
    </main:Row>
    <main:Row T="RelLineTo" IX="3">
      <main:Cell N="X" V="1"/>
      <main:Cell N="Y" V="1"/>
    </main:Row>
    <main:Row T="RelLineTo" IX="4">
      <main:Cell N="X" V="0"/>
      <main:Cell N="Y" V="1"/>
    </main:Row>
    <main:Row T="RelLineTo" IX="5">
      <main:Cell N="X" V="0"/>
      <main:Cell N="Y" V="0"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    ​Property buying Flowchart
  </main:Text>
</xml-fragment>
------xml-----188---null
------xml-----239---Start/End.132
<xml-fragment ID="239" NameU="Start/End.132" IsCustomNameU="1" Name="Start/End.132" IsCustomName="1" Type="Shape" Master="2" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76"/>
  <main:Cell N="PinY" V="10.16405"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.5344031458433889"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.2672015729216944" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.2672015729216944" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.5344031458433889" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.2672015729216944" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="180000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.5344031458433889" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="Y" V="0.2672015729216891" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.2672015729216891" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.2672015729216944" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.068806291686778" F="Inh"/>
    </main:Row>
    <main:Row T="EllipticalArcTo" IX="3">
      <main:Cell N="X" V="1.068806291686778" F="Inh"/>
      <main:Cell N="Y" V="0.5344031458433889" F="Inh"/>
      <main:Cell N="A" V="1.336007864608472" U="DL" F="Inh"/>
      <main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="0.2672015729216944" F="Inh"/>
      <main:Cell N="Y" V="0.5344031458433889" F="Inh"/>
    </main:Row>
    <main:Row T="EllipticalArcTo" IX="5">
      <main:Cell N="X" V="0.2672015729216944" F="Inh"/>
      <main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Start with an agent
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    you trust
  </main:Text>
</xml-fragment>
------xml-----239---Start/End.132
------xml-----256---null
<xml-fragment ID="256" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76" F="Inh"/>
  <main:Cell N="PinY" V="9.644005482076864" U="MM" F="Inh"/>
  <main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5056858900028853" U="MM" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.098425196850395" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2528429450014427" U="MM" F="Inh"/>
  <main:Cell N="BeginX" V="2.76" F="PAR(PNT(Sheet.239!Connections.X1,Sheet.239!Connections.Y1))"/>
  <main:Cell N="BeginY" V="9.896848427078306" U="MM" F="PAR(PNT(Sheet.239!Connections.X1,Sheet.239!Connections.Y1))"/>
  <main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="9.39116253707542" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.239!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.257!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="5"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2528429329395294" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2528429329395294"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2528429329395294" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="207000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.5056858900028853"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----256---null
------xml-----257---Process.133
<xml-fragment ID="257" NameU="Process.133" IsCustomNameU="1" Name="Process.133" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76"/>
  <main:Cell N="PinY" V="8.99036017769288"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="208000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    Consult with agent to determine your property wants and needs
  </main:Text>
</xml-fragment>
------xml-----257---Process.133
------xml-----258---null
<xml-fragment ID="258" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76005" F="Inh"/>
  <main:Cell N="PinY" V="8.291696764013402" F="Inh"/>
  <main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.297861054296936" F="Inh"/>
  <main:Cell N="BeginX" V="2.76" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="8.589557818310338" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="2.7601" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="7.993835709716466" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.257!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.259!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09847519685039385" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978110542969357" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09847519685039385"/>
      <main:Cell N="Y" V="-0.2978110542969357"/>
      <main:Cell N="XDyn" V="0.09847519685039385" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978110542969357" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="209000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.0983751968503932"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.0983751968503932"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="0.09847519685039385"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="0.09847519685039385"/>
      <main:Cell N="Y" V="-0.595722108593872"/>
    </main:Row>
  </main:Section>
</xml-fragment>
------xml-----258---null
------xml-----259---Process.135
<xml-fragment ID="259" NameU="Process.135" IsCustomNameU="1" Name="Process.135" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.7601"/>
  <main:Cell N="PinY" V="7.593033350333924"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="210000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    Review and complete paperwork
  </main:Text>
</xml-fragment>
------xml-----259---Process.135
------xml-----260---null
<xml-fragment ID="260" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76005" F="Inh"/>
  <main:Cell N="PinY" V="6.894369936654447" F="Inh"/>
  <main:Cell N="Width" V="-0.1968503937007874" F="GUARD(-0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="-0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/>
  <main:Cell N="BeginX" V="2.7601" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="7.192230990951382" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="6.596508882357512" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.259!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.261!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="-0.09847519685039385" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.297811054296935" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="-0.09847519685039385"/>
      <main:Cell N="Y" V="-0.297811054296935"/>
      <main:Cell N="XDyn" V="-0.09847519685039385" F="Inh"/>
      <main:Cell N="YDyn" V="-0.297811054296935" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="211000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="-0.09837519685039364"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="-0.09837519685039364"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="-0.09847519685039385"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="-0.09847519685039385"/>
      <main:Cell N="Y" V="-0.5957221085938702"/>
    </main:Row>
  </main:Section>
</xml-fragment>
------xml-----260---null
------xml-----261---Process.137
<xml-fragment ID="261" NameU="Process.137" IsCustomNameU="1" Name="Process.137" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76"/>
  <main:Cell N="PinY" V="6.19570652297497"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="212000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
    <main:Row IX="2">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
    <main:Row IX="3">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
    <main:Row IX="2">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Go to preferred lender,
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    get pre-qualified 
    <main:cp IX="2"/>
    and
    <main:cp IX="3"/>
    <main:pp IX="2"/>
    pre-approval for loan amount
  </main:Text>
</xml-fragment>
------xml-----261---Process.137
------xml-----262---null
<xml-fragment ID="262" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76" F="Inh"/>
  <main:Cell N="PinY" V="5.497043109295492" F="Inh"/>
  <main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.297861054296936" F="Inh"/>
  <main:Cell N="BeginX" V="2.76" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="5.794904163592428" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="5.199182054998556" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.261!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.263!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2978610396385193"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="213000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.595722108593872"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----262---null
------xml-----263---Process.157
<xml-fragment ID="263" NameU="Process.157" IsCustomNameU="1" Name="Process.157" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76"/>
  <main:Cell N="PinY" V="4.798379695616015"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="214000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    With agent, analyze
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    market to choose properties of interest
  </main:Text>
</xml-fragment>
------xml-----263---Process.157
------xml-----264---null
<xml-fragment ID="264" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76" F="Inh"/>
  <main:Cell N="PinY" V="4.099716281936537" F="Inh"/>
  <main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938711" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969358" F="Inh"/>
  <main:Cell N="BeginX" V="2.76" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="4.397577336233473" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="3.801855227639602" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.263!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.265!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2978610396385193"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="215000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.5957221085938711"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----264---null
------xml-----265---Process.164
<xml-fragment ID="265" NameU="Process.164" IsCustomNameU="1" Name="Process.164" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76"/>
  <main:Cell N="PinY" V="3.40105286825706"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="216000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    View properties
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    with agent
  </main:Text>
</xml-fragment>
------xml-----265---Process.164
------xml-----266---null
<xml-fragment ID="266" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.76005" F="Inh"/>
  <main:Cell N="PinY" V="2.380807931602613" F="Inh"/>
  <main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-1.23888515454381" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.6194425772719052" F="Inh"/>
  <main:Cell N="BeginX" V="2.76" F="PAR(PNT(Sheet.265!Connections.X3,Sheet.265!Connections.Y3))"/>
  <main:Cell N="BeginY" V="3.000250508874518" F="PAR(PNT(Sheet.265!Connections.X3,Sheet.265!Connections.Y3))"/>
  <main:Cell N="EndX" V="2.7601" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="1.761365354330708" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.265!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.267!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09847519685039385" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.6193925772719053" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09847519685039385"/>
      <main:Cell N="Y" V="-0.6193925772719053"/>
      <main:Cell N="XDyn" V="0.09847519685039385" F="Inh"/>
      <main:Cell N="YDyn" V="-0.6193925772719053" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="217000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09837519685039364"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09837519685039364"/>
      <main:Cell N="Y" V="-0.1509999990463258"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="0.09847519685039385"/>
      <main:Cell N="Y" V="-0.1509999990463258"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="0.09847519685039385"/>
      <main:Cell N="Y" V="-1.238885154543811"/>
    </main:Row>
  </main:Section>
</xml-fragment>
------xml-----266---null
------xml-----267---On-page reference.194
<xml-fragment ID="267" NameU="On-page reference.194" IsCustomNameU="1" Name="On-page reference.194" IsCustomName="1" Type="Shape" Master="12" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="2.7601"/>
  <main:Cell N="PinY" V="1.5842"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="218000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    ​A
  </main:Text>
</xml-fragment>
------xml-----267---On-page reference.194
------xml-----268---On-page reference.268
<xml-fragment ID="268" NameU="On-page reference.268" Name="On-page reference.268" Type="Shape" Master="12" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416"/>
  <main:Cell N="PinY" V="10.16405"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="219000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    ​A
  </main:Text>
</xml-fragment>
------xml-----268---On-page reference.268
------xml-----269---null
<xml-fragment ID="269" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416" F="Inh"/>
  <main:Cell N="PinY" V="9.689023591372354" F="Inh"/>
  <main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/>
  <main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="9.98688464566929" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="9.39116253707542" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.268!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.270!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2978610396385193"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="220000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.5957221085938702"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----269---null
------xml-----270---Process.166
<xml-fragment ID="270" NameU="Process.166" IsCustomNameU="1" Name="Process.166" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416"/>
  <main:Cell N="PinY" V="8.990360177692878"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="221000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
    <main:Row IX="2">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
    <main:Row IX="2">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Select ideal property
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    and write offer to
    <main:cp IX="2"/>
    <main:pp IX="2"/>
    purchase
  </main:Text>
</xml-fragment>
------xml-----270---Process.166
------xml-----271---null
<xml-fragment ID="271" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.64165" F="Inh"/>
  <main:Cell N="PinY" V="8.2916967640134" F="Inh"/>
  <main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969356" F="Inh"/>
  <main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="8.589557818310336" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.6417" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="7.993835709716464" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.270!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.272!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09847519685039341" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978110542969357" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09847519685039341"/>
      <main:Cell N="Y" V="-0.2978110542969361"/>
      <main:Cell N="XDyn" V="0.09847519685039341" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978110542969357" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="222000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09837519685039364"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09837519685039364"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="0.09847519685039341"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="0.09847519685039341"/>
      <main:Cell N="Y" V="-0.595722108593872"/>
    </main:Row>
  </main:Section>
</xml-fragment>
------xml-----271---null
------xml-----272---Decision.170
<xml-fragment ID="272" NameU="Decision.170" IsCustomNameU="1" Name="Decision.170" IsCustomName="1" Type="Shape" Master="5" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6417"/>
  <main:Cell N="PinY" V="7.593033350333924"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.113339887173722" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.6012035390738125" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.5566699435868612" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.3006017695369063" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="ResizeTxtHeight">
      <main:Cell N="Value" V="0.6299212598425197" U="MM" F="Inh"/>
    </main:Row>
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="223000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="5">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Negotiate
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    &amp; Counteroffer: Agreement?
  </main:Text>
</xml-fragment>
------xml-----272---Decision.170
------xml-----275---Process.177
<xml-fragment ID="275" NameU="Process.177" IsCustomNameU="1" Name="Process.177" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416"/>
  <main:Cell N="PinY" V="6.19570652297497"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="226000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    Accept the contract
  </main:Text>
</xml-fragment>
------xml-----275---Process.177
------xml-----276---null
<xml-fragment ID="276" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416" F="Inh"/>
  <main:Cell N="PinY" V="5.497043109295492" F="Inh"/>
  <main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969356" F="Inh"/>
  <main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="5.794904163592428" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="5.199182054998556" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.275!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.277!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2978610396385193"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="227000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.595722108593872"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----276---null
------xml-----277---Process.179
<xml-fragment ID="277" NameU="Process.179" IsCustomNameU="1" Name="Process.179" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416"/>
  <main:Cell N="PinY" V="4.798379695616015"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="228000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Secure underwriting,
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    obtain loan approval
  </main:Text>
</xml-fragment>
------xml-----277---Process.179
------xml-----278---null
<xml-fragment ID="278" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416" F="Inh"/>
  <main:Cell N="PinY" V="4.099716281936538" F="Inh"/>
  <main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/>
  <main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="4.397577336233473" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="3.801855227639603" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.277!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.279!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2978610396385193"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="229000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.5957221085938707"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----278---null
------xml-----279---Process.181
<xml-fragment ID="279" NameU="Process.181" IsCustomNameU="1" Name="Process.181" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6416"/>
  <main:Cell N="PinY" V="3.40105286825706"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="230000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Select/Contact closing attorney for title exam
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    and title insurance
  </main:Text>
</xml-fragment>
------xml-----279---Process.181
------xml-----280---null
<xml-fragment ID="280" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.6408" F="Inh"/>
  <main:Cell N="PinY" V="2.702389454577584" F="Inh"/>
  <main:Cell N="Width" V="-0.19685039370079" F="GUARD(-0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938707" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="-0.098425196850395" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969353" F="Inh"/>
  <main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="3.000250508874519" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.64" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="2.404528400280648" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.279!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.281!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="-0.09922519685039344" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2970610542969361" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="-0.09922519685039344"/>
      <main:Cell N="Y" V="-0.2970610542969361"/>
      <main:Cell N="XDyn" V="-0.09922519685039344" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2970610542969361" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="231000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="-0.0976251968503945"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="-0.0976251968503945"/>
      <main:Cell N="Y" V="-0.1509999990463258"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="-0.09922519685039344"/>
      <main:Cell N="Y" V="-0.1509999990463258"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="-0.09922519685039344"/>
      <main:Cell N="Y" V="-0.5957221085938711"/>
    </main:Row>
  </main:Section>
</xml-fragment>
------xml-----280---null
------xml-----281---Process.183
<xml-fragment ID="281" NameU="Process.183" IsCustomNameU="1" Name="Process.183" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.64"/>
  <main:Cell N="PinY" V="2.003726040898107"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.8016047187650833"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="232000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.4008023593825417" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="Y" V="0.8016047187650833" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Schedule inspection
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    and survey
  </main:Text>
</xml-fragment>
------xml-----281---Process.183
------xml-----283---null
<xml-fragment ID="283" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.64" F="Inh"/>
  <main:Cell N="PinY" V="1.305062627218629" F="Inh"/>
  <main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938709" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969354" F="Inh"/>
  <main:Cell N="BeginX" V="5.64" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="1.602923681515565" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.64" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="1.007201572921694" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.281!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.284!EventXFMod)"/>
  <main:Cell N="ShapeRouteStyle" V="6"/>
  <main:Cell N="ConFixedCode" V="6"/>
  <main:Cell N="ConLineRouteExt" V="1"/>
  <main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="0.09842519462108612"/>
      <main:Cell N="Y" V="-0.2978610396385193"/>
      <main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="233000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.09842519685039353"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="0.09842519685039353"/>
      <main:Cell N="Y" V="-0.5957221085938709"/>
    </main:Row>
    <main:Row T="LineTo" IX="3" Del="1"/>
  </main:Section>
</xml-fragment>
------xml-----283---null
------xml-----284---Start/End.185
<xml-fragment ID="284" NameU="Start/End.185" IsCustomNameU="1" Name="Start/End.185" IsCustomName="1" Type="Shape" Master="2" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.64"/>
  <main:Cell N="PinY" V="0.74"/>
  <main:Cell N="Width" V="1.336007864608472"/>
  <main:Cell N="Height" V="0.5344031458433889"/>
  <main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="LocPinY" V="0.2672015729216944" F="Inh"/>
  <main:Cell N="LayerMember" V="0"/>
  <main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtPinY" V="0.2672015729216944" F="Inh"/>
  <main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.5344031458433889" F="Inh"/>
  <main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.2672015729216944" F="Inh"/>
  <main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/>
  <main:Cell N="LineColor" V="#ffffff" F="Inh"/>
  <main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/>
  <main:Cell N="ShapeShdwShow" V="2"/>
  <main:Section N="Actions">
    <main:Row N="SetDefaultSize">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
    <main:Row N="ResizeWithText">
      <main:Cell N="Invisible" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="234000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
    </main:Row>
    <main:Row IX="1">
      <main:Cell N="Font" V="Calibri"/>
      <main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/>
      <main:Cell N="Style" V="0"/>
      <main:Cell N="Case" V="0"/>
      <main:Cell N="Pos" V="0"/>
      <main:Cell N="FontScale" V="1"/>
      <main:Cell N="Size" V="0.1111111111111111" U="PT"/>
      <main:Cell N="DblUnderline" V="0"/>
      <main:Cell N="Overline" V="0"/>
      <main:Cell N="Strikethru" V="0"/>
      <main:Cell N="DoubleStrikethrough" V="0"/>
      <main:Cell N="Letterspace" V="0"/>
      <main:Cell N="ColorTrans" V="0"/>
      <main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/>
      <main:Cell N="ComplexScriptSize" V="-1"/>
      <main:Cell N="LangID" V="en-US"/>
    </main:Row>
  </main:Section>
  <main:Section N="Connection">
    <main:Row T="Connection" IX="0">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="1">
      <main:Cell N="X" V="0.6680039323042361" F="Inh"/>
      <main:Cell N="Y" V="0.5344031458433889" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="2">
      <main:Cell N="Y" V="0.2672015729216891" F="Inh"/>
    </main:Row>
    <main:Row T="Connection" IX="3">
      <main:Cell N="X" V="1.336007864608472" F="Inh"/>
      <main:Cell N="Y" V="0.2672015729216891" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="Paragraph">
    <main:Row IX="1">
      <main:Cell N="IndFirst" V="0"/>
      <main:Cell N="IndLeft" V="0"/>
      <main:Cell N="IndRight" V="0"/>
      <main:Cell N="SpLine" V="-1.2"/>
      <main:Cell N="SpBefore" V="0"/>
      <main:Cell N="SpAfter" V="0"/>
      <main:Cell N="HorzAlign" V="1"/>
      <main:Cell N="Bullet" V="0"/>
      <main:Cell N="BulletStr" V=""/>
      <main:Cell N="BulletFont" V="0"/>
      <main:Cell N="BulletFontSize" V="-1"/>
      <main:Cell N="TextPosAfterBullet" V="0"/>
      <main:Cell N="Flags" V="0"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="0.2672015729216944" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="1.068806291686778" F="Inh"/>
    </main:Row>
    <main:Row T="EllipticalArcTo" IX="3">
      <main:Cell N="X" V="1.068806291686778" F="Inh"/>
      <main:Cell N="Y" V="0.5344031458433889" F="Inh"/>
      <main:Cell N="A" V="1.336007864608472" U="DL" F="Inh"/>
      <main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="0.2672015729216944" F="Inh"/>
      <main:Cell N="Y" V="0.5344031458433889" F="Inh"/>
    </main:Row>
    <main:Row T="EllipticalArcTo" IX="5">
      <main:Cell N="X" V="0.2672015729216944" F="Inh"/>
      <main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    <main:pp IX="0"/>
    <main:tp IX="0"/>
    Close on the
    <main:cp IX="1"/>
    <main:pp IX="1"/>
    property
  </main:Text>
</xml-fragment>
------xml-----284---Start/End.185
------xml-----289---null
<xml-fragment ID="289" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="5.64165" F="Inh"/>
  <main:Cell N="PinY" V="6.894369936654447" F="Inh"/>
  <main:Cell N="Width" V="-0.1968503937007874" F="GUARD(-0.19685039370079DL)"/>
  <main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="-0.09842519685039369" F="Inh"/>
  <main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/>
  <main:Cell N="BeginX" V="5.6417" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="7.192230990951382" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="6.596508882357512" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.272!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.275!EventXFMod)"/>
  <main:Cell N="TxtPinX" V="-0.09847519685039341" F="Inh"/>
  <main:Cell N="TxtPinY" V="-0.2978110542969352" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.2444939358181424" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.1222469679090712" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="-0.09847519685039341"/>
      <main:Cell N="Y" V="-0.2978110542969352"/>
      <main:Cell N="XDyn" V="-0.09847519685039341" F="Inh"/>
      <main:Cell N="YDyn" V="-0.2978110542969352" F="Inh"/>
      <main:Cell N="XCon" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="236000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="LangID" V="en-IN"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="MoveTo" IX="1">
      <main:Cell N="X" V="-0.09837519685039364"/>
    </main:Row>
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="-0.09837519685039364"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="-0.09847519685039341"/>
      <main:Cell N="Y" V="-0.1509999990463253"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="-0.09847519685039341"/>
      <main:Cell N="Y" V="-0.5957221085938702"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    Yes
  </main:Text>
</xml-fragment>
------xml-----289---null
------xml-----291---Dynamic connector
<xml-fragment ID="291" NameU="Dynamic connector" Name="Dynamic connector" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main">
  <main:Cell N="PinX" V="4.20085" F="Inh"/>
  <main:Cell N="PinY" V="6.19570652297497" F="Inh"/>
  <main:Cell N="Width" V="-1.545692135391528" F="GUARD(EndX-BeginX)"/>
  <main:Cell N="Height" V="-2.794653654717909" F="GUARD(EndY-BeginY)"/>
  <main:Cell N="LocPinX" V="-0.772846067695764" F="Inh"/>
  <main:Cell N="LocPinY" V="-1.397326827358956" F="Inh"/>
  <main:Cell N="BeginX" V="4.973696067695764" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="BeginY" V="7.593033350333924" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/>
  <main:Cell N="EndX" V="3.428003932304236" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="EndY" V="4.798379695616015" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/>
  <main:Cell N="LayerMember" V="1"/>
  <main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.272!EventXFMod)"/>
  <main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.263!EventXFMod)"/>
  <main:Cell N="TxtPinX" V="-0.1509999990463253" F="Inh"/>
  <main:Cell N="TxtPinY" V="-2.019172896008393" F="Inh"/>
  <main:Cell N="TxtHeight" V="0.2444939358181424" F="Inh"/>
  <main:Cell N="TxtLocPinY" V="0.1222469679090712" F="Inh"/>
  <main:Section N="Control">
    <main:Row N="TextPosition">
      <main:Cell N="X" V="-0.1509999990463253"/>
      <main:Cell N="Y" V="-2.019172896008393"/>
      <main:Cell N="XDyn" V="-0.1509999990463253" F="Inh"/>
      <main:Cell N="YDyn" V="-2.019172896008393" F="Inh"/>
      <main:Cell N="XCon" V="0" F="Inh"/>
    </main:Row>
  </main:Section>
  <main:Section N="User">
    <main:Row N="visNavOrder">
      <main:Cell N="Value" V="237000"/>
      <main:Cell N="Prompt" V="" F="No Formula"/>
    </main:Row>
  </main:Section>
  <main:Section N="Character">
    <main:Row IX="0">
      <main:Cell N="LangID" V="en-IN"/>
    </main:Row>
  </main:Section>
  <main:Section N="Geometry" IX="0">
    <main:Row T="LineTo" IX="2">
      <main:Cell N="X" V="-0.1509999990463253"/>
      <main:Cell N="Y" V="0"/>
    </main:Row>
    <main:Row T="LineTo" IX="3">
      <main:Cell N="X" V="-0.1509999990463253"/>
      <main:Cell N="Y" V="-2.794653654717909"/>
    </main:Row>
    <main:Row T="LineTo" IX="4">
      <main:Cell N="X" V="-1.545692135391528"/>
      <main:Cell N="Y" V="-2.794653654717909"/>
    </main:Row>
  </main:Section>
  <main:Text>
    <main:cp IX="0"/>
    No
  </main:Text>
</xml-fragment>
------xml-----291---Dynamic connector
------text-----
​Property buying Flowchart

Start with an agent 
you trust

Consult with agent to determine your property wants and needs

Review and complete paperwork

Go to preferred lender,
get pre-qualified and
pre-approval for loan amount

With agent, analyze
market to choose properties of interest

View properties
with agent

​A

​A

Select ideal property
and write offer to
purchase

Negotiate
& Counteroffer: Agreement?

Accept the contract

Secure underwriting,
obtain loan approval

Select/Contact closing attorney for title exam
and title insurance 

Schedule inspection
and survey

Close on the
property

Yes

No


------text-----

参考资料:

1. Apache POI - HDGF and XDGF - Java API To Access Microsoft Visio Format Files

2.Introduction to the Visio file format (.vsdx)

3.java导入visio文件_xdgfvisiorenderer-CSDN博客

4.Featured Visio templates and diagrams - Microsoft Support

相关推荐

  1. 使用 Apache POI XDGF 读取 vsdx 文件

    2024-01-19 20:44:03       35 阅读
  2. 使用 Python 读取 Word 文件

    2024-01-19 20:44:03       19 阅读
  3. 使用 openpyxl 库读取 Excel 文件

    2024-01-19 20:44:03       36 阅读
  4. rust - 使用serde_yaml读取配置文件

    2024-01-19 20:44:03       18 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-01-19 20:44:03       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-01-19 20:44:03       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-01-19 20:44:03       19 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-01-19 20:44:03       20 阅读

热门阅读

  1. MySQL 8.0 架构 之错误日志文件(Error Log)(1)

    2024-01-19 20:44:03       31 阅读
  2. 小程序中使用瀑布流组件的记录

    2024-01-19 20:44:03       40 阅读
  3. 大游戏并发使用什么阿里云服务器配置?

    2024-01-19 20:44:03       42 阅读
  4. Oracle学习笔记——基础一起学 15

    2024-01-19 20:44:03       32 阅读
  5. 微服务治理:微服务治理中的微服务回退机制

    2024-01-19 20:44:03       29 阅读
  6. Rust中&str和String的关系

    2024-01-19 20:44:03       25 阅读