# HG changeset patch # User sugi # Date 1424445008 -32400 # Node ID 819eedb5189e0f78b7f5cb87c38058874923253b # Parent 9d3fadcc379dc3d708a888574b3453ea0ddeeff6 add poster diff -r 9d3fadcc379d -r 819eedb5189e paper/chapter2.tex --- a/paper/chapter2.tex Mon Feb 09 05:46:38 2015 +0900 +++ b/paper/chapter2.tex Sat Feb 21 00:10:08 2015 +0900 @@ -15,7 +15,7 @@ \label{fig:NodeToClient} \end{figure} -\subsection{処理の流れ} +\subsubsection{処理の流れ} 図\ref{fig:NodeToClient}はデータの伝搬の様子をコラボレーションダイアグラムで示したものである。 \begin{enumerate} \item ユーザーが魚を操作することで魚の座標のData SegmentであるfishDataが更新される。 @@ -52,7 +52,7 @@ \label{fig:sortflow} \end{figure} -\subsection{処理の流れ} +\subsubsection{処理の流れ} 指定された数の乱数を生成し、Sortを行う例題である。 また、図\ref{fig:bitonicSort}はSortされるまでの流れをコラボレーションダイアグラムで示したものである。 \begin{enumerate} diff -r 9d3fadcc379d -r 819eedb5189e paper/chapter5.tex --- a/paper/chapter5.tex Mon Feb 09 05:46:38 2015 +0900 +++ b/paper/chapter5.tex Sat Feb 21 00:10:08 2015 +0900 @@ -6,7 +6,6 @@ そして、切断したノードが再接続を行えることを確認した。 また、再接続の挙動を変更するAPIによりMMORPGにあるような、前回の魚の位置から再開させることに成功した。 - \section{並列環境の改善効果の測定} 第\ref{chapter:chapter4}章 の並列環境における改善効果をbitonic sortによる実験によって測定を行なう。 @@ -144,9 +143,9 @@ 10Bの実験でFederated Lindaに及ばない理由としてもSEDAが原因と考えられる。 リングの実験は並列処理を行なう部分がないシーケンシャルな実験であるため、全ての処理は直列的に実行される。SEDAによるThreadの切り替えが発生する分Aliceの実行速度は遅くなる。 -100KBの実験ではData Segmentの送受信にかかる時間に比べ、Threadの切り替えの時間が無視できる程度小さいため、Federated Lindaと同じグラフとなる。 +100KBの実験ではData Segmentの送受信にかかる時間に比べ、Threadの切り替えの時間が無視できる程度小さいため、Federated Lindaと同等の性能になったと考えられる。 -AliceがFederated Lindaに対して優位な点は、マルチコアによる並列実行である。従って、複数のCode Segmentが同時に走る実験では、小さなパケットの場合でもFederated Lindaに勝つことができると予想される。 +動的なトポロジーの対応、MMORPGで必要とされる切断時と再接続時の処理のAPIも正しく動作することを確認できた。以上からAliceには実用的なアプリケーションを記述する能力があると考えられる。 \section{TreeVNCとのCodeの比較} ここでは授業向け画面共有システムであるTreeVNCとそれをAlice上で実装したAliceVNCをソースコードの面から比較した。 diff -r 9d3fadcc379d -r 819eedb5189e paper/conclusion.tex --- a/paper/conclusion.tex Mon Feb 09 05:46:38 2015 +0900 +++ b/paper/conclusion.tex Sat Feb 21 00:10:08 2015 +0900 @@ -1,6 +1,6 @@ \chapter{結論} \label{chapter:conclusion} -\section{まとめ} +\section{まとめと今後の課題} 本研究では、まずはじめにAliceの計算モデルと実装について説明を行い、Aliceにおけるプログラミング手法を述べた。 次に、今回新たに追加した動的なトポロジーの作成の機能とAliceのComputationを変更するMeta Computationについて説明を行った。 そして、追加した機能を用いて実際に例題を記述することで、その有効性を示した。 @@ -8,19 +8,17 @@ 最後に、今回行った改善点の効果を測るためリングトポロジー上での実験を行った。また、先行研究であるFederated Lindaとの性能比較を行い、同程度の性能を持つことを確認した。また、TreeVNCとAliceVNCをコードの量という観点から評価を行った。 - -\section{今後の課題} -\subsection{データの永続性の確保} +\section{データの永続性の確保} 現在のAliceは、On memoryであるためプロセスの終了とともにData Segmentは全て失われてしまう。 この問題を解決するためには、Data Segmentを他のKey Value Store等のシステムに保存し、永続性を確保する昼用がある。また、JungleのようにLogファイルとして出力することでも解決ができる。 -\subsection{DataSegmentKeyの領域分け} +\section{Data Segmentの領域分け} 現在Meta Data SegmentとData Segmentは、同じKey Value Queueで管理されている。つまり、Data Segment APIを用いれば、誰でもMeta Data Segmentを変更することができてしまう。Meta Data SegmentにAliceの状態を表すものがあるため、ユーザーによる変更は望ましくない。また、ユーザーが意図せずMeta Data Segment Keyに対して、putすることも考えられる。そして、Meta Code Segmentがactiveになりエラーを起こす。Meta Code Segmentでエラーが起こった場合、ソースコードを見ることができないため解決しづらい。 このようなエラーを防ぐためにMeta Data SegmentとData Segmentの領域を分ける必要がある。Data Segmentを分けることによりKeyの重複によるエラーをアプリケーションレベルにすることができる。しかし、領域を分けるだけでは足りない。領域をわけることで解決することができるのはputまたはupdateの場合だけである。Meta Data Segmentを取得する際にtakeを使用した場合Meta Data SegmentがQueueから取り除かれてしまう。この問題に対処するためには権限をCode Segmentに対して設定する必要がある。その権限により、takeと記述しても実際にはpeekを行うようにすることができる。 -\subsection{記述に関する注意点} +\section{記述に関する注意点} \subsubsection{setKey のシンタックス問題} setKeyメソッドをコンストラクタで呼ぶ際、setKeyメソッドを必ず最後に呼ばなければならない。 @@ -40,10 +38,23 @@ この問題は現状のコンストラクタ内でsetKeyを行う方法ではCode Segmentのインスタンスを扱うことができないことを意味する。インスタンス化ができないためCloseEventManagerに登録するCode SegmentはClassで指定しなければならない。setKeyをどのタイミングで呼ぶべきか考えなおす必要がある。 -\subsubsection{singleton Code Segment} +\subsubsection{Singleton Code Segment} Javaには、クラスのインスタンスを1つに限定するSingletonパターンがある。Code SegmentにSingletonパターンを使用したい場合があり得る。その場合、setKeyを行なう前に{\tt ids.init()}を行なう必要がある。先ほどのsetKeyのシンタックス問題でも述べたが、Code Segmentは内部で実行に必要なData Segmentを示す値がある。一度実行された状態のCode Segmentと新しくインスタンスを作成した場合のCode Segmentでは、値が違うため{\tt ids.init()}を呼ばずにsetKeyを行なうとData Segmentが揃ったにもかかわらずCode Segmentが実行されない。そのためsetKeyを呼ぶ前に{\tt ids.init()}を呼び内部の値を初期化する必要がある。(ソースコード\ref{src:Singleton}) - \begin{table}[html] \lstinputlisting[label=src:Singleton,caption=setKeyを呼ぶ前にinitを呼ぶ必要がある。]{source/Singleton.java} -\end{table} \ No newline at end of file +\end{table} + +\section{データの圧縮} +TreeVNCではデータをZRLEEというエンコードで圧縮して送信している。 +この圧縮により、データ量を40%程度まで減らしている(図\ref {fig:compress})。 +Aliceにもこの圧縮機能を入れることで、送信にかかる時間を減らすことができると考えられる。 + +\begin{figure}[htbp] +\begin{center} +\includegraphics[width=120mm]{images/compare_encoding.pdf} +\end{center} +\caption{圧縮データと非圧縮データの比較} +\label{fig:compress} +\end{figure} + diff -r 9d3fadcc379d -r 819eedb5189e paper/images/dsandcs2.graffle --- a/paper/images/dsandcs2.graffle Mon Feb 09 05:46:38 2015 +0900 +++ b/paper/images/dsandcs2.graffle Sat Feb 21 00:10:08 2015 +0900 @@ -6,26 +6,21 @@ 0 ApplicationVersion - com.omnigroup.OmniGraffle - 138.17.0.133677 + com.omnigroup.OmniGraffle6 + 156.11.0.206384 AutoAdjust BackgroundGraphic Bounds - {{0, 0}, {559, 783}} + {{0, 0}, {1117.9999465942383, 783}} Class SolidGraphic ID 2 Style - shadow - - Draws - NO - stroke Draws @@ -33,6 +28,8 @@ + BaseZoom + 0 CanvasOrigin {0, 0} ColumnAlign @@ -40,13 +37,13 @@ ColumnSpacing 36 CreationDate - 2012-02-06 05:00:27 +0900 + 2012-02-05 20:00:27 +0000 Creator Kazuki AKAMINE DisplayScale - 1 0/72 in = 1 0/72 in + 1 in = 1 in GraphDocumentVersion - 6 + 11 GraphicsList @@ -54,6 +51,1353 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 87 + + ID + 112 + Points + + {433.62368002700964, 590.19110250995766} + {477.75008522086756, 589.7961878735664} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 82 + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 108 + + ID + 109 + Points + + {591.12486746616378, 416.625} + {629.49992868125912, 417.22554868881213} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + + + Bounds + {{629.99986746616378, 392.875}, {82, 50}} + Class + ShapedGraphic + ID + 108 + Shape + Rectangle + Style + + fill + + Color + + b + 0.9195 + g + 0.94615 + r + 0.517148 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Meta \ +Code\ +Segment} + + + + Bounds + {{389.25, 392.875}, {82, 50}} + Class + ShapedGraphic + ID + 99 + Shape + Rectangle + Style + + fill + + Color + + b + 0.9195 + g + 0.94615 + r + 0.517148 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Meta \ +Code\ +Segment} + + + + Bounds + {{307.25, 392.875}, {82, 50}} + Class + ShapedGraphic + ID + 98 + Shape + Rectangle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Code\ +Segment} + + + + Bounds + {{509.12486746616378, 367.1875}, {82, 50}} + Class + ShapedGraphic + ID + 97 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + Bounds + {{509.12486746616378, 418.5625}, {82, 50}} + Class + ShapedGraphic + ID + 96 + Shape + RoundRect + Style + + fill + + Color + + b + 1 + g + 0.568317 + r + 0.903091 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Meta \ +Data\ +Segment} + + + + Bounds + {{100, 366.5}, {82, 50}} + Class + ShapedGraphic + ID + 94 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 88 + + ID + 93 + Points + + {432.99998487266436, 709.28977663913736} + {477.7500009920214, 709.33266834736423} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 84 + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 84 + + ID + 92 + Points + + {307.7499957348623, 709.07858557908958} + {350.00114510345264, 708.90406854183266} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 68 + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 88 + + ID + 90 + Points + + {430.08717233580785, 667.56003755488155} + {477.79757328618246, 689.74710512007618} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 83 + + + + Bounds + {{478.25, 684.25}, {82, 50}} + Class + ShapedGraphic + ID + 88 + Shape + Rectangle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Code\ +Segment} + + + + Bounds + {{478.25, 565.5625}, {82, 50}} + Class + ShapedGraphic + ID + 87 + Shape + Rectangle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Code\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 83 + + ID + 86 + Points + + {306.45369478318776, 609.76329117812372} + {354.3183664399748, 631.93356019993746} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 50 + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 82 + + ID + 85 + Points + + {306.49998208093893, 590.21114413847306} + {350.63003529948531, 589.83752101647769} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 50 + + + + Bounds + {{350.5, 684.25}, {82, 50}} + Class + ShapedGraphic + ID + 84 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + Bounds + {{351.125, 624.90625}, {82, 50}} + Class + ShapedGraphic + ID + 83 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + Bounds + {{351.125, 565.5625}, {82, 50}} + Class + ShapedGraphic + ID + 82 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 68 + + ID + 81 + Points + + {182.4920658685073, 711.77772460556969} + {224.75037173217743, 710.85114825704784} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 80 + + + + Bounds + {{100, 687.6875}, {82, 50}} + Class + ShapedGraphic + ID + 80 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 68 + + ID + 79 + Points + + {179.08002451039889, 669.02953017544417} + {224.79682771454904, 689.92446107745025} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 78 + + + + Bounds + {{100, 626.625}, {82, 50}} + Class + ShapedGraphic + ID + 78 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + Bounds + {{225.25, 684.25}, {82, 50}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Code\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 50 + + ID + 55 + Points + + {182.49870168850654, 590.93083465616519} + {223.50007781600172, 591.29475514436706} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + Tail + + ID + 51 + + + + Bounds + {{100, 565.5625}, {82, 50}} + Class + ShapedGraphic + ID + 51 + Shape + RoundRect + Style + + fill + + Color + + b + 0.255991 + g + 0.555669 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +Segment} + + + + Bounds + {{224, 565.5625}, {82, 50}} + Class + ShapedGraphic + ID + 50 + Shape + Rectangle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Code\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 45 + Points + + {471.25, 417.375} + {503.75007131874099, 417.92398769119495} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + + + Bounds + {{100, 417.875}, {82, 50}} + Class + ShapedGraphic + ID + 44 + Shape + RoundRect + Style + + fill + + Color + + b + 1 + g + 0.568317 + r + 0.903091 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Meta \ +Data\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 110 + + ID + 111 + Points + + {186.37500000000003, 416.625} + {224.75006121509537, 417.22554868881213} + + Style + + stroke + + HeadArrow + FilledArrow + HeadScale + 1.4285709857940674 + Legacy + + TailArrow + 0 + TailScale + 0.5 + + + + + Bounds + {{225.25000000000003, 392.875}, {82, 50}} + Class + ShapedGraphic + ID + 110 + Shape + Rectangle + Style + + fill + + Color + + b + 0.9195 + g + 0.94615 + r + 0.517148 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 Meta \ +Code\ +Segment} + + + + AllowLabelDrop + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -63,8 +1407,8 @@ 36 Points - {416.717, 273.074} - {445.506, 269.591} + {416.55253017162016, 272.58826139375998} + {445.5046912162943, 268.72459303579421} Style @@ -74,6 +1418,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -91,6 +1437,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -100,8 +1458,8 @@ 35 Points - {410.427, 201.798} - {445.543, 187.311} + {410.16303939176703, 201.56105958491366} + {445.53978883070164, 186.6091470407589} Style @@ -111,6 +1469,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -143,10 +1503,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Code\ Segment} @@ -172,10 +1532,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Code\ Segment} @@ -186,6 +1546,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -195,8 +1567,8 @@ 28 Points - {306.461, 186.375} - {342.116, 201.317} + {306.46047665279252, 186.54272035221035} + {341.875077599164, 201.52731510229208} Style @@ -206,6 +1578,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -223,6 +1597,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -232,8 +1618,8 @@ 27 Points - {306.495, 163.048} - {335.281, 158.919} + {306.49543139413794, 163.35174528070644} + {335.44717473916779, 159.41090612115883} Style @@ -243,6 +1629,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -260,6 +1648,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -269,8 +1669,8 @@ 26 Points - {306.496, 268.286} - {335.667, 272.002} + {306.49555589663026, 268.56972610986458} + {335.49282500225848, 272.46187415710887} Style @@ -280,6 +1680,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -312,10 +1714,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Data\ Segment} @@ -341,10 +1743,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Data\ Segment} @@ -370,10 +1772,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Data\ Segment} @@ -384,6 +1786,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -393,8 +1807,8 @@ 22 Points - {181.608, 272.746} - {223.503, 267.326} + {181.716432887228, 273.07334269908489} + {223.50361492776693, 268.01712556791102} Style @@ -404,6 +1818,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -421,6 +1837,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -430,8 +1858,8 @@ 21 Points - {176.479, 229.195} - {223.535, 246.696} + {176.29761709517243, 229.37690984229619} + {223.53247583705635, 247.27773428322408} Style @@ -441,6 +1869,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -458,6 +1888,18 @@ Class LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + Head ID @@ -467,8 +1909,8 @@ 20 Points - {181.823, 158.583} - {223.505, 163.261} + {181.72348663962924, 158.90465190489317} + {223.50368123296323, 163.93657151463484} Style @@ -478,6 +1920,8 @@ FilledArrow HeadScale 1.4285709857940674 + Legacy + TailArrow 0 TailScale @@ -510,10 +1954,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Data\ Segment} @@ -539,10 +1983,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Data\ Segment} @@ -568,10 +2012,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Code\ Segment} @@ -597,10 +2041,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Data\ Segment} @@ -626,10 +2070,10 @@ Text Text - {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf360 + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Code\ Segment} @@ -643,7 +2087,7 @@ GuidesVisible YES HPages - 1 + 2 ImageCounter 1 KeepToScale @@ -671,6 +2115,8 @@ 0.0 layoutEngine dot + neatoLineLength + 0.20000000298023224 neatoSeparation 0.0 twopiSeparation @@ -683,9 +2129,9 @@ MasterSheets ModificationDate - 2012-02-06 05:02:57 +0900 + 2015-02-20 10:09:04 +0000 Modifier - Kazuki AKAMINE + YuSugimoto NotesVisible NO Orientation @@ -701,6 +2147,11 @@ float 41 + NSHorizonalPagination + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG + NSLeftMargin float @@ -709,7 +2160,12 @@ NSPaperSize size - {595, 842} + {594.99997329711914, 842} + + NSPrintReverseOrientation + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG NSRightMargin @@ -724,307 +2180,6 @@ PrintOnePage - QuickLookPreview - - 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 - 4AwZ9KcH2/w5IvmpEU/x53A1xFRdI/5H2kJ18TBwRPxXdEJFD0StRvF9haBkGTJwVmtp - NWSH7AeDjUyY9xSLwTWhgUFvxsg7gU9g5SsaSJKanEo2LzXgfYPR2GsLGsexsT+LSZst - 1bbYuj90QLTy2R/ijYuJmNVs/LE2ohU0znC9hkZChtK4G48Zrq2wonFEh2FrWuCBmrqG - RkDuJO8VusklWHSCQMO36JAv1SBxWhuE5gRq6JLou1JsR6NrN2nXvkz8PWs4g1a/OHqx - EH+2OjQarQ1if4q+w+Z1NA60VzSY+INUy4MSPQiNB6XPOODUCc/vR4FeR47ej45uUVT+ - /n6kvun9aCV559+Put1ORZ8rLP8vZcT6ZaS+wrU/XhQWwfTikTotB6Pvy4OXMVLf0YPL - MA27Z2DaWbvMrPWZkfohBGh8A2oXumLUtIqyAlhwstHIYvKCvPWVjxS/0sngJWBkjH4W - TTOobE2BxhIBZyy2+gsZuBlVp+DDUmIEfDi3+IzGDx8A/k4bnqXiHNZf0SDCaDyGLJM/ - kgVU/9kf1QQfY2n190hbKs6Z+htwiWSL7pzadJODayvEYc4oY3QLACE6wWSH7GMCRTeP - Rz1ErV2jy0Cn3UYGRbhFh6lFKUVFQ+NYP9DYawsah/VX/NHIA4WLxl6EfvNHt1Gl+Reh - v/pDvDT0TOvt90Qb0dIq3v4LozlGDgplbmRzdHJlYW0KZW5kb2JqCjYgMCBvYmoKMjE4 - OAplbmRvYmoKMyAwIG9iago8PCAvVHlwZSAvUGFnZSAvUGFyZW50IDQgMCBSIC9SZXNv - dXJjZXMgNyAwIFIgL0NvbnRlbnRzIDUgMCBSIC9NZWRpYUJveCBbMCAwIDU1OSA3ODNd - Cj4+CmVuZG9iago3IDAgb2JqCjw8IC9Qcm9jU2V0IFsgL1BERiAvVGV4dCBdIC9Db2xv - clNwYWNlIDw8IC9DczEgOCAwIFIgL0NzMiA5IDAgUiA+PiAvRm9udCA8PAovRjEuMCAx - MCAwIFIgPj4gPj4KZW5kb2JqCjExIDAgb2JqCjw8IC9MZW5ndGggMTIgMCBSIC9OIDMg - L0FsdGVybmF0ZSAvRGV2aWNlUkdCIC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVh - 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 - L0tpZHMgWyAzIDAgUiBdID4+CmVuZG9iagoxNSAwIG9iago8PCAvVHlwZSAvQ2F0YWxv - ZyAvT3V0bGluZXMgMiAwIFIgL1BhZ2VzIDQgMCBSID4+CmVuZG9iagoyIDAgb2JqCjw8 - IC9MYXN0IDE2IDAgUiAvRmlyc3QgMTcgMCBSID4+CmVuZG9iagoxNyAwIG9iago8PCAv - UGFyZW50IDE4IDAgUiAvQ291bnQgMCAvRGVzdCBbIDMgMCBSIC9YWVogMCA3ODMgMCBd - IC9UaXRsZSAo/v8wrTDjMPMw0DC5XDAwMCBcMDAwMSkKPj4KZW5kb2JqCjE4IDAgb2Jq - Cjw8ID4+CmVuZG9iagoxNiAwIG9iago8PCAvUGFyZW50IDE4IDAgUiAvQ291bnQgMCAv - RGVzdCBbIDMgMCBSIC9YWVogMCA3ODMgMCBdIC9UaXRsZSAo/v8wrTDjMPMw0DC5XDAw - MCBcMDAwMSkKPj4KZW5kb2JqCjE5IDAgb2JqCjw8IC9MZW5ndGggMjAgMCBSIC9MZW5n - dGgxIDg1MTYgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCngBvVp7eFTVtV/7 - vOeRycxkJvPOzORkZjKZvENCQgIZwiSEpyFBzCCBJBAIEUrEmAoVGhVUAnJFJCC0Kj54 - igyBygDFUoqit61gW1G59ra2ULleU9pesK2SmbvOmRCBz/rxh1/nZO291l777L32b6+9 - 9j7npGvp/W2QBD1AQ93Mls75IP9cdZhdmbu4pTMh6y9g/uDc7i5XQmYzAehF8zsXLE7I - wtMASseCRcuG7k95EEDd1d7WMi+hh2uYl7RjQUImIzDPaF/c9UBC1h/CPH/RkrlD+pRm - lK2LWx4Y6h8+Qtn1nZbFbZhLbDYmGZ1L7uuSRXD+BfOKzqVtQ/VJI9p3BgiWqmEJKOAe - 4IECLV5NAPwlpQMY1Ep6/M3LVm2ck1xxFXSCLM+Z8h9y/qb7x+f+0XbNp9og/BMLFNfr - Sznnj/mxcYL6AdWGYY18HybqKDQEojABqRKpGCkQGGuGHrIDnkR6HomGhWQtLENag/QM - EjPM7UbpCFnbzwjBo2QZWMnEoIpxTjdYnGalyvmrKOEOPev80PzHY8SCs/cxsfQngWKs - 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 - pgygz5rKpIApuS40pRQZMcpJoc10PcKJOinmcUYdMokdRyeu6g+OCN/bMzU7o+KFtg+m - Zh27Z0rHM4et/s75Ow8xeVvuyBhdmVEzo+EH09cPjqQu3VO3fsfgBurY4sJJz54ZfEuK - WThuegD9yAJWmB0sOMyd5iiGM3A+QzfXxbMGNWUwax0sDtOsUlp5qxXUfoXVTnLNfgtY - bLh9cDeNTF6aCW/BcQ3g1k0SAyLSkG4YijQCXCsaguMhq/ZO3tN+oS77sCN/ZdA/sTTH - dojsRPtn1z931wuD06gXWyvmJaVWFd+7cPAMGov+Xx7/kHEzU/HsbUbbnwwWbRH6tM+k - vszsEnZod6dGhbeE95mLmv8xqEcJnMPMqx16lYW3WIyUL9lqU/iMFqstShQH3UuHokri - 0DHs53L4yAYT41WlKDAC6Cgv4U3IsUnIKQ1qLxAtJkIq5yW0BhNpw5KTAJ4VMvTSKUE+ - FaQW6fGISeE+V4wezVO/X50/+ejLfX0v4oeaa7G//zZ2jeg/4bpI8o6+2U9f6997gT4f - +yx2JTYYe5UEruGmF2TRP03xy5SCnYmjrf9RUq7yhIZESWXQw6SWmWhOo9RZ0f3w64Mf - jBpjMu2kKfpaKp4sr7kXrBiKmk1lp/Kk4JhwuzzJ6QYrBrSDFwryU4p0RUZRhweY4T3U - W4z7RtGu1/bu9RoLktIMznG+lTM3bGBnxt7bOFhdmqIi1HqF8NAC6o2N8jlRikoQb8Nv - K1/3U2OhF3xQAiH5O81E+StRPdwlVyb45SjxJMXht3Soqm4YN7khUNu2qLuta+HcFqyT - 0EqVS5FCSNOR5iFJ3+rRh+FppJeQ8LMpfgUB+A3ShfjQD3kY5gk+p90sh26RG26RJQtu - vH/eLbI85hvaX3CLXv5/hhv00rPije0tuUWWxgT/D1ajv0wKZW5kc3RyZWFtCmVuZG9i - agoyMCAwIG9iago1NDUyCmVuZG9iagoyMSAwIG9iago8PCAvVHlwZSAvRm9udERlc2Ny - aXB0b3IgL0FzY2VudCA3NzAgL0NhcEhlaWdodCA3MTcgL0Rlc2NlbnQgLTIzMCAvRmxh - Z3MgMzIKL0ZvbnRCQm94IFstOTUxIC00ODEgMTQ0NSAxMTIyXSAvRm9udE5hbWUgL0JF - U0NMUytIZWx2ZXRpY2EgL0l0YWxpY0FuZ2xlIDAKL1N0ZW1WIDAgL01heFdpZHRoIDE1 - MDAgL1hIZWlnaHQgNjM3IC9Gb250RmlsZTIgMTkgMCBSID4+CmVuZG9iagoyMiAwIG9i - agpbIDcyMiA3MjIgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDY2NyAwIDAgMCAw - IDAgMCAwIDAgMCAwIDAgMCAwIDU1NiAwCjAgNTU2IDU1NiAwIDU1NiAwIDAgMCAwIDAg - ODMzIDU1NiA1NTYgMCAwIDAgMCAyNzggXQplbmRvYmoKMTAgMCBvYmoKPDwgL1R5cGUg - L0ZvbnQgL1N1YnR5cGUgL1RydWVUeXBlIC9CYXNlRm9udCAvQkVTQ0xTK0hlbHZldGlj - YSAvRm9udERlc2NyaXB0b3IKMjEgMCBSIC9XaWR0aHMgMjIgMCBSIC9GaXJzdENoYXIg - NjcgL0xhc3RDaGFyIDExNiAvRW5jb2RpbmcgL01hY1JvbWFuRW5jb2RpbmcKPj4KZW5k - b2JqCjIzIDAgb2JqCihNYWMgT1MgWCAxMC42LjggUXVhcnR6IFBERkNvbnRleHQpCmVu - ZG9iagoyNCAwIG9iagooRDoyMDEyMDIwNTIwMDMyN1owMCcwMCcpCmVuZG9iagoxIDAg - b2JqCjw8IC9Qcm9kdWNlciAyMyAwIFIgL0NyZWF0aW9uRGF0ZSAyNCAwIFIgL01vZERh - dGUgMjQgMCBSID4+CmVuZG9iagp4cmVmCjAgMjUKMDAwMDAwMDAwMCA2NTUzNSBmIAow - MDAwMDEwOTEwIDAwMDAwIG4gCjAwMDAwMDQ0MjcgMDAwMDAgbiAKMDAwMDAwMjMwNCAw - MDAwMCBuIAowMDAwMDA0Mjc4IDAwMDAwIG4gCjAwMDAwMDAwMjIgMDAwMDAgbiAKMDAw - MDAwMjI4NCAwMDAwMCBuIAowMDAwMDAyNDA4IDAwMDAwIG4gCjAwMDAwMDMzNzggMDAw - MDAgbiAKMDAwMDAwNDI0MiAwMDAwMCBuIAowMDAwMDEwNjQxIDAwMDAwIG4gCjAwMDAw - MDI1MTggMDAwMDAgbiAKMDAwMDAwMzM1OCAwMDAwMCBuIAowMDAwMDAzNDE0IDAwMDAw - IG4gCjAwMDAwMDQyMjIgMDAwMDAgbiAKMDAwMDAwNDM2MSAwMDAwMCBuIAowMDAwMDA0 - NjA0IDAwMDAwIG4gCjAwMDAwMDQ0NzUgMDAwMDAgbiAKMDAwMDAwNDU4MiAwMDAwMCBu - IAowMDAwMDA0NzExIDAwMDAwIG4gCjAwMDAwMTAyNTMgMDAwMDAgbiAKMDAwMDAxMDI3 - NCAwMDAwMCBuIAowMDAwMDEwNDk5IDAwMDAwIG4gCjAwMDAwMTA4MTYgMDAwMDAgbiAK - MDAwMDAxMDg2OCAwMDAwMCBuIAp0cmFpbGVyCjw8IC9TaXplIDI1IC9Sb290IDE1IDAg - UiAvSW5mbyAxIDAgUiAvSUQgWyA8YTY2NjdjMTkwZDIxZmU5M2IwMjYxMTQzZDkyMWQx - NTA+CjxhNjY2N2MxOTBkMjFmZTkzYjAyNjExNDNkOTIxZDE1MD4gXSA+PgpzdGFydHhy - ZWYKMTA5ODUKJSVFT0YKMSAwIG9iago8PC9BdXRob3IgKEthenVraSBBS0FNSU5FKS9D - cmVhdGlvbkRhdGUgKEQ6MjAxMjAyMDUyMDAwMDBaKS9DcmVhdG9yIChPbW5pR3JhZmZs - ZSA1LjIuMykvTW9kRGF0ZSAoRDoyMDEyMDIwNTIwMDIwMFopL1Byb2R1Y2VyIDIzIDAg - UiA+PgplbmRvYmoKeHJlZgoxIDEKMDAwMDAxMTY0MyAwMDAwMCBuIAp0cmFpbGVyCjw8 - L0lEIFs8YTY2NjdjMTkwZDIxZmU5M2IwMjYxMTQzZDkyMWQxNTA+IDxhNjY2N2MxOTBk - MjFmZTkzYjAyNjExNDNkOTIxZDE1MD5dIC9JbmZvIDEgMCBSIC9QcmV2IDEwOTg1IC9S - b290IDE1IDAgUiAvU2l6ZSAyNT4+CnN0YXJ0eHJlZgoxMTc5MwolJUVPRgo= - - QuickLookThumbnail - - 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 - 3AAAwGw= - ReadOnly NO RowAlign @@ -1045,38 +2200,34 @@ 1 WindowInfo + BottomSlabHeight + 306 CurrentSheet 0 - ExpandedCanvases + Expanded_Canvases Frame - {{110, 115}, {693, 937}} - ListView + {{658, 387}, {1272, 650}} + ShowInfo - OutlineWidth - 142 - RightSidebar - ShowRuler Sidebar SidebarWidth - 120 + 230 VisibleRegion - {{0, 0}, {558, 783}} + {{0, 312.03702463779968}, {671.29626962137922, 470.37035167953189}} Zoom - 1 + 1.0800000429153442 ZoomValues キャンバス 1 - 1 - 1 + 1.0800000429153442 + 1.0800000000000001 - saveQuickLookFiles - YES diff -r 9d3fadcc379d -r 819eedb5189e paper/images/remote_datasegment.graffle --- a/paper/images/remote_datasegment.graffle Mon Feb 09 05:46:38 2015 +0900 +++ b/paper/images/remote_datasegment.graffle Sat Feb 21 00:10:08 2015 +0900 @@ -14,7 +14,7 @@ BackgroundGraphic Bounds - {{0, 0}, {558.99997329711914, 783}} + {{0, 0}, {1117.9999465942383, 783}} Class SolidGraphic ID @@ -64,6 +64,974 @@ Head ID + 77 + + ID + 73 + Points + + {921.25, 143.06251265624994} + {975.9375, 230.46875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 2 + + + Tail + + ID + 55 + + + + Class + Group + Graphics + + + Bounds + {{938.53125, 230.46875}, {74.8125, 41.625}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 77 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Rectangle + Style + + fill + + Color + + b + 0.443731 + g + 0.946304 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{953.6875, 290.59375}, {50, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 78 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 NodeD} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{915.75, 211.96875}, {120.375, 78.625}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 79 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + ID + 76 + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 89 + + ID + 71 + Points + + {841.78125, 177.51563765624994} + {841.78125, 230.46875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 2 + + + Tail + + ID + 54 + + + + Class + Group + Graphics + + + Bounds + {{804.375, 230.46875}, {74.8125, 41.625}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 89 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Rectangle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{816.78125, 290.59375}, {50, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 90 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 NodeC} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{781.59375, 211.96875}, {120.375, 78.625}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 91 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + ID + 88 + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID + 93 + Info + 2 + + ID + 69 + Points + + {759.25, 143.06251265624994} + {707.625, 230.46875} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 2 + + + Tail + + ID + 52 + Info + 1 + + + + Class + Group + Graphics + + + Bounds + {{670.21875, 230.46875}, {74.8125, 41.625}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.670588 + g + 0.352941 + r + 0.113725 + + Font + Helvetica + Size + 12 + + ID + 93 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Rectangle + Style + + fill + + Color + + b + 1 + g + 0.908355 + r + 0.593483 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{683.125, 290.59375}, {49, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 94 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 NodeB} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{647.4375, 211.96875}, {120.375, 78.625}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 95 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + ID + 92 + + + Bounds + {{875.25, 92.4375}, {92, 50.625}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 55 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + fill + + Color + + b + 0.443731 + g + 0.946304 + r + 1 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +\'93nodeD\'94} + VerticalPad + 0 + + + + Bounds + {{795.78125, 126.890625}, {92, 50.625}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 54 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + fill + + Color + + b + 0.163224 + g + 1 + r + 0.81478 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +\'93nodeC\'94} + VerticalPad + 0 + + + + Bounds + {{816.15625, 16.875}, {49, 19}} + Class + ShapedGraphic + FitText + YES + Flow + Resize + FontInfo + + Font + Helvetica + Size + 16 + + ID + 53 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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 NodeA} + VerticalPad + 0 + + Wrap + NO + + + Bounds + {{713.25, 92.4375}, {92, 50.625}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.670588 + g + 0.352941 + r + 0.113725 + + Font + Helvetica + Size + 12 + + ID + 52 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + fill + + Color + + b + 1 + g + 0.908355 + r + 0.593483 + + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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\ +\'93nodeB\'94} + VerticalPad + 0 + + + + Bounds + {{799.59375, 50.8125}, {74.8125, 41.625}} + Class + ShapedGraphic + FontInfo + + Font + Helvetica + Size + 12 + + ID + 51 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Rectangle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\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} + VerticalPad + 0 + + + + Bounds + {{703.125, 42.375}, {274.5, 140.625}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 12 + + ID + 50 + Magnets + + {0, 1} + {0, -1} + {1, 0} + {-1, 0} + + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + Head + + ID 41 ID @@ -1672,7 +2640,7 @@ GuidesVisible YES HPages - 1 + 2 ImageCounter 1 KeepToScale @@ -1714,7 +2682,7 @@ MasterSheets ModificationDate - 2015-02-04 08:08:02 +0000 + 2015-02-20 07:20:58 +0000 Modifier YuSugimoto NotesVisible @@ -1792,7 +2760,7 @@ Expanded_Canvases Frame - {{128, 91}, {1594, 967}} + {{48, 37}, {1594, 967}} ShowInfo ShowRuler @@ -1802,7 +2770,7 @@ SidebarWidth 230 VisibleRegion - {{-244, -21}, {1047, 825}} + {{71, -21}, {1047, 825}} Zoom 1 ZoomValues diff -r 9d3fadcc379d -r 819eedb5189e paper/master_paper.pdf Binary file paper/master_paper.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/data.plist --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/poster/master.graffle/data.plist Sat Feb 21 00:10:08 2015 +0900 @@ -0,0 +1,4753 @@ + + + + + ActiveLayerIndex + 0 + ApplicationVersion + + com.omnigroup.OmniGraffle6 + 156.11.0.206384 + + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {2027.6220703125, 2860.68505859375}} + Class + SolidGraphic + FontInfo + + Font + Helvetica + Size + 28 + + ID + 2 + Style + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + CreationDate + 2012-01-04 16:02:58 +0000 + Creator + Daichi TOMA + DisplayScale + 1.0000 cm = 1.0000 cm + GraphDocumentVersion + 11 + GraphicsList + + + Bounds + {{1028.3066819460978, 1586.6741068272181}, {971.47705078125, 119.31484354154004}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3875 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45\'93\'ae\'93\'49\'82\'c8\'83\'67\'83\'7c\'83\'8d\'83\'57\'81\'5b\'82\'d6\'82\'cc\'91\'ce\'89\'9e\ +\'81\'45\'89\'9e\'93\'9a\'91\'ac\'93\'78} + VerticalPad + 1 + + + + Bounds + {{1017.7120835897017, 1575.8032820747421}, {994.9850189613062, 446.71642131525505}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3876 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + Class + Group + Graphics + + + Bounds + {{1100.7232226140911, 1510.0889963604584}, {843.98895263671875, 65.714285714285595}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 40 + + ID + 3868 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 \'89\'9e\'93\'9a\'91\'ac\'93\'78\'82\'cc\'89\'fc\'91\'50} + VerticalPad + 0 + + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3870 + Points + + {1041.8945886734655, 1539.13165281488} + {1084.9367266970039, 1539.3475752012432} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3871 + Position + 0.32640770077705383 + + + + Class + LineGraphic + ID + 3871 + Points + + {1035.7008994796849, 1559.6398412452647} + {1047.4286619800544, 1520.8075466790651} + {1049.6094947887555, 1519.4154721055147} + {1072.0904605485503, 1519.4154721055147} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3872 + Position + 0.25490197539329529 + + + + Class + LineGraphic + ID + 3872 + Points + + {1021.7759181337717, 1559.2796782969717} + {1061.8641451330523, 1560.3165410165138} + {1076.3725492647015, 1559.2796782969717} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{1017.7121933353021, 1499.5275726605587}, {994.98516845703114, 74.476190476190339}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3873 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3869 + + + ID + 3867 + + + Class + Group + Graphics + + + Bounds + {{24.594260021774289, 1195.3246783984723}, {971.47705078125, 237.58872042934081}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3827 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45Computation\'82\'f0\'8e\'78\'82\'a6\'82\'e9Computation\'82\'aaMeta Computation\ +\'81\'45Alice\'82\'ccMeta Computation\'82\'c6\'82\'cdJava\'82\'c5\'8b\'4c\'8f\'71\'82\'b5\'82\'bdAlice\'82\'cc\'8e\'c0\'91\'95\'83\'56\'83\'58\'83\'65\'83\'80\ +\'81\'45Meta Computation\'82\'e0CS\'82\'c6DS\'82\'c9\'82\'e6\'82\'e8\'8e\'c0\'91\'95\'82\'b3\'82\'ea\'82\'c4\'82\'a2\'82\'e9\ +\'81\'45Alice\'82\'f0\'8d\'5c\'90\'ac\'82\'b7\'82\'e9CS\'82\'c6DS\'82\'f0\'82\'bb\'82\'ea\'82\'bc\'82\'eaMeta CS\'81\'41Meta DS\'82\'c6\'82\'a2\'82\'a4\ +\'81\'45Meta CS\'82\'cdCS\'82\'cc\'91\'4f\'8c\'e3\'82\'c5\'8e\'c0\'8d\'73\'82\'b3\'82\'ea\'82\'c4\'82\'a2\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{129.1036304378303, 1432.9133988278131}, {764.77731000542735, 150.23622183555676}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3828 + ImageID + 14 + ManualSizeImage + YES + Scale + 1.1999999731779099 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3831 + Points + + {38.894860313631028, 1156.1195633169184} + {81.224163687182113, 1155.7962194326753} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3832 + Position + 0.32640770077705383 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3832 + Points + + {31.988581850779191, 1176.390235650726} + {45.896931778933435, 1135.5677281868243} + {68.377897538728064, 1135.5677281868243} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3833 + Position + 0.25490197539329529 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3833 + Points + + {18.063355123949691, 1176.0247106785255} + {58.151582123230128, 1177.0769914310715} + {72.659986254879414, 1176.0247106785255} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + ID + 3830 + + + Class + Group + Graphics + + + Bounds + {{97.010608069404441, 1120.4822604890778}, {843.98882582805425, 66.6914498141264}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 48 + + ID + 3835 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 Meta Computation} + VerticalPad + 0 + + + + Bounds + {{13.999591262954539, 1109.7637895966157}, {994.98501896130608, 75.583643122676605}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3836 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3834 + + + ID + 3829 + + + Bounds + {{13.999661665378312, 1185.0737399297495}, {994.98516845703114, 409.41446351366267}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3837 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3826 + + + Class + Group + Graphics + + + Bounds + {{24.594260021774176, 642.241469422465}, {971.47705078125, 229.08478334430947}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3815 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45Key\'82\'c9\'82\'e6\'82\'e8Data Segment\'82\'f0\'91\'d2\'82\'bf\'8d\'87\'82\'ed\'82\'b9\'81\'41Code Segment\'82\'f0\'8e\'c0\'8d\'73\'82\'b7\'82\'e9\ +\'81\'45CS\'82\'cd\'83\'5e\'83\'58\'83\'4e\'81\'41DS\'82\'cd\'83\'66\'81\'5b\'83\'5e\'82\'f0\'8d\'d7\'82\'a9\'82\'ad\'8b\'4c\'8f\'71\'82\'b5\'82\'bd\'82\'e0\'82\'cc\ +\'81\'45CS\'82\'cd\'95\'4b\'97\'76\'82\'c8DS\'82\'aa\'91\'b5\'82\'a4\'82\'c6\'8e\'c0\'8d\'73\'82\'b3\'82\'ea\'82\'e9\'90\'ab\'8e\'bf\'82\'aa\'82\'a0\'82\'e9\ +\'81\'45DS\'82\'cdData Segment Manager\'82\'c9\'82\'e6\'82\'e8\'8a\'c7\'97\'9d\'82\'b3\'82\'ea\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{193.33192593603758, 851.49626759714965}, {634.00171895272319, 240.13209586792814}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3816 + ImageID + 13 + ManualSizeImage + YES + Scale + 1.1999999731779099 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + Bounds + {{13.999811161103139, 640.35219841758749}, {994.9850189613062, 460.59289034048675}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3817 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3820 + Points + + {39.126481613819884, 613.68981291306602} + {81.224313182906059, 614.01222178308876} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3821 + Position + 0.32640770077705383 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3821 + Points + + {31.9871257020217, 632.53991083050698} + {45.897081274657438, 595.81334504351071} + {68.378047034452038, 595.81334504351071} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3822 + Position + 0.25490197539329529 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3822 + Points + + {18.063504619673687, 632.2110985226667} + {58.151731618954102, 633.15779926659661} + {72.660135750603416, 632.2110985226667} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + ID + 3819 + + + Class + Group + Graphics + + + Bounds + {{97.010757565128472, 582.241469422465}, {843.98882582805425, 60}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 48 + + ID + 3824 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 Alice\'82\'ccComputation} + VerticalPad + 0 + + + + Bounds + {{13.99974075867857, 572.59843039212262}, {994.98501896130608, 68}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3825 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3823 + + + ID + 3818 + + + ID + 3814 + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Bounds + {{18.425197017566973, 1912.6313098586418}, {971.47705078125, 99.328180450102082}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3801 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45Remote DSM\'82\'c9\'91\'ce\'82\'b5\'82\'c4\'83\'66\'81\'5b\'83\'5e\'82\'f0\ + \'8f\'91\'82\'ab\'8d\'9e\'82\'de\'82\'c6\'91\'ce\'89\'9e\'82\'b7\'82\'e9\'83\'6d\'81\'5b\'83\'68\'82\'ccLocal \ + DSM\'82\'c9\'93\'5d\'91\'97\'82\'b3\'82\'ea\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{18.425197017567051, 1794.9935135157054}, {971.47705078125, 99.328180450102082}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3802 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45Remote DSM\'82\'cd\'91\'bc\'82\'cc\'83\'6d\'81\'5b\'83\'68\'82\'ccLocal \ + DSM\'82\'ccproxy\'82\'c5\'82\'a0\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{18.425197017567029, 1717.0407569029164}, {971.47705078125, 99.328180450102082}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3803 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45Local DSM\'82\'c6Remote DSM\'82\'aa\'82\'a0\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{18.425197017567051, 1663.1824886977167}, {971.47705078125, 99.328180450102082}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3804 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45Alice\'82\'c5\'82\'cd\'83\'66\'81\'5b\'83\'5e\'83\'78\'81\'5b\'83\'58\'82\'cc\'82\'e6\'82\'a4\'82\'c9\'88\'b5\'82\'c1\'82\'c4\'82\'a2\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{525.82677642444798, 1674.5210714777588}, {476.83137700191651, 360.00000326633472}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3805 + ImageID + 11 + ManualSizeImage + YES + Scale + 1.1999999731779099 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + Bounds + {{13.999890254402203, 1671.2178567112796}, {994.9850189613062, 383.14573789788733}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3806 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3800 + + + Class + Group + Graphics + + + Bounds + {{97.010690944166754, 1611.2178567112796}, {843.98895263671875, 60}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 40 + + ID + 3808 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 Data Segment Manager} + VerticalPad + 0 + + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3810 + Points + + {38.378905798589969, 1637.1380622027405} + {81.224195027079261, 1637.9322113050407} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3811 + Position + 0.32640770077705383 + + + + Class + LineGraphic + ID + 3811 + Points + + {31.987007546194953, 1656.4599003524588} + {43.716130310129522, 1621.0043591760948} + {45.896963118830712, 1619.7333345654627} + {68.377928878625312, 1619.7333345654627} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3812 + Position + 0.25490197539329529 + + + + Class + LineGraphic + ID + 3812 + Points + + {18.063386463846939, 1656.1310880446185} + {58.151613463127347, 1657.0777887885488} + {72.660017594776662, 1656.1310880446185} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{13.999661665377459, 1601.574817680937}, {994.98516845703114, 68}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3813 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3809 + + + ID + 3807 + + + ID + 3799 + + + Bounds + {{1031.852359935049, 212.59842712578802}, {971.47705078125, 158.74015892058856}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W6 + Size + 14 + + ID + 3631 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 Keep Alive +\b0 \ +\'81\'45\'92\'e8\'8a\'fa\'93\'49\'82\'c9\'83\'70\'83\'50\'83\'62\'83\'67\'82\'f0\'91\'97\'90\'4d\'82\'b7\'82\'e9\'82\'b1\'82\'c6\'82\'c5\'90\'da\'91\'b1\'82\'c9\'96\'e2\'91\'e8\'82\'aa\'82\'c8\'82\'a2\'82\'b1\'82\'c6\'82\'f0\'8a\'6d\'94\'46\'82\'b7\'82\'e9\ +\'81\'45\'96\'e2\'91\'e8\'82\'f0\'94\'ad\'8c\'a9\'82\'b5\'82\'bd\'8f\'ea\'8d\'87\'81\'41Keep Alive\'82\'aa\'82\'bb\'82\'cc\'83\'6d\'81\'5b\'83\'68\'82\'f0\'90\'d8\'92\'66\'82\'b7\'82\'e9} + VerticalPad + 1 + + + + Class + Group + Graphics + + + Bounds + {{1441.3882091544942, 711.49606944763752}, {152.40535234235938, 28.604710503420375}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 16 + + ID + 3633 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset0 HelveticaNeue;\f1\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\deftab720 +\pard\pardeftab720\qc + +\f0\fs32 \cf0 Alice +\f1 \'82\'c9\'82\'a8\'82\'af\'82\'e9 +\f0 Keep Alive} + + Wrap + NO + + + Bounds + {{1157.9628515179459, 352.91338902880796}, {714.48374234614278, 371.82906364084465}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3634 + ImageID + 6 + ManualSizeImage + YES + Scale + 1.699999962002039 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + ID + 3632 + + + Bounds + {{1029.4661973003922, 749.76378633027934}, {971.47705078125, 260.78740394096656}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W6 + Size + 14 + + ID + 3635 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'8d\'c4\'90\'da\'91\'b1\'8e\'9e\'82\'c6\'90\'d8\'92\'66\'8e\'9e\'82\'c9\'82\'a8\'82\'af\'82\'e9\'8f\'88\'97\'9d\'82\'cc\'95\'cf\'8d\'58 +\b0 \ +\'81\'45MMORPG\'82\'c5\'82\'cd\'83\'51\'81\'5b\'83\'80\'82\'cc\'8d\'c5\'92\'86\'82\'c9\'90\'d8\'92\'66\'82\'b3\'82\'ea\'82\'bd\'8f\'ea\'8d\'87\'82\'cc\'82\'dd\'8e\'c0\'8d\'73\'82\'b3\'82\'ea\'82\'e9\'8f\'88\'97\'9d\'82\'aa\ +\'81\'40\'91\'b6\'8d\'dd\'82\'b7\'82\'e9\ +\'81\'45\'8d\'c4\'90\'da\'91\'b1\'82\'b5\'82\'c4\'82\'ab\'82\'bd\'83\'6d\'81\'5b\'83\'68\'82\'c9\'91\'ce\'82\'b5\'82\'c4\'82\'cc\'82\'dd\'8e\'c0\'8d\'73\'82\'b3\'82\'ea\'82\'e9\'8f\'88\'97\'9d\'82\'e0\'91\'b6\'8d\'dd\'82\'b7\'82\'e9\ +\'81\'45Alice\'82\'c9\'82\'a8\'82\'af\'82\'e9\'8d\'c4\'90\'da\'91\'b1\'8e\'9e\'81\'41\'90\'d8\'92\'66\'8e\'9e\'82\'cc\'93\'ae\'8d\'ec\'82\'f0\'95\'cf\'8d\'58\'82\'b7\'82\'e9\'82\'bd\'82\'df\ +\'81\'40\'83\'41\'83\'76\'83\'8a\'83\'50\'81\'5b\'83\'56\'83\'87\'83\'93\'91\'a4\'82\'c9\'82\'cd\'90\'b3\'8f\'ed\'82\'c8\'8f\'88\'97\'9d\'82\'cc\'82\'dd\'82\'f0\'8b\'4c\'8f\'71\'82\'b7\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{1020.4724502037827, 212.59842712578802}, {989.46454497446894, 1272.7559170597181}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3636 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + Class + Group + Graphics + + + Bounds + {{1026.5847846523504, 2319.8707098398254}, {971.47705078125, 108.93963975531938}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W6 + Size + 14 + + ID + 3700 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs60 \cf0 \'81\'45\cf2 \'90\'e6\'8d\'73\'8c\'a4\'8b\'86\'82\'c5\'82\'a0\'82\'e9Federated\ + Linda\'82\'c6\'93\'af\'93\'99\'82\'cc\'90\'ab\'94\'5c\'82\'f0\'82\'e0\'82\'c2} + VerticalPad + 1 + + + + Bounds + {{1026.5847846523504, 2243.0043810871712}, {971.47705078125, 108.93963975531938}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W6 + Size + 14 + + ID + 3701 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;\red243\green45\blue55;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs60 \cf0 \'81\'45\cf2 12\'81\'93\cf0 \'8e\'c0\'8d\'73\'91\'ac\'93\'78\'82\'aa\'89\'fc\'91\'50\'82\'b3\'82\'ea\'82\'bd} + VerticalPad + 1 + + + + Bounds + {{1026.5847846523504, 2148.043750304319}, {971.47705078125, 108.93963975531938}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W6 + Size + 14 + + ID + 3702 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45\'83\'8a\'83\'93\'83\'4f\'8c\'5e\'82\'cc\'83\'67\'83\'7c\'83\'8d\'83\'57\'81\'5b\'82\'f0\ +\'8d\'ec\'90\'ac\'82\'b5\'81\'41Message\'82\'aa1\'8e\'fc\'82\'b7\'82\'e9\ +\'95\'bd\'8b\'cf\'8e\'9e\'8a\'d4\'82\'f0\'8b\'81\'82\'df\'82\'bd} + VerticalPad + 1 + + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3704 + Points + + {1686.780523772497, 2268.5161923422656} + {1720.101584796756, 2306.7326881022109} + + Style + + stroke + + Color + + b + 0.867128 + g + 0.312868 + r + 0.288084 + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 3 + + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3705 + Points + + {1760.3379183220807, 2386.8840454141541} + {1727.8828863501494, 2350.7209174975701} + + Style + + stroke + + Color + + b + 0.490373 + g + 0.944515 + r + 0.242172 + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{1771.8198946228122, 2380.4846972951805}, {111.62003659959919, 27.339537351372375}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.254902 + g + 0.501961 + r + 0.129412 + + Font + Helvetica + Size + 16 + + ID + 3706 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;\red63\green246\blue128;} +\deftab720 +\pard\pardeftab720\qc + +\f0\fs32 \cf2 Federated Linda} + + Wrap + NO + + + Bounds + {{1586.9823328637613, 2257.1776095622231}, {90.093315255390792, 27.339537351372375}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.647059 + g + 0.164706 + r + 0.388235 + + Font + Helvetica + Size + 16 + + ID + 3707 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;\red71\green75\blue221;} +\deftab720 +\pard\pardeftab720\qc + +\f0\fs32 \cf2 \'89\'fc\'91\'50\'91\'4f\'82\'ccAlice} + + Wrap + NO + + + Bounds + {{1513.867136376856, 2320.9571376999597}, {90.093315255390792, 27.339537351372375}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.152941 + g + 0.152941 + r + 0.6 + + Font + Helvetica + Size + 16 + + ID + 3708 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;\red240\green63\blue65;} +\deftab720 +\pard\pardeftab720\qc + +\f0\fs32 \cf2 \'89\'fc\'91\'50\'8c\'e3\'82\'ccAlice} + + Wrap + NO + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3709 + Points + + {1615.3684599793264, 2334.9901303845745} + {1648.6895210035868, 2373.2066261445198} + + Style + + stroke + + Color + + b + 0.232699 + g + 0.22342 + r + 0.85511 + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{1410.4025685089725, 2136.7051675242769}, {605.0551159241063, 430.86614564159663}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3710 + ImageID + 7 + ManualSizeImage + YES + Scale + 0.69999998435378075 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + ID + 3703 + + + Class + Group + Graphics + + + Bounds + {{1103.4835452548377, 2076.7051675242769}, {889.0382080078125, 60}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 40 + + ID + 3712 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 \'89\'fc\'91\'50\'8c\'f8\'89\'ca\'82\'cc\'91\'aa\'92\'e8} + VerticalPad + 0 + + + + Class + Group + Graphics + + + Class + LineGraphic + ID + 3714 + Points + + {1044.8517601092619, 2097.7679876419484} + {1087.6970493377514, 2098.5621367442486} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3715 + Position + 0.32640770077705383 + + + + Class + LineGraphic + ID + 3715 + Points + + {1038.4598618568671, 2117.089825791667} + {1050.1889846208014, 2081.6342846153025} + {1052.3698174295027, 2080.3632600046703} + {1074.8507831892973, 2080.3632600046703} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3716 + Position + 0.25490197539329529 + + + + Class + LineGraphic + ID + 3716 + Points + + {1024.536240774519, 2116.7610134838264} + {1064.6244677737996, 2117.7077142277567} + {1079.1328719054488, 2116.7610134838264} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{1020.4725159760494, 2062.2047431201449}, {994.98516845703114, 68}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3717 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3713 + + + ID + 3711 + + + Bounds + {{1020.4724502037827, 2129.6185532867503}, {994.98516845703114, 449.29134265916537}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3718 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3699 + + + Bounds + {{1730.9369951782517, 120.47244203794659}, {279, 73}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3508 + ImageID + 8 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3839 + Points + + {459.97670972353671, 2682.9610434831939} + {573.30066951151184, 2682.7259355635233} + + Style + + stroke + + Color + + b + 0.232699 + g + 0.22342 + r + 0.85511 + + HeadArrow + FilledArrow + Legacy + + TailArrow + 0 + Width + 15 + + + + + Bounds + {{531.45375152044267, 2511.7298710153877}, {460.6299262577154, 342.99212909627113}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3840 + ImageID + 5 + ManualSizeImage + YES + Scale + 1.8999999575316906 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + Bounds + {{20.606626996908062, 2511.7298710153877}, {464.88189398172312, 342.99212909627113}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3841 + ImageID + 4 + ManualSizeImage + YES + Scale + 1.8999999575316906 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + + Bounds + {{20.606626996907835, 2352.9897120947994}, {971.47705078125, 158.74015892058856}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W6 + Size + 14 + + ID + 3842 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'83\'67\'83\'7c\'83\'8d\'83\'57\'81\'5b\'81\'69\'96\'d8\'8d\'5c\'91\'a2\'81\'6a\'82\'cc\'8d\'c4\'8d\'5c\'90\'ac +\b0 \ +\'81\'45\'83\'6d\'81\'5b\'83\'68\'82\'aa\'83\'41\'83\'76\'83\'8a\'83\'50\'81\'5b\'83\'56\'83\'87\'83\'93\'82\'a9\'82\'e7\'97\'a3\'92\'45\'82\'b5\'82\'bd\'8f\'ea\'8d\'87\'81\'41\'8d\'c5\'8c\'e3\'82\'c9\'8e\'51\'89\'c1\'82\'b5\'82\'bd\'83\'6d\'81\'5b\'83\'68\'82\'f0\'97\'a3\'92\'45\'82\'b5\'82\'bd\'83\'6d\'81\'5b\'83\'68\'82\'cc\'88\'ca\'92\'75\'82\'c9\'88\'da\'93\'ae\'82\'b3\'82\'b9\'81\'41\'96\'d8\'82\'f0\'8d\'c4\'8d\'5c\'90\'ac\'82\'b3\'82\'b9\'82\'e9} + VerticalPad + 1 + + + + Bounds + {{13.999780508795993, 2327.2441156036271}, {994.9850189613062, 520.15748503442774}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3843 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + Class + Group + Graphics + + + Bounds + {{97.010660291859722, 2267.4383351062111}, {843.98895263671875, 60}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 40 + + ID + 3845 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 \'93\'ae\'93\'49\'82\'c8\'83\'67\'83\'7c\'83\'8d\'83\'57\'81\'5b\'82\'d6\'82\'cc\'91\'ce\'89\'9e} + VerticalPad + 0 + + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3847 + Points + + {38.37887514628359, 2293.3585405976723} + {81.224164374772727, 2294.1526896999726} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3848 + Position + 0.32640770077705383 + + + + Class + LineGraphic + ID + 3848 + Points + + {31.986976893888567, 2312.6803787473909} + {43.716099657823094, 2277.2248375710265} + {45.896932466524419, 2275.9538129603948} + {68.37789822631899, 2275.9538129603948} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3849 + Position + 0.25490197539329529 + + + + Class + LineGraphic + ID + 3849 + Points + + {18.063355811540475, 2312.3515664395504} + {58.151582810821026, 2313.2982671834807} + {72.659986942470312, 2312.3515664395504} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{13.999631013070996, 2257.7952960758689}, {994.98516845703114, 68}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3850 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3846 + + + ID + 3844 + + + ID + 3838 + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Bounds + {{24.594260021773209, 2149.3512772868048}, {971.47705078125, 108.44401878906211}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3879 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs60 \cf0 \'81\'45\'93\'ae\'93\'49\'82\'c8\'83\'67\'83\'7c\'83\'8d\'83\'57\'81\'5b\'82\'d6\'82\'cc\'91\'ce\'89\'9e\ +\'81\'45\'89\'9e\'93\'9a\'91\'ac\'93\'78} + VerticalPad + 1 + + + + Bounds + {{13.999661665377118, 2138.4804525343288}, {994.9850189613062, 108.44401878906211}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3880 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3878 + + + Class + Group + Graphics + + + Bounds + {{97.010800689766484, 2072.7661668200449}, {843.98895263671875, 65.714285714285595}} + Class + ShapedGraphic + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 40 + + ID + 3882 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 \'8e\'c0\'97\'70\'82\'c8\'83\'41\'83\'76\'83\'8a\'83\'50\'81\'5b\'83\'56\'83\'87\'83\'93\'82\'c9\'95\'4b\'97\'76\'82\'c8\'8b\'40\'94\'5c} + VerticalPad + 0 + + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3884 + Points + + {38.182166749140407, 2101.8088232744662} + {81.224304772678948, 2102.0247456608295} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3885 + Position + 0.32640770077705383 + + + + Class + LineGraphic + ID + 3885 + Points + + {31.988477555359758, 2122.3170117048508} + {43.716240055729251, 2083.4847171386514} + {45.897072864430434, 2082.092642565101} + {68.378038624225042, 2082.092642565101} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3886 + Position + 0.25490197539329529 + + + + Class + LineGraphic + ID + 3886 + Points + + {18.063496209446669, 2121.956848756558} + {58.151723208727077, 2122.9937114761001} + {72.660127340376391, 2121.956848756558} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + Bounds + {{13.999771410977019, 2062.2047431201449}, {994.98516845703114, 74.476190476190339}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3887 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3883 + + + ID + 3881 + + + ID + 3877 + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Class + Group + Graphics + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3854 + Points + + {39.126481613819919, 253.68980964673679} + {81.224313182906116, 254.01221851675939} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3855 + Position + 0.32640770077705383 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3855 + Points + + {31.98712570202175, 272.53990756417761} + {45.897081274657488, 235.81334177718148} + {68.378047034452095, 235.81334177718148} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + Tail + + ID + 3856 + Position + 0.25490197539329529 + + + + Class + LineGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3856 + Points + + {18.063504619673743, 272.21109525633739} + {58.151731618954152, 273.1577960002673} + {72.660135750603473, 272.21109525633739} + + Style + + stroke + + Color + + b + 1 + g + 1 + r + 1 + + HeadArrow + FilledBall + Legacy + + TailArrow + 0 + Width + 3 + + + + + ID + 3853 + + + Class + Group + Graphics + + + Bounds + {{97.010757565128358, 222.24146615613046}, {843.98882582805425, 60}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 40 + + ID + 3858 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs80 \cf1 \'90\'4d\'97\'8a\'90\'ab\'82\'c6\'83\'58\'83\'50\'81\'5b\'83\'89\'83\'72\'83\'8a\'83\'65\'83\'42\'82\'cc\'92\'c7\'8b\'81} + VerticalPad + 0 + + + + Bounds + {{13.99974075867857, 212.59842712578808}, {994.98501896130608, 68}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3859 + Shape + Rectangle + Style + + fill + + Color + + b + 0.8 + g + 0.6 + r + 0.2 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.8 + g + 0.4 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3857 + + + ID + 3852 + + + Class + Group + Graphics + + + Bounds + {{25.754019087764732, 289.93612681198431}, {971.47705078125, 282.66230358013826}} + Class + ShapedGraphic + FontInfo + + Color + + b + 0.152941 + g + 0.152941 + r + 0.6 + + Font + HiraKakuProN-W3 + Size + 14 + + ID + 3861 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;\red255\green67\blue69;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural + +\f0\fs60 \cf0 \'81\'45\'95\'aa\'8e\'55\'83\'76\'83\'8d\'83\'4f\'83\'89\'83\'80\'82\'c9\'82\'cd\cf2 \'90\'4d\'97\'8a\'90\'ab\cf0 \'82\'c6\cf2 \'83\'58\'83\'50\'81\'5b\'83\'89\'83\'72\'83\'8a\'83\'65\'83\'42\cf0 \'82\'aa\'8b\'81\'82\'df\'82\'e7\'82\'ea\'82\'e9\ +\'81\'45CPU\'82\'cc\'83\'81\'83\'6a\'81\'5b\'83\'52\'83\'41\'89\'bb\'82\'c9\'82\'e6\'82\'e8\cf2 \'95\'c0\'97\'f1\'90\'ab\cf0 \'82\'e0\'8b\'81\'82\'df\'82\'e7\'82\'ea\'82\'e9\ +\'81\'45Alice\'82\'cd\'82\'b1\'82\'ea\'82\'e7\'91\'53\'82\'c4\'82\'f0\'82\'e0\'82\'c2\'83\'76\'83\'8d\'83\'4f\'83\'89\'83\'80\'82\'cc\'8b\'4c\'8f\'71\'82\'f0\'83\'54\'83\'7c\'81\'5b\'83\'67\'82\'b7\'82\'e9\'95\'aa\'8e\'55\'83\'74\'83\'8c\'81\'5b\'83\'80\'83\'8f\'81\'5b\'83\'4e\'82\'c5\'82\'a0\'82\'e9\ +\'81\'45\'96\'7b\'8c\'a4\'8b\'86\'82\'c5\'82\'cdAlice\'82\'c9Meta Computation\'82\'f0\'92\'c7\'89\'c1\'81\'41\'89\'fc\'91\'50\'82\'f0\'8d\'73\'82\'a2\'81\'41\'8e\'c0\'97\'70\'93\'49\'82\'c8\'83\'41\'83\'76\'83\'8a\'83\'50\'81\'5b\'83\'56\'83\'87\'83\'93\'82\'f0\'8b\'4c\'8f\'71\'82\'b7\'82\'e9\'94\'5c\'97\'cd\'82\'f0\'8e\'9d\'82\'bd\'82\'b9\'82\'bd} + VerticalPad + 1 + + + + Bounds + {{13.999811161104674, 280.35219515125277}, {994.9850189613062, 282.66230358013826}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 12 + + ID + 3862 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3860 + + + ID + 3851 + + + Class + Group + Graphics + + + Bounds + {{1001.8737654698404, 120.68503973014705}, {732.75591216021621, 96}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Color + + b + 1 + g + 1 + r + 1 + + Font + HiraKakuProN-W3 + Size + 13 + + ID + 3864 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\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\fs128 \cf1 \'90\'99\'96\'7b \'97\'44 (\'95\'c0\'97\'f1\'90\'4d\'97\'8a\'8c\'a4\'8b\'86\'8e\'ba)} + VerticalPad + 0 + + + + Bounds + {{83.866466096559392, 32.598425492620784}, {1924.739013671875, 81}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + FontInfo + + Font + HiraKakuProN-W6 + Size + 80 + + ID + 3865 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Align + 0 + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1265\cocoasubrtf210 +{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\slleading-800\pardirnatural + +\f0\b\fs160 \cf1 \'95\'aa\'8e\'55\'83\'74\'83\'8c\'81\'5b\'83\'80\'83\'8f\'81\'5b\'83\'4eAlice\'8f\'e3\'82\'ccMetaComputation} + VerticalPad + 0 + + + + Bounds + {{13.999740758678627, 14.173228475052539}, {2001.00004626803, 188.5039387181987}} + Class + ShapedGraphic + FontInfo + + Color + + w + 0 + + Font + Helvetica + Size + 10 + + ID + 3866 + Shape + Rectangle + Style + + fill + + Color + + b + 0.913725 + g + 0.627451 + r + 0 + + FillType + 2 + GradientAngle + 90 + GradientColor + + b + 0.72549 + g + 0.419608 + r + 0 + + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + + + ID + 3863 + + + GridInfo + + GridSpacing + 35.433071136474609 + ShowsGrid + YES + + GuidesLocked + NO + GuidesVisible + YES + HPages + 1 + ImageCounter + 15 + ImageLinkBack + + + + + + + + + + + ImageList + + image14.pdf + image13.pdf + image11.pdf + image8.pdf + image7.pdf + image6.pdf + image5.pdf + image4.pdf + + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoLineLength + 0.20000000298023224 + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + LinksVisible + NO + MagnetsVisible + NO + MasterSheets + + ModificationDate + 2015-02-20 10:53:23 +0000 + Modifier + YuSugimoto + NotesVisible + NO + Orientation + 2 + OriginVisible + NO + PageBreaks + YES + PrintInfo + + NSBottomMargin + + float + 41 + + NSHorizonalPagination + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG + + NSLeftMargin + + float + 18 + + NSPaperName + + string + 756AF98C-FA33-4984-A70C-9675E3CF1399 + + NSPaperSize + + size + {2063.6220703125, 2919.68505859375} + + NSPrintReverseOrientation + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG + + NSRightMargin + + float + 18 + + NSTopMargin + + float + 18 + + + PrintOnePage + + ReadOnly + NO + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 1 + SmartAlignmentGuidesActive + YES + SmartDistanceGuidesActive + YES + UniqueID + 1 + UseEntirePage + + VPages + 1 + WindowInfo + + BottomSlabHeight + 714 + CurrentSheet + 0 + Expanded_Canvases + + Frame + {{66, 0}, {1851, 1058}} + ShowInfo + + ShowRuler + + Sidebar + + SidebarWidth + 230 + VisibleRegion + {{-4.0000000000000036, 1431.25}, {2037.5, 1429.6874999999995}} + Zoom + 0.64000000000000001 + ZoomValues + + + Canvas 1 + 0.64000000000000001 + 0.63 + + + + + diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image11.pdf Binary file poster/master.graffle/image11.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image13.pdf Binary file poster/master.graffle/image13.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image14.pdf Binary file poster/master.graffle/image14.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image4.pdf Binary file poster/master.graffle/image4.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image5.pdf Binary file poster/master.graffle/image5.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image6.pdf Binary file poster/master.graffle/image6.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image7.pdf Binary file poster/master.graffle/image7.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e poster/master.graffle/image8.pdf Binary file poster/master.graffle/image8.pdf has changed diff -r 9d3fadcc379d -r 819eedb5189e slides/index.html --- a/slides/index.html Mon Feb 09 05:46:38 2015 +0900 +++ b/slides/index.html Sat Feb 21 00:10:08 2015 +0900 @@ -88,7 +88,7 @@

    琉球大学 杉本優
    - Feb 6, 2013 + Feb 23, 2013

@@ -106,7 +106,7 @@

Aliceの計算モデル

-

データをData Segment、タスクをCode Segmentという単位に分割して記述する手法を提唱

、 +

データをData Segment、タスクをCode Segmentという単位に分割して記述する手法を提唱

分散フレームワークAliceはそのプロトタイプとして開発された。

AliceはKeyで指し示されるDSを待ち合わせてCSを実行させるComputationである