changeset 10:02c7fc1cda10

Writed description of TreeOperationLog
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 16 Jan 2014 07:07:38 +0900
parents c09b83fe37ef
children b87deec129df
files paper/chapter2.tex paper/chapter3.tex paper/figures/nodepath.pdf paper/figures/non_destructive_edit1.pdf paper/figures/non_destructive_edit2.pdf paper/figures/non_destructive_edit3.pdf paper/figures/non_destructive_edit4.pdf paper/graffle/nodepath.graffle paper/graffle/non_destructive_edit1.graffle paper/graffle/non_destructive_edit2.graffle paper/graffle/non_destructive_edit3.graffle paper/graffle/non_destructive_edit4.graffle
diffstat 12 files changed, 159 insertions(+), 75 deletions(-) [+]
line wrap: on
line diff
--- a/paper/chapter2.tex	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/chapter2.tex	Thu Jan 16 07:07:38 2014 +0900
@@ -1,17 +1,18 @@
 \chapter{木構造データベースJungleの実装と分散設計}
+
 \section{木構造データベースJungle}
 Jungle はスケーラビリティのある CMS の開発を目指して当研究室で開発されている非破壊的木構造データベースである.
 一般的なコンテンツマネジメントシステムではブログツールや Wiki・SNS が多く, これらの
 ウェブサイトの構造は大体が木構造であるため, データ構造として木構造を採用している.
 
-ここではまず破壊的木構造と, 非破壊的木構造の説明をし, Jungle におけるデータ編集の実装について述べる.
+まず破壊的木構造と, 非破壊的木構造の説明をし, Jungle におけるデータ編集の実装について述べる.
 \subsection{破壊的木構造}
 破壊的木構造の編集は, 木構造で保持しているデータを直接書き換えることで行う.
 図\ref{fig:destractive}は破壊的木構造の編集を表している.
 
 \begin{figure}[htpb]
   \begin{center}
-    \includegraphics[scale=0.8]{figures/destructive_tree.pdf}
+    \includegraphics[scale=0.7]{figures/destructive_tree.pdf}
     \caption{破壊的木構造の編集}
     \label{fig:destractive}
   \end{center}
@@ -77,21 +78,84 @@
   \end{center}
 \end{figure}
 
-非破壊的木構造により, 木構造を編集しながら走査することが可能となる.
+\newpage
+
+非破壊的木構造により, データの読み込みと編集を同時に行うことが可能になる.
 
-\section{Jungleにおけるデータ編集}
-Jungleではデータの編集のため次のAPIが用意されている.
-\begin{itemize}
-\item \verb|addNewChild(NodePath _path, int _pos)|
-\item \verb|deleteChildAt(NodePath _path, int _pos)|
-\item \verb|putAttribute(NodePath _path, String _key, ByteBuffer _value)|
-\item \verb|deleteAttribute(NodePath _path, String _key)|
-\end{itemize}
-
-\section{Jungleの分散データベース設計}
-
-
-\subsection{マージ}
+\begin{figure}[htpb]
+  \begin{center}
+    \includegraphics[scale=0.7]{figures/non_destructive_merit.pdf}
+    \caption{非破壊的木構造による利点}
+    \label{fig:nondestractive_merit}
+  \end{center}
+\end{figure}
 
 
 
+\section{Jungleにおけるデータ編集}
+Jungle ではデータをそれぞれの Node が attribute として保持する.
+attribute は String 型の Key と ByteBuffer の value のペアにより表される.
+Jungle でデータ編集を行う場合, この Node に対して削除や attribute の追加等を行うことを指す.
+どの Node へデータの編集を行うかはパスで示す.
+このパスは NodePath と呼ばれる(図\ref{fig:nodepath}).
+
+\begin{figure}[htpb]
+  \begin{center}
+    \includegraphics[scale=0.7]{figures/nodepath.pdf}
+    \caption{Node の attribute と NodePath}
+    \label{fig:nodepath}
+  \end{center}
+\end{figure}
+
+Node の編集は Node の追加・削除, それと attribute の追加・削除を行うことを指す.
+Node の編集のためには次の4つの API が用意されている.
+\begin{itemize}
+\item \verb|addNewChild(NodePath _path, int _pos)|
+NodePath で指定された Node に子供となる Node を追加する API である.
+pos で指定された番号に子供として追加を行う.
+\item \verb|deleteChildAt(NodePath _path, int _pos)|
+NodePath と pos により指定される Node を削除する API である.
+\item \verb|putAttribute(NodePath _path, String _key, ByteBuffer _value)|
+Node に attribute を追加する API である. 
+NodePath は attribute を追加する Node を指す.
+\item \verb|deleteAttribute(NodePath _path, String _key)|
+\verb|_key| が示す attribute の削除を行う API である.
+NodePath は Node を示す.
+\end{itemize}
+
+この Node 編集の為の API は NodeOperation と呼ばれる.
+\subsection{TreeOperationLog}
+API を使用すると, Jungle 内部では NodeOperation として順次ログに積まれていき, 最終的に
+commit されることで編集が行われる.
+この時ログに積まれる複数の NodeOperation を TreeOperationLog という.
+Jungle ではこの TreeOperationLog 単位でデータの編集が行われる.
+以下に TreeOperationLog の具体的な例を示す.
+\begin{verbatim}
+[APPEND_CHILD:<-1>:pos:0]
+[PUT_ATTRIBUTE:<-1,1>:key:author,value:oshiro]
+[PUT_ATTRIBUTE:<-1,1>:key:mes,value:hello]
+[PUT_ATTRIBUTE:<-1,1>:key:key,value:hoge]
+[PUT_ATTRIBUTE:<-1,1>:key:timestamp,value:0]
+\end{verbatim}
+このログは今回の研究で使用したベンチマーク用掲示板プログラムにおける書き込みにより行われるログである(図\ref{fig:treeoperationlog}).
+
+大文字の英字は実行した NodeOperation を表す.
+<> により囲まれている数字は NodePath を示す.
+NodePath の表記以降は Node の position や attribute の情報を表している.
+\begin{figure}[htpb]
+  \begin{center}
+    \includegraphics[scale=0.7]{figures/treeoperationlog1.pdf}
+    \caption{TreeOperationLog の具体例}
+    \label{fig:treeoperationlog}
+  \end{center}
+\end{figure}
+
+\section{TreeOperationLogを用いての分散データベースの実装}
+Jungle でデータ扱うと TreeOperationLog として残る.
+つまり, この TreeOperationLog を他のサーバへと送ることでデータの分散を
+行うことができる.
+
+
+
+
+
--- a/paper/chapter3.tex	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/chapter3.tex	Thu Jan 16 07:07:38 2014 +0900
@@ -1,7 +1,17 @@
 \chapter{Jungleの分散実装}
-\section{Jungleにおけるログ}
+\section{TreeOperationLogを用いての分散データベースの実装}
+Jungle でデータ扱うと TreeOperationLog として残る.
+この TreeOperationLog を他のサーバへと送り, Jungle の編集を行って
+貰うことでデータの分散を行うことができる.
+そこで問題になることがデータ他のサーバへと送る方法と, トポロジーの形成
+である.
+
+
 \section{並列分散フレームワークAlice}
+MessagePackの説明もここに簡単に入れたほうがいいかも.
 \section{Aliceを用いての分散実装}
 \section{ログのシリアライズ}
-\section{AliceのTopologyManagerを用いてのデータ分散}
+\section{AliceによるTopologyManagerを用いてのデータ分散}
 \section{Jungleの永続性の実装}
+\subsection{マージの実装}
+
Binary file paper/figures/nodepath.pdf has changed
Binary file paper/figures/non_destructive_edit1.pdf has changed
Binary file paper/figures/non_destructive_edit2.pdf has changed
Binary file paper/figures/non_destructive_edit3.pdf has changed
Binary file paper/figures/non_destructive_edit4.pdf has changed
--- a/paper/graffle/nodepath.graffle	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/graffle/nodepath.graffle	Thu Jan 16 07:07:38 2014 +0900
@@ -14,7 +14,7 @@
 	<key>BackgroundGraphic</key>
 	<dict>
 		<key>Bounds</key>
-		<string>{{0, 0}, {558.99997329711914, 783}}</string>
+		<string>{{0, 0}, {559, 783}}</string>
 		<key>Class</key>
 		<string>SolidGraphic</string>
 		<key>ID</key>
@@ -94,7 +94,7 @@
 				<key>Pad</key>
 				<integer>0</integer>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -137,7 +137,7 @@
 				<key>Pad</key>
 				<integer>0</integer>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -310,7 +310,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -345,7 +345,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -375,7 +375,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -405,7 +405,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -560,7 +560,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -611,7 +611,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -641,7 +641,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -671,7 +671,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -846,7 +846,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -886,7 +886,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -932,7 +932,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -962,7 +962,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -1008,7 +1008,7 @@
 			<key>Text</key>
 			<dict>
 				<key>Text</key>
-				<string>{\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf370
+				<string>{\rtf1\ansi\ansicpg1252\cocoartf1265
 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
@@ -1067,7 +1067,7 @@
 	<key>MasterSheets</key>
 	<array/>
 	<key>ModificationDate</key>
-	<string>2013-07-18 00:16:34 +0000</string>
+	<string>2014-01-15 16:25:55 +0000</string>
 	<key>Modifier</key>
 	<string>Oshiro Nobuyasu</string>
 	<key>NotesVisible</key>
@@ -1098,7 +1098,7 @@
 		<key>NSPaperSize</key>
 		<array>
 			<string>size</string>
-			<string>{594.99997329711914, 842}</string>
+			<string>{595, 842}</string>
 		</array>
 		<key>NSPrintReverseOrientation</key>
 		<array>
@@ -1143,7 +1143,7 @@
 		<key>ExpandedCanvases</key>
 		<array/>
 		<key>Frame</key>
-		<string>{{48, 96}, {693, 922}}</string>
+		<string>{{130, 107}, {693, 922}}</string>
 		<key>ListView</key>
 		<true/>
 		<key>OutlineWidth</key>
--- a/paper/graffle/non_destructive_edit1.graffle	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/graffle/non_destructive_edit1.graffle	Thu Jan 16 07:07:38 2014 +0900
@@ -166,7 +166,7 @@
 \f0\fs28 \cf0 \'83\'70\'83\'58\
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f1 \cf0 &lt;root,2,5&gt;}</string>
+\f1 \cf0 &lt;-1,2,5&gt;}</string>
 			</dict>
 		</dict>
 		<dict>
@@ -508,7 +508,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -840,7 +841,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -958,7 +960,7 @@
 	<key>MasterSheets</key>
 	<array/>
 	<key>ModificationDate</key>
-	<string>2014-01-11 18:12:54 +0000</string>
+	<string>2014-01-15 16:26:12 +0000</string>
 	<key>Modifier</key>
 	<string>Oshiro Nobuyasu</string>
 	<key>NotesVisible</key>
--- a/paper/graffle/non_destructive_edit2.graffle	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/graffle/non_destructive_edit2.graffle	Thu Jan 16 07:07:38 2014 +0900
@@ -46,7 +46,7 @@
 	<key>Creator</key>
 	<string>Oshiro Nobuyasu</string>
 	<key>DisplayScale</key>
-	<string>1 0/72 in = 1 0/72 in</string>
+	<string>1 0/72 in = 1.0000 in</string>
 	<key>GraphDocumentVersion</key>
 	<integer>8</integer>
 	<key>GraphicsList</key>
@@ -188,8 +188,8 @@
 			<integer>72</integer>
 			<key>Points</key>
 			<array>
-				<string>{376.42896352972946, 246.82340441101198}</string>
-				<string>{389.64431488461878, 277.0914892060091}</string>
+				<string>{376.42896352972946, 246.82340441101201}</string>
+				<string>{389.64431488461878, 277.09148920600916}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -293,8 +293,8 @@
 			<integer>69</integer>
 			<key>Points</key>
 			<array>
-				<string>{344.3932988660531, 182.03261215868145}</string>
-				<string>{360.44776644536466, 213.20143039451011}</string>
+				<string>{344.3932988660531, 182.03261215868142}</string>
+				<string>{360.44776644536466, 213.20143039451008}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -328,8 +328,8 @@
 			<integer>68</integer>
 			<key>Points</key>
 			<array>
-				<string>{326.25709297565112, 181.53212361408447}</string>
-				<string>{307.07124538124322, 213.70191893910712}</string>
+				<string>{326.25709297565112, 181.53212361408444}</string>
+				<string>{307.07124538124316, 213.70191893910714}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -502,7 +502,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -834,7 +835,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -952,7 +954,7 @@
 	<key>MasterSheets</key>
 	<array/>
 	<key>ModificationDate</key>
-	<string>2014-01-11 17:47:57 +0000</string>
+	<string>2014-01-15 16:26:28 +0000</string>
 	<key>Modifier</key>
 	<string>Oshiro Nobuyasu</string>
 	<key>NotesVisible</key>
--- a/paper/graffle/non_destructive_edit3.graffle	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/graffle/non_destructive_edit3.graffle	Thu Jan 16 07:07:38 2014 +0900
@@ -253,8 +253,8 @@
 			<integer>78</integer>
 			<key>Points</key>
 			<array>
-				<string>{439.96082671068132, 245.01994642591467}</string>
-				<string>{453.2531542945768, 275.25970656541153}</string>
+				<string>{439.92322962520365, 245.03406917844225}</string>
+				<string>{453.14854439523958, 275.29843378924249}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -297,8 +297,8 @@
 			<integer>77</integer>
 			<key>Points</key>
 			<array>
-				<string>{407.91583304643979, 180.23036739422872}</string>
-				<string>{424.03413082347862, 211.37131561954786}</string>
+				<string>{407.88604690603216, 180.24356833546091}</string>
+				<string>{423.94819879704727, 211.40899523450386}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -447,7 +447,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -464,8 +465,8 @@
 			<integer>72</integer>
 			<key>Points</key>
 			<array>
-				<string>{376.42896352972946, 246.82340441101201}</string>
-				<string>{389.64431488461878, 277.09148920600916}</string>
+				<string>{376.42896352972946, 246.82340441101198}</string>
+				<string>{389.64431488461878, 277.0914892060091}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -569,8 +570,8 @@
 			<integer>69</integer>
 			<key>Points</key>
 			<array>
-				<string>{344.3932988660531, 182.03261215868142}</string>
-				<string>{360.44776644536466, 213.20143039451008}</string>
+				<string>{344.3932988660531, 182.03261215868145}</string>
+				<string>{360.44776644536466, 213.20143039451011}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -778,7 +779,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -1110,7 +1112,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -1228,7 +1231,7 @@
 	<key>MasterSheets</key>
 	<array/>
 	<key>ModificationDate</key>
-	<string>2014-01-11 21:36:31 +0000</string>
+	<string>2014-01-15 16:26:51 +0000</string>
 	<key>Modifier</key>
 	<string>Oshiro Nobuyasu</string>
 	<key>NotesVisible</key>
--- a/paper/graffle/non_destructive_edit4.graffle	Thu Jan 16 00:20:41 2014 +0900
+++ b/paper/graffle/non_destructive_edit4.graffle	Thu Jan 16 07:07:38 2014 +0900
@@ -63,8 +63,8 @@
 			<integer>112</integer>
 			<key>Points</key>
 			<array>
-				<string>{443.51756026024248, 168}</string>
-				<string>{418.75919557621779, 177.04414604506502}</string>
+				<string>{443.61152382228079, 168}</string>
+				<string>{418.78482841918617, 177.10382757340787}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -98,8 +98,8 @@
 			<integer>78</integer>
 			<key>Points</key>
 			<array>
-				<string>{440.91762384989619, 265.24893632590533}</string>
-				<string>{454.13297520478591, 295.51702112090288}</string>
+				<string>{440.91762384989607, 265.24893632590533}</string>
+				<string>{454.13297520478562, 295.517021120903}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -180,8 +180,8 @@
 			<integer>77</integer>
 			<key>Points</key>
 			<array>
-				<string>{408.88195918622182, 200.45814407357528}</string>
-				<string>{424.93642676553191, 231.62696230940315}</string>
+				<string>{408.88195918622176, 200.45814407357531}</string>
+				<string>{424.93642676553179, 231.62696230940321}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -374,7 +374,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -531,8 +532,8 @@
 			<integer>68</integer>
 			<key>Points</key>
 			<array>
-				<string>{327.25709297565118, 201.74489216877174}</string>
-				<string>{308.07124538124322, 233.91468749379439}</string>
+				<string>{327.25709297565112, 201.74489216877174}</string>
+				<string>{308.07124538124316, 233.91468749379442}</string>
 			</array>
 			<key>Style</key>
 			<dict>
@@ -705,7 +706,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -1037,7 +1039,8 @@
 {\colortbl;\red255\green255\blue255;}
 \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
 
-\f0\fs24 \cf0 root}</string>
+\f0\fs24 \cf0 root\
+-1}</string>
 				<key>VerticalPad</key>
 				<integer>0</integer>
 			</dict>
@@ -1155,7 +1158,7 @@
 	<key>MasterSheets</key>
 	<array/>
 	<key>ModificationDate</key>
-	<string>2014-01-13 18:10:21 +0000</string>
+	<string>2014-01-15 16:27:06 +0000</string>
 	<key>Modifier</key>
 	<string>Oshiro Nobuyasu</string>
 	<key>NotesVisible</key>