# HG changeset patch # User Nozomi Teruya # Date 1455706307 -32400 # Node ID ef17e4dc62165a196a3037b740b46a50b78c063d # Parent 5fa2e97fe3c666d7343db8010d3e09b0c5907d01 after check diff -r 5fa2e97fe3c6 -r ef17e4dc6216 paper/.main.tex.swo Binary file paper/.main.tex.swo has changed diff -r 5fa2e97fe3c6 -r ef17e4dc6216 paper/main.pdf Binary file paper/main.pdf has changed diff -r 5fa2e97fe3c6 -r ef17e4dc6216 paper/main.tex --- a/paper/main.tex Wed Feb 17 17:09:12 2016 +0900 +++ b/paper/main.tex Wed Feb 17 19:51:47 2016 +0900 @@ -61,27 +61,27 @@ %章分けは個人で違うので下のフォーマットを参考にして下さい。 % はじめに -\chapter{研究背景と目的} +\chapter{Meta Computation による分散プ ログラミングの信頼性向上} \pagenumbering{arabic} -近年、スマートフォンやタブレット端末の普及率が増加している。 -それに伴いインターネット利用者数も増加しており、ネットワーク上のサービスの利用者の増加は必至である。 -従って、サービスには、信頼性とスケーラビリティーが要求される。 +スマートフォンやタブレット端末の普及率が増加している。 +それに伴いインターネット利用者数も増加しており、ネットワーク上のサービスには、信頼性とスケーラビリティーが要求される。 ここでいう信頼性とは、定められた環境下で安定して仕様に従った動作を行うことをさす。 またスケーラビリティーとは、サービスの利用者が増大した場合、メモリ等のリソースを追加するだけでサービスを維持できる性能をさす。 しかし、これらをもつ分散プログラムをユーザーが一から記述することは容易ではない。 -当研究室ではデータをData Segment、タスクをCode Segmentという単位で記述する分散フレームワークAlice\cite{senkokenkyu}\cite{senkokenkyu2} の開発を行っている。 -Aliceではスケーラブルな分散プログラムを信頼性高く記述できる環境を実現する。 +これらの問題の解決のために、データをData Segment、タスクをCode Segmentという単位で記述するプログラミング手法を導入した分散フレームワークAlice\cite{senkokenkyu}\cite{senkokenkyu2} の開発を実現した。 +Data Segmentは整数や文字列や構造体などの基本的なデータの集まりである。 +Code Segmentは入力となるData Segmentが全て揃ったら処理を開始し計算結果のData Segmentを出力するタスクである。 -Aliceでは、処理をComputationとMeta Computationに階層化し、コアな仕様と複雑な例外処理に分離する。 -そして分散環境の構築に必要な処理をMeta Computationとして提供する。 -プログラマは仕様を大きく変更することなくプログラムの挙動が変えられるため、変更前の信頼性を保ったまま拡張ができる。 +さらにAliceでは、計算の本質的な処理をComputation、Computationとは直接関係ないが別のレベルでそれを支える処理をMeta Computationとして分けて考える。 +分散アプリケーションにおいて、分散環境の構築や通信処理部分はMeta Computationと言える。 +それらの処理をAliceがMeta Computationとして提供することで、プログラマは目的の処理の記述だけで分散処理が実現できる。 +また、Meta Computationを指定するだけでComputationを大きく変更せずにプログラムの細かな挙動が変えられるため、変更前の信頼性を破壊せずに拡張ができる。 -本研究では、Alice上に実用的な分散アプリケーションの例題である画面共有システムTreeVNC \cite{treeVNC} を構築する。 -TreeVNCは画面変更の差分を木構造にそって配布する分散システムで、差分は数MByteに達するので圧縮を行う必要がある。そして表示時には伸長したデータを取り扱わなければならない。 -差分データはAliceのData Segementに対応するため、AliceのMeta Data Segmentとして圧縮機能が必要なる。 -これらの機能はTreeVNCではad-hocに実装されているが、AliceではこれをMeta Computationとして実装する。 -そして、TreeVNCとの比較を行うことでAlice の実用性を示すと共にAlice のMeta Computationの役割と有効性を示す。 +本研究では、Alice上に実用的な分散アプリケーションの例題である画面共有システムTreeVNC \cite{treeVNC} を構築した。 +構築するにあたって、配信される画面データはAliceのData Segementに対応するため、AliceのMeta Data Segmentとして圧縮機能が必要となった。 +これらの機能はTreeVNCではad-hocに実装されているが、AliceではこれをMeta Computationとして実装した。 +そして、性能・コード量の観点からTreeVNCとの比較を行い、Aliceの実用性を示すと共にAliceのMeta Computationの役割と有効性の評価を行った。 % 基礎概念 @@ -226,8 +226,7 @@ \chapter{AliceのMeta Computation} \section{Computetion と Meta Computation} -Aliceでは、計算の本質的な処理をComputation、Computationとは直接関係ないが別のレベルでそれを支える処理をMeta Computationとして分けて考える。 - +Aliceでは、処理をComputationとMeta Computationに階層化し、コアな仕様と複雑な例外処理に分離する。 AliceのComputationは、keyによりDSを待ち合わせ、DSが揃ったCSを並列に実行する処理と捉えられる。 それに対して、AliceのMeta Computation は、Remoteノードとの通信時のトポロジーの構成や切断・再接続の処理と言える。 つまりトポロジーの構成はAliceのComputationを支えているComputationとみなすことができる。 @@ -356,7 +355,7 @@ \begin{figure}[h] \begin{center} - \includegraphics[width=120mm]{images/TreeVNC.pdf} + \includegraphics[width=120mm]{images/AliceVNCstracture.pdf} \end{center} \caption{AliceVNC の構造} \label{fig:TreeVNC} @@ -371,7 +370,7 @@ \chapter{圧縮のMeta Computationの追加} \section{圧縮のMeta Data Segment} -TreeVNCでは画面配信の際、データを圧縮してノード間通信を行っている。 +TreeVNCは画面変更の差分を木構造にそって配信する際、差分は数MByteに達するため圧縮を行っている。 そのため、AliceVNCにも圧縮されたデータ形式を扱える機能が必要だと考えた。 しかし、ただデータを圧縮する機構を追加すればいいわけではない。 diff -r 5fa2e97fe3c6 -r ef17e4dc6216 presen/sample.markdown --- a/presen/sample.markdown Wed Feb 17 17:09:12 2016 +0900 +++ b/presen/sample.markdown Wed Feb 17 19:51:47 2016 +0900 @@ -51,6 +51,7 @@ * DS の追加 * put(String managerKey, String key, Object val) * update(String managerKey, String key, Object val) ※先頭DSを削除してからput + * flip(String managerKey, String key, Receiver receiver) ※ゼロコピー転送用 * DS の取得 * take(String managerKey, String key) * peek(String managerKey, String key) ※DSMから削除されない @@ -77,11 +78,7 @@ * Aliceを用いて実装する実用的な分散プログラムの例題 * 当研究室で開発したノードを木構造に配置して負荷分散を行う授業向け画面共有システム * TightVNCがもとになっている -![opt](./images/treeVNC.svg){:width="40%"} - -# AliceVNC * 画面処理や分散処理が混在する複雑なTreeVNCも、Aliceを用いればTightVNCからの変更が少ない見通しの良い記述で構成可能 -![opt](./images/AliceVNC.svg){:width="50%"} # TreeVNCで必要な機能 TreeVNCのComputation(VNCサーバからデータを受け取り表示)を支える機能をMeta Computationとして実装する @@ -89,33 +86,15 @@ * TreeTopologyの構成・管理(Topology Manager) * ノード間通信の切断時・再接続時の処理(ClosedEventManager) * ノードの接続状態確認(KeepAlive) -* 子ノードへのデータの転送 +* 子ノードへのデータの転送(flip) * データの圧縮 -# Dynamic Topology Manager -* Topology Managerを立ちあげ、各ノードはTopology Managerに参加表明をし接続すべきノードの情報を要求する -![opt](./pictures/tree1.svg){:width="60%"} - -# Dynamic Topology Manager -* Topology Managerは参加表明を受け取った順にTree構造になるよう接続情報を送る -![opt](./pictures/tree2.svg){:width="60%"} - -# Dynamic Topology Manager -* 各ノードが受け取った情報をもとにRemote DSMを立ちあげ接続し合うことでTree構造が作られる -![opt](./pictures/tree3.svg){:width="60%"} - # Meta Computationの追加 * TreeVNCの数MByteの画面差分データを配信し続けるためデータを圧縮している * 画面データを圧縮して送る → 解凍して画面表示 → 再圧縮して子ノードへ転送 * 再圧縮オーバーヘッドなしにゼロコピー転送する機能が必要 * 圧縮のMeta Computationと転送のMeta Computationを追加した -# 転送機能の追加 -* AliceではInputDSをReceiverに受け取ったあと、Receiverから任意の型で取り出し、操作してOutputDSとして出力する(コピーする) -* TreeVNCのように受け取ったデータをそのまま転送したいときには無駄 -* Input DSをそのままOutput DSとしてコピーせず転送できる **flipメソッド** を追加。put/updateと同じように扱える。 - flip(String managerKey, String key, Receiver receiver) - # 圧縮表現(Meta DS)の追加 * DSを複数作るのではなく、1つのDSに対しMeta DSとして以下の表現を同時に持たせる @@ -139,7 +118,7 @@ * Sadayuki Furuhashiが開発したシリアライズのための機能をまとめたオープンソースライブラリ。 * シリアライズ/デシリアライズを高速に行うことができ、整数、浮動小数点数、Boolean、文字列、配列、連想配列、nilをバイト列にシリアライズできる。 * JSONのようにプログラミング言語に依存しないデータの表現形式として使用できる。 -* AliceではJavaオブジェクトへの対応のためにJavassistも用いている。 + # 圧縮表現を扱うDSMとAPIの追加 * Local と Remote それぞれに圧縮表現を扱う Compressed DSM を追加 @@ -271,33 +250,11 @@ * AliceVNCで最も複雑度が高いSwingViewerWindow.classは、TightVNCから変更がほとんどないため、AliceVNCの持っている複雑度はTightVNCが元来持っていた複雑度 -# Meta Computationの評価結果 -* AliceVNCはコードの修正量・複雑度共に低く抑えながらTreeVNC と同等の性能を持つ分散アプリケーションを記述する能力があった - -# Aliceと他言語等との比較(1) - Erlang -* 共通点 - * タスクをプロセスと呼ばれるメモリを共有しないスレッドに分割 - * 共有メモリにアクセスするためのメモリロックの仕組みを必要としない - -* 相違点 - * 複数のデータの待ち合わせ処理はユーザーが書く - * Topologyの構成等はユーザーが書く - -# Aliceと他言語等との比較(2) - Akka -* 共通点 - * tell/ask が Alice の put/take に対応 - * 通信部分等を子アクターで分離し階層化 - -* 相違点 - * データに名前がついていないので何が来るかわかりづらい - * Actorごとに受け取ったデータの判別処理をユーザーが書く - * Topologyの構成はユーザーが書かないといけない - * 転送などのオーバーヘッドを考慮したメタプロトコル(Meta DS)が存在しない # まとめ -* Alice が実用的なアプリケーションを記述するための Meta Computation として、データに多態性を持たせる圧縮機能やゼロコピー転送の機能を実装した。 -* TreeVNCをAlice上で実装し比較を行った結果、シンプルな記述でTreeVNCの基本機能を実現でき、同等の性能を出すことに成功した -* AliceのMeta Computationが信頼性の高い実 用的な分散アプリケーションの構築に有用であることが確認された +* Alice が実用的なアプリケーションを記述するための Meta Computation として、Meta Data Segmentに複数の表現のデータを同時に持たせることで圧縮機能を実装した。 +* TreeVNCをAlice上で実装し比較を行った結果、シンプルな記述でTreeVNCの基本機能を実現でき、同等の性能を出すことに成功した。 +* AliceのMeta Computationが信頼性の高い実 用的な分散アプリケーションの構築に有用であることが確認された。 # 今後の課題 * APIの再設計 diff -r 5fa2e97fe3c6 -r ef17e4dc6216 slide1.graffle --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide1.graffle Wed Feb 17 19:51:47 2016 +0900 @@ -0,0 +1,25538 @@ + + + + + ApplicationVersion + + com.omnigroup.OmniGraffle + 139.18.0.187838 + + CreationDate + 2015-03-03 06:45:14 +0000 + Creator + Nozomi Teruya + GraphDocumentVersion + 8 + GuidesLocked + NO + GuidesVisible + YES + ImageCounter + 3 + LinksVisible + NO + MagnetsVisible + NO + MasterSheets + + ModificationDate + 2016-02-17 10:18:44 +0000 + Modifier + Nozomi Teruya + NotesVisible + NO + OriginVisible + NO + PageBreaks + NO + PrintInfo + + NSBottomMargin + + float + 41 + + NSHorizonalPagination + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG + + NSLeftMargin + + float + 18 + + NSPaperSize + + size + {595.28001499176025, 841.8900146484375} + + NSPrintReverseOrientation + + int + 0 + + NSPrinter + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAlOU1ByaW50ZXIAhIQITlNPYmplY3QAhZKEhIQITlNTdHJpbmcBlIQBKxNDYW5vbiBNRzM1MDAgc2VyaWVzhoY= + + NSPrinterName + + string + Canon MG3500 series + + NSRightMargin + + float + 18 + + NSTopMargin + + float + 18 + + + ReadOnly + NO + Sheets + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{154.75, 472}, {72, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 84 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'f1\'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{154.75, 401}, {72, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'f1\'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{254.49992752075195, 497.25}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{209.49994659423828, 497.25}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{164.49997329711914, 497.25}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 65 + + ID + 92 + Points + + {95.5, 508.25} + {149.00000353210214, 508.04849338522598} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{61, 499.25}, {30, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 93 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{149.5, 487.25}, {157.49998664855957, 41}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{254.49992752075195, 427}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 64 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{209.49994659423828, 427}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 63 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{164.49997329711914, 427}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 52 + + ID + 91 + Points + + {95.5, 438} + {149.00000353210214, 437.79849338522598} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{61, 429}, {30, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{36.5, 360}, {182, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DataSegmentManager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{149.5, 417}, {157.49998664855957, 41}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{367, 136}, {132, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 51 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'89\'f0\'93\'80\'81\'45\'89\'e6\'96\'ca\'95\'5c\'8e\'a6\'81\'45\'8d\'c4\'88\'b3\'8f\'6b} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{284.5, 186}, {78, 20}} + Class + ShapedGraphic + ID + 50 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + + + + Bounds + {{72.5, 186}, {78, 20}} + Class + ShapedGraphic + ID + 49 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + + + + Bounds + {{111, 84}, {78, 20}} + Class + ShapedGraphic + ID + 48 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + + + + Bounds + {{240.49998664855957, 84}, {78, 20}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + + + + Class + LineGraphic + Head + + ID + 36 + + ID + 46 + Points + + {336.5483513387997, 169.7697516939927} + {369.4516486612003, 232.2302483060073} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 30 + + + + Class + LineGraphic + Head + + ID + 35 + + ID + 45 + Points + + {310.63184291000618, 169.84885507033286} + {278.36815708999382, 232.15114492966711} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 30 + + + + Class + LineGraphic + Head + + ID + 32 + + ID + 44 + Points + + {124.18623787747521, 169.9273446013548} + {155.81376212252479, 232.07265539864522} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 29 + + + + Class + LineGraphic + Head + + ID + 31 + + ID + 39 + Points + + {98.273185220105262, 169.69005425580352} + {64.726814779894738, 232.30994574419648} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 29 + + + + Class + LineGraphic + Head + + ID + 29 + + ID + 38 + Points + + {193.01466397921303, 72.19078557196508} + {132.985336020787, 125.80921442803492} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Class + LineGraphic + Head + + ID + 30 + + ID + 37 + Points + + {236.56870279983337, 71.626795023712575} + {301.43129720016668, 126.37320497628745} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Bounds + {{353, 230}, {59, 54}} + Class + ShapedGraphic + ID + 36 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{236, 230}, {59, 54}} + Class + ShapedGraphic + ID + 35 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{139, 230}, {59, 54}} + Class + ShapedGraphic + ID + 32 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{22, 230}, {59, 54}} + Class + ShapedGraphic + ID + 31 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{294, 118}, {59, 54}} + Class + ShapedGraphic + ID + 30 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{82, 118}, {59, 54}} + Class + ShapedGraphic + ID + 29 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{185, 26}, {59, 54}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{36.5, 391.5}, {308.5, 160.5}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 1 + UniqueID + 1 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 24 + + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{-26, 44}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{138.44390869140625, 263.76729202270508}, {126, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 122 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS\'82\'aa\'91\'53\'82\'c4\'91\'b5\'82\'c1\'82\'bd\'82\'e7\'8e\'c0\'8d\'73} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 103 + + ID + 121 + Points + + {136.00000928102557, 246.43882750868178} + {136.00000928102557, 360.29521042735541} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 24 + + + + Bounds + {{248.06161701472723, 205.86702322452618}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 118 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{248.06161689758301, 150.79254913330078}, {34, 28}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 117 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 take\ +"key1"} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 116 + Points + + {311.83024597167969, 197.59042358398438} + {205.83024597167969, 198.59042358398438} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 115 + Points + + {205.8878173828125, 183.73936462402344} + {311.8878173828125, 183.73936462402344} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{75.457246897538937, 182.73936056583477}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 112 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{150.83024597167969, 150.79255676269531}, {55, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 111 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Receiver2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{146.66049194335938, 169.67020416259757}, {59.169754028320312, 45.329795837402344}} + Class + ShapedGraphic + ID + 110 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{63, 150.79255676269531}, {55, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 108 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Receiver1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{-6.0000000000007958, 92.02658843994115}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 InputDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{58.830245971679688, 169.67020416259757}, {59.169754028320312, 45.329795837402344}} + Class + ShapedGraphic + ID + 106 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{38, 124.2074432373046}, {196, 121.73138427734375}} + Class + ShapedGraphic + ID + 24 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{177.44391250610352, 360.79521942138666}, {44, 36}} + Class + ShapedGraphic + ID + 105 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{47, 360.79521942138666}, {44, 36}} + Class + ShapedGraphic + ID + 104 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{114, 360.79521942138666}, {44, 36}} + Class + ShapedGraphic + ID + 103 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{-7.0196838378938082, 286.67552947998041}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 102 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{26.5, 317.92952728271479}, {227, 121.73138427734375}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{389.95434190645057, 375.61967877124226}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 101 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{389.95434190645057, 313.88297060702718}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 100 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{471.64525305680434, 399.59042066208855}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 99 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{437.84211777814755, 399.59042066208855}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 98 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{404.03898823054755, 399.59042066208855}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 97 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 94 + + ID + 96 + Points + + {352.2075122262554, 409.18616534293966} + {392.27129653013782, 409.01092713207566} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{326.29176419475976, 401.33510151315244}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 95 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{392.77129175381458, 390.86701640676944}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 94 + Shape + Rectangle + + + Bounds + {{471.64525305680434, 338.30850576847166}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 93 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{437.84211777814755, 338.30850576847166}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 92 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{404.03898823054755, 338.30850576847166}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 91 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 87 + + ID + 90 + Points + + {352.2075122262554, 347.90425044932266} + {392.27129653013782, 347.72901223845861} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{326.29176419475976, 340.05318661953532}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 89 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{266.76065063476562, 279.35105895996088}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 88 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{392.77129175381458, 329.58510151315232}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 87 + Shape + Rectangle + + + Bounds + {{307.88782718688537, 307.34042066208877}, {231.73937007874025, 140.01063829787225}} + Class + ShapedGraphic + ID + 86 + Shape + Rectangle + + + Bounds + {{389.95434190645057, 190.61967877124212}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 85 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{389.95434190645057, 128.882970607027}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{471.64525305680434, 214.59042066208846}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{437.84211777814755, 214.59042066208846}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{404.03898823054755, 214.59042066208846}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 65 + + ID + 80 + Points + + {352.2075122262554, 224.18616534293952} + {392.27129653013782, 224.01092713207555} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{326.29176419475976, 216.33510151315227}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 82 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{392.77129175381458, 205.8670164067693}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{471.64525305680434, 153.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 64 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{437.84211777814755, 153.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 63 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{404.03898823054755, 153.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 52 + + ID + 81 + Points + + {352.2075122262554, 162.90425044932249} + {392.27129653013782, 162.72901223845852} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{326.29176419475976, 155.05318661953527}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{260, 92.026588439941236}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{392.77129175381458, 144.58510151315227}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{307.88782718688537, 122.34042066208868}, {231.73937007874025, 140.01063829787225}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + Bounds + {{11.533813476559317, 72}, {541.96618652344046, 399}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 2 + UniqueID + 2 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{106.20449447631836, 200.85369300842285}, {48, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 128 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'82\'b7\'82\'e9} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 115 + Points + + {227, 188.61967468261719} + {303, 370.61967468261719} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{40, 265.93416976928711}, {203, 28}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 127 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs24 \cf0 put("compressed","key1", DS)\ +} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 24 + + ID + 125 + Points + + {128.99999511146228, 358.29521042735348} + {128.99999511146228, 244.43882750868178} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 103 + + + + Bounds + {{-33, 42}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{267.01690864562988, 262.50000762939453}, {17, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 117 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 put} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{113.95724689753894, 173.15991047278393}, {25.915759493610032, 18.541328570927025}} + Class + ShapedGraphic + ID + 112 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{91, 138.05318069458002}, {76, 13.525714190321498}} + Class + ShapedGraphic + ID + 108 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ReceivedData} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{-13.000000000000796, 90.02658843994115}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 OutputDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{90.369613647460938, 156.29129950291883}, {80.669754028320312, 67.179420471191406}} + Class + ShapedGraphic + ID + 126 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{31, 122.2074432373046}, {196, 121.73138427734375}} + Class + ShapedGraphic + ID + 24 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{170.44391250610352, 358.79521942138666}, {44, 36}} + Class + ShapedGraphic + ID + 105 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{40, 358.79521942138666}, {44, 36}} + Class + ShapedGraphic + ID + 104 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{107, 358.79521942138666}, {44, 36}} + Class + ShapedGraphic + ID + 103 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{-27.539367675784433, 296.73804555040726}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 102 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{19.5, 315.92952728271479}, {227, 121.73138427734375}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{382.95434190645057, 373.61967877124226}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 101 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{382.95434190645057, 311.88297060702718}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 100 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{464.64525305680434, 397.59042066208855}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 99 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{430.84211777814755, 397.59042066208855}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 98 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{397.03898823054755, 397.59042066208855}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 97 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 94 + + ID + 96 + Points + + {345.2075122262554, 407.18616534293966} + {385.27129653013782, 407.01092713207566} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{319.29176419475976, 399.33510151315244}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 95 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{385.77129175381458, 388.86701640676944}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 94 + Shape + Rectangle + + + Bounds + {{464.64525305680434, 336.30850576847166}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 93 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{430.84211777814755, 336.30850576847166}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 92 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{397.03898823054755, 336.30850576847166}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 91 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 87 + + ID + 90 + Points + + {345.2075122262554, 345.90425044932266} + {385.27129653013782, 345.72901223845861} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{319.29176419475976, 338.05318661953532}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 89 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{300.8878173828125, 278.37500572204584}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 88 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CompressedLocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{385.77129175381458, 327.58510151315232}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 87 + Shape + Rectangle + + + Bounds + {{300.88782718688537, 305.34042066208877}, {231.73937007874025, 140.01063829787225}} + Class + ShapedGraphic + ID + 86 + Shape + Rectangle + + + Bounds + {{382.95434190645057, 188.61967877124212}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 85 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{382.95434190645057, 126.882970607027}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{464.64525305680434, 212.59042066208846}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{430.84211777814755, 212.59042066208846}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{397.03898823054755, 212.59042066208846}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 65 + + ID + 80 + Points + + {345.2075122262554, 222.18616534293952} + {385.27129653013782, 222.01092713207555} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{319.29176419475976, 214.33510151315227}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 82 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{385.77129175381458, 203.8670164067693}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{464.64525305680434, 151.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 64 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{430.84211777814755, 151.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 63 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{397.03898823054755, 151.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 52 + + ID + 81 + Points + + {345.2075122262554, 160.90425044932249} + {385.27129653013782, 160.72901223845852} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{319.29176419475976, 153.05318661953527}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{253, 90.026588439941236}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{385.77129175381458, 142.58510151315227}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{300.88782718688537, 120.34042066208868}, {231.73937007874025, 140.01063829787225}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + Bounds + {{4.5338134765593168, 70}, {541.96618652344046, 399}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 7 + UniqueID + 7 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{331.85310243684512, 167.37490645078859}, {33.98416656480623, 27.224794191734819}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 70 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Bounds + {{287.52596705013957, 167.37490645078859}, {33.98416656480623, 27.224794191734819}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 69 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Bounds + {{243.19883917875339, 167.37490645078859}, {33.98416656480623, 27.224794191734819}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 68 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Class + LineGraphic + Head + + ID + 65 + + ID + 80 + Points + + {175.23056241403239, 180.98730354665614} + {227.92315301755576, 180.737976360678} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{141.24641087986464, 169.84988774094629}, {29.551436116668331, 21.037340966340544}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 82 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 key2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{228.42314742403585, 155}, {155.14502646070073, 50.737116448233095}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{331.85310243684512, 95.313670502371849}, {33.98416656480623, 27.224794191734819}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 64 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Bounds + {{287.52596705013957, 95.313670502371849}, {33.98416656480623, 27.224794191734819}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 63 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Bounds + {{243.19883917875339, 95.313670502371849}, {33.98416656480623, 27.224794191734819}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Class + LineGraphic + Head + + ID + 52 + + ID + 81 + Points + + {175.23056241403239, 108.92606759823887} + {227.92315301755576, 108.67674041226084} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{141.24641087986464, 97.788651792529407}, {29.551436116668331, 21.037340966340544}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{100.57266235351562, 33}, {220.93747436785216, 23.523859456413742}} + Class + ShapedGraphic + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Data Segment Manager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{228.42314742403585, 82.938764051583036}, {155.14502646070073, 50.737116448233095}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{116.99999848826337, 64.000002274457643}, {293.88726806640625, 158}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 12 + UniqueID + 12 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{163, 310.76272201538086}, {60, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 169 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs24 \cf0 \'87\'42\'89\'e6\'96\'ca\'95\'5c\'8e\'a6} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{247.99994659423828, 485.91195678710938}, {22, 28}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 168 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs24 \cf0 put\ +} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 150 + + ID + 167 + Points + + {229.49839705354538, 505.22360241069754} + {302.38939961576267, 511.07433543087723} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 158 + + + + Class + LineGraphic + ID + 166 + Points + + {145.25337748489898, 198.44723510742188} + {145.25337748489898, 301.44723510742188} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{33.96063232421875, 391.33734512329102}, {229, 32}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 165 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fnil\fcharset0 Menlo-Bold;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs24 \cf0 \'87\'41 +\f1 flip("compressed","key1", ids)\ +} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{113.99999618530353, 509.16980934143066}, {48, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 164 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'82\'b7\'82\'e9} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 158 + + ID + 163 + Points + + {131.41319708097063, 336.16863864853497} + {131.11153711206433, 453.81744548800145} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 103 + + + + Bounds + {{124.33761799128973, 485.91200140372268}, {25.915759493610032, 18.541328570927025}} + Class + ShapedGraphic + ID + 162 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{99.295501708985171, 457.01955032348627}, {76, 13.525714190321498}} + Class + ShapedGraphic + ID + 161 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ReceivedData} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{-21.53936767578125, 419.46316528320312}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 160 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 OutputDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{98.665115356446108, 475.25766913182508}, {80.669754028320312, 55.912147521972656}} + Class + ShapedGraphic + ID + 159 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{33.000000000000796, 454.31744384765614}, {196, 86}} + Class + ShapedGraphic + ID + 158 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{384.95431138887244, 491.27697924350161}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 157 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{466.64522253922621, 515.7025144049461}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 156 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{432.84208726056943, 515.7025144049461}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 155 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{399.03895771296942, 515.7025144049461}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 154 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 151 + + ID + 153 + Points + + {347.20748170867728, 525.2982590857971} + {387.27126601255969, 525.1230208749331} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{321.29173367718164, 517.44719525600988}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 152 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{387.77126123623646, 506.97911014962688}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 151 + Shape + Rectangle + + + Bounds + {{302.88779666930725, 484.73442929856333}, {231.73937007874025, 71.360816955566406}} + Class + ShapedGraphic + ID + 150 + Shape + Rectangle + + + Bounds + {{308.5216064453125, 458.63295173645014}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 149 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CompressedRemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{384.95431138887244, 379.57710055087466}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{466.64522253922621, 404.00263571231915}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{432.84208726056943, 404.00263571231915}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 146 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{399.03895771296942, 404.00263571231915}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 141 + + ID + 144 + Points + + {347.20748170867728, 413.59838039317015} + {387.27126601255969, 413.42314218230615} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{321.29173367718164, 405.74731656338292}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{265.0938720703125, 348.49998555284867}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 142 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{387.77126123623646, 395.27923145699992}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 141 + Shape + Rectangle + + + Bounds + {{302.88779666930725, 373.03455060593632}, {231.73937007874025, 71.360816955566406}} + Class + ShapedGraphic + ID + 140 + Shape + Rectangle + + + Bounds + {{254.99998664855957, 174.90957641601562}, {29, 28}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 139 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs24 \cf0 take\ +} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 115 + Points + + {301.4136848449707, 244} + {225.4136848449707, 158} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{384.95434190645057, 216.36212710116763}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 137 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{466.64525305680434, 240.78766226261212}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 136 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{432.84211777814755, 240.78766226261212}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{399.03898823054755, 240.78766226261212}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 134 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 131 + + ID + 133 + Points + + {347.2075122262554, 250.38340694346311} + {387.27129653013782, 250.20816873259915} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{321.29176419475976, 242.53234311367589}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 132 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{387.77129175381458, 232.06425800729289}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 131 + Shape + Rectangle + + + Bounds + {{302.88782718688537, 209.81957715622929}, {231.73937007874025, 71.360816955566406}} + Class + ShapedGraphic + ID + 130 + Shape + Rectangle + + + Bounds + {{84.999996185302734, 157.9999942779541}, {103, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 128 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs24 \cf0 \'87\'42 getVal()\'82\'c5\'93\'57\'8a\'4a} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{28.788375854489004, 212.00000381469727}, {200, 32}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 127 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fnil\fcharset0 Menlo-Bold;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs24 \cf0 \'87\'40 +\f1 take("compressed", "key1")\ +} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 24 + + ID + 138 + Points + + {131.41181563911479, 299.16870506629908} + {131.13034416043456, 192.49999827400802} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 103 + + + + Bounds + {{-31, 14}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{120.33761799128894, 134.74218634024609}, {25.915759493610032, 18.541328570927025}} + Class + ShapedGraphic + ID + 112 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{95.295501708984375, 105.84973526000971}, {76, 13.525714190321498}} + Class + ShapedGraphic + ID + 108 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ReceivedData} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{-11.000000000000796, 62.02658843994115}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 InputDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{66, 124.08785406834852}, {133, 55.912147521972656}} + Class + ShapedGraphic + ID + 126 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{33, 94.207443237304602}, {196, 97.792556762695312}} + Class + ShapedGraphic + ID + 24 + Shape + FlattenedRectangle + Style + + Text + + VerticalPad + 0 + + TextRelativeArea + {{0.10000000000000001, 0}, {0.80000000000000004, 1}} + + + Bounds + {{109.46063232421557, 299.66867065429682}, {44, 36}} + Class + ShapedGraphic + ID + 103 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + VerticalPad + 0 + + + + Bounds + {{-25.078735351568866, 237.61149678331742}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 102 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{21.960632324215567, 256.80297851562494}, {227, 121.73138427734375}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{302.8878173828125, 183.71808815002436}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 88 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CompressedLocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{384.95434190645057, 98.882970607027005}, {54.085039370078718, 15.702127659574463}} + Class + ShapedGraphic + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{466.64525305680434, 123.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 64 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{432.84211777814755, 123.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 63 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{399.03898823054755, 123.30850576847149}, {25.915759493610032, 19.191489361702114}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Class + LineGraphic + Head + + ID + 52 + + ID + 81 + Points + + {347.2075122262554, 132.90425044932249} + {387.27129653013782, 132.72901223845852} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{321.29176419475976, 125.05318661953527}, {22.535433070866144, 14.829787234042552}} + Class + ShapedGraphic + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{255, 62.026588439941236}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{387.77129175381458, 114.58510151315227}, {118.31101359269749, 35.765957446808493}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{302.88782718688537, 92.340420662088661}, {231.73937007874025, 71.360816955566406}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + Bounds + {{6.5338134765593168, 42}, {541.96618652344046, 535}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 8 + UniqueID + 8 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{0, 0}, {130, 28}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 195 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\deftab720 +\pard\pardeftab720 + +\f0\fs24 \cf0 Compression method\ +} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 166 + + ID + 180 + Points + + {287.26109110941275, 268.49998860585112} + {286.89794893684206, 306.50002283824068} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 175 + + + + Class + LineGraphic + Head + + ID + 175 + + ID + 179 + Points + + {287.49998278289826, 191.00000762939453} + {287.49998278289826, 218.5000114440918} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 172 + + + + Class + LineGraphic + Head + + ID + 174 + + ID + 178 + Points + + {338.0000066953412, 75.5} + {338.0000066953412, 151.00000762939453} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 4 + + + + Bounds + {{0, 280}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 177 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 zlib} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{178.5787353515625, 315.7500114440918}, {213, 49}} + Class + ShapedGraphic + ID + 176 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 byteArray} + + + + Bounds + {{181, 219.0000114440918}, {213, 49}} + Class + ShapedGraphic + ID + 175 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 byteArray} + + + + Bounds + {{293.00003051757812, 151.50000762939453}, {89.999969482421875, 30}} + Class + ShapedGraphic + ID + 174 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 data} + + + + Bounds + {{195, 151.50000762939453}, {77, 30}} + Class + ShapedGraphic + ID + 173 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 header\ +(flag)} + + + + Bounds + {{181, 141.50000762939453}, {213, 49}} + Class + ShapedGraphic + ID + 172 + Shape + Rectangle + + + Bounds + {{81.5787353515625, 316.80853271484375}, {85, 47.941478729248047}} + Class + ShapedGraphic + ID + 171 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 zlib header} + + + + Bounds + {{403.5787353515625, 314.75}, {85, 50.000011444091797}} + Class + ShapedGraphic + ID + 167 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Adler32 } + + + + Bounds + {{68.578725814819336, 307}, {436, 65.80853271484375}} + Class + ShapedGraphic + ID + 166 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 byteArray} + + + + Bounds + {{148, 7}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 161 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Received Data} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{148, 113.0000114440918}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 160 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Message Pack} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{293.00003051757812, 45}, {89.999969482421875, 30}} + Class + ShapedGraphic + ID + 4 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 data} + + + + Bounds + {{195, 45}, {77, 30}} + Class + ShapedGraphic + ID + 3 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 flag} + + + + Bounds + {{181, 35}, {213, 49}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 9 + UniqueID + 9 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{97.651580810546875, 562.36367225646973}, {121.28936767578125, 49}} + Class + ShapedGraphic + ID + 25 + Shape + Speech Bubble + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 7 +\f1 \'88\'c8\'89\'ba} + VerticalPad + 0 + + TextRelativeArea + {{0.14999999999999999, 0.14999999999999999}, {0.69999999999999996, 0.69999999999999996}} + VFlip + YES + + + Bounds + {{284.53936767578125, 540.24662780761719}, {20, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 201 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4bit} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{131.96063232421875, 540.24662780761719}, {20, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 200 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4bit} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{176.65158081054688, 417.13293743133545}, {30, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 199 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1byte} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{105.94094848632812, 416.59237575531006}, {30, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 198 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1byte} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 197 + Points + + {215.82872009277344, 531.43811798095703} + {363.96063232421875, 532.43811798095703} + + Style + + stroke + + HeadArrow + StickArrow + Legacy + + TailArrow + StickArrow + + + + + Class + LineGraphic + ID + 196 + Points + + {97.651580810546875, 531.43811798095703} + {197.96063232421875, 531.12957954406738} + + Style + + stroke + + HeadArrow + StickArrow + Legacy + + TailArrow + StickArrow + + + + + Class + LineGraphic + ID + 194 + Points + + {163.94094085693359, 410.57775783538818} + {219.36221313476562, 410.59240055084229} + + Style + + stroke + + HeadArrow + StickArrow + Legacy + + TailArrow + StickArrow + + + + + Class + LineGraphic + ID + 45 + Points + + {92.519676208496094, 410.57773303985596} + {147.94094848632812, 410.59237575531006} + + Style + + stroke + + HeadArrow + StickArrow + Legacy + + TailArrow + StickArrow + + + + + Bounds + {{13.9212646484375, 441.58503532409668}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 193 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CMF} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{42, 322.15885639190674}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 192 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 zlib header} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{97.651580810546875, 468.73996162414551}, {100.30905151367188, 39}} + Class + ShapedGraphic + ID + 191 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 CINFO +\b0 \ +(Window size)} + + + + Bounds + {{215.82872200012207, 468.73993110656738}, {154.4212646484375, 39}} + Class + ShapedGraphic + ID + 190 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fmodern\fcharset0 Courier;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CM\ +( +\f1 Compression method +\f0 )} + + + + Bounds + {{76.539360046386719, 436.53385353088379}, {308.4212646484375, 81.706108093261719}} + Class + ShapedGraphic + ID + 189 + Shape + Rectangle + Style + + fill + + Color + + b + 0 + g + 1 + r + 0.501961 + + + + + + Bounds + {{163.94094848632812, 349.56311655044556}, {55.421272277832031, 39}} + Class + ShapedGraphic + ID + 188 + Shape + Rectangle + Style + + fill + + Color + + b + 0 + g + 1 + r + 0.501961 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 FLG} + + + + Bounds + {{92.519676208496094, 349.06311655044556}, {55.421272277832031, 39}} + Class + ShapedGraphic + ID + 187 + Shape + Rectangle + Style + + fill + + Color + + b + 0 + g + 1 + r + 0.501961 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 CMF} + + + + Bounds + {{78.519676208496094, 317.35700845718384}, {154.4212646484375, 81.706108093261719}} + Class + ShapedGraphic + ID + 186 + Shape + Rectangle + Style + + fill + + Color + + b + 0 + g + 1 + r + 0 + + + + + + Bounds + {{9, 201}, {184.03937007874021, 19.191489361702114}} + Class + ShapedGraphic + ID + 185 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 zlib} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{187.5787353515625, 230.7500114440918}, {213, 49}} + Class + ShapedGraphic + ID + 184 + Shape + Rectangle + Style + + fill + + Color + + b + 0.501961 + g + 0.501961 + r + 0 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Deflate Stream} + + + + Bounds + {{90.5787353515625, 231.80853271484375}, {85, 47.941478729248047}} + Class + ShapedGraphic + ID + 183 + Shape + Rectangle + Style + + fill + + Color + + b + 0 + g + 1 + r + 0 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs24 \cf0 zlib header} + + + + Bounds + {{412.5787353515625, 231.80853271484375}, {85, 47.941478729248047}} + Class + ShapedGraphic + ID + 182 + Shape + Rectangle + Style + + fill + + Color + + b + 0 + g + 1 + r + 0 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Adler32 } + + + + Bounds + {{77.578725814819336, 201}, {436, 86.80853271484375}} + Class + ShapedGraphic + ID + 181 + Shape + Rectangle + Style + + fill + + Color + + b + 0.25098 + g + 0.501961 + r + 0 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 byteArray} + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 10 + UniqueID + 10 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{167, 268}, {240, 21}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 47 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6b\'91\'4f\'82\'cc\'83\'66\'81\'5b\'83\'5e\'82\'cc\'92\'b7\'82\'b3 \'81\'81 \'83\'bf \'81\'7e 10 ^ n} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{262, 183}, {35, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 46 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 4byte} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 45 + Points + + {181.5, 204} + {377.50000238418579, 204} + + Style + + stroke + + HeadArrow + StickArrow + Legacy + + TailArrow + StickArrow + + + + + Bounds + {{279.50000476837158, 216}, {98, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 5 + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.8 + r + 0.4 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 n} + + + + Bounds + {{230.50000238418579, 216}, {49, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 3 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 0.8 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \uc0\u945 } + + + + Bounds + {{181.50000238418579, 216}, {49, 36}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 1 + Shape + Rectangle + Style + + fill + + Color + + a + 0.94 + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 0xC1} + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 11 + UniqueID + 11 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{272, 509.125}, {42, 28}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 140 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Encode\ +Decode} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 139 + Points + + {262.77801513671875, 554.12501525878906} + {261.77801513671875, 492.125} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 138 + Points + + {247, 494.71723937988281} + {247, 551.53277587890625} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 137 + Points + + {103.5, 538.75} + {150, 578.75} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 87 + Points + + {103.5, 507} + {150, 466} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{156.25, 538.75}, {60, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 84 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{156.25, 432.5}, {72, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'f1\'88\'b3\'8f\'6b\'83\'66\'81\'5b\'83\'5e} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{255.99992752075195, 566.75}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{210.99994659423828, 566.75}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{165.99997329711914, 566.75}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{151, 556.75}, {157.49998664855957, 41}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{255.99992752075195, 458.5}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 64 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{210.99994659423828, 458.5}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 63 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{165.99997329711914, 458.5}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{61.5, 511}, {30, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{38, 391.5}, {182, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 136 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DataSegmentManager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{151, 448.5}, {157.49998664855957, 41}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{38, 423}, {308.5, 193}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + + + Bounds + {{135.88900756835938, 288}, {265, 36}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 134 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs24 \cf0 \'81\'45RemoteDSM\'82\'cd\'95\'ca\'83\'6d\'81\'5b\'83\'68\'82\'ccLocalDSM\'82\'ccProxy\ +\'81\'45 +\f1 RemoteDSM +\f0 \'82\'cd\'90\'da\'91\'b1\'83\'6d\'81\'5b\'83\'68\'82\'b2\'82\'c6\'82\'c9\'91\'b6\'8d\'dd} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 133 + Points + + {318.61801147460938, 222.191162109375} + {232.61800384521484, 103.191162109375} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 132 + Points + + {236.49998664855957, 220.691162109375} + {322.49999272818695, 104.691162109375} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{378.71388069527893, 37.000000000000099}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 131 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{435.17567375687008, 156.26918220520031}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 130 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{425.98306274414062, 129.85374390492689}, {97.14581535806731, 62.718745997694626}} + Class + ShapedGraphic + ID + 129 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{330.82473991069389, 210.80327469626968}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 128 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{318.61801230902802, 179.67890525915561}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 127 + Shape + Rectangle + + + Bounds + {{328.82474161553932, 115.48710825962533}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 126 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{318.61801230902802, 84.362746008570355}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 125 + Shape + Rectangle + + + Bounds + {{302.12557633196411, 58.426229508196684}, {231.93721183401772, 205.5737704918032}} + Class + ShapedGraphic + ID + 124 + Shape + Rectangle + + + Bounds + {{92.651092529296832, 37.000000000000099}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{32.938026637285702, 156.26918220520031}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 102 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{23.745415624556266, 129.85374390492689}, {97.14581535806731, 62.718745997694626}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{147.09573733824467, 210.80327469626965}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 88 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{135.88900973657883, 179.67890525915558}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 86 + Shape + Rectangle + + + Bounds + {{146.09573904309013, 115.48710825962533}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{135.88900973657883, 84.362746008570355}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + Bounds + {{16.062788165982084, 58.426229508196684}, {231.93721183401772, 205.5737704918032}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 3 + UniqueID + 3 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Class + LineGraphic + ID + 162 + Points + + {241.38197632560932, 511.5128555595096} + {323.93692575349201, 511.5128555595096} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 163 + Points + + {323.40138783893286, 399.25643157958984} + {240.846435546875, 399.35518821240703} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 193 + Points + + {526.26596069335938, 674.98969909590528} + {544.22445047859617, 674.65789794921875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Class + LineGraphic + ID + 192 + Points + + {461.16241455078125, 675.85035583418653} + {479.12090433601804, 675.5185546875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Class + LineGraphic + ID + 191 + Points + + {344.02988301749758, 675.85035583418653} + {361.98837280273438, 675.5185546875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Class + LineGraphic + ID + 190 + Points + + {278.92632293701172, 675.85035583418653} + {296.88481272224851, 675.5185546875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Class + LineGraphic + ID + 189 + Points + + {159.72797261710699, 678.95135498046875} + {177.68646240234375, 678.61955383378222} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 180 + + ID + 31 + Points + + {95.285163879394531, 677.87237548828125} + {113.2436536646313, 677.54057434159472} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + + + + + Bounds + {{478.52596473693848, 652.65788571561018}, {44.583042144775391, 45}} + Class + ShapedGraphic + ID + 188 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS\ +=2} + VerticalPad + 0 + + + + Bounds + {{373.10394091193734, 675.51855659484909}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 187 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'83\'43\'83\'93\'83\'4e\'83\'8a\'83\'81\'83\'93\'83\'67 +\f1 \ +CS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{361.98835945129395, 641.05124545925423}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 186 + Shape + Rectangle + + + Bounds + {{15.615720697093593, 672.17563819885299}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 185 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Start +\f1 CS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{16.524574279785156, 639.31413150661751}, {78.760593234732596, 72.136628631222308}} + Class + ShapedGraphic + ID + 184 + Shape + Rectangle + + + Bounds + {{298.0417652130127, 651.27658383572737}, {44.583042144775391, 45}} + Class + ShapedGraphic + ID + 183 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS\ +=1} + VerticalPad + 0 + + + + Bounds + {{188.80204195563851, 672.17563819885299}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 181 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'83\'43\'83\'93\'83\'4e\'83\'8a\'83\'81\'83\'93\'83\'67 +\f1 \ +CS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{113.73986911773682, 654.61954800809065}, {44.583042144775391, 45}} + Class + ShapedGraphic + ID + 180 + Shape + Circle + Style + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS\ +=0} + VerticalPad + 0 + + + + Bounds + {{163.0326792362664, 637.70829966587564}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 16 + + ID + 179 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{177.68646049499512, 637.70832706325814}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 178 + Shape + Rectangle + + + Bounds + {{62.31829309463501, 377.87049937248253}, {27, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 177 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 take} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{481.99997186660767, 380.48712158203148}, {20, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 176 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 put} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{481.99997186660767, 516.57251453399681}, {27, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 170 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 take} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{62.31829309463501, 512.00000000000023}, {20, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 169 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 put} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 168 + Points + + {486.24786615371704, 413.1249694824221} + {474.37744379043579, 399.29315379185221} + {427.24786615371704, 397.48712158203148} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 167 + Points + + {430.42025927093869, 511.57250976562523} + {472.07547235488892, 509.42749023437523} + {483.07547235488892, 488.57250976562523} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 166 + Points + + {77.245028018951416, 489.51289367675804} + {89.999971866607666, 507.00000000000023} + {136.99997794646001, 512.51289367675804} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 35 + Points + + {136.99997186660767, 397.48712158203148} + {93.532648059180133, 399.48712158203148} + {77.999971866607666, 418.23713684082054} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{444.54595682069635, 452.26918220520065}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 165 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'83\'43\'83\'93\'83\'4e\'83\'8a\'83\'81\'83\'93\'83\'67 +\f1 \ +CS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{383.15108028786926, 328.00000000000045}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 161 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{430.42026233673096, 420.85374390492723}, {103.64249769585854, 62.718745997694626}} + Class + ShapedGraphic + ID + 159 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{335.26193950328422, 502.80327469627002}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 16 + + ID + 128 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{323.05521190161835, 471.67890525915595}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 127 + Shape + Rectangle + + + Bounds + {{333.26194120812966, 397.48710825962564}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 16 + + ID + 126 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{323.05521190161835, 366.3627460085707}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 125 + Shape + Rectangle + + + Bounds + {{306.56277592455444, 349.42622950819703}, {231.93721183401772, 205.5737704918032}} + Class + ShapedGraphic + ID + 158 + Shape + Rectangle + + + Bounds + {{97.088292121887164, 328.00000000000045}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 157 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{40.375226229876034, 451.26918220520065}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 164 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'83\'43\'83\'93\'83\'4e\'83\'8a\'83\'81\'83\'93\'83\'67 +\f1 \ +CS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{28.745387491163939, 420.85374390492723}, {101.58304308404996, 62.718745997694626}} + Class + ShapedGraphic + ID + 155 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{151.53293693083501, 502.80327469627002}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 16 + + ID + 88 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{140.32620932916916, 471.67890525915595}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 86 + Shape + Rectangle + + + Bounds + {{150.53293863568047, 397.48710825962564}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 16 + + ID + 154 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{140.32620932916916, 366.3627460085707}, {99.174053113938854, 72.136628631222308}} + Class + ShapedGraphic + ID + 153 + Shape + Rectangle + + + Bounds + {{20.499987758572416, 349.42622950819703}, {231.93721183401772, 205.5737704918032}} + Class + ShapedGraphic + ID + 152 + Shape + Rectangle + + + Class + LineGraphic + ID + 150 + Points + + {323.93692016601562, 265.11211395263672} + {237.93691253662109, 146.11211395263672} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 149 + Points + + {235.78152740001678, 264.5} + {321.78153347964417, 148.5} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{332.70674628997801, 253.48710800948106}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 148 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6b +\f1 \ +RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{322.50000172467765, 236}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + + + Bounds + {{334.14366645599364, 201.48710800948109}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 146 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{323.93692189069327, 184}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + + + Bounds + {{334.14366645599364, 144.37343243860258}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 144 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6b +\f1 \ +LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{323.93692189069327, 126.88632442912149}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + + + Bounds + {{332.70674456530037, 91.48710850976957}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 142 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{322.5, 74.000000500288479}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 141 + Shape + Rectangle + + + Bounds + {{146.09575602655684, 253.48710800948106}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 140 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6b +\f1 \ +RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{135.88901146125647, 236}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 139 + Shape + Rectangle + + + Bounds + {{147.53267619257247, 201.48710800948109}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 138 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{137.3259316272721, 184}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 137 + Shape + Rectangle + + + Bounds + {{147.53267619257247, 144.37343243860258}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 151 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6b +\f1 \ +LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{137.3259316272721, 126.88632442912149}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + + + Class + LineGraphic + ID + 133 + Points + + {321.06307220458984, 211.375} + {235.06306457519531, 92.375} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 132 + Points + + {236.49998664855957, 220.691162109375} + {322.49999272818695, 104.691162109375} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{378.71388069527893, 37.000000000000099}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 131 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{438.10876396683102, 156.26918220520031}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 130 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{430.34478759765625, 129.85374390492689}, {97.14581535806731, 62.718745997694626}} + Class + ShapedGraphic + ID + 129 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{302.12557633196411, 58.426229508196684}, {231.93721183401772, 229.57377624511719}} + Class + ShapedGraphic + ID + 124 + Shape + Rectangle + + + Bounds + {{92.651092529296832, 37.000000000000099}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{32.938026637285702, 156.26918220520031}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 102 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 ThreadPool} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{23.745415624556266, 129.85374390492689}, {97.14581535806731, 62.718745997694626}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{146.0957543018792, 91.48710850976957}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{135.88900973657883, 74.000000500288479}, {99.174053113938854, 45}} + Class + ShapedGraphic + ID + 71 + Shape + Rectangle + + + Bounds + {{16.062788165982084, 58.426229508196684}, {231.93721183401772, 229.57377624511719}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 6 + UniqueID + 6 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Class + LineGraphic + ID + 164 + Points + + {198.57853573567914, 439.06800522839865} + {303, 440} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 174 + + + + Bounds + {{101.07855563868929, 419.13066482543934}, {97, 39}} + Class + ShapedGraphic + ID + 174 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'83\'5c\'83\'50\'83\'62\'83\'67\'92\'ca\'90\'4d\ +\'83\'81\'83\'5c\'83\'62\'83\'68} + + + + Bounds + {{351.54113979418901, 529.48557193050215}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 173 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Compressed\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f1 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{328.88992569878451, 490.37344360351551}, {124.06305694580078, 76.999992370605469}} + Class + ShapedGraphic + ID + 172 + Shape + Rectangle + + + Bounds + {{349.10394496997026, 420.68671798706043}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 171 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{328.92144332363955, 388.02639770507801}, {124.06305694580078, 85.261322021484375}} + Class + ShapedGraphic + ID + 170 + Shape + Rectangle + + + Class + LineGraphic + Head + + ID + 174 + + ID + 169 + Points + + {149.57857027454912, 489.87343597412098} + {149.57857027454912, 458.63066482543934} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 167 + + + + Bounds + {{109.09433221817017, 523.92944335937489}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica-Bold + Size + 18 + + ID + 168 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs28 \cf0 Compressed\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f1 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{87.547023351091639, 490.37343597412098}, {124.06305694580078, 77}} + Class + ShapedGraphic + ID + 167 + Shape + Rectangle + + + Bounds + {{110.19826033467973, 401.26917192524769}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 166 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{87.51549165954043, 388.02639770507801}, {124.06305694580078, 85.261322021484375}} + Class + ShapedGraphic + ID + 165 + Shape + Rectangle + + + Bounds + {{349.1039174971213, 351}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 163 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{308.54701572169711, 372.42622950819657}, {159.87442016601562, 210.57377624511719}} + Class + ShapedGraphic + ID + 162 + Shape + Rectangle + + + Bounds + {{110.1667056631033, 351}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 161 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{74.547015721696908, 372.42622950819657}, {150, 210.57377624511719}} + Class + ShapedGraphic + ID + 160 + Shape + Rectangle + + + Bounds + {{252.48423724879669, 186}, {38, 77}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 159 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs128 \cf2 \'d7} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{109.06277805079867, 230.37344360351551}, {97, 39}} + Class + ShapedGraphic + ID + 158 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'83\'5c\'83\'50\'83\'62\'83\'67\'92\'ca\'90\'4d\ +\'83\'81\'83\'5c\'83\'62\'83\'68} + + + + Bounds + {{109.09433322657992, 107.13066482543935}, {97, 39}} + Class + ShapedGraphic + ID + 157 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'83\'5c\'83\'50\'83\'62\'83\'67\'92\'ca\'90\'4d\ +\'83\'81\'83\'5c\'83\'62\'83\'68} + + + + Bounds + {{359.55691738207963, 226.74278596525107}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 155 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Compressed\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f1 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{336.90570328667513, 178.37344360351551}, {124.06305694580078, 106.62655639648438}} + Class + ShapedGraphic + ID + 154 + Shape + Rectangle + + + Bounds + {{357.11972255786088, 108.68671798706045}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 153 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 LocalDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{336.93722091153018, 76.026397705078026}, {124.06305694580078, 85.261322021484375}} + Class + ShapedGraphic + ID + 152 + Shape + Rectangle + + + Class + LineGraphic + Head + + ID + 154 + + ID + 149 + Points + + {220.12585788141709, 231.6867365329} + {336.40570329004106, 231.6867365329} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 139 + + + + Bounds + {{118.18248224258423, 199.99999999999989}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica-Bold + Size + 18 + + ID + 140 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\b\fs28 \cf0 Compressed\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f1 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{95.562800938982264, 178.37343597412098}, {124.06305694580078, 106.62656402587891}} + Class + ShapedGraphic + ID + 139 + Shape + Rectangle + + + Bounds + {{118.21403792257036, 89.26917192524769}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 138 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 RemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{95.531269247431055, 76.026397705078026}, {124.06305694580078, 85.261322021484375}} + Class + ShapedGraphic + ID + 137 + Shape + Rectangle + + + Class + LineGraphic + Head + + ID + 152 + + ID + 132 + Points + + {220.0943261898677, 118.65706950595144} + {336.43722091489428, 118.65706950595144} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 137 + + + + Bounds + {{357.11969508501193, 39}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 131 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{316.56279330958773, 60.426229508196585}, {159.87442016601562, 245.57377624511719}} + Class + ShapedGraphic + ID + 124 + Shape + Rectangle + + + Bounds + {{118.18248325099393, 39}, {78.760593234732596, 9.887886790572523}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 18 + + ID + 123 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{82.562793309587533, 60.426229508196585}, {150, 245.57377624511719}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 13 + UniqueID + 13 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{323.0626220703125, 590}, {19, 22}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{342.0626220703125, 590}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{256.0626220703125, 590}, {19, 22}} + Class + ShapedGraphic + ID + 146 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{275.0626220703125, 590}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{321.6876220703125, 514.5}, {19, 22}} + Class + ShapedGraphic + ID + 144 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{340.6876220703125, 514.5}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{254.6876220703125, 514.5}, {19, 22}} + Class + ShapedGraphic + ID + 142 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{273.6876220703125, 514.5}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{149.00010871887207, 364.75}, {257, 49.5}} + Class + ShapedGraphic + ID + 163 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 runCommand(zpeek +\f1\fs24 ); +\f0\fs26 \ +\'88\'b3\'8f\'6bDS\'82\'f0\'83\'4c\'83\'85\'81\'5b\'82\'a9\'82\'e7\'8e\'e6\'82\'e8\'8f\'6f\'82\'b7} + + + + Bounds + {{204.5002613067627, 335.75}, {142, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 162 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DataSegmentKey} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{237.49997329711914, 306.875}, {84, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 160 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Command} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{166.99997329711914, 278}, {225, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 154 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 LocalDataSegmentManager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{203.99997329711914, 242.5}, {151, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 152 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 InputDataSegment} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{233.12483406066895, 212.25}, {72, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 150 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Receiver} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{210.62484931945801, 119.5}, {116, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 149 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CodeSegment} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 137 + Points + + {200.7501220703125, 580.25} + {241.75009536743164, 599} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 87 + Points + + {200.7501220703125, 546.25} + {241.75009536743164, 526.25} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{243.37510871887207, 563.25}, {98, 21}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 84 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6bDS Queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{242.00009536743164, 488.75}, {112, 21}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'94\'f1\'88\'b3\'8f\'6bDS Queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{243.25010871887207, 580.25}, {144.75001525878906, 41}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{167.0001220703125, 553.75}, {34, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{184.50027656555176, 444}, {182, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 136 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DataSegmentManager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{243.25010871887207, 505.25}, {144.75001525878906, 41}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{155.00012397766113, 479.75}, {245, 153.5}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + + + Bounds + {{98.999969482421875, 147.75}, {361, 49.25}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + Style + + Text + + Align + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 Menlo-Regular;\f1\fnil\fcharset0 Menlo-Bold;\f2\fnil\fcharset0 Menlo-BoldItalic; +\f3\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red228\green228\blue255;\red102\green14\blue122;\red0\green128\blue0; +} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs24 \cf0 \cb2 Receiver\cb1 +\f1\b \cf3 arg1 +\f0\b0 \cf0 = +\f1\b \cf3 ids +\f0\b0 \cf0 .create(CommandType. +\f2\i\b \cf3 ZPEEK +\f0\i0\b0 \cf0 ); +\f3 \ + +\f1\b \cf3 arg1 +\f0\b0 \cf0 .setKey( +\f1\b \cf4 "key1" +\f0\b0 \cf0 );} + + + + Bounds + {{147.0000353000969, 316.50000502607099}, {231.99998474121094, 15}} + Class + ShapedGraphic + ID + 27 + Rotation + 90.000015258789062 + Shape + AdjustableArrow + ShapeData + + ratio + 0.32189163565635681 + width + 14.973806381225586 + + Style + + fill + + Color + + b + 0.989019 + g + 1 + r + 0.702459 + + MiddleFraction + 0.70634919404983521 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + Fuzziness + 0.0 + ShadowVector + {0, 2} + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + + + Bounds + {{180.35688586795902, 313.00000320040601}, {235.28640747070312, 15}} + Class + ShapedGraphic + ID + 164 + Rotation + 269.37521362304688 + Shape + AdjustableArrow + ShapeData + + ratio + 0.32189163565635681 + width + 14.973806381225586 + + Style + + fill + + Color + + b + 0.989019 + g + 1 + r + 0.702459 + + MiddleFraction + 0.70634919404983521 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + Fuzziness + 0.0 + ShadowVector + {0, 2} + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 4 + UniqueID + 4 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{146.62484741210938, 412.125}, {257, 49.5}} + Class + ShapedGraphic + ID + 163 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 runCommand(put)\ +\'88\'b3\'8f\'6b\'81\'45\'94\'f1\'88\'b3\'8f\'6bDS\'82\'f0\'83\'4c\'83\'85\'81\'5b\'82\'c9\'8a\'69\'94\'5b} + + + + Bounds + {{202.125, 383.125}, {142, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 162 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DataSegmentKey} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{144.625, 315.5}, {257, 49.5}} + Class + ShapedGraphic + ID + 161 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 \'94\'f1\'88\'b3\'8f\'6bDS\'82\'c8\'82\'e7\'88\'b3\'8f\'6bDS\'82\'f0\'8d\'ec\'82\'e9\ +\'88\'b3\'8f\'6bDS\'82\'c8\'82\'e7\'89\'f0\'93\'80\'82\'b5\'82\'bdDS\'82\'f0\'8d\'ec\'82\'e9} + + + + Bounds + {{233.12485122680664, 283.5}, {84, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 160 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Command} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{166.99999046325684, 251.5}, {225, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 154 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 LocalDataSegmentManager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{196.99999046325684, 216}, {165, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 152 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 OutputDataSegment} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{210.93716621398926, 132.5}, {116, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 149 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CodeSegment} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{318.375, 635.75}, {19, 22}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{337.375, 635.75}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{251.375, 635.75}, {19, 22}} + Class + ShapedGraphic + ID + 146 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{270.375, 635.75}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{317, 560.25}, {19, 22}} + Class + ShapedGraphic + ID + 144 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Bounds + {{336, 560.25}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{250, 560.25}, {19, 22}} + Class + ShapedGraphic + ID + 142 + Shape + Rectangle + Style + + fill + + Color + + b + 0.4 + g + 1 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 h} + + + + Class + LineGraphic + ID + 137 + Points + + {196.75, 626.25} + {237.74997329711914, 645} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 87 + Points + + {196.75, 592.25} + {237.74997329711914, 572.25} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{239.37498664855957, 609.25}, {98, 21}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 84 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'88\'b3\'8f\'6bDS Queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{237.99997329711914, 534.75}, {112, 21}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 83 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 \'94\'f1\'88\'b3\'8f\'6bDS Queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{239.24998664855957, 626.25}, {144.75001525878906, 41}} + Class + ShapedGraphic + ID + 65 + Shape + Rectangle + + + Bounds + {{269, 560.25}, {34.500015258789062, 22}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ds} + + + + Bounds + {{163, 599.75}, {34, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 60 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 key1} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{180.50015449523926, 490}, {182, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 136 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DataSegmentManager} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{239.24998664855957, 551.25}, {144.75001525878906, 41}} + Class + ShapedGraphic + ID + 52 + Shape + Rectangle + + + Bounds + {{151.00000190734863, 525.75}, {245, 153.5}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + + + Bounds + {{161.99969482421875, 161.5}, {235.62515258789062, 36}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + Style + + Text + + Align + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 Menlo-Bold;\f1\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;\red102\green14\blue122;\red0\green128\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs24 \cf2 ods +\f1\b0 \cf0 .put( +\f0\b \cf3 "local" +\f1\b0 \cf0 , +\f0\b \cf3 "key1" +\f1\b0 \cf0 , +\f0\b \cf2 val +\f1\b0 \cf0 );} + + + + Bounds + {{130.30497265597876, 339.49999503667152}, {286.01986694335938, 15}} + Class + ShapedGraphic + Head + + ID + 136 + + ID + 27 + Rotation + 90.675148010253906 + Shape + AdjustableArrow + ShapeData + + ratio + 0.32189163565635681 + width + 14.973806381225586 + + Style + + fill + + Color + + b + 0.989019 + g + 1 + r + 0.702459 + + MiddleFraction + 0.70634919404983521 + + shadow + + Color + + a + 0.4 + b + 0 + g + 0 + r + 0 + + Fuzziness + 0.0 + ShadowVector + {0, 2} + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + TextRelativeArea + {{0.125, 0.25}, {0.75, 0.5}} + isConnectedShape + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 5 + UniqueID + 5 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{158.00000238418579, 279.5}, {92, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 37 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Convert data} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{164, 374.5}, {171, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 36 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Adapt dynamic topology} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{304.00000476837158, 417.5}, {112, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 35 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Model checking} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{374.99999761581421, 346}, {73, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 34 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Copy data} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{206, 184.5}, {141, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 32 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Network connection} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{309, 227.5}, {153, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 31 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs32 \cf0 Exception processing} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{241, 87}, {139, 43}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 36 + + ID + 30 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs72 \cf0 Program} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{257, 256}, {111, 109}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 29 + Shape + Circle + Style + + fill + + Color + + b + 0 + g + 0.501961 + r + 1 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 Core} + VerticalPad + 0 + + + + Bounds + {{130, 140.5}, {361, 340}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + + ID + 28 + Shape + Circle + Style + + fill + + Color + + b + 0.4 + g + 0.8 + r + 1 + + + + Text + + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 14 + UniqueID + 14 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Class + LineGraphic + Head + + ID + 159 + + ID + 160 + Points + + {239.45838889479808, 322.44891318335459} + {263.05084501147496, 370.55144446198284} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 120 + + + + Class + LineGraphic + Head + + ID + 155 + + ID + 156 + Points + + {142.22948452647543, 322.38821534779248} + {114.44905540597397, 356.61462947172788} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 119 + + + + Bounds + {{105.18374633789062, 409}, {54, 41}} + Class + ShapedGraphic + ID + 157 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Remote\ +DSM\ +"Right"} + + + + Bounds + {{35.183746337890625, 409}, {54, 41}} + Class + ShapedGraphic + ID + 154 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 RemoteDSM\ +"Left"} + + + + Bounds + {{281.36749267578125, 417}, {54, 41}} + Class + ShapedGraphic + ID + 162 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Remote\ +DSM\ +"Right"} + + + + Bounds + {{211.36749267578125, 417}, {54, 41}} + Class + ShapedGraphic + ID + 161 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 RemoteDSM\ +"Left"} + + + + Bounds + {{407.68374633789062, 286}, {54, 41}} + Class + ShapedGraphic + ID + 152 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Remote\ +DSM\ +"Right"} + + + + Bounds + {{337.68374633789062, 286}, {54, 41}} + Class + ShapedGraphic + ID + 151 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 RemoteDSM\ +"Left"} + + + + Bounds + {{202.18374633789062, 281}, {54, 41}} + Class + ShapedGraphic + ID + 120 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Remote\ +DSM\ +"Right"} + + + + Bounds + {{132.18374633789062, 281}, {54, 41}} + Class + ShapedGraphic + ID + 119 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 RemoteDSM\ +"Left"} + + + + Bounds + {{260.64000749588013, 344}, {48, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 80 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Node:D} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{74.683746337890625, 332}, {48, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 79 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Node:C} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{379.18374633789062, 210}, {47, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 78 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Node:B} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{167.18374633789062, 206}, {47, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 77 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Node:A} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{265, 75}, {63, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 76 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Root Node} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 149 + + ID + 150 + Points + + {344.40769048640169, 195.38407177234086} + {378.77605519890994, 236.61592822766386} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 48 + + + + Class + LineGraphic + Head + + ID + 50 + + ID + 69 + Points + + {239.99950358133157, 195.38779185566042} + {211.32940064873844, 230.61353631561366} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 4 + + + + Bounds + {{246.36749267578125, 371}, {54, 41}} + Class + ShapedGraphic + ID + 159 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Local\ +DSM} + + + + Bounds + {{202.18374633789062, 360}, {142.36749267578125, 132}} + Class + ShapedGraphic + ID + 163 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{369.18374633789062, 237}, {54, 41}} + Class + ShapedGraphic + ID + 149 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Local\ +DSM} + + + + Bounds + {{325, 226}, {142.36749267578125, 132}} + Class + ShapedGraphic + ID + 148 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{70.183746337890625, 357}, {54, 41}} + Class + ShapedGraphic + ID + 155 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Local\ +DSM} + + + + Bounds + {{26, 346}, {142.36749267578125, 132}} + Class + ShapedGraphic + ID + 158 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{167.18374633789062, 231}, {54, 41}} + Class + ShapedGraphic + ID + 50 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Local\ +DSM} + + + + Bounds + {{123, 220}, {142.36749267578125, 132}} + Class + ShapedGraphic + ID + 164 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + Bounds + {{300, 154}, {54, 41}} + Class + ShapedGraphic + ID + 48 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Remote\ +DSM\ +"Right"} + + + + Bounds + {{230, 154}, {54, 41}} + Class + ShapedGraphic + ID + 4 + Shape + Rectangle + Style + + stroke + + CornerRadius + 9 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 RemoteDSM\ +"Left"} + + + + Bounds + {{265, 105}, {54, 41}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Local\ +DSM} + + + + Bounds + {{220.81625366210938, 94}, {142.36749267578125, 132}} + Class + ShapedGraphic + ID + 153 + Shape + Circle + Style + + Text + + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 15 + UniqueID + 15 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{91.420654296875, 152}, {40, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 150 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Packet} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{64, 173}, {44.158709247475997, 28}} + Class + ShapedGraphic + ID + 149 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 check\ +Delay} + + + + Bounds + {{112.84129333496094, 173}, {44.158709247475997, 28}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 pixel\ +Data} + + + + Bounds + {{59, 169}, {101.84129333496094, 36}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{102, 423.5}, {40, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 146 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Packet} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{101.26193237304688, 446}, {44.158709247475997, 28}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 check\ +Delay} + + + + Bounds + {{94.841293334960938, 442}, {57, 36}} + Class + ShapedGraphic + ID + 144 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{189.84129333496094, 335.5}, {40, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 143 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Packet} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{169.26194763183594, 59.5}, {40, 16}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 142 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Packet} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 141 + Points + + {336.98130351305008, 475} + {335.98130349361287, 448} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 140 + Points + + {285.76194506883621, 478} + {284.761945049399, 451} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 139 + Points + + {422.04195785522461, 469} + {387.20066833496094, 437.98626708984375} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 138 + Points + + {354.48130798339844, 391} + {335.48130798339844, 362.15377807617188} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 137 + Points + + {257.84129333496094, 389} + {276.84129333496094, 360.4312744140625} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{189.10322570800781, 358}, {44.158709247475997, 28}} + Class + ShapedGraphic + ID + 136 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 check\ +Delay} + + + + Class + LineGraphic + Head + + ID + 128 + + ID + 129 + Points + + {373.96444609676303, 443.41227049213501} + {415.35814806903892, 482.58772950786494} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 119 + + + + Bounds + {{407.84129333496094, 475}, {55, 53}} + Class + ShapedGraphic + ID + 128 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 119 + + ID + 126 + Points + + {319.91054664123891, 370.56398708261759} + {339.41204752456309, 401.43601291738241} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 116 + + + + Class + LineGraphic + Head + + ID + 121 + + ID + 125 + Points + + {353.98131265649255, 451.50001325422511} + {353.98131265649255, 474.49998674577648} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 119 + + + + Class + LineGraphic + Head + + ID + 120 + + ID + 124 + Points + + {258.341305270156, 451.50001325422511} + {258.341305270156, 474.49998674577654} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 117 + + + + Class + LineGraphic + Head + + ID + 118 + + ID + 123 + Points + + {237.93397223870764, 442.98663205190007} + {193.74861443121424, 483.01336794809993} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 117 + + + + Class + LineGraphic + Head + + ID + 117 + + ID + 122 + Points + + {291.1350964304105, 370.77398216277413} + {272.54749023951138, 401.22601783722587} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 116 + + + + Bounds + {{326.48130083084106, 475}, {55, 53}} + Class + ShapedGraphic + ID + 121 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{230.84129333496094, 475}, {55, 53}} + Class + ShapedGraphic + ID + 120 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{326.48130083084106, 398}, {55, 53}} + Class + ShapedGraphic + ID + 119 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{145.84129333496094, 475}, {55, 53}} + Class + ShapedGraphic + ID + 118 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{230.84129333496094, 398}, {55, 53}} + Class + ShapedGraphic + ID + 117 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{277.84129333496094, 321}, {55, 53}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 116 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Root} + VerticalPad + 0 + + + + Bounds + {{182.68258666992188, 354}, {57, 36}} + Class + ShapedGraphic + ID + 115 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{141.84129333496094, 80.5}, {44.158709247475997, 28}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 check\ +Delay} + + + + Bounds + {{190.68258666992188, 80.5}, {44.158709247475997, 28}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 pixel\ +Data} + + + + Class + LineGraphic + ID + 67 + Points + + {317.48130798339844, 191} + {317.48130798339844, 219} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 66 + Points + + {323.84129333496094, 105} + {342.84129333496094, 129} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 65 + Points + + {385.12132263183594, 174} + {424.12132263183594, 205} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 64 + Points + + {275.84129333496094, 191} + {275.84129333496094, 219} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 63 + Points + + {210.84129333496094, 174} + {171.84129333496094, 210} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 59 + + ID + 60 + Points + + {364.96444609676303, 183.41227049213501} + {406.35814806903892, 222.58772950786494} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 35 + + + + Bounds + {{398.84129333496094, 215}, {55, 53}} + Class + ShapedGraphic + ID + 59 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Class + LineGraphic + ID + 58 + Points + + {187.00000258243693, 469} + {221.84129333496094, 436.98626708984375} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + ID + 55 + Points + + {263.84129333496094, 102} + {244.84129333496094, 130} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + LineGraphic + Head + + ID + 35 + + ID + 44 + Points + + {310.91054664123601, 110.56398708261929} + {330.41204752455639, 141.43601291738636} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Class + LineGraphic + Head + + ID + 37 + + ID + 43 + Points + + {344.98128988400987, 191.50001325422389} + {344.98128988400987, 214.49998674577461} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 35 + + + + Class + LineGraphic + Head + + ID + 36 + + ID + 42 + Points + + {249.34130434193636, 191.50001325422537} + {249.34130434193636, 214.49998674577614} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 33 + + + + Class + LineGraphic + Head + + ID + 34 + + ID + 41 + Points + + {228.93397223870764, 182.98663205190005} + {184.74861443121424, 223.01336794809995} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 33 + + + + Class + LineGraphic + Head + + ID + 33 + + ID + 38 + Points + + {282.13509643041061, 110.77398216277425} + {263.54749023951172, 141.22601783722595} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Bounds + {{317.48130083084106, 215}, {55, 53}} + Class + ShapedGraphic + ID + 37 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{221.84129333496094, 215}, {55, 53}} + Class + ShapedGraphic + ID + 36 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{317.48130083084106, 138}, {55, 53}} + Class + ShapedGraphic + ID + 35 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{136.84129333496094, 215}, {55, 53}} + Class + ShapedGraphic + ID + 34 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{221.84129333496094, 138}, {55, 53}} + Class + ShapedGraphic + ID + 33 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{268.84129333496094, 61}, {55, 53}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 28 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Root} + VerticalPad + 0 + + + + Bounds + {{136.84129333496094, 76.5}, {101.84129333496094, 36}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 16 + UniqueID + 16 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{225.41000366210938, 242}, {63, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 69 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4 : connect } + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{342, 128.5}, {113, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 68 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3 : connect to nodeA } + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 67 + Points + + {348, 175} + {311, 96} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + + + Bounds + {{246.14000749588013, 141}, {67, 32}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 66 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 2 : where to \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f1 \cf0 \'81\'40 +\f0 connect} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 65 + Points + + {231.96002197265625, 100} + {190.32000732421875, 175} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + + + Bounds + {{131, 128.5}, {63, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 64 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1: put my ip} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{225, 49}, {83, 37}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Grobal TopM\ +133.13.0.3} + + + + Bounds + {{16.589996337890625, 203}, {83, 37}} + Class + ShapedGraphic + ID + 61 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Private TopM\ +10.0.0.2} + + + + Class + LineGraphic + ID + 60 + Points + + {333, 177} + {296, 98} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + 0 + + + + + Bounds + {{399.5, 340}, {81, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 58 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nodeF:10.1.0.4} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{279.64000749588013, 340}, {82, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 57 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nodeE:10.1.0.3} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{165.5, 342}, {83, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 56 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nodeD:10.0.0.4} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{54, 342}, {83, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 55 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nodeC:10.0.0.3} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{313.1400146484375, 189}, {86, 18}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 54 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nodeB +\f1 +\f0 :10.1.0.2} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{118.5, 189}, {85, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 nodeA: 10.0.0.2} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 52 + Points + + {204, 228} + {262.82000732421875, 229} + {316.82000732421875, 229} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + + + Bounds + {{433, 203}, {81, 37}} + Class + ShapedGraphic + ID + 51 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Private TopM\ +10.1.0.2} + + + + Class + LineGraphic + Head + + ID + 47 + + ID + 49 + Points + + {372.02511516153538, 251.73971327521582} + {395.25395220843234, 284.26092239276215} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 45 + + + + Class + LineGraphic + Head + + ID + 46 + + ID + 48 + Points + + {343.43549580007215, 253.56856016487325} + {328.20117587266714, 282.42979844709674} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 45 + + + + Bounds + {{383.64000749588013, 280}, {55, 53}} + Class + ShapedGraphic + ID + 47 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{288, 280}, {55, 53}} + Class + ShapedGraphic + ID + 46 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{328.6400146484375, 203}, {55, 53}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 45 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 35 + + ID + 44 + Points + + {177.06925330627794, 252.56398708261761} + {196.57075418960216, 283.43601291738241} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Class + LineGraphic + Head + + ID + 33 + + ID + 38 + Points + + {148.2938030954495, 252.77398216277422} + {129.70619690455047, 283.22601783722587} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 28 + + + + Bounds + {{183.64000749588013, 280}, {55, 53}} + Class + ShapedGraphic + ID + 35 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{88, 280}, {55, 53}} + Class + ShapedGraphic + ID + 33 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{135, 203}, {55, 53}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 14 + + ID + 28 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 Root} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 17 + UniqueID + 17 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{328.6400146484375, 166}, {204, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 75 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 2 : connect to nodeB andNodeC } + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{386, 280}, {132, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 74 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 2 : connect to nodeA } + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 73 + Points + + {403.97263679499503, 320.25520891061211} + {255.85027360916138, 158.40237182942599} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + Tail + + ID + 72 + + + + Class + LineGraphic + ID + 70 + Points + + {285.57944001910118, 314.59762817057401} + {238, 159} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + Tail + + ID + 46 + + + + Bounds + {{259, 485}, {69, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 69 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 3: connect } + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{116, 230}, {132, 17}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 14 + + ID + 68 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 2 : connect to nodeA } + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 67 + Points + + {316.64000749588013, 614} + {279.64000749588013, 535} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + + + Bounds + {{206, 122}, {83, 37}} + Class + ShapedGraphic + ID + 62 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Topology\ +Manager} + + + + Class + LineGraphic + ID + 60 + Points + + {338, 205} + {271, 159} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + + + Class + LineGraphic + ID + 52 + Points + + {44, 559} + {102.82000732421875, 560} + {156.82000732421875, 560} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + Pattern + 1 + TailArrow + FilledArrow + + + + + Bounds + {{395, 314}, {55, 53}} + Class + ShapedGraphic + ID + 72 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node\ +C} + VerticalPad + 0 + + + + Bounds + {{266, 314}, {55, 53}} + Class + ShapedGraphic + ID + 46 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Node\ +B} + VerticalPad + 0 + + + + Bounds + {{328.6400146484375, 203}, {55, 53}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 45 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 NodeA} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 22 + UniqueID + 22 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{251.85346325908699, 472.14563106796112}, {45.53208186524445, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 76 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 queue} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{308.23940917480604, 507.75728155339795}, {44.301485058075684, 33.067961165048523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 75 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Bounds + {{251.85345856473276, 507.75728155339795}, {44.301485058075684, 33.067961165048523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 74 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Bounds + {{195.46750854145381, 507.75728155339795}, {44.301485058075684, 33.067961165048523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 73 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Class + LineGraphic + Head + + ID + 70 + + ID + 72 + Points + + {156.08841071205319, 525.56310679611659} + {185.84347770132374, 525.24374330851435} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{186.34344890729625, 497.58252427184453}, {176.48522540911009, 53.417475728155317}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Class + LineGraphic + Head + + ID + 60 + + ID + 63 + Points + + {156.08841071205325, 436.53398058252412} + {185.84344889262917, 436.53398058252412} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{96.466227387448129, 513.48058449784537}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 62 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 "Key2"} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{96, 425.08737864077676}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 61 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 "Key1"} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{186.34344890729625, 419.99999999999989}, {44.301485058075684, 33.067961165048523}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 60 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 DS} + + + + Class + LineGraphic + Head + + ID + 44 + + ID + 58 + Points + + {120.0000117368551, 101.00001250836644} + {239.49999333742056, 101.00001250836644} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 56 + + + + Class + LineGraphic + Head + + ID + 49 + + ID + 51 + Points + + {302.49999333488194, 101.0000125678238} + {421.99997298061118, 101.0000125678238} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 44 + + + + Bounds + {{422.49998474121094, 77}, {47, 48}} + Class + ShapedGraphic + ID + 49 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS} + VerticalPad + 0 + + + + Bounds + {{72.5, 77}, {47, 48}} + Class + ShapedGraphic + ID + 56 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS} + VerticalPad + 0 + + + + Bounds + {{239.99999332427979, 77}, {62, 48}} + Class + ShapedGraphic + ID + 44 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + + + + Bounds + {{323.27457870392436, 202.49998523531161}, {62, 48}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0.25098 + r + 0.501961 + + + ID + 35 + Line + + ID + 36 + Position + 0.43326020240783691 + RotationType + 0 + + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0.501961 + r + 1 + + Pattern + 1 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red128\green64\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 Meta CS} + + + + Bounds + {{147.58566375516881, 202.49998875145985}, {62, 48}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0.25098 + r + 0.501961 + + + ID + 30 + Line + + ID + 37 + Position + 0.49025657773017883 + RotationType + 0 + + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0.501961 + r + 1 + + Pattern + 1 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red128\green64\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 Meta CS} + + + + Class + LineGraphic + Head + + ID + 1 + + ID + 37 + Points + + {120.00001173685736, 226.49998875145985} + {239.49999333742056, 226.49998875145985} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 39 + + + + Class + LineGraphic + Head + + ID + 42 + + ID + 36 + Points + + {302.49999333488194, 226.49998523531161} + {421.9999729806143, 226.49998523531161} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 2 + + + Tail + + ID + 1 + + + + Bounds + {{422.49998474121094, 202.5}, {47, 48}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.901961 + g + 0.901961 + r + 0.901961 + + + ID + 42 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS} + VerticalPad + 0 + + + + Bounds + {{403.99998474121094, 172}, {84, 85}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0.25098 + r + 0.501961 + + + ID + 43 + Shape + Circle + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0.501961 + r + 1 + + Pattern + 1 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red128\green64\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 MetaDS\ +\ +\ +} + VerticalPad + 0 + + + + Bounds + {{72.5, 202.5}, {47, 48}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.901961 + g + 0.901961 + r + 0.901961 + + + ID + 39 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DS} + VerticalPad + 0 + + + + Bounds + {{54, 172}, {84, 85}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0.25098 + r + 0.501961 + + + ID + 40 + Shape + Circle + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0.501961 + r + 1 + + Pattern + 1 + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red128\green64\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 MetaDS\ +\ +\ +} + VerticalPad + 0 + + + + Bounds + {{239.99999332427979, 202.5}, {62, 48}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 CS} + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 18 + UniqueID + 18 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Class + LineGraphic + ID + 115 + Points + + {153.99999994646038, 382.60557337386291} + {223.25, 382.09022900824493} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.5000001192092896 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 114 + + + + Bounds + {{47.999999946460406, 359.9999885559082}, {106, 46}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 114 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 4. 3 +\f1 \'82\'f0 +\f0 asClass +\f1 \'82\'c5 +\f0 \ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f1 \cf0 \'81\'40\'95\'cf\'8a\'b7\'82\'b5\'82\'bd\'8c\'e3 +\f0 put} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 113 + Points + + {147.99999994646041, 301.52828408927655} + {223.25, 300.81837460761017} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.5000001192092896 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 112 + + + + Bounds + {{47.999999946460406, 279.99998474121094}, {100, 44}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 112 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;\f1\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 3. Remote\'82\'a9\'82\'e7\ +\'81\'40\'88\'b3\'8f\'6b\'82\'b5\'82\'c4 +\f1 put} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + ID + 111 + Points + + {167.99999994646041, 225.58695735947401} + {223.25, 225.31836697821566} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.5000001192092896 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 110 + + + + Bounds + {{47.999999946460406, 214.37863922119141}, {120, 23}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 110 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 2. Remote +\f1 \'82\'a9\'82\'e7 +\f0 put} + VerticalPad + 0 + + Wrap + NO + + + Class + LineGraphic + Head + + ID + 79 + + ID + 109 + Points + + {153, 140.8997656195794} + {222.75000092312789, 140.76659708382954} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.5000001192092896 + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 108 + + + + Bounds + {{48, 129.5}, {105, 23}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 108 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs28 \cf0 1. Local +\f1 \'82\'a9\'82\'e7 +\f0 put} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{347.74261474609375, 338}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 105 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{386.75, 369.5}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 104 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + Bounds + {{287.75, 369.5}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 103 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Serialized} + + + + Bounds + {{234.30306948506257, 369.49999237060547}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 102 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Val} + + + + Bounds + {{223.25, 360}, {278.5, 41}} + Class + ShapedGraphic + ID + 101 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{347.74261474609375, 258}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 100 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{386.75, 289.5}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 99 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + Bounds + {{287.75, 289.5}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 98 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Serialized} + + + + Bounds + {{234.30306948506257, 289.49999237060547}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 97 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Val} + + + + Bounds + {{223.25, 280}, {278.5, 41}} + Class + ShapedGraphic + ID + 96 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{347.74261474609375, 178}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 95 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{386.75, 209.5}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 94 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Compressed} + + + + Bounds + {{287.75, 209.5}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 93 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Serialized} + + + + Bounds + {{234.30306948506257, 209.49999237060547}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 92 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Val} + + + + Bounds + {{223.25, 200}, {278.5, 41}} + Class + ShapedGraphic + ID + 91 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{347.74261474609375, 98}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 80 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{386.75, 129.5}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 106 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Compressed} + + + + Bounds + {{287.75, 129.5}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 107 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Serialized} + + + + Bounds + {{234.30306948506257, 129.49999237060547}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 73 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Val} + + + + Class + LineGraphic + Head + + ID + 70 + + ID + 72 + Points + + {362.41009510665526, 63.082522298271329} + {362.42177710005132, 87.500000055523699} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{334.90008544921875, 45}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 62 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 "Key"} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{223.25, 120}, {278.5, 41}} + Class + ShapedGraphic + ID + 79 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{213, 88}, {299, 326}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 20 + UniqueID + 20 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {1118.5600299835205, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Class + Group + Graphics + + + Bounds + {{841.72784423828125, 95.905326843261719}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 436 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{876.65007829666138, 127.40530967712402}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Helvetica + Size + 12 + + ID + 437 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + Bounds + {{781.7352294921875, 127.40532684326172}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Helvetica + Size + 12 + + ID + 438 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Serialized} + + + + Bounds + {{728.28829897725007, 127.40531921386719}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 439 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Val} + + + + Bounds + {{717.2352294921875, 117.90532684326172}, {278.5, 41}} + Class + ShapedGraphic + ID + 440 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + ID + 435 + + + Bounds + {{726.73526000976562, 183.43081092834473}, {269, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica-Bold + Size + 12 + + ID + 441 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs36 \cf0 receiver.asClass(Integer.class);} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{763.637939453125, 362.94903564453125}, {211, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica-Bold + Size + 12 + + ID + 418 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs36 \cf0 receiver.setKey("Key"); } + VerticalPad + 0 + + Wrap + NO + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Bounds + {{843.4852294921875, 265.95629501342773}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 411 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{878.40746355056763, 297.45627784729004}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Helvetica + Size + 12 + + ID + 412 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + Bounds + {{783.49261474609375, 297.45629501342773}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 413 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Serialized} + + + + Bounds + {{730.04568423115632, 297.4562873840332}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 414 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Val} + + + + Bounds + {{718.99261474609375, 287.95629501342773}, {278.5, 41}} + Class + ShapedGraphic + ID + 415 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + ID + 410 + + + Bounds + {{830.6427001953125, 229.95629501342773}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 416 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Receiver} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{708.74261474609375, 255.95629501342773}, {299, 87.5}} + Class + ShapedGraphic + ID + 417 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + ID + 409 + + + Class + LineGraphic + Head + + ID + 440 + + ID + 433 + Points + + {856.48523227907981, 418.94177627563477} + {856.48523227907981, 159.40532686526652} + + Style + + stroke + + Color + + b + 1 + g + 0.501961 + r + 0 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + Tail + + ID + 333 + + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Bounds + {{477.65522766113281, 488.62626647949219}, {61.5147705078125, 41}} + Class + ShapedGraphic + ID + 363 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 DataSize} + + + + Bounds + {{416.14045715332031, 488.62626647949219}, {61.5147705078125, 41}} + Class + ShapedGraphic + ID + 364 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Packet\ +Header} + + + + Bounds + {{538.41261291503906, 488.62626647949219}, {87, 41}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 365 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + ID + 362 + + + Bounds + {{501.55531311035156, 462.62626647949219}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 366 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Alice Packet} + VerticalPad + 0 + + Wrap + NO + + + ID + 361 + + + Class + LineGraphic + Head + + ID + 332 + + ID + 360 + Points + + {353.8104248046875, 508.81317487439009} + {708.24261474609375, 508.81314830074001} + + Style + + stroke + + Color + + b + 1 + g + 0.501961 + r + 0 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + Tail + + ID + 243 + + + + Class + Group + Graphics + + + Bounds + {{173.5987548828125, 229.95630645751953}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Color + + b + 0.25098 + g + 0 + r + 0.501961 + + Font + Helvetica + Size + 18 + + ID + 266 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{212.60614013671875, 261.45630645751953}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 267 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Compressed} + + + + Bounds + {{113.60614013671875, 261.45630645751953}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 268 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Serialized} + + + + Bounds + {{60.159209621781315, 261.456298828125}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 269 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Val} + + + + Bounds + {{49.10614013671875, 251.95630645751953}, {278.5, 41}} + Class + ShapedGraphic + ID + 270 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + ID + 265 + + + Class + LineGraphic + Head + + ID + 242 + + ID + 264 + Points + + {196.68358315270356, 158.90533447265631} + {193.68508704572125, 418.94181823730463} + + Style + + stroke + + Color + + b + 1 + g + 0.501961 + r + 0 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 4 + + + Tail + + ID + 116 + + + + Class + LineGraphic + Head + + ID + 321 + + ID + 322 + Points + + {193.49996937423339, 475.57046508789062} + {193.79913612513403, 491.95635986328125} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Class + Group + Graphics + + + Bounds + {{217.8104248046875, 523.45637512207031}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Helvetica + Size + 12 + + ID + 317 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + Bounds + {{118.8104248046875, 523.45637512207031}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Helvetica + Size + 12 + + ID + 318 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Serialized} + + + + Bounds + {{65.363494289750065, 523.45636749267578}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 319 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Val} + + + + Bounds + {{54.3104248046875, 513.95637512207031}, {278.5, 41}} + Class + ShapedGraphic + ID + 320 + Shape + Rectangle + + + Bounds + {{180.99996948242188, 491.95635986328125}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 321 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + ID + 316 + + + Bounds + {{165.96051025390625, 453.9490966796875}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 315 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 "Key"} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{167.7178955078125, 418.94181823730469}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 242 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 CompressedRemoteDSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{40.3104248046875, 444.94183349609375}, {313, 127.74270629882812}} + Class + ShapedGraphic + ID + 243 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Class + LineGraphic + Head + + ID + 394 + + ID + 399 + Points + + {857.74261463790526, 475.57037734985352} + {857.58197558156951, 493.83498764038086} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{828.88531494140625, 453.94903755187988}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 400 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 "Key"} + VerticalPad + 0 + + Wrap + NO + + + Class + Group + Graphics + + + Bounds + {{844.4852294921875, 493.83498764038086}, {26, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 18 + + ID + 394 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 DS} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{882.49261474609375, 525.33498764038086}, {106, 21.621358871459961}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0 + g + 0 + r + 0 + + Font + Helvetica + Size + 12 + + ID + 395 + Shape + RoundRect + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf0 Compressed} + + + + Bounds + {{783.49261474609375, 525.33498764038086}, {87, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 396 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Serialized} + + + + Bounds + {{730.04568423115632, 525.33498001098633}, {45.532081865244436, 20.349514563106798}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + Font + Helvetica + Size + 12 + + ID + 397 + Shape + RoundRect + Style + + shadow + + Draws + NO + + stroke + + Color + + b + 0.6 + g + 0.6 + r + 0.6 + + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red153\green153\blue153;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs26 \cf2 Val} + + + + Bounds + {{718.99261474609375, 515.83498764038086}, {278.5, 41}} + Class + ShapedGraphic + ID + 398 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + ID + 393 + + + Bounds + {{830.6427001953125, 418.94177627563477}, {51.685065901088272, 21.621359223300963}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 18 + + ID + 333 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs36 \cf0 Local DSM} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{708.74261474609375, 444.94177627563477}, {299, 127.74272155761719}} + Class + ShapedGraphic + ID + 332 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + + + Bounds + {{30.3104248046875, 136.90533447265625}, {333, 22}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica-Bold + Size + 18 + + ID + 116 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\b\fs36 \cf0 put("compressedNodeB", "Key", val); } + VerticalPad + 0 + + Wrap + NO + + + Class + Group + Graphics + + + Bounds + {{167.31784057617188, 34.900512695312287}, {56, 27.8455370344054}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 24 + + ID + 220 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{16, 79.326152405826519}, {356, 509.67385864257812}} + Class + ShapedGraphic + ID + 219 + Shape + Rectangle + + + ID + 218 + + + Class + Group + Graphics + + + Bounds + {{828.1282958984375, 34.900512695312109}, {56, 27.449229438852495}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 24 + + ID + 204 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{676.81045532226562, 78.693870886787579}, {356, 510.30612911321282}} + Class + ShapedGraphic + ID + 205 + Shape + Rectangle + + + ID + 203 + + + GridInfo + + HPages + 2 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 21 + UniqueID + 21 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559.28001499176025, 782.8900146484375}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 106 + + ID + 118 + Points + + {183, 89.5} + {155, 193.5} + {222.19341534830693, 270.12407013403418} + + Style + + stroke + + CornerRadius + 50 + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + Pattern + 1 + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 94 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 107 + + ID + 120 + Points + + {183, 89.5} + {257, 131.5} + {313.90148286883863, 193.13262747225426} + + Style + + stroke + + CornerRadius + 50 + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + Pattern + 1 + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 94 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 105 + + ID + 119 + Points + + {183.18040155357218, 89.966320996969614} + {201.38894151212125, 137.03367900303039} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + Pattern + 1 + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 94 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 107 + + ID + 115 + Points + + {265.55691845250368, 270.18046273412693} + {308.11477738135954, 234.81957302198634} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + FilledArrow + TailScale + 1.4299999475479126 + + + Tail + + ID + 106 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 107 + + ID + 117 + Points + + {241.45547039461255, 172.47165017104203} + {301.2115028955381, 199.53332027897463} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + FilledArrow + TailScale + 1.4299999475479126 + + + Tail + + ID + 105 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 106 + + ID + 116 + Points + + {214.39169199039259, 178.98694762857545} + {235.60829175322851, 270.01305249241591} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + FilledArrow + TailScale + 1.4299999475479126 + + + Tail + + ID + 105 + + + + Bounds + {{301.66699999999997, 193.5}, {63, 41}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Topology\ +Node} + + + + Bounds + {{209, 270.5}, {63, 41}} + Class + ShapedGraphic + ID + 106 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Topology\ +Node} + + + + Bounds + {{178, 137.5}, {63, 41}} + Class + ShapedGraphic + ID + 105 + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Topology\ +Node} + + + + Bounds + {{271.5, 48.5}, {25, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + ID + 104 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 read} + VerticalPad + 0 + + Wrap + NO + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 94 + + ID + 103 + Points + + {310, 62} + {223, 69} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 95 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 99 + + ID + 102 + Points + + {338.84251971407372, 82.965120263366828} + {356.58766437724785, 68.040791682487438} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + FilledArrow + TailScale + 1.0000001192092896 + + + Tail + + ID + 98 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 98 + + ID + 101 + Points + + {326.55500426692623, 41.482890912855275} + {330.86185860257456, 81.517114947803222} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + FilledArrow + TailScale + 1.0000001192092896 + + + Tail + + ID + 97 + + + + AllowLabelDrop + + Class + LineGraphic + Head + + ID + 97 + + ID + 100 + Points + + {355.95737801031078, 56.260581767756051} + {333.53278378727987, 39.74443032288552} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + FilledArrow + TailScale + 1.0000001192092896 + + + Tail + + ID + 99 + + + + Bounds + {{352, 55}, {23.5, 14}} + Class + ShapedGraphic + ID + 99 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{319.91699999999997, 82}, {23.5, 14}} + Class + ShapedGraphic + ID + 98 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{314, 27}, {23.5, 14}} + Class + ShapedGraphic + ID + 97 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Bounds + {{323.66699999999997, 103}, {41, 14}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 12 + + ID + 96 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 ring.dot} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{310, 21}, {68.333299999999994, 82}} + Class + ShapedGraphic + FontInfo + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 95 + Magnets + + {0.112222, 0.50833300000000003} + {0.116428, -0.5} + {1, 0} + {-1, 0} + + Shape + NoteShape + Style + + shadow + + Draws + NO + + + Text + + Align + 0 + VerticalPad + 0 + + + + Bounds + {{143, 48.5}, {80, 41}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 94 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 Topology\ +Manager} + VerticalPad + 0 + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 19 + UniqueID + 19 + VPages + 1 + + + SmartAlignmentGuidesActive + YES + SmartDistanceGuidesActive + YES + UseEntirePage + + WindowInfo + + CurrentSheet + 14 + ExpandedCanvases + + + name + Canvas 1 + + + Frame + {{128, 164}, {1024, 613}} + ListView + + OutlineWidth + 142 + RightSidebar + + ShowRuler + + Sidebar + + SidebarWidth + 120 + VisibleRegion + {{-165, 112.5}, {889, 459}} + Zoom + 1 + ZoomValues + + + Canvas 1 + 1.5 + 1 + + + Canvas 2 + 1 + 1 + + + Canvas 3 + 1 + 1 + + + Canvas 4 + 1 + 1 + + + Canvas 5 + 1 + 1 + + + Canvas 6 + 1 + 1 + + + Canvas 7 + 1 + 1 + + + Canvas 8 + 1 + 1 + + + Canvas 9 + 1 + 1 + + + Canvas 10 + 1 + 1 + + + Canvas 11 + 2 + 1 + + + Canvas 12 + 1.0299999713897705 + 1 + + + Canvas 13 + 1 + 1 + + + Canvas 14 + 1 + 1 + + + Canvas 15 + 1 + 1 + + + Canvas 16 + 1 + 1 + + + Canvas 17 + 1 + 1 + + + Canvas 18 + 1 + 1 + + + Canvas 19 + 1 + 1 + + + Canvas 20 + 1 + 1 + + + Canvas 21 + 0.5 + 1 + + + Canvas 22 + 1 + 1 + + + + +