# HG changeset patch # User Masataka Kohagura # Date 1433837589 -32400 # Node ID 0bec56f5c23f932aef13987d502f18d4ac3c9e9b # Parent 33f5506858bd7715b757198a0928c6edf3fab2f8 add 0609 diff -r 33f5506858bd -r 0bec56f5c23f 2015/0602.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/0602.html Tue Jun 09 17:13:09 2015 +0900 @@ -0,0 +1,227 @@ + + + + + seminar + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+

Cerium 上での正規表現の実装

+
+
+ Masataka Kohagura 2nd, June , 2015 +
+
+ +
+

研究目的

+
    +
  • + 当研究室では並列プログラミングフレームワーク Cerium Task Manager でプログラミングを行っている。 +
  • +
  • + +
  • +
  • +
  • +
  • +
  • +
+
+ + +
+

正規表現を有限オートマトンで書いてみる

+ 例題 : (a|aa|aaa)*b +
    +
    +
+ 非決定性オートマトンから subset Constraction +
    +
    +
+
+ +
+

正規表現を有限オートマトンで書いてみる

+ 例題 : ab(ab)+ +
    +
    +
+ テキストが abab の途中で分割される場合を考える +
    +
    +
+ 分割されたファイルの1コ前の終わりが状態(3)の場合で、分割されたファイルの先頭が b の場合状態(4)に遷移して受理される。(正規表現にマッチする) +
    +
    +
+
    +
    +
+
+ +
+

状態を bit列で表現

+ 状態をビットで表現するため、bitSet を実装した。 + +
+    
+
+typedef struct bitInfo {
+    int arrayNum;
+    unsigned long *bitContainer;
+}BitInfo,*BitInfoPtr;
+
+void bitSet(BitInfoPtr bi, int bitSetPosition) {
+
+    unsigned long tmp = 1;
+    int arrayPosition = 0;
+
+    arrayPosition = bitSetPosition / 64;
+    bitSetPosition = bitSetPosition % 64;
+
+    tmp = tmp << (63 - bitSetPosition);
+    bi->bitContainer[arrayPosition] = bi->bitContainer[arrayPosition] | tmp;
+}
+
+    
+    
+
+
+ + +
+

次にやること

+ bitVector を生成するため、正規表現の parser を記述する +
+ + + + +
+ + diff -r 33f5506858bd -r 0bec56f5c23f 2015/0609.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/2015/0609.html Tue Jun 09 17:13:09 2015 +0900 @@ -0,0 +1,227 @@ + + + + + seminar + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+

Cerium 上での正規表現の実装

+
+
+ Masataka Kohagura 2nd, June , 2015 +
+
+ +
+

研究目的

+
    +
  • + 当研究室では並列プログラミングフレームワーク Cerium Task Manager でプログラミングを行っている。 +
  • +
  • + +
  • +
  • +
  • +
  • +
  • +
+
+ + +
+

正規表現を有限オートマトンで書いてみる

+ 例題 : (a|aa|aaa)*b +
    +
    +
+ 非決定性オートマトンから subset Constraction +
    +
    +
+
+ +
+

正規表現を有限オートマトンで書いてみる

+ 例題 : ab(ab)+ +
    +
    +
+ テキストが abab の途中で分割される場合を考える +
    +
    +
+ 分割されたファイルの1コ前の終わりが状態(3)の場合で、分割されたファイルの先頭が b の場合状態(4)に遷移して受理される。(正規表現にマッチする) +
    +
    +
+
    +
    +
+
+ +
+

状態を bit列で表現

+ 状態をビットで表現するため、bitSet を実装した。 + +
+    
+
+typedef struct bitInfo {
+    int arrayNum;
+    unsigned long *bitContainer;
+}BitInfo,*BitInfoPtr;
+
+void bitSet(BitInfoPtr bi, int bitSetPosition) {
+
+    unsigned long tmp = 1;
+    int arrayPosition = 0;
+
+    arrayPosition = bitSetPosition / 64;
+    bitSetPosition = bitSetPosition % 64;
+
+    tmp = tmp << (63 - bitSetPosition);
+    bi->bitContainer[arrayPosition] = bi->bitContainer[arrayPosition] | tmp;
+}
+
+    
+    
+
+
+ + +
+

次にやること

+ bitVector を生成するため、正規表現の parser を記述する +
+ + + + +
+ + diff -r 33f5506858bd -r 0bec56f5c23f 2015/images/omni/automata.graffle --- a/2015/images/omni/automata.graffle Tue Jun 02 17:08:31 2015 +0900 +++ b/2015/images/omni/automata.graffle Tue Jun 09 17:13:09 2015 +0900 @@ -26,7 +26,7 @@ MasterSheets ModificationDate - 2015-05-19 10:45:03 +0000 + 2015-06-08 09:50:00 +0000 Modifier MasaKoha NotesVisible @@ -55,7 +55,7 @@ NSPaperSize size - {595.00000476837158, 842} + {595, 842} NSPrintReverseOrientation @@ -85,7 +85,7 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {559, 783}} Class SolidGraphic ID @@ -220,8 +220,8 @@ 76 Points - {332.94626920779024, 421.43514714775108} - {383.05388878271509, 382.06505341246304} + {332.94623396038673, 421.4351024028096} + {383.05376715391327, 382.06489901173973} Style @@ -255,8 +255,8 @@ 75 Points - {332.83700839955782, 309.70259713594965} - {383.16291406628415, 349.7974999357881} + {332.83702560833888, 309.7025755908582} + {383.162973859705, 349.79742507514226} Style @@ -671,8 +671,8 @@ 50 Points - {235.50687163405539, 381.32644773366729} - {291.49311574084857, 422.17356952575943} + {235.50687432532268, 381.326444054511} + {291.49312560471361, 422.17355604113447} Style @@ -1391,7 +1391,7 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {559, 783}} Class SolidGraphic ID @@ -2246,7 +2246,7 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {559, 783}} Class SolidGraphic ID @@ -2905,8 +2905,8 @@ 77 Points - {330.23181884496449, 133.74028188299729} - {405.76959910769057, 162.27570868118144} + {330.23153376034867, 133.74103785328964} + {405.7684768979035, 162.27868377254913} Style @@ -2940,8 +2940,8 @@ 76 Points - {329.93842406321596, 207.84616637856232} - {405.56297194516981, 181.15778350106811} + {329.93814229934702, 207.84536622643648} + {405.56186838678565, 181.15465057808274} Style @@ -2975,8 +2975,8 @@ 75 Points - {202.43703150011572, 181.1577830274471} - {278.05752933678815, 207.85768410402997} + {202.4381350126894, 181.15465009491055} + {278.06184658453299, 207.84541570376098} Style @@ -3010,8 +3010,8 @@ 74 Points - {202.25546777831687, 162.34239719310079} - {278.73919910059567, 133.66306692293301} + {202.25653823185752, 162.34525745520864} + {278.74344503037315, 133.67442231050984} Style @@ -3879,7 +3879,7 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {559, 783}} Class SolidGraphic ID @@ -4489,8 +4489,8 @@ 74 Points - {328.59573455919877, 537.72421122562218} - {378.40426544080174, 555.27578877437725} + {328.5957345591986, 537.72421122562241} + {378.40426544080128, 555.27578877437759} Style @@ -4559,8 +4559,8 @@ 72 Points - {224.21564349058116, 503.13649408266446} - {272.78435650941861, 518.86350591733571} + {224.21564349058119, 503.13649408266446} + {272.78435650941873, 518.86350591733571} Style @@ -4809,8 +4809,8 @@ 64 Points - {111.50000901605497, 493.99998192024429} - {163.49998398370036, 493.99998192024429} + {111.50000901605739, 493.99998192024429} + {163.49998398395326, 493.99998192024429} Style @@ -5382,8 +5382,8 @@ 48 Points - {101.06079622204659, 178.65697884555848} - {161.40745125733707, 303.35842627500784} + {101.06414411662574, 178.65535812206454} + {161.43584975936676, 303.34464484335035} Style @@ -5522,8 +5522,8 @@ 44 Points - {105.8527469377333, 175.30632388531663} - {156.54784725488111, 227.79046812985831} + {105.86949151575111, 175.29011927926595} + {156.63034175087424, 227.71004228213434} Style @@ -5662,8 +5662,8 @@ 40 Points - {187.99973596794496, 83.100816620860073} - {227.50267519207952, 83.316092820126812} + {188.00000898868086, 83.001043530602345} + {227.4999912748554, 83.003271607374231} Style @@ -5697,8 +5697,8 @@ 39 Points - {105.88019247986075, 148.72026207343632} - {156.68338351393629, 96.341148654087363} + {105.86953523110436, 148.70992749156096} + {156.63057099298211, 96.290175436464281} Style @@ -6154,7 +6154,7 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {1118, 783}} Class SolidGraphic ID @@ -6187,7 +6187,1600 @@ Bounds - {{15.133046930567234, 360.43613278830304}, {101.16651066633608, 18}} + {{287.68911911198154, 238.54360804058561}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 167 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 a} + VerticalPad + 0 + + + + Bounds + {{215.77957298106921, 282.38572452980929}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 166 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 a} + VerticalPad + 0 + + + + Bounds + {{293.89338567722882, 287.64886983986224}, {10.572687313505725, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 165 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 b} + VerticalPad + 0 + + + + Bounds + {{144.26933035479854, 282.38571211495264}, {10.572687313505725, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 164 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 b} + VerticalPad + 0 + + + + Bounds + {{55.562566106218959, 284.64135113991392}, {22.981204785542502, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 163 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 a} + VerticalPad + 0 + + + + Bounds + {{264.17036505212013, 468.95312871726929}, {16, 16}} + Class + ShapedGraphic + ID + 162 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{248.17036270487648, 468.95313841119849}, {16, 16}} + Class + ShapedGraphic + ID + 161 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{232.17036542836993, 468.95313101336995}, {16, 16}} + Class + ShapedGraphic + ID + 160 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{216.17036542836965, 468.95312799937363}, {16, 16}} + Class + ShapedGraphic + ID + 159 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{200.17036815186319, 468.95312060154509}, {16, 16}} + Class + ShapedGraphic + ID + 158 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{90.457607080645914, 393.56143057431717}, {101.16651066633608, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 157 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8c\'9f\'8d\'f5\'95\'b6\'8e\'9a\'97\'f1\'82\'cc\'8f\'f3\'91\'d4} + VerticalPad + 0 + + + + Bounds + {{264.17037158775804, 452.9531768317525}, {16, 16}} + Class + ShapedGraphic + ID + 156 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{248.17036924051428, 452.9531865256817}, {16, 16}} + Class + ShapedGraphic + ID + 155 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{232.17037196400773, 452.95317912785316}, {16, 16}} + Class + ShapedGraphic + ID + 154 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{216.17037196400756, 452.95317611385684}, {16, 16}} + Class + ShapedGraphic + ID + 153 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{200.17037468750104, 452.9531687160283}, {16, 16}} + Class + ShapedGraphic + ID + 152 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{264.17037297897286, 436.95314310121427}, {16, 16}} + Class + ShapedGraphic + ID + 151 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{248.1703706317291, 436.95315279514335}, {16, 16}} + Class + ShapedGraphic + ID + 150 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{232.17037335522255, 436.95314539731481}, {16, 16}} + Class + ShapedGraphic + ID + 149 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{216.17037335522238, 436.95314238331849}, {16, 16}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{200.1703760787158, 436.95313498548995}, {16, 16}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{264.17037055549042, 420.95312939387412}, {16, 16}} + Class + ShapedGraphic + ID + 146 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{248.17036820824666, 420.95313908780332}, {16, 16}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{232.17037093174011, 420.95313168997478}, {16, 16}} + Class + ShapedGraphic + ID + 144 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{216.17037093173994, 420.95312867597846}, {16, 16}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{200.17037365523336, 420.95312127814992}, {16, 16}} + Class + ShapedGraphic + ID + 142 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{264.17037297897286, 404.95312939387401}, {16, 16}} + Class + ShapedGraphic + ID + 141 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{248.1703706317291, 404.95313908780321}, {16, 16}} + Class + ShapedGraphic + ID + 140 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{232.17037335522255, 404.95313168997478}, {16, 16}} + Class + ShapedGraphic + ID + 139 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{216.17037335522238, 404.95312867597835}, {16, 16}} + Class + ShapedGraphic + ID + 138 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{200.1703760787158, 404.95312127814992}, {16, 16}} + Class + ShapedGraphic + ID + 137 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{264.17037055549031, 388.95311568653386}, {16, 16}} + Class + ShapedGraphic + ID + 136 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + + + + Bounds + {{248.17036820824666, 388.95312538046306}, {16, 16}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + + + + Bounds + {{232.17037093174011, 388.95311798263464}, {16, 16}} + Class + ShapedGraphic + ID + 134 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + + + + Bounds + {{216.17037093173994, 388.9531149686382}, {16, 16}} + Class + ShapedGraphic + ID + 133 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + + + + Bounds + {{200.17037365523336, 388.95310757080978}, {16, 16}} + Class + ShapedGraphic + ID + 132 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + + + + Class + LineGraphic + Head + + ID + 125 + + ID + 131 + Points + + {328.91795109309516, 294.03664765640787} + {302.54408287857405, 263.17774377725345} + {283.15947237262571, 263.17774377725345} + {272.04206026997468, 290.9237443849911} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 126 + + + + Class + LineGraphic + Head + + ID + 126 + + ID + 130 + Points + + {283.65948135385293, 308.10080896959363} + {322.43801001967842, 308.10080896959363} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 125 + + + + Class + LineGraphic + Head + + ID + 125 + + ID + 129 + Points + + {207.88091810617743, 308.10079866867426} + {246.65946337406825, 308.10079866867426} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 124 + + + + Class + LineGraphic + Head + + ID + 124 + + ID + 128 + Points + + {132.10235628282467, 308.10081150332843} + {170.88090012741327, 308.10081150332843} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 123 + + + + Class + LineGraphic + Head + + ID + 123 + + ID + 127 + Points + + {56.323798211473118, 308.10081019743137} + {95.102338321384636, 308.10081019743137} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 122 + + + + Bounds + {{322.93801900091637, 290.10080074807064}, {36, 36}} + Class + ShapedGraphic + ID + 126 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 4} + VerticalPad + 0 + + + + Bounds + {{247.15947237262566, 290.10078938605892}, {36, 36}} + Class + ShapedGraphic + ID + 125 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3} + VerticalPad + 0 + + + + Bounds + {{171.38090910761829, 290.10080074806939}, {36, 36}} + Class + ShapedGraphic + ID + 124 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 2} + VerticalPad + 0 + + + + Bounds + {{95.602347302619364, 290.1008216878634}, {36, 36}} + Class + ShapedGraphic + ID + 123 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + VerticalPad + 0 + + + + Bounds + {{19.823789230236741, 290.10082168786283}, {36, 36}} + Class + ShapedGraphic + ID + 122 + Shape + Circle + Style + + shadow + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + VerticalPad + 0 + + + + Bounds + {{409.77057002372442, 414.82228445102697}, {101.16651066633608, 18}} Class ShapedGraphic FitText @@ -6233,7 +7826,7 @@ Bounds - {{184.25991014998112, 422.56704319295386}, {16, 16}} + {{578.89743324313758, 476.95319485567785}, {16, 16}} Class ShapedGraphic ID @@ -6266,7 +7859,7 @@ Bounds - {{168.25990780273747, 422.56705288688306}, {16, 16}} + {{562.8974308958941, 476.95320454960705}, {16, 16}} Class ShapedGraphic ID @@ -6299,7 +7892,7 @@ Bounds - {{152.25991052623101, 422.56704548905452}, {16, 16}} + {{546.89743361938758, 476.95319715177851}, {16, 16}} Class ShapedGraphic ID @@ -6332,7 +7925,7 @@ Bounds - {{136.25991052623101, 422.5670424750582}, {16, 16}} + {{530.89743361938758, 476.95319413778219}, {16, 16}} Class ShapedGraphic ID @@ -6365,7 +7958,7 @@ Bounds - {{120.25991324972458, 422.56703507722966}, {16, 16}} + {{514.89743634288141, 476.95318673995365}, {16, 16}} Class ShapedGraphic ID @@ -6398,7 +7991,7 @@ Bounds - {{184.25991154119595, 406.56700946241557}, {16, 16}} + {{578.89743463435252, 460.9531611251395}, {16, 16}} Class ShapedGraphic ID @@ -6431,7 +8024,7 @@ Bounds - {{168.2599091939523, 406.56701915634477}, {16, 16}} + {{562.89743228710881, 460.9531708190687}, {16, 16}} Class ShapedGraphic ID @@ -6464,7 +8057,7 @@ Bounds - {{152.25991191744583, 406.56701175851623}, {16, 16}} + {{546.89743501060229, 460.95316342124016}, {16, 16}} Class ShapedGraphic ID @@ -6497,7 +8090,7 @@ Bounds - {{136.25991191744583, 406.56700874451991}, {16, 16}} + {{530.89743501060252, 460.95316040724384}, {16, 16}} Class ShapedGraphic ID @@ -6530,7 +8123,7 @@ Bounds - {{120.25991464093937, 406.56700134669137}, {16, 16}} + {{514.89743773409612, 460.9531530094153}, {16, 16}} Class ShapedGraphic ID @@ -6563,7 +8156,7 @@ Bounds - {{184.25990911771351, 390.56699575507542}, {16, 16}} + {{578.89743221086997, 444.95314741779936}, {16, 16}} Class ShapedGraphic ID @@ -6596,7 +8189,7 @@ Bounds - {{168.25990677046985, 390.56700544900463}, {16, 16}} + {{562.89742986362648, 444.95315711172856}, {16, 16}} Class ShapedGraphic ID @@ -6629,7 +8222,7 @@ Bounds - {{152.25990949396339, 390.56699805117609}, {16, 16}} + {{546.89743258711997, 444.95314971390002}, {16, 16}} Class ShapedGraphic ID @@ -6662,7 +8255,7 @@ Bounds - {{136.25990949396339, 390.56699503717977}, {16, 16}} + {{530.89743258711997, 444.9531466999037}, {16, 16}} Class ShapedGraphic ID @@ -6695,7 +8288,7 @@ Bounds - {{120.25991221745693, 390.56698763935123}, {16, 16}} + {{514.89743531061379, 444.95313930207516}, {16, 16}} Class ShapedGraphic ID @@ -6728,7 +8321,7 @@ Bounds - {{184.25991154119595, 374.56699575507537}, {16, 16}} + {{578.89743463435252, 428.95314741779936}, {16, 16}} Class ShapedGraphic ID @@ -6761,7 +8354,7 @@ Bounds - {{168.2599091939523, 374.56700544900457}, {16, 16}} + {{562.89743228710881, 428.95315711172856}, {16, 16}} Class ShapedGraphic ID @@ -6794,7 +8387,7 @@ Bounds - {{152.25991191744583, 374.56699805117609}, {16, 16}} + {{546.89743501060229, 428.95314971390002}, {16, 16}} Class ShapedGraphic ID @@ -6827,7 +8420,7 @@ Bounds - {{136.25991191744583, 374.56699503717971}, {16, 16}} + {{530.89743501060252, 428.9531466999037}, {16, 16}} Class ShapedGraphic ID @@ -6860,7 +8453,7 @@ Bounds - {{120.25991464093937, 374.56698763935123}, {16, 16}} + {{514.89743773409612, 428.95313930207516}, {16, 16}} Class ShapedGraphic ID @@ -6893,7 +8486,7 @@ Bounds - {{184.25990911771348, 358.56698204773522}, {16, 16}} + {{578.89743221086997, 412.95313371045921}, {16, 16}} Class ShapedGraphic ID @@ -6926,7 +8519,7 @@ Bounds - {{168.25990677046985, 358.56699174166442}, {16, 16}} + {{562.89742986362648, 412.95314340438841}, {16, 16}} Class ShapedGraphic ID @@ -6959,7 +8552,7 @@ Bounds - {{152.25990949396339, 358.56698434383594}, {16, 16}} + {{546.89743258711997, 412.95313600655987}, {16, 16}} Class ShapedGraphic ID @@ -6992,7 +8585,7 @@ Bounds - {{136.25990949396339, 358.56698132983956}, {16, 16}} + {{530.89743258711997, 412.95313299256355}, {16, 16}} Class ShapedGraphic ID @@ -7025,7 +8618,7 @@ Bounds - {{120.25991221745693, 358.56697393201108}, {16, 16}} + {{514.89743531061379, 412.95312559473501}, {16, 16}} Class ShapedGraphic ID @@ -7058,7 +8651,7 @@ Bounds - {{172.69713693565586, 252.66852293351559}, {11.654188857452198, 14}} + {{567.33466002881232, 307.05467459623952}, {11.654188857452198, 14}} Class ShapedGraphic FitText @@ -7104,7 +8697,7 @@ Bounds - {{158.81939181579395, 248.32599037628128}, {16, 16}} + {{553.45691490895047, 302.71214203900519}, {16, 16}} Class ShapedGraphic ID @@ -7144,7 +8737,7 @@ Bounds - {{199.52260964828611, 185.92510033738361}, {22.981204785542502, 14}} + {{594.16013274144257, 240.31125200010763}, {22.981204785542502, 14}} Class ShapedGraphic FitText @@ -7190,7 +8783,7 @@ Bounds - {{205.72687397529899, 240.77903356775883}, {10.572687313505725, 14}} + {{600.36439706845545, 295.16518523048268}, {10.572687313505725, 14}} Class ShapedGraphic FitText @@ -7236,7 +8829,7 @@ Bounds - {{185.462556624413, 223.17621338778099}, {10.572687313505725, 14}} + {{580.10007971756954, 277.56236505050492}, {10.572687313505725, 14}} Class ShapedGraphic FitText @@ -7282,7 +8875,7 @@ Bounds - {{131.73127873232735, 223.17621338778099}, {22.981204785542502, 14}} + {{526.36880182548407, 277.56236505050492}, {22.981204785542502, 14}} Class ShapedGraphic FitText @@ -7328,7 +8921,7 @@ Bounds - {{106.53421520122184, 276.21145606533719}, {22.981204785542502, 14}} + {{501.17173829437866, 330.59760772806118}, {22.981204785542502, 14}} Class ShapedGraphic FitText @@ -7374,7 +8967,7 @@ Bounds - {{105.7268731350573, 240.77904217209289}, {10.572687313505725, 14}} + {{500.36439622821399, 295.16519383481676}, {10.572687313505725, 14}} Class ShapedGraphic FitText @@ -7420,7 +9013,7 @@ Bounds - {{99.522614365632293, 211.45593925176553}, {22.981204785542502, 14}} + {{494.16013745878911, 265.84209091448952}, {22.981204785542502, 14}} Class ShapedGraphic FitText @@ -7476,8 +9069,8 @@ 83 Points - {192.75992668892712, 200.45595489333724} - {234.6189362355511, 200.45595489333724} + {587.39744978208375, 254.84210655606125} + {629.25645932870759, 254.84210655606125} Style @@ -7511,8 +9104,8 @@ 82 Points - {192.7599345525868, 256.32601093596094} - {234.61893669598206, 256.32601093596094} + {587.39745764574332, 310.71216259868487} + {629.25645978913883, 310.71216259868487} Style @@ -7546,8 +9139,8 @@ 81 Points - {84.110051188212125, 270.92222233608703} - {144.60247644288069, 309.02009772385861} + {478.74757428136922, 325.30837399881096} + {539.23999953603754, 363.4062493865826} Style @@ -7571,7 +9164,7 @@ Bounds - {{142.25992497554145, 300.88109305635635}, {36, 36}} + {{536.89744806869817, 355.26724471908034}, {36, 36}} Class ShapedGraphic ID @@ -7601,7 +9194,7 @@ Bounds - {{235.11894570773256, 238.32600982169441}, {36, 36}} + {{629.75646880088925, 292.71216148441835}, {36, 36}} Class ShapedGraphic ID @@ -7631,7 +9224,7 @@ Bounds - {{235.11894524460004, 182.45595325537423}, {36, 36}} + {{629.75646833775659, 236.84210491809824}, {36, 36}} Class ShapedGraphic ID @@ -7671,8 +9264,8 @@ 77 Points - {99.019843472221766, 256.32601100545992} - {127.75990253794716, 256.32601100545992} + {493.65736656537894, 310.71216266818391} + {522.39742563110372, 310.71216266818391} Style @@ -7706,9 +9299,9 @@ 76 Points - {142.13816880382609, 241.01830647515831} - {128.25991854084407, 229.29515611165553} - {142.94136591853791, 216.06386079000603} + {536.77569189698272, 295.40445813788222} + {522.89744163400064, 283.68130777437938} + {537.5788890116944, 270.45001245272999} Style @@ -7742,9 +9335,9 @@ 75 Points - {181.86460357254816, 214.2169068145906} - {204.84580835809066, 228.85462747359279} - {182.26120753104942, 242.7700158985709} + {576.50212666570496, 268.60305847731468} + {599.4833314512473, 283.24077913631669} + {576.89873062420611, 297.15616756129475} Style @@ -7778,8 +9371,8 @@ 74 Points - {85.736578422010467, 242.37470385837165} - {137.19656033817435, 213.42888973366072} + {480.37410151516758, 296.76085552109544} + {531.83408343133078, 267.81504139638486} Style @@ -7803,7 +9396,7 @@ Bounds - {{128.25991854084407, 238.32599966350566}, {64, 36}} + {{522.89744163400064, 292.7121513262295}, {64, 36}} Class ShapedGraphic ID @@ -7833,7 +9426,7 @@ Bounds - {{128.25991067988329, 182.45594595820822}, {64, 36}} + {{522.89743377303989, 236.84209762093224}, {64, 36}} Class ShapedGraphic ID @@ -8028,7 +9621,7 @@ Bounds - {{23.348018340940147, 238.32599319194165}, {75.171806335449219, 36}} + {{417.98554143409729, 292.7121448546655}, {75.171806335449219, 36}} Class ShapedGraphic ID @@ -8336,7 +9929,7 @@ GridInfo HPages - 1 + 2 KeepToScale Layers @@ -8390,7 +9983,2377 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {559, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + + Bounds + {{148.50290210323348, 157.78944219473544}, {24.632352682081887, 18}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 169 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'94\'e4\'8a\'72} + VerticalPad + 0 + + + + Class + LineGraphic + Head + + ID + 166 + + ID + 168 + Points + + {137.63899903134123, 178.72744702653475} + {184.64670676832134, 172.85147143049642} + + Style + + stroke + + Color + + b + 0 + g + 0 + r + 1 + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + FilledArrow + + + Tail + + ID + 163 + + + + Class + LineGraphic + ID + 65 + Points + + {184.73757399730547, 60.902253673954} + {184.73757399730547, 75.902256684314665} + {184.73757399730547, 89.902254544918179} + + Style + + stroke + + HeadArrow + 0 + Legacy + + LineType + 1 + TailArrow + 0 + + + + + Bounds + {{193.82787829118755, 75.902256684314665}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 9 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + VerticalPad + 0 + + + + Bounds + {{173.32347533849477, 75.902255989616009}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 8 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + VerticalPad + 0 + + + + Bounds + {{152.81907167739874, 75.902255989615895}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 7 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + VerticalPad + 0 + + + + Bounds + {{132.31466606783951, 75.902255989615782}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 6 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + VerticalPad + 0 + + + + Bounds + {{116.31466484952608, 75.902255526483344}, {16, 14}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 4 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red255\green0\blue0;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + VerticalPad + 0 + + + + Bounds + {{89.142859537691095, 60.902251800786466}, {147.83259582519531, 29}} + Class + ShapedGraphic + FitText + Vertical + Flow + Resize + ID + 3 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Pad + 0 + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs48 \cf0 a b a b} + VerticalPad + 0 + + + + Bounds + {{185.14284567353431, 159.78944396972656}, {79.999994381062834, 16}} + Class + ShapedGraphic + ID + 166 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0 + r + 1 + + CornerRadius + 3 + + + + + Bounds + {{57.142865745065421, 175.78947448730469}, {79.999994381062834, 16}} + Class + ShapedGraphic + ID + 163 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Color + + b + 0 + g + 0 + r + 1 + + CornerRadius + 3 + + + + + Bounds + {{121.14285219927552, 191.78948786775334}, {16, 16}} + Class + ShapedGraphic + ID + 162 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{105.14284985203187, 191.78949756168254}, {16, 16}} + Class + ShapedGraphic + ID + 161 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{89.142852575525325, 191.789490163854}, {16, 16}} + Class + ShapedGraphic + ID + 160 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{73.142852575525026, 191.78948714985768}, {16, 16}} + Class + ShapedGraphic + ID + 159 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{57.142855299018564, 191.78947975202914}, {16, 16}} + Class + ShapedGraphic + ID + 158 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{121.14285873491343, 175.78953598223654}, {16, 16}} + Class + ShapedGraphic + ID + 156 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{105.14285638766967, 175.78954567616574}, {16, 16}} + Class + ShapedGraphic + ID + 155 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{89.142859111163119, 175.7895382783372}, {16, 16}} + Class + ShapedGraphic + ID + 154 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{73.142859111162934, 175.78953526434088}, {16, 16}} + Class + ShapedGraphic + ID + 153 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{57.142861834656415, 175.78952786651234}, {16, 16}} + Class + ShapedGraphic + ID + 152 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{121.14286012612826, 159.78950225169831}, {16, 16}} + Class + ShapedGraphic + ID + 151 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{105.14285777888449, 159.7895119456274}, {16, 16}} + Class + ShapedGraphic + ID + 150 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{89.142860502377943, 159.78950454779886}, {16, 16}} + Class + ShapedGraphic + ID + 149 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{73.142860502377758, 159.78950153380254}, {16, 16}} + Class + ShapedGraphic + ID + 148 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{57.142863225871181, 159.789494135974}, {16, 16}} + Class + ShapedGraphic + ID + 147 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{121.14285770264581, 143.78948854435816}, {16, 16}} + Class + ShapedGraphic + ID + 146 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{105.14285535540205, 143.78949823828736}, {16, 16}} + Class + ShapedGraphic + ID + 145 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{89.1428580788955, 143.78949084045883}, {16, 16}} + Class + ShapedGraphic + ID + 144 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{73.142858078895316, 143.7894878264625}, {16, 16}} + Class + ShapedGraphic + ID + 143 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{57.142860802388739, 143.78948042863396}, {16, 16}} + Class + ShapedGraphic + ID + 142 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{121.14286012612826, 127.78948854435804}, {16, 16}} + Class + ShapedGraphic + ID + 141 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{105.14285777888449, 127.78949823828724}, {16, 16}} + Class + ShapedGraphic + ID + 140 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{89.142860502377943, 127.78949084045881}, {16, 16}} + Class + ShapedGraphic + ID + 139 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{73.142860502377758, 127.78948782646238}, {16, 16}} + Class + ShapedGraphic + ID + 138 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{57.142863225871181, 127.78948042863395}, {16, 16}} + Class + ShapedGraphic + ID + 137 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{121.1428577026457, 111.78947483701785}, {16, 16}} + Class + ShapedGraphic + ID + 136 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + + + + Bounds + {{105.14285535540205, 111.78948453094705}, {16, 16}} + Class + ShapedGraphic + ID + 135 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + + + + Bounds + {{89.1428580788955, 111.78947713311862}, {16, 16}} + Class + ShapedGraphic + ID + 134 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + + + + Bounds + {{73.142858078895316, 111.78947411912219}, {16, 16}} + Class + ShapedGraphic + ID + 133 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + + + + Bounds + {{57.142860802388739, 111.78946672129376}, {16, 16}} + Class + ShapedGraphic + ID + 132 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + + + + Bounds + {{249.14285925605898, 175.78949920576804}, {16, 16}} + Class + ShapedGraphic + ID + 120 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{233.14285690881545, 175.78950889969724}, {16, 16}} + Class + ShapedGraphic + ID + 119 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{217.14285963230898, 175.7895015018687}, {16, 16}} + Class + ShapedGraphic + ID + 118 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{201.14285963230898, 175.78949848787238}, {16, 16}} + Class + ShapedGraphic + ID + 117 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{185.14286235580281, 175.78949109004384}, {16, 16}} + Class + ShapedGraphic + ID + 116 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{249.14286064727392, 159.78946547522969}, {16, 16}} + Class + ShapedGraphic + ID + 115 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{233.14285830003016, 159.78947516915889}, {16, 16}} + Class + ShapedGraphic + ID + 114 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{217.14286102352369, 159.78946777133035}, {16, 16}} + Class + ShapedGraphic + ID + 113 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{201.14286102352392, 159.78946475733403}, {16, 16}} + Class + ShapedGraphic + ID + 112 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{185.14286374701751, 159.78945735950549}, {16, 16}} + Class + ShapedGraphic + ID + 111 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{249.14285822379136, 143.78945176788955}, {16, 16}} + Class + ShapedGraphic + ID + 110 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{233.14285587654783, 143.78946146181875}, {16, 16}} + Class + ShapedGraphic + ID + 109 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{217.14285860004136, 143.78945406399021}, {16, 16}} + Class + ShapedGraphic + ID + 108 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{201.14285860004136, 143.78945104999389}, {16, 16}} + Class + ShapedGraphic + ID + 107 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{185.14286132353519, 143.78944365216535}, {16, 16}} + Class + ShapedGraphic + ID + 106 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\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 0} + + + + Bounds + {{249.14286064727392, 127.78945176788953}, {16, 16}} + Class + ShapedGraphic + ID + 105 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{233.14285830003016, 127.78946146181873}, {16, 16}} + Class + ShapedGraphic + ID + 104 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{217.14286102352369, 127.78945406399019}, {16, 16}} + Class + ShapedGraphic + ID + 103 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{201.14286102352392, 127.78945104999387}, {16, 16}} + Class + ShapedGraphic + ID + 102 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{185.14286374701751, 127.78944365216533}, {16, 16}} + Class + ShapedGraphic + ID + 101 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 1} + + + + Bounds + {{249.14285822379136, 111.78943806054941}, {16, 16}} + Class + ShapedGraphic + ID + 100 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 4} + + + + Bounds + {{233.14285587654783, 111.78944775447862}, {16, 16}} + Class + ShapedGraphic + ID + 99 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 3} + + + + Bounds + {{217.14285860004136, 111.78944035665008}, {16, 16}} + Class + ShapedGraphic + ID + 98 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 2} + + + + Bounds + {{201.14285860004136, 111.78943734265376}, {16, 16}} + Class + ShapedGraphic + ID + 97 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 1} + + + + Bounds + {{185.14286132353519, 111.78942994482522}, {16, 16}} + Class + ShapedGraphic + ID + 95 + Shape + Rectangle + Style + + shadow + + Draws + NO + + stroke + + Width + 0.5 + + + Text + + Text + {\rtf1\ansi\ansicpg932\cocoartf1347\cocoasubrtf570 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red200\green44\blue44;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf2 0} + + + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + レイヤー 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + キャンバス 8 + UniqueID + 8 + VPages + 1 + + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559, 783}} Class SolidGraphic ID @@ -10920,8 +14883,8 @@ 49 Points - {163.6573185167029, 47.60201286540677} - {163.65878862002339, 70.466511628354411} + {163.6567409600718, 47.602012865194503} + {163.6567409600718, 70.466511608727714} Style @@ -12208,7 +16171,7 @@ BackgroundGraphic Bounds - {{0, 0}, {559.00000476837158, 783}} + {{0, 0}, {559, 783}} Class SolidGraphic ID @@ -13202,8 +17165,8 @@ 73 Points - {288.57832685109383, 417.7647193398646} - {330.62033477525114, 417.7647193398646} + {288.57832685109207, 417.7647193398646} + {330.62033477510175, 417.7647193398646} Style @@ -13237,8 +17200,8 @@ 72 Points - {188.14693096836081, 417.76472225377989} - {230.18892641247464, 417.76472225377989} + {188.14693096836226, 417.76472225377989} + {230.18892641259816, 417.76472225377989} Style @@ -14469,8 +18432,6 @@ - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14506,8 +18467,6 @@ - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14543,8 +18502,6 @@ - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14578,8 +18535,6 @@ \f0\fs24 \cf0 c} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14613,8 +18568,6 @@ \f0\fs24 \cf0 b} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14648,8 +18601,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14683,8 +18634,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14718,8 +18667,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14753,8 +18700,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14788,8 +18733,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14823,8 +18766,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14858,8 +18799,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14893,8 +18832,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14928,8 +18865,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14963,8 +18898,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -14998,8 +18931,6 @@ \f0\fs24 \cf0 a} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15033,8 +18964,6 @@ \f0\fs24 \cf0 a} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15068,8 +18997,6 @@ \f0\fs24 \cf0 a} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15103,8 +19030,6 @@ \f0\fs24 \cf0 c} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15138,8 +19063,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15173,8 +19096,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15208,8 +19129,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15243,8 +19162,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15278,8 +19195,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15313,8 +19228,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15348,8 +19261,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15383,8 +19294,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15418,8 +19327,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15453,8 +19360,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15488,8 +19393,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15523,8 +19426,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15558,8 +19459,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15593,8 +19492,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15628,8 +19525,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15663,8 +19558,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15698,8 +19591,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15733,8 +19624,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15768,8 +19657,6 @@ \f0\fs24 \cf0 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15803,8 +19690,6 @@ \f0\fs24 \cf0 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15838,8 +19723,6 @@ \f0\fs24 \cf2 4} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15873,8 +19756,6 @@ \f0\fs24 \cf2 3} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15908,8 +19789,6 @@ \f0\fs24 \cf2 2} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15943,8 +19822,6 @@ \f0\fs24 \cf2 1} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -15978,8 +19855,6 @@ \f0\fs24 \cf2 0} - TextRelativeArea - {{0, 0}, {1, 1}} Bounds @@ -16307,6 +20182,94 @@ VPages 1 + + ActiveLayerIndex + 0 + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {559, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + DisplayScale + 1 0/72 in = 1.0000 in + GraphicsList + + GridInfo + + HPages + 1 + KeepToScale + + Layers + + + Lock + NO + Name + レイヤー 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + Orientation + 2 + PrintOnePage + + RowAlign + 1 + RowSpacing + 36 + SheetTitle + parser + UniqueID + 9 + VPages + 1 + SmartAlignmentGuidesActive YES @@ -16317,16 +20280,11 @@ WindowInfo CurrentSheet - 6 + 8 ExpandedCanvases - - - name - 基本三演算 - - + Frame - {{-1508, 359}, {1211, 982}} + {{691, 118}, {1211, 982}} ListView OutlineWidth @@ -16340,9 +20298,9 @@ SidebarWidth 120 VisibleRegion - {{27.865612963336595, 259.28854048154335}, {425.29644749716556, 332.01581403124453}} + {{0, 0}, {395.58823113313599, 308.82352616341473}} Zoom - 2.5299999713897705 + 2.7200000286102295 ZoomValues @@ -16367,8 +20325,8 @@ abab - 1.4299999475479126 - 1.5 + 1.3300000429153442 + 1.2599999904632568 bmabab @@ -16380,6 +20338,16 @@ 2.5299999713897705 2.4900000095367432 + + キャンバス 8 + 2.7200000286102295 + 2.630000114440918 + + + parser + 2.7200000286102295 + 1 + diff -r 33f5506858bd -r 0bec56f5c23f 2015/images/vector/ababautomata.pdf Binary file 2015/images/vector/ababautomata.pdf has changed diff -r 33f5506858bd -r 0bec56f5c23f 2015/images/vector/ababautomata.svg --- a/2015/images/vector/ababautomata.svg Tue Jun 02 17:08:31 2015 +0900 +++ b/2015/images/vector/ababautomata.svg Tue Jun 09 17:13:09 2015 +0900 @@ -1,5 +1,5 @@ - + @@ -38,85 +38,398 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - + - - - + + + + + + + + + + + + + + + + - + + + + + + + + + - - - - + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + + + + + + + + + + + + + - + + + + + + + + + - + + + + + - + + + + + - - - - - - + + + + + + + + + - + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + - + + + + + + + + + + + + + - + + + + - - - + + + + + + + +