Mercurial > hg > Members > masakoha > seminar
changeset 28:0bec56f5c23f
add 0609
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 09 Jun 2015 17:13:09 +0900 |
parents | 33f5506858bd |
children | 39f9309334f9 |
files | 2015/0602.html 2015/0609.html 2015/images/omni/automata.graffle 2015/images/vector/ababautomata.pdf 2015/images/vector/ababautomata.svg |
diffstat | 5 files changed, 4987 insertions(+), 252 deletions(-) [+] |
line wrap: on
line diff
--- /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 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="content-type" content="text/html;charset=utf-8"> + <title>seminar</title> + +<!-- + Notes on CSS media types used: + + 1) projection -> slideshow mode (display one slide at-a-time; hide all others) + 2) screen -> outline mode (display all slides-at-once on screen) + 3) print -> print (and print preview) + + Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key + + Questions, comments? + - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow +--> + +<!-- styles --> +<style media="screen,projection"> + +html, +body, +.presentation { margin: 0; padding: 0; } + +.slide { display: none; + position: absolute; + top: 0; left: 0; + margin: 0; + border: none; + padding: 2% 4% 0% 4%; /* css note: order is => top right bottom left */ + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 100%; height: 100%; /* css note: lets use border-box; no need to add padding+border to get to 100% */ + overflow-x: hidden; overflow-y: auto; + z-index: 2; + } + +.slide.current { display: block; } /* only display current slide in projection mode */ + +.slide .stepcurrent { color: black; } +.slide .step { color: silver; } /* or hide next steps e.g. .step { visibility: hidden; } */ + +.slide { +/* + background-image: -webkit-linear-gradient(top, blue, aqua, blue, aqua); + background-image: -moz-linear-gradient(top, blue, aqua, blue, aqua); +*/ +} +</style> + +<style media="screen"> +.slide { border-top: 1px solid #888; } +.slide:first-child { border: none; } +</style> + +<style media="print"> +.slide { page-break-inside: avoid; } +.slide h1 { page-break-after: avoid; } +.slide ul { page-break-inside: avoid; } +</style> + + +<!-- add js lib (jquery) --> +<script src="js/jquery-1.7.min.js"></script> + +<!-- S6 JS --> +<script src="js/jquery.slideshow.js"></script> +<script src="js/jquery.slideshow.counter.js"></script> +<script src="js/jquery.slideshow.controls.js"></script> +<script> + $(document).ready( function() { + Slideshow.init(); + + // Example 2: Start Off in Outline Mode + // Slideshow.init( { mode: 'outline' } ); + + // Example 3: Use Custom Transition + // Slideshow.transition = transitionScrollUp; + // Slideshow.init(); + + // Example 4: Start Off in Autoplay Mode with Custom Transition + // Slideshow.transition = transitionScrollUp; + // Slideshow.init( { mode: 'autoplay' } ); + } ); +</script> + +</head> +<body> + +<div class="presentation"> + + <div class='slide cover'> + <table width="90%" height="90%" border="0" align="center"> + <tr> + <td><div align="center"> + <h1>Cerium 上での正規表現の実装</h1> + </div> + </td> + </tr> + <tr> + <td><div align="right"> + <name>Masataka Kohagura 2nd, June , 2015</name> + </div></td> + </tr> + </tr> + </table> + </div> + + <div id="cover"> + <h1>研究目的</h1> + <ul> + <li> + 当研究室では並列プログラミングフレームワーク Cerium Task Manager でプログラミングを行っている。 + </li> + <li> + + </li> + <li> + </li> + <li> + </li> + </ul> + </div> + + + <div id="cover"> + <h1>正規表現を有限オートマトンで書いてみる</h1> + 例題 : (a|aa|aaa)*b + <ul> + <object data="images/vector/automata.svg" type="image/svg+xml"></object><br> + </ul> + 非決定性オートマトンから subset Constraction + <ul> + <object data="images/vector/dfa2tosubset.svg" type="image/svg+xml"></object><br> + </ul> + </div> + + <div id="cover"> + <h1>正規表現を有限オートマトンで書いてみる</h1> + 例題 : ab(ab)+ + <ul> + <object data="images/vector/abab.svg" type="image/svg+xml"></object><br> + </ul> + テキストが abab の途中で分割される場合を考える + <ul> + <object data="images/vector/ababautomata.svg" type="image/svg+xml"></object><br> + </ul> + 分割されたファイルの1コ前の終わりが状態(3)の場合で、分割されたファイルの先頭が b の場合状態(4)に遷移して受理される。(正規表現にマッチする) + <ul> + <object data="images/vector/ababtable.svg" type="image/svg+xml"></object><br> + </ul> + <ul> + <object data="images/vector/bitvectorTable.svg" type="image/svg+xml"></object><br> + </ul> + </div> + + <div id="cover"> + <h1>状態を bit列で表現</h1> + 状態をビットで表現するため、bitSet を実装した。 + + <pre> + <code> + +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; +} + + </code> + </ul> +</pre> + </div> + + + <div id="cover"> + <h1>次にやること</h1> + bitVector を生成するため、正規表現の parser を記述する + </div> + + +<!-- + <div id="cover"> + <h1>prog</h1> + <ul> + <li> + + </li> + + <pre> + <code> +typedef struct SDL_AudioSpec { + int freq; /** DSP frequency samples per second */ + Uint16 format; /** Audio data format */ + Uint8 channels; /** Number of channels: 1 mono, 2 stereo */ + Uint8 silence; /** Audio buffer silence value (calculated) */ + Uint16 samples; /** Audio buffer size in samples (power of 2) */ + Uint16 padding; /** Necessary for some compile environments */ + Uint32 size; /** Audio buffer size in bytes (calculated) */ + void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len); + void *userdata; +} SDL_AudioSpec; + </code> + </ul> +</pre> + <img src="./images/sqrWave.png" width="50%" height=""> + </div> + +--> + +</div> <!-- presentation --> +</body> +</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 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="content-type" content="text/html;charset=utf-8"> + <title>seminar</title> + +<!-- + Notes on CSS media types used: + + 1) projection -> slideshow mode (display one slide at-a-time; hide all others) + 2) screen -> outline mode (display all slides-at-once on screen) + 3) print -> print (and print preview) + + Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key + + Questions, comments? + - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow +--> + +<!-- styles --> +<style media="screen,projection"> + +html, +body, +.presentation { margin: 0; padding: 0; } + +.slide { display: none; + position: absolute; + top: 0; left: 0; + margin: 0; + border: none; + padding: 2% 4% 0% 4%; /* css note: order is => top right bottom left */ + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 100%; height: 100%; /* css note: lets use border-box; no need to add padding+border to get to 100% */ + overflow-x: hidden; overflow-y: auto; + z-index: 2; + } + +.slide.current { display: block; } /* only display current slide in projection mode */ + +.slide .stepcurrent { color: black; } +.slide .step { color: silver; } /* or hide next steps e.g. .step { visibility: hidden; } */ + +.slide { +/* + background-image: -webkit-linear-gradient(top, blue, aqua, blue, aqua); + background-image: -moz-linear-gradient(top, blue, aqua, blue, aqua); +*/ +} +</style> + +<style media="screen"> +.slide { border-top: 1px solid #888; } +.slide:first-child { border: none; } +</style> + +<style media="print"> +.slide { page-break-inside: avoid; } +.slide h1 { page-break-after: avoid; } +.slide ul { page-break-inside: avoid; } +</style> + + +<!-- add js lib (jquery) --> +<script src="js/jquery-1.7.min.js"></script> + +<!-- S6 JS --> +<script src="js/jquery.slideshow.js"></script> +<script src="js/jquery.slideshow.counter.js"></script> +<script src="js/jquery.slideshow.controls.js"></script> +<script> + $(document).ready( function() { + Slideshow.init(); + + // Example 2: Start Off in Outline Mode + // Slideshow.init( { mode: 'outline' } ); + + // Example 3: Use Custom Transition + // Slideshow.transition = transitionScrollUp; + // Slideshow.init(); + + // Example 4: Start Off in Autoplay Mode with Custom Transition + // Slideshow.transition = transitionScrollUp; + // Slideshow.init( { mode: 'autoplay' } ); + } ); +</script> + +</head> +<body> + +<div class="presentation"> + + <div class='slide cover'> + <table width="90%" height="90%" border="0" align="center"> + <tr> + <td><div align="center"> + <h1>Cerium 上での正規表現の実装</h1> + </div> + </td> + </tr> + <tr> + <td><div align="right"> + <name>Masataka Kohagura 2nd, June , 2015</name> + </div></td> + </tr> + </tr> + </table> + </div> + + <div id="cover"> + <h1>研究目的</h1> + <ul> + <li> + 当研究室では並列プログラミングフレームワーク Cerium Task Manager でプログラミングを行っている。 + </li> + <li> + + </li> + <li> + </li> + <li> + </li> + </ul> + </div> + + + <div id="cover"> + <h1>正規表現を有限オートマトンで書いてみる</h1> + 例題 : (a|aa|aaa)*b + <ul> + <object data="images/vector/automata.svg" type="image/svg+xml"></object><br> + </ul> + 非決定性オートマトンから subset Constraction + <ul> + <object data="images/vector/dfa2tosubset.svg" type="image/svg+xml"></object><br> + </ul> + </div> + + <div id="cover"> + <h1>正規表現を有限オートマトンで書いてみる</h1> + 例題 : ab(ab)+ + <ul> + <object data="images/vector/abab.svg" type="image/svg+xml"></object><br> + </ul> + テキストが abab の途中で分割される場合を考える + <ul> + <object data="images/vector/ababautomata.svg" type="image/svg+xml"></object><br> + </ul> + 分割されたファイルの1コ前の終わりが状態(3)の場合で、分割されたファイルの先頭が b の場合状態(4)に遷移して受理される。(正規表現にマッチする) + <ul> + <object data="images/vector/ababtable.svg" type="image/svg+xml"></object><br> + </ul> + <ul> + <object data="images/vector/bitvectorTable.svg" type="image/svg+xml"></object><br> + </ul> + </div> + + <div id="cover"> + <h1>状態を bit列で表現</h1> + 状態をビットで表現するため、bitSet を実装した。 + + <pre> + <code> + +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; +} + + </code> + </ul> +</pre> + </div> + + + <div id="cover"> + <h1>次にやること</h1> + bitVector を生成するため、正規表現の parser を記述する + </div> + + +<!-- + <div id="cover"> + <h1>prog</h1> + <ul> + <li> + + </li> + + <pre> + <code> +typedef struct SDL_AudioSpec { + int freq; /** DSP frequency samples per second */ + Uint16 format; /** Audio data format */ + Uint8 channels; /** Number of channels: 1 mono, 2 stereo */ + Uint8 silence; /** Audio buffer silence value (calculated) */ + Uint16 samples; /** Audio buffer size in samples (power of 2) */ + Uint16 padding; /** Necessary for some compile environments */ + Uint32 size; /** Audio buffer size in bytes (calculated) */ + void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len); + void *userdata; +} SDL_AudioSpec; + </code> + </ul> +</pre> + <img src="./images/sqrWave.png" width="50%" height=""> + </div> + +--> + +</div> <!-- presentation --> +</body> +</html>
--- 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 @@ <key>MasterSheets</key> <array/> <key>ModificationDate</key> - <string>2015-05-19 10:45:03 +0000</string> + <string>2015-06-08 09:50:00 +0000</string> <key>Modifier</key> <string>MasaKoha</string> <key>NotesVisible</key> @@ -55,7 +55,7 @@ <key>NSPaperSize</key> <array> <string>size</string> - <string>{595.00000476837158, 842}</string> + <string>{595, 842}</string> </array> <key>NSPrintReverseOrientation</key> <array> @@ -85,7 +85,7 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {559, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -220,8 +220,8 @@ <integer>76</integer> <key>Points</key> <array> - <string>{332.94626920779024, 421.43514714775108}</string> - <string>{383.05388878271509, 382.06505341246304}</string> + <string>{332.94623396038673, 421.4351024028096}</string> + <string>{383.05376715391327, 382.06489901173973}</string> </array> <key>Style</key> <dict> @@ -255,8 +255,8 @@ <integer>75</integer> <key>Points</key> <array> - <string>{332.83700839955782, 309.70259713594965}</string> - <string>{383.16291406628415, 349.7974999357881}</string> + <string>{332.83702560833888, 309.7025755908582}</string> + <string>{383.162973859705, 349.79742507514226}</string> </array> <key>Style</key> <dict> @@ -671,8 +671,8 @@ <integer>50</integer> <key>Points</key> <array> - <string>{235.50687163405539, 381.32644773366729}</string> - <string>{291.49311574084857, 422.17356952575943}</string> + <string>{235.50687432532268, 381.326444054511}</string> + <string>{291.49312560471361, 422.17355604113447}</string> </array> <key>Style</key> <dict> @@ -1391,7 +1391,7 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {559, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -2246,7 +2246,7 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {559, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -2905,8 +2905,8 @@ <integer>77</integer> <key>Points</key> <array> - <string>{330.23181884496449, 133.74028188299729}</string> - <string>{405.76959910769057, 162.27570868118144}</string> + <string>{330.23153376034867, 133.74103785328964}</string> + <string>{405.7684768979035, 162.27868377254913}</string> </array> <key>Style</key> <dict> @@ -2940,8 +2940,8 @@ <integer>76</integer> <key>Points</key> <array> - <string>{329.93842406321596, 207.84616637856232}</string> - <string>{405.56297194516981, 181.15778350106811}</string> + <string>{329.93814229934702, 207.84536622643648}</string> + <string>{405.56186838678565, 181.15465057808274}</string> </array> <key>Style</key> <dict> @@ -2975,8 +2975,8 @@ <integer>75</integer> <key>Points</key> <array> - <string>{202.43703150011572, 181.1577830274471}</string> - <string>{278.05752933678815, 207.85768410402997}</string> + <string>{202.4381350126894, 181.15465009491055}</string> + <string>{278.06184658453299, 207.84541570376098}</string> </array> <key>Style</key> <dict> @@ -3010,8 +3010,8 @@ <integer>74</integer> <key>Points</key> <array> - <string>{202.25546777831687, 162.34239719310079}</string> - <string>{278.73919910059567, 133.66306692293301}</string> + <string>{202.25653823185752, 162.34525745520864}</string> + <string>{278.74344503037315, 133.67442231050984}</string> </array> <key>Style</key> <dict> @@ -3879,7 +3879,7 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {559, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -4489,8 +4489,8 @@ <integer>74</integer> <key>Points</key> <array> - <string>{328.59573455919877, 537.72421122562218}</string> - <string>{378.40426544080174, 555.27578877437725}</string> + <string>{328.5957345591986, 537.72421122562241}</string> + <string>{378.40426544080128, 555.27578877437759}</string> </array> <key>Style</key> <dict> @@ -4559,8 +4559,8 @@ <integer>72</integer> <key>Points</key> <array> - <string>{224.21564349058116, 503.13649408266446}</string> - <string>{272.78435650941861, 518.86350591733571}</string> + <string>{224.21564349058119, 503.13649408266446}</string> + <string>{272.78435650941873, 518.86350591733571}</string> </array> <key>Style</key> <dict> @@ -4809,8 +4809,8 @@ <integer>64</integer> <key>Points</key> <array> - <string>{111.50000901605497, 493.99998192024429}</string> - <string>{163.49998398370036, 493.99998192024429}</string> + <string>{111.50000901605739, 493.99998192024429}</string> + <string>{163.49998398395326, 493.99998192024429}</string> </array> <key>Style</key> <dict> @@ -5382,8 +5382,8 @@ <integer>48</integer> <key>Points</key> <array> - <string>{101.06079622204659, 178.65697884555848}</string> - <string>{161.40745125733707, 303.35842627500784}</string> + <string>{101.06414411662574, 178.65535812206454}</string> + <string>{161.43584975936676, 303.34464484335035}</string> </array> <key>Style</key> <dict> @@ -5522,8 +5522,8 @@ <integer>44</integer> <key>Points</key> <array> - <string>{105.8527469377333, 175.30632388531663}</string> - <string>{156.54784725488111, 227.79046812985831}</string> + <string>{105.86949151575111, 175.29011927926595}</string> + <string>{156.63034175087424, 227.71004228213434}</string> </array> <key>Style</key> <dict> @@ -5662,8 +5662,8 @@ <integer>40</integer> <key>Points</key> <array> - <string>{187.99973596794496, 83.100816620860073}</string> - <string>{227.50267519207952, 83.316092820126812}</string> + <string>{188.00000898868086, 83.001043530602345}</string> + <string>{227.4999912748554, 83.003271607374231}</string> </array> <key>Style</key> <dict> @@ -5697,8 +5697,8 @@ <integer>39</integer> <key>Points</key> <array> - <string>{105.88019247986075, 148.72026207343632}</string> - <string>{156.68338351393629, 96.341148654087363}</string> + <string>{105.86953523110436, 148.70992749156096}</string> + <string>{156.63057099298211, 96.290175436464281}</string> </array> <key>Style</key> <dict> @@ -6154,7 +6154,7 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {1118, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -6187,7 +6187,1600 @@ <array> <dict> <key>Bounds</key> - <string>{{15.133046930567234, 360.43613278830304}, {101.16651066633608, 18}}</string> + <string>{{287.68911911198154, 238.54360804058561}, {22.981204785542502, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>167</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{215.77957298106921, 282.38572452980929}, {22.981204785542502, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>166</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{293.89338567722882, 287.64886983986224}, {10.572687313505725, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>165</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{144.26933035479854, 282.38571211495264}, {10.572687313505725, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>164</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{55.562566106218959, 284.64135113991392}, {22.981204785542502, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>163</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.17036505212013, 468.95312871726929}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>162</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248.17036270487648, 468.95313841119849}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>161</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{232.17036542836993, 468.95313101336995}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>160</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{216.17036542836965, 468.95312799937363}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>159</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.17036815186319, 468.95312060154509}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>158</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{90.457607080645914, 393.56143057431717}, {101.16651066633608, 18}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>157</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.17037158775804, 452.9531768317525}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>156</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248.17036924051428, 452.9531865256817}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>155</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{232.17037196400773, 452.95317912785316}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>154</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{216.17037196400756, 452.95317611385684}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>153</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.17037468750104, 452.9531687160283}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>152</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.17037297897286, 436.95314310121427}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>151</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248.1703706317291, 436.95315279514335}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>150</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{232.17037335522255, 436.95314539731481}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>149</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{216.17037335522238, 436.95314238331849}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>148</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.1703760787158, 436.95313498548995}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>147</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.17037055549042, 420.95312939387412}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>146</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248.17036820824666, 420.95313908780332}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>145</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{232.17037093174011, 420.95313168997478}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>144</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{216.17037093173994, 420.95312867597846}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>143</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.17037365523336, 420.95312127814992}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>142</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.17037297897286, 404.95312939387401}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>141</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248.1703706317291, 404.95313908780321}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>140</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{232.17037335522255, 404.95313168997478}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>139</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{216.17037335522238, 404.95312867597835}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>138</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.1703760787158, 404.95312127814992}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>137</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{264.17037055549031, 388.95311568653386}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>136</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248.17036820824666, 388.95312538046306}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>135</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{232.17037093174011, 388.95311798263464}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>134</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{216.17037093173994, 388.9531149686382}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>133</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.17037365523336, 388.95310757080978}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>132</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>125</integer> + </dict> + <key>ID</key> + <integer>131</integer> + <key>Points</key> + <array> + <string>{328.91795109309516, 294.03664765640787}</string> + <string>{302.54408287857405, 263.17774377725345}</string> + <string>{283.15947237262571, 263.17774377725345}</string> + <string>{272.04206026997468, 290.9237443849911}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>126</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>126</integer> + </dict> + <key>ID</key> + <integer>130</integer> + <key>Points</key> + <array> + <string>{283.65948135385293, 308.10080896959363}</string> + <string>{322.43801001967842, 308.10080896959363}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>125</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>125</integer> + </dict> + <key>ID</key> + <integer>129</integer> + <key>Points</key> + <array> + <string>{207.88091810617743, 308.10079866867426}</string> + <string>{246.65946337406825, 308.10079866867426}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>124</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>124</integer> + </dict> + <key>ID</key> + <integer>128</integer> + <key>Points</key> + <array> + <string>{132.10235628282467, 308.10081150332843}</string> + <string>{170.88090012741327, 308.10081150332843}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>123</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>123</integer> + </dict> + <key>ID</key> + <integer>127</integer> + <key>Points</key> + <array> + <string>{56.323798211473118, 308.10081019743137}</string> + <string>{95.102338321384636, 308.10081019743137}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>122</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{322.93801900091637, 290.10080074807064}, {36, 36}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>126</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{247.15947237262566, 290.10078938605892}, {36, 36}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>125</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{171.38090910761829, 290.10080074806939}, {36, 36}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>124</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{95.602347302619364, 290.1008216878634}, {36, 36}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>123</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{19.823789230236741, 290.10082168786283}, {36, 36}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>122</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{409.77057002372442, 414.82228445102697}, {101.16651066633608, 18}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -6233,7 +7826,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{184.25991014998112, 422.56704319295386}, {16, 16}}</string> + <string>{{578.89743324313758, 476.95319485567785}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6266,7 +7859,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{168.25990780273747, 422.56705288688306}, {16, 16}}</string> + <string>{{562.8974308958941, 476.95320454960705}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6299,7 +7892,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{152.25991052623101, 422.56704548905452}, {16, 16}}</string> + <string>{{546.89743361938758, 476.95319715177851}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6332,7 +7925,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{136.25991052623101, 422.5670424750582}, {16, 16}}</string> + <string>{{530.89743361938758, 476.95319413778219}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6365,7 +7958,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{120.25991324972458, 422.56703507722966}, {16, 16}}</string> + <string>{{514.89743634288141, 476.95318673995365}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6398,7 +7991,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{184.25991154119595, 406.56700946241557}, {16, 16}}</string> + <string>{{578.89743463435252, 460.9531611251395}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6431,7 +8024,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{168.2599091939523, 406.56701915634477}, {16, 16}}</string> + <string>{{562.89743228710881, 460.9531708190687}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6464,7 +8057,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{152.25991191744583, 406.56701175851623}, {16, 16}}</string> + <string>{{546.89743501060229, 460.95316342124016}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6497,7 +8090,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{136.25991191744583, 406.56700874451991}, {16, 16}}</string> + <string>{{530.89743501060252, 460.95316040724384}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6530,7 +8123,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{120.25991464093937, 406.56700134669137}, {16, 16}}</string> + <string>{{514.89743773409612, 460.9531530094153}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6563,7 +8156,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{184.25990911771351, 390.56699575507542}, {16, 16}}</string> + <string>{{578.89743221086997, 444.95314741779936}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6596,7 +8189,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{168.25990677046985, 390.56700544900463}, {16, 16}}</string> + <string>{{562.89742986362648, 444.95315711172856}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6629,7 +8222,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{152.25990949396339, 390.56699805117609}, {16, 16}}</string> + <string>{{546.89743258711997, 444.95314971390002}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6662,7 +8255,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{136.25990949396339, 390.56699503717977}, {16, 16}}</string> + <string>{{530.89743258711997, 444.9531466999037}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6695,7 +8288,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{120.25991221745693, 390.56698763935123}, {16, 16}}</string> + <string>{{514.89743531061379, 444.95313930207516}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6728,7 +8321,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{184.25991154119595, 374.56699575507537}, {16, 16}}</string> + <string>{{578.89743463435252, 428.95314741779936}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6761,7 +8354,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{168.2599091939523, 374.56700544900457}, {16, 16}}</string> + <string>{{562.89743228710881, 428.95315711172856}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6794,7 +8387,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{152.25991191744583, 374.56699805117609}, {16, 16}}</string> + <string>{{546.89743501060229, 428.95314971390002}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6827,7 +8420,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{136.25991191744583, 374.56699503717971}, {16, 16}}</string> + <string>{{530.89743501060252, 428.9531466999037}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6860,7 +8453,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{120.25991464093937, 374.56698763935123}, {16, 16}}</string> + <string>{{514.89743773409612, 428.95313930207516}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6893,7 +8486,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{184.25990911771348, 358.56698204773522}, {16, 16}}</string> + <string>{{578.89743221086997, 412.95313371045921}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6926,7 +8519,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{168.25990677046985, 358.56699174166442}, {16, 16}}</string> + <string>{{562.89742986362648, 412.95314340438841}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6959,7 +8552,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{152.25990949396339, 358.56698434383594}, {16, 16}}</string> + <string>{{546.89743258711997, 412.95313600655987}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -6992,7 +8585,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{136.25990949396339, 358.56698132983956}, {16, 16}}</string> + <string>{{530.89743258711997, 412.95313299256355}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7025,7 +8618,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{120.25991221745693, 358.56697393201108}, {16, 16}}</string> + <string>{{514.89743531061379, 412.95312559473501}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7058,7 +8651,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{172.69713693565586, 252.66852293351559}, {11.654188857452198, 14}}</string> + <string>{{567.33466002881232, 307.05467459623952}, {11.654188857452198, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7104,7 +8697,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{158.81939181579395, 248.32599037628128}, {16, 16}}</string> + <string>{{553.45691490895047, 302.71214203900519}, {16, 16}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7144,7 +8737,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{199.52260964828611, 185.92510033738361}, {22.981204785542502, 14}}</string> + <string>{{594.16013274144257, 240.31125200010763}, {22.981204785542502, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7190,7 +8783,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{205.72687397529899, 240.77903356775883}, {10.572687313505725, 14}}</string> + <string>{{600.36439706845545, 295.16518523048268}, {10.572687313505725, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7236,7 +8829,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{185.462556624413, 223.17621338778099}, {10.572687313505725, 14}}</string> + <string>{{580.10007971756954, 277.56236505050492}, {10.572687313505725, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7282,7 +8875,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{131.73127873232735, 223.17621338778099}, {22.981204785542502, 14}}</string> + <string>{{526.36880182548407, 277.56236505050492}, {22.981204785542502, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7328,7 +8921,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{106.53421520122184, 276.21145606533719}, {22.981204785542502, 14}}</string> + <string>{{501.17173829437866, 330.59760772806118}, {22.981204785542502, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7374,7 +8967,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{105.7268731350573, 240.77904217209289}, {10.572687313505725, 14}}</string> + <string>{{500.36439622821399, 295.16519383481676}, {10.572687313505725, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7420,7 +9013,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{99.522614365632293, 211.45593925176553}, {22.981204785542502, 14}}</string> + <string>{{494.16013745878911, 265.84209091448952}, {22.981204785542502, 14}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>FitText</key> @@ -7476,8 +9069,8 @@ <integer>83</integer> <key>Points</key> <array> - <string>{192.75992668892712, 200.45595489333724}</string> - <string>{234.6189362355511, 200.45595489333724}</string> + <string>{587.39744978208375, 254.84210655606125}</string> + <string>{629.25645932870759, 254.84210655606125}</string> </array> <key>Style</key> <dict> @@ -7511,8 +9104,8 @@ <integer>82</integer> <key>Points</key> <array> - <string>{192.7599345525868, 256.32601093596094}</string> - <string>{234.61893669598206, 256.32601093596094}</string> + <string>{587.39745764574332, 310.71216259868487}</string> + <string>{629.25645978913883, 310.71216259868487}</string> </array> <key>Style</key> <dict> @@ -7546,8 +9139,8 @@ <integer>81</integer> <key>Points</key> <array> - <string>{84.110051188212125, 270.92222233608703}</string> - <string>{144.60247644288069, 309.02009772385861}</string> + <string>{478.74757428136922, 325.30837399881096}</string> + <string>{539.23999953603754, 363.4062493865826}</string> </array> <key>Style</key> <dict> @@ -7571,7 +9164,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{142.25992497554145, 300.88109305635635}, {36, 36}}</string> + <string>{{536.89744806869817, 355.26724471908034}, {36, 36}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7601,7 +9194,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{235.11894570773256, 238.32600982169441}, {36, 36}}</string> + <string>{{629.75646880088925, 292.71216148441835}, {36, 36}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7631,7 +9224,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{235.11894524460004, 182.45595325537423}, {36, 36}}</string> + <string>{{629.75646833775659, 236.84210491809824}, {36, 36}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7671,8 +9264,8 @@ <integer>77</integer> <key>Points</key> <array> - <string>{99.019843472221766, 256.32601100545992}</string> - <string>{127.75990253794716, 256.32601100545992}</string> + <string>{493.65736656537894, 310.71216266818391}</string> + <string>{522.39742563110372, 310.71216266818391}</string> </array> <key>Style</key> <dict> @@ -7706,9 +9299,9 @@ <integer>76</integer> <key>Points</key> <array> - <string>{142.13816880382609, 241.01830647515831}</string> - <string>{128.25991854084407, 229.29515611165553}</string> - <string>{142.94136591853791, 216.06386079000603}</string> + <string>{536.77569189698272, 295.40445813788222}</string> + <string>{522.89744163400064, 283.68130777437938}</string> + <string>{537.5788890116944, 270.45001245272999}</string> </array> <key>Style</key> <dict> @@ -7742,9 +9335,9 @@ <integer>75</integer> <key>Points</key> <array> - <string>{181.86460357254816, 214.2169068145906}</string> - <string>{204.84580835809066, 228.85462747359279}</string> - <string>{182.26120753104942, 242.7700158985709}</string> + <string>{576.50212666570496, 268.60305847731468}</string> + <string>{599.4833314512473, 283.24077913631669}</string> + <string>{576.89873062420611, 297.15616756129475}</string> </array> <key>Style</key> <dict> @@ -7778,8 +9371,8 @@ <integer>74</integer> <key>Points</key> <array> - <string>{85.736578422010467, 242.37470385837165}</string> - <string>{137.19656033817435, 213.42888973366072}</string> + <string>{480.37410151516758, 296.76085552109544}</string> + <string>{531.83408343133078, 267.81504139638486}</string> </array> <key>Style</key> <dict> @@ -7803,7 +9396,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{128.25991854084407, 238.32599966350566}, {64, 36}}</string> + <string>{{522.89744163400064, 292.7121513262295}, {64, 36}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -7833,7 +9426,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{128.25991067988329, 182.45594595820822}, {64, 36}}</string> + <string>{{522.89743377303989, 236.84209762093224}, {64, 36}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -8028,7 +9621,7 @@ </dict> <dict> <key>Bounds</key> - <string>{{23.348018340940147, 238.32599319194165}, {75.171806335449219, 36}}</string> + <string>{{417.98554143409729, 292.7121448546655}, {75.171806335449219, 36}}</string> <key>Class</key> <string>ShapedGraphic</string> <key>ID</key> @@ -8336,7 +9929,7 @@ <key>GridInfo</key> <dict/> <key>HPages</key> - <integer>1</integer> + <integer>2</integer> <key>KeepToScale</key> <false/> <key>Layers</key> @@ -8390,7 +9983,2377 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {559, 783}}</string> + <key>Class</key> + <string>SolidGraphic</string> + <key>ID</key> + <integer>2</integer> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + </dict> + <key>BaseZoom</key> + <integer>0</integer> + <key>CanvasOrigin</key> + <string>{0, 0}</string> + <key>ColumnAlign</key> + <integer>1</integer> + <key>ColumnSpacing</key> + <real>36</real> + <key>DisplayScale</key> + <string>1 0/72 in = 1.0000 in</string> + <key>GraphicsList</key> + <array> + <dict> + <key>Bounds</key> + <string>{{148.50290210323348, 157.78944219473544}, {24.632352682081887, 18}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>169</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>166</integer> + </dict> + <key>ID</key> + <integer>168</integer> + <key>Points</key> + <array> + <string>{137.63899903134123, 178.72744702653475}</string> + <string>{184.64670676832134, 172.85147143049642}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>Color</key> + <dict> + <key>b</key> + <string>0</string> + <key>g</key> + <string>0</string> + <key>r</key> + <string>1</string> + </dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>FilledArrow</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>163</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>ID</key> + <integer>65</integer> + <key>Points</key> + <array> + <string>{184.73757399730547, 60.902253673954}</string> + <string>{184.73757399730547, 75.902256684314665}</string> + <string>{184.73757399730547, 89.902254544918179}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>0</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{193.82787829118755, 75.902256684314665}, {16, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>9</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{173.32347533849477, 75.902255989616009}, {16, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>8</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{152.81907167739874, 75.902255989615895}, {16, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>7</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{132.31466606783951, 75.902255989615782}, {16, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>6</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{116.31466484952608, 75.902255526483344}, {16, 14}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>4</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.142859537691095, 60.902251800786466}, {147.83259582519531, 29}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>FitText</key> + <string>Vertical</string> + <key>Flow</key> + <string>Resize</string> + <key>ID</key> + <integer>3</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Pad</key> + <integer>0</integer> + <key>Text</key> + <string>{\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}</string> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{185.14284567353431, 159.78944396972656}, {79.999994381062834, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>166</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Color</key> + <dict> + <key>b</key> + <string>0</string> + <key>g</key> + <string>0</string> + <key>r</key> + <string>1</string> + </dict> + <key>CornerRadius</key> + <real>3</real> + </dict> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142865745065421, 175.78947448730469}, {79.999994381062834, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>163</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Color</key> + <dict> + <key>b</key> + <string>0</string> + <key>g</key> + <string>0</string> + <key>r</key> + <string>1</string> + </dict> + <key>CornerRadius</key> + <real>3</real> + </dict> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{121.14285219927552, 191.78948786775334}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>162</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{105.14284985203187, 191.78949756168254}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>161</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.142852575525325, 191.789490163854}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>160</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{73.142852575525026, 191.78948714985768}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>159</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142855299018564, 191.78947975202914}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>158</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{121.14285873491343, 175.78953598223654}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>156</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{105.14285638766967, 175.78954567616574}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>155</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.142859111163119, 175.7895382783372}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>154</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{73.142859111162934, 175.78953526434088}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>153</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142861834656415, 175.78952786651234}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>152</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{121.14286012612826, 159.78950225169831}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>151</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{105.14285777888449, 159.7895119456274}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>150</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.142860502377943, 159.78950454779886}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>149</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{73.142860502377758, 159.78950153380254}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>148</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142863225871181, 159.789494135974}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>147</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{121.14285770264581, 143.78948854435816}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>146</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{105.14285535540205, 143.78949823828736}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>145</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.1428580788955, 143.78949084045883}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>144</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{73.142858078895316, 143.7894878264625}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>143</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142860802388739, 143.78948042863396}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>142</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{121.14286012612826, 127.78948854435804}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>141</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{105.14285777888449, 127.78949823828724}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>140</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.142860502377943, 127.78949084045881}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>139</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{73.142860502377758, 127.78948782646238}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>138</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142863225871181, 127.78948042863395}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>137</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{121.1428577026457, 111.78947483701785}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>136</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{105.14285535540205, 111.78948453094705}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>135</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{89.1428580788955, 111.78947713311862}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>134</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{73.142858078895316, 111.78947411912219}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>133</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{57.142860802388739, 111.78946672129376}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>132</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{249.14285925605898, 175.78949920576804}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>120</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{233.14285690881545, 175.78950889969724}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>119</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{217.14285963230898, 175.7895015018687}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>118</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{201.14285963230898, 175.78949848787238}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>117</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{185.14286235580281, 175.78949109004384}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>116</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{249.14286064727392, 159.78946547522969}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>115</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{233.14285830003016, 159.78947516915889}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>114</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{217.14286102352369, 159.78946777133035}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>113</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{201.14286102352392, 159.78946475733403}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>112</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{185.14286374701751, 159.78945735950549}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>111</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{249.14285822379136, 143.78945176788955}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>110</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{233.14285587654783, 143.78946146181875}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>109</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{217.14285860004136, 143.78945406399021}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>108</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{201.14285860004136, 143.78945104999389}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>107</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{185.14286132353519, 143.78944365216535}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>106</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{249.14286064727392, 127.78945176788953}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>105</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{233.14285830003016, 127.78946146181873}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>104</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{217.14286102352369, 127.78945406399019}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>103</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{201.14286102352392, 127.78945104999387}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>102</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{185.14286374701751, 127.78944365216533}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>101</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{249.14285822379136, 111.78943806054941}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>100</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{233.14285587654783, 111.78944775447862}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>99</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{217.14285860004136, 111.78944035665008}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>98</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{201.14285860004136, 111.78943734265376}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>97</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{185.14286132353519, 111.78942994482522}, {16, 16}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>95</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Width</key> + <real>0.5</real> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\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}</string> + </dict> + </dict> + </array> + <key>GridInfo</key> + <dict/> + <key>HPages</key> + <integer>1</integer> + <key>KeepToScale</key> + <false/> + <key>Layers</key> + <array> + <dict> + <key>Lock</key> + <string>NO</string> + <key>Name</key> + <string>レイヤー 1</string> + <key>Print</key> + <string>YES</string> + <key>View</key> + <string>YES</string> + </dict> + </array> + <key>LayoutInfo</key> + <dict> + <key>Animate</key> + <string>NO</string> + <key>circoMinDist</key> + <real>18</real> + <key>circoSeparation</key> + <real>0.0</real> + <key>layoutEngine</key> + <string>dot</string> + <key>neatoSeparation</key> + <real>0.0</real> + <key>twopiSeparation</key> + <real>0.0</real> + </dict> + <key>Orientation</key> + <integer>2</integer> + <key>PrintOnePage</key> + <false/> + <key>RowAlign</key> + <integer>1</integer> + <key>RowSpacing</key> + <real>36</real> + <key>SheetTitle</key> + <string>キャンバス 8</string> + <key>UniqueID</key> + <integer>8</integer> + <key>VPages</key> + <integer>1</integer> + </dict> + <dict> + <key>ActiveLayerIndex</key> + <integer>0</integer> + <key>AutoAdjust</key> + <true/> + <key>BackgroundGraphic</key> + <dict> + <key>Bounds</key> + <string>{{0, 0}, {559, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -10920,8 +14883,8 @@ <integer>49</integer> <key>Points</key> <array> - <string>{163.6573185167029, 47.60201286540677}</string> - <string>{163.65878862002339, 70.466511628354411}</string> + <string>{163.6567409600718, 47.602012865194503}</string> + <string>{163.6567409600718, 70.466511608727714}</string> </array> <key>Style</key> <dict> @@ -12208,7 +16171,7 @@ <key>BackgroundGraphic</key> <dict> <key>Bounds</key> - <string>{{0, 0}, {559.00000476837158, 783}}</string> + <string>{{0, 0}, {559, 783}}</string> <key>Class</key> <string>SolidGraphic</string> <key>ID</key> @@ -13202,8 +17165,8 @@ <integer>73</integer> <key>Points</key> <array> - <string>{288.57832685109383, 417.7647193398646}</string> - <string>{330.62033477525114, 417.7647193398646}</string> + <string>{288.57832685109207, 417.7647193398646}</string> + <string>{330.62033477510175, 417.7647193398646}</string> </array> <key>Style</key> <dict> @@ -13237,8 +17200,8 @@ <integer>72</integer> <key>Points</key> <array> - <string>{188.14693096836081, 417.76472225377989}</string> - <string>{230.18892641247464, 417.76472225377989}</string> + <string>{188.14693096836226, 417.76472225377989}</string> + <string>{230.18892641259816, 417.76472225377989}</string> </array> <key>Style</key> <dict> @@ -14469,8 +18432,6 @@ </dict> </dict> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14506,8 +18467,6 @@ </dict> </dict> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14543,8 +18502,6 @@ </dict> </dict> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14578,8 +18535,6 @@ \f0\fs24 \cf0 c}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14613,8 +18568,6 @@ \f0\fs24 \cf0 b}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14648,8 +18601,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14683,8 +18634,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14718,8 +18667,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14753,8 +18700,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14788,8 +18733,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14823,8 +18766,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14858,8 +18799,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14893,8 +18832,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14928,8 +18865,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14963,8 +18898,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -14998,8 +18931,6 @@ \f0\fs24 \cf0 a}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15033,8 +18964,6 @@ \f0\fs24 \cf0 a}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15068,8 +18997,6 @@ \f0\fs24 \cf0 a}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15103,8 +19030,6 @@ \f0\fs24 \cf0 c}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15138,8 +19063,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15173,8 +19096,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15208,8 +19129,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15243,8 +19162,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15278,8 +19195,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15313,8 +19228,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15348,8 +19261,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15383,8 +19294,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15418,8 +19327,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15453,8 +19360,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15488,8 +19393,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15523,8 +19426,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15558,8 +19459,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15593,8 +19492,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15628,8 +19525,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15663,8 +19558,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15698,8 +19591,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15733,8 +19624,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15768,8 +19657,6 @@ \f0\fs24 \cf0 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15803,8 +19690,6 @@ \f0\fs24 \cf0 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15838,8 +19723,6 @@ \f0\fs24 \cf2 4}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15873,8 +19756,6 @@ \f0\fs24 \cf2 3}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15908,8 +19789,6 @@ \f0\fs24 \cf2 2}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15943,8 +19822,6 @@ \f0\fs24 \cf2 1}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -15978,8 +19855,6 @@ \f0\fs24 \cf2 0}</string> </dict> - <key>TextRelativeArea</key> - <string>{{0, 0}, {1, 1}}</string> </dict> <dict> <key>Bounds</key> @@ -16307,6 +20182,94 @@ <key>VPages</key> <integer>1</integer> </dict> + <dict> + <key>ActiveLayerIndex</key> + <integer>0</integer> + <key>AutoAdjust</key> + <true/> + <key>BackgroundGraphic</key> + <dict> + <key>Bounds</key> + <string>{{0, 0}, {559, 783}}</string> + <key>Class</key> + <string>SolidGraphic</string> + <key>ID</key> + <integer>2</integer> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + </dict> + <key>BaseZoom</key> + <integer>0</integer> + <key>CanvasOrigin</key> + <string>{0, 0}</string> + <key>ColumnAlign</key> + <integer>1</integer> + <key>ColumnSpacing</key> + <real>36</real> + <key>DisplayScale</key> + <string>1 0/72 in = 1.0000 in</string> + <key>GraphicsList</key> + <array/> + <key>GridInfo</key> + <dict/> + <key>HPages</key> + <integer>1</integer> + <key>KeepToScale</key> + <false/> + <key>Layers</key> + <array> + <dict> + <key>Lock</key> + <string>NO</string> + <key>Name</key> + <string>レイヤー 1</string> + <key>Print</key> + <string>YES</string> + <key>View</key> + <string>YES</string> + </dict> + </array> + <key>LayoutInfo</key> + <dict> + <key>Animate</key> + <string>NO</string> + <key>circoMinDist</key> + <real>18</real> + <key>circoSeparation</key> + <real>0.0</real> + <key>layoutEngine</key> + <string>dot</string> + <key>neatoSeparation</key> + <real>0.0</real> + <key>twopiSeparation</key> + <real>0.0</real> + </dict> + <key>Orientation</key> + <integer>2</integer> + <key>PrintOnePage</key> + <false/> + <key>RowAlign</key> + <integer>1</integer> + <key>RowSpacing</key> + <real>36</real> + <key>SheetTitle</key> + <string>parser</string> + <key>UniqueID</key> + <integer>9</integer> + <key>VPages</key> + <integer>1</integer> + </dict> </array> <key>SmartAlignmentGuidesActive</key> <string>YES</string> @@ -16317,16 +20280,11 @@ <key>WindowInfo</key> <dict> <key>CurrentSheet</key> - <integer>6</integer> + <integer>8</integer> <key>ExpandedCanvases</key> - <array> - <dict> - <key>name</key> - <string>基本三演算</string> - </dict> - </array> + <array/> <key>Frame</key> - <string>{{-1508, 359}, {1211, 982}}</string> + <string>{{691, 118}, {1211, 982}}</string> <key>ListView</key> <true/> <key>OutlineWidth</key> @@ -16340,9 +20298,9 @@ <key>SidebarWidth</key> <integer>120</integer> <key>VisibleRegion</key> - <string>{{27.865612963336595, 259.28854048154335}, {425.29644749716556, 332.01581403124453}}</string> + <string>{{0, 0}, {395.58823113313599, 308.82352616341473}}</string> <key>Zoom</key> - <real>2.5299999713897705</real> + <real>2.7200000286102295</real> <key>ZoomValues</key> <array> <array> @@ -16367,8 +20325,8 @@ </array> <array> <string>abab</string> - <real>1.4299999475479126</real> - <real>1.5</real> + <real>1.3300000429153442</real> + <real>1.2599999904632568</real> </array> <array> <string>bmabab</string> @@ -16380,6 +20338,16 @@ <real>2.5299999713897705</real> <real>2.4900000095367432</real> </array> + <array> + <string>キャンバス 8</string> + <real>2.7200000286102295</real> + <real>2.630000114440918</real> + </array> + <array> + <string>parser</string> + <real>2.7200000286102295</real> + <real>1</real> + </array> </array> </dict> </dict>
--- 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 @@ <?xml version="1.0" encoding="UTF-8"?> -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="253pt" height="159pt" viewBox="0 0 253 159" version="1.1"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="651pt" height="261pt" viewBox="0 0 651 261" version="1.1"> <defs> <g> <symbol overflow="visible" id="glyph0-0"> @@ -38,85 +38,398 @@ <symbol overflow="visible" id="glyph0-11"> <path style="stroke:none;" d="M 1.03125 -8.609375 L 7.296875 -8.609375 L 7.296875 -7.546875 L 2.15625 -7.546875 L 2.15625 -4.9375 L 6.921875 -4.9375 L 6.921875 -3.9375 L 2.15625 -3.9375 L 2.15625 -1.03125 L 7.390625 -1.03125 L 7.390625 0 L 1.03125 0 Z M 4.203125 -8.609375 Z M 4.203125 -8.609375 "/> </symbol> +<symbol overflow="visible" id="glyph1-0"> +<path style="stroke:none;" d="M 1 -10.453125 L 1 1.203125 L 10.984375 1.203125 L 10.984375 -10.578125 L 1 -10.578125 Z M 9.640625 -9.921875 L 6 -5.453125 L 2.5625 -9.703125 L 9.4375 -9.703125 Z M 10.3125 -0.125 L 6.625 -4.6875 L 10.3125 -9.234375 L 9.96875 -9.328125 L 9.96875 -0.03125 Z M 2.375 0.546875 L 6 -3.921875 L 9.4375 0.3125 L 2.5625 0.3125 Z M 2.015625 -0.03125 L 2.015625 -9.34375 L 1.6875 -9.25 L 5.375 -4.6875 L 1.6875 -0.125 Z M 2.015625 -0.03125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-1"> +<path style="stroke:none;" d="M 9.46875 -2.453125 C 9.984375 -2.453125 10.3125 -2.453125 10.8125 -2.390625 C 10.78125 -2.8125 10.765625 -3 10.765625 -3.4375 L 10.765625 -4.609375 C 10.765625 -4.890625 10.78125 -5.171875 10.8125 -5.625 C 10.3125 -5.578125 10.046875 -5.5625 9.546875 -5.5625 L 8.046875 -5.5625 C 8.0625 -5.71875 8.0625 -5.796875 8.0625 -6.03125 L 8.0625 -6.34375 L 8.5625 -6.34375 C 9.03125 -6.34375 9.296875 -6.34375 9.796875 -6.28125 L 9.796875 -6.84375 C 10.0625 -6.640625 10.4375 -6.390625 11.296875 -5.921875 C 11.546875 -6.453125 11.578125 -6.5 11.90625 -6.859375 C 10.6875 -7.40625 10.078125 -7.828125 9.328125 -8.5 C 8.75 -9.03125 8.375 -9.453125 7.953125 -10.125 L 6.9375 -10.125 C 6.1875 -8.703125 5.1875 -7.703125 3.515625 -6.734375 C 3.859375 -6.46875 3.96875 -6.34375 4.21875 -5.90625 C 4.9375 -6.40625 5.25 -6.640625 5.390625 -6.75 L 5.390625 -6.28125 C 5.921875 -6.34375 6.171875 -6.34375 6.640625 -6.34375 L 7.015625 -6.34375 L 7.015625 -5.890625 C 7.015625 -5.765625 7.015625 -5.703125 7.015625 -5.5625 L 5.625 -5.5625 C 5.03125 -5.5625 4.9375 -5.5625 4.375 -5.625 C 4.421875 -5.21875 4.421875 -5.046875 4.421875 -4.6875 L 4.421875 -3.28125 C 4.421875 -3.03125 4.421875 -2.78125 4.375 -2.390625 C 4.90625 -2.453125 5.203125 -2.453125 5.65625 -2.453125 L 6.609375 -2.453125 C 6.1875 -1.25 5.40625 -0.59375 3.328125 -0.03125 C 3.703125 0.34375 3.75 0.390625 3.96875 0.875 C 5.015625 0.46875 5.703125 0.125 6.1875 -0.25 C 6.859375 -0.765625 7.375 -1.5 7.65625 -2.296875 L 7.3125 -2.296875 C 7.984375 -0.9375 9.390625 0.203125 11.1875 0.875 C 11.390625 0.4375 11.453125 0.328125 11.78125 -0.078125 C 9.859375 -0.640625 8.78125 -1.46875 8.265625 -2.453125 Z M 6.640625 -7.265625 C 6.1875 -7.265625 5.921875 -7.265625 5.96875 -7.265625 C 6.5625 -7.8125 7.03125 -8.359375 7.46875 -9.125 C 8.09375 -8.25 8.5625 -7.78125 9.21875 -7.265625 C 9.328125 -7.265625 9.046875 -7.265625 8.5625 -7.265625 Z M 6.984375 -4.8125 C 6.953125 -4.0625 6.90625 -3.65625 6.84375 -3.34375 L 5.46875 -3.34375 L 5.46875 -4.6875 L 6.984375 -4.6875 Z M 9.71875 -4.8125 L 9.71875 -3.34375 L 7.890625 -3.34375 C 7.953125 -3.671875 8 -4.15625 8.03125 -4.6875 L 9.71875 -4.6875 Z M 3.4375 -6.953125 C 3.703125 -6.953125 3.9375 -6.9375 4.34375 -6.890625 L 4.34375 -7.96875 C 3.953125 -7.890625 3.765625 -7.890625 3.421875 -7.890625 L 3.125 -7.890625 L 3.125 -8.9375 C 3.125 -9.53125 3.125 -9.859375 3.203125 -10.296875 L 1.984375 -10.296875 C 2.046875 -9.875 2.0625 -9.609375 2.0625 -8.921875 L 2.0625 -7.890625 L 1.46875 -7.890625 C 1.09375 -7.890625 0.84375 -7.890625 0.453125 -7.96875 L 0.453125 -6.859375 C 0.84375 -6.9375 1.109375 -6.953125 1.46875 -6.953125 L 1.90625 -6.953125 C 1.640625 -5.59375 1.015625 -4.03125 0.15625 -2.875 C 0.4375 -2.5625 0.546875 -2.453125 0.828125 -1.890625 C 1.46875 -2.921875 1.890625 -3.859375 2.140625 -4.71875 C 2.359375 -5.515625 2.359375 -5.515625 2.46875 -5.890625 L 2.125 -5.890625 C 2.09375 -5.171875 2.0625 -4.53125 2.0625 -4 L 2.0625 -0.59375 C 2.0625 0.03125 2.046875 0.4375 1.984375 0.921875 L 3.203125 0.921875 C 3.140625 0.46875 3.125 0.046875 3.125 -0.59375 L 3.125 -4.25 C 3.125 -4.8125 3.09375 -5.640625 3.078125 -6.1875 L 2.71875 -6.1875 C 3.0625 -5.296875 3.359375 -4.703125 3.953125 -3.78125 C 4.1875 -4.234375 4.296875 -4.375 4.578125 -4.6875 C 3.796875 -5.640625 3.484375 -6.1875 3.234375 -6.953125 Z M 3.4375 -6.953125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-2"> +<path style="stroke:none;" d="M 1.140625 -2.3125 C 1.421875 -2.359375 1.59375 -2.359375 1.984375 -2.359375 C 2.796875 -2.375 3.9375 -2.40625 5.34375 -2.46875 L 5.34375 -0.34375 C 5.34375 0.1875 5.328125 0.4375 5.25 0.875 L 6.578125 0.875 C 6.484375 0.4375 6.46875 0.15625 6.46875 -0.34375 L 6.46875 -2.515625 C 7.734375 -2.578125 7.734375 -2.578125 9.640625 -2.71875 C 9.953125 -2.375 10.0625 -2.25 10.53125 -1.671875 L 11.328125 -2.375 C 10.46875 -3.375 9.78125 -4.03125 8.703125 -4.921875 L 7.90625 -4.328125 C 8.53125 -3.828125 8.703125 -3.671875 8.828125 -3.546875 C 7.109375 -3.4375 7.109375 -3.4375 5.453125 -3.390625 L 5.5625 -3.15625 C 6.703125 -3.96875 7.28125 -4.46875 8.046875 -5.234375 C 8.203125 -5.40625 8.328125 -5.515625 8.578125 -5.734375 L 7.46875 -6.28125 C 7.140625 -5.6875 6.515625 -5.046875 5.671875 -4.375 C 5.296875 -4.6875 5.265625 -4.6875 4.890625 -4.984375 C 5.453125 -5.515625 5.78125 -5.875 6.265625 -6.484375 L 9.984375 -6.484375 L 9.984375 -4.875 L 11.15625 -4.875 C 11.09375 -5.234375 11.09375 -5.453125 11.09375 -5.78125 L 11.09375 -6.59375 C 11.09375 -6.9375 11.09375 -7.046875 11.140625 -7.46875 C 10.59375 -7.421875 10.3125 -7.40625 9.765625 -7.40625 L 6.421875 -7.40625 L 6.421875 -8.296875 L 9.796875 -8.296875 C 10.375 -8.296875 10.78125 -8.265625 11.28125 -8.203125 L 11.28125 -9.34375 C 10.78125 -9.25 10.421875 -9.234375 9.796875 -9.234375 L 6.421875 -9.234375 L 6.421875 -9.296875 C 6.421875 -9.59375 6.4375 -9.859375 6.53125 -10.265625 L 5.21875 -10.265625 C 5.296875 -9.875 5.328125 -9.578125 5.328125 -9.296875 L 5.328125 -9.234375 L 2.28125 -9.234375 C 1.65625 -9.234375 1.265625 -9.25 0.765625 -9.34375 L 0.765625 -8.203125 C 1.296875 -8.28125 1.65625 -8.296875 2.265625 -8.296875 L 5.328125 -8.296875 L 5.328125 -7.40625 L 2.265625 -7.40625 C 1.765625 -7.40625 1.4375 -7.421875 0.875 -7.46875 C 0.921875 -7.046875 0.9375 -6.90625 0.9375 -6.546875 L 0.9375 -5.765625 C 0.9375 -5.46875 0.921875 -5.25 0.875 -4.890625 L 2.046875 -4.890625 L 2.046875 -6.484375 L 4.984375 -6.484375 C 4.84375 -6.265625 4.578125 -5.96875 4.09375 -5.546875 C 3.890625 -5.671875 3.75 -5.765625 3.15625 -6.125 L 2.453125 -5.40625 C 3.671875 -4.671875 4.15625 -4.328125 4.890625 -3.75 C 4.796875 -3.671875 4.796875 -3.671875 4.5625 -3.5 C 4.5 -3.46875 4.421875 -3.40625 4.359375 -3.359375 C 3.5625 -3.34375 3.390625 -3.34375 2.625 -3.34375 C 1.765625 -3.34375 1.34375 -3.359375 0.796875 -3.4375 L 1 -2.296875 Z M 3.6875 -2.25 C 3.25 -1.75 2.984375 -1.515625 2.4375 -1.15625 C 1.921875 -0.8125 1.65625 -0.65625 0.65625 -0.328125 C 1.09375 0 1.25 0.171875 1.46875 0.515625 C 2.875 -0.15625 3.671875 -0.703125 4.6875 -1.78125 L 3.75 -2.359375 Z M 7.265625 -1.71875 C 8.453125 -0.640625 9.234375 -0.15625 10.578125 0.484375 C 10.765625 0.15625 10.9375 -0.0625 11.296875 -0.390625 C 9.703125 -1.015625 9.078125 -1.4375 7.96875 -2.453125 L 7.15625 -1.828125 Z M 7.265625 -1.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-3"> +<path style="stroke:none;" d="M 10.015625 -7.21875 C 10.671875 -7.21875 11.03125 -7.203125 11.53125 -7.109375 L 11.53125 -8.296875 C 11 -8.203125 10.578125 -8.1875 10 -8.1875 L 6.421875 -8.1875 L 6.421875 -9 C 6.421875 -9.390625 6.4375 -9.734375 6.53125 -10.15625 L 5.171875 -10.15625 C 5.25 -9.703125 5.28125 -9.390625 5.28125 -8.984375 L 5.28125 -8.1875 L 2.015625 -8.1875 C 1.453125 -8.1875 1.046875 -8.203125 0.484375 -8.296875 L 0.484375 -7.125 C 1.03125 -7.203125 1.40625 -7.21875 2 -7.21875 L 2.765625 -7.21875 C 3.109375 -6.140625 3.390625 -5.5 3.890625 -4.6875 C 4.3125 -3.953125 4.765625 -3.34375 5.234375 -2.8125 C 3.96875 -1.65625 2.453125 -0.8125 0.203125 -0.203125 C 0.59375 0.1875 0.65625 0.28125 0.875 0.765625 C 2.9375 0.125 4.6875 -0.859375 6 -2.0625 C 7.265625 -0.859375 8.921875 0.0625 11.09375 0.78125 C 11.296875 0.28125 11.390625 0.15625 11.796875 -0.234375 C 10.3125 -0.640625 9.765625 -0.859375 8.84375 -1.375 C 8.015625 -1.828125 7.328125 -2.296875 6.765625 -2.828125 C 7.4375 -3.546875 8.046875 -4.4375 8.5 -5.390625 C 8.796875 -6.015625 8.9375 -6.390625 9.1875 -7.21875 Z M 8 -7.359375 C 7.53125 -5.703125 6.9375 -4.578125 6 -3.578125 C 5.5625 -4.046875 5.203125 -4.515625 4.8125 -5.15625 C 4.359375 -5.921875 4.21875 -6.3125 3.921875 -7.21875 L 7.96875 -7.21875 Z M 8 -7.359375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-4"> +<path style="stroke:none;" d="M 5.5 -8.921875 L 2.296875 -8.921875 C 1.796875 -8.921875 1.421875 -8.9375 0.796875 -9.015625 C 0.875 -8.546875 0.890625 -8.296875 0.890625 -7.9375 L 0.890625 -7.25 C 0.890625 -6.953125 0.859375 -6.6875 0.8125 -6.28125 L 1.984375 -6.28125 L 1.984375 -7.96875 L 10.078125 -7.96875 L 10.078125 -6.28125 L 11.25 -6.28125 C 11.203125 -6.6875 11.171875 -6.953125 11.171875 -7.25 L 11.171875 -7.9375 C 11.171875 -8.3125 11.1875 -8.578125 11.25 -9.015625 C 10.640625 -8.9375 10.265625 -8.921875 9.78125 -8.921875 L 6.46875 -8.921875 L 6.46875 -9.15625 C 6.46875 -9.546875 6.484375 -9.84375 6.5625 -10.28125 L 5.21875 -10.28125 C 5.296875 -9.859375 5.3125 -9.546875 5.3125 -9.15625 L 5.3125 -8.921875 Z M 2.109375 -3.96875 C 1.59375 -3.96875 1.21875 -4 0.671875 -4.0625 L 0.671875 -2.921875 C 1.203125 -2.984375 1.609375 -3.015625 2.109375 -3.015625 L 5.40625 -3.015625 L 5.40625 -0.484375 C 5.40625 -0.21875 5.46875 -0.265625 5.09375 -0.265625 C 4.625 -0.265625 3.875 -0.34375 3.140625 -0.484375 C 3.34375 0.03125 3.390625 0.1875 3.4375 0.609375 C 4.15625 0.6875 4.640625 0.703125 5.125 0.703125 C 6.078125 0.703125 6.5625 0.328125 6.5625 -0.40625 L 6.5625 -3.015625 L 9.953125 -3.015625 C 10.46875 -3.015625 10.875 -2.984375 11.390625 -2.921875 L 11.390625 -4.0625 C 10.890625 -4 10.46875 -3.96875 9.953125 -3.96875 L 6.5625 -3.96875 L 6.5625 -4.140625 C 7.640625 -4.734375 8.328125 -5.1875 9.21875 -5.9375 C 9.5 -6.1875 9.515625 -6.1875 9.765625 -6.40625 L 9.234375 -7.0625 C 8.953125 -7.015625 8.71875 -7 8.265625 -7 L 3.609375 -7 C 3.078125 -7 2.75 -7.015625 2.25 -7.109375 L 2.25 -5.921875 C 2.796875 -6.03125 3.140625 -6.046875 3.609375 -6.046875 L 7.8125 -6.046875 C 7.34375 -5.625 7 -5.359375 6.125 -4.9375 L 5.328125 -4.9375 C 5.40625 -4.53125 5.40625 -4.265625 5.40625 -3.96875 Z M 2.109375 -3.96875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-5"> +<path style="stroke:none;" d="M 2.328125 -4.546875 C 3.0625 -4.078125 3.453125 -3.75 3.984375 -3.171875 C 3.34375 -1.84375 2.515625 -1.046875 0.796875 0.03125 C 1.203125 0.359375 1.3125 0.484375 1.53125 0.890625 C 3.171875 -0.234375 3.984375 -1.0625 4.71875 -2.296875 C 5.359375 -3.40625 5.796875 -4.65625 6.078125 -6.4375 C 6.171875 -7.015625 6.1875 -7.109375 6.234375 -7.375 C 5.8125 -7.3125 5.546875 -7.296875 5.046875 -7.296875 L 3.421875 -7.296875 C 3.5625 -7.75 3.640625 -8.0625 3.734375 -8.671875 L 5.453125 -8.671875 C 5.921875 -8.671875 6.28125 -8.65625 6.796875 -8.59375 L 6.796875 -9.6875 C 6.328125 -9.625 5.9375 -9.59375 5.4375 -9.59375 L 2.03125 -9.59375 C 1.53125 -9.59375 1.21875 -9.609375 0.71875 -9.703125 L 0.71875 -8.59375 C 1.21875 -8.65625 1.53125 -8.671875 1.984375 -8.671875 L 2.640625 -8.671875 C 2.546875 -8.015625 2.40625 -7.421875 2.125 -6.765625 C 1.6875 -5.71875 1.21875 -5.046875 0.25 -4.125 C 0.59375 -3.859375 0.6875 -3.765625 1 -3.28125 C 2.0625 -4.421875 2.671875 -5.359375 3.09375 -6.390625 L 4.953125 -6.390625 C 4.796875 -5.390625 4.640625 -4.75 4.421875 -4.15625 C 4.125 -4.453125 3.640625 -4.84375 2.78125 -5.453125 L 2.234375 -4.609375 Z M 7.0625 -9.15625 C 7.109375 -8.8125 7.140625 -8.453125 7.140625 -7.78125 L 7.140625 -3.40625 C 7.140625 -2.609375 7.125 -2.34375 7.0625 -1.890625 L 8.34375 -1.890625 C 8.25 -2.34375 8.25 -2.578125 8.25 -3.40625 L 8.25 -7.78125 C 8.25 -8.5 8.265625 -8.828125 8.328125 -9.28125 L 7.0625 -9.28125 Z M 9.75 -9.90625 C 9.796875 -9.5 9.828125 -9.046875 9.828125 -8.40625 L 9.828125 -0.53125 C 9.828125 -0.234375 9.9375 -0.328125 9.484375 -0.328125 C 8.890625 -0.328125 8.453125 -0.359375 7.59375 -0.5 C 7.78125 -0.03125 7.84375 0.1875 7.875 0.640625 C 8.796875 0.671875 9.125 0.6875 9.375 0.6875 C 10.5 0.6875 10.9375 0.359375 10.9375 -0.515625 L 10.9375 -8.40625 C 10.9375 -9.0625 10.953125 -9.546875 11.046875 -10.046875 L 9.734375 -10.046875 Z M 9.75 -9.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-6"> +<path style="stroke:none;" d="M 6.640625 -7.953125 C 7.25 -7.9375 7.59375 -7.84375 8.046875 -7.65625 C 9.25 -7.109375 9.78125 -6.140625 9.78125 -4.78125 C 9.78125 -3.296875 9.140625 -2.140625 7.828125 -1.546875 C 7.265625 -1.28125 6.703125 -1.125 5.546875 -0.953125 C 5.921875 -0.46875 5.953125 -0.4375 6.125 0.125 C 7.0625 -0.09375 7.53125 -0.234375 8.0625 -0.46875 C 9.796875 -1.21875 10.96875 -2.875 10.96875 -4.734375 C 10.96875 -5.890625 10.515625 -7.03125 9.75 -7.765625 C 8.96875 -8.53125 7.6875 -8.984375 6.34375 -8.984375 C 4.734375 -8.984375 3.3125 -8.40625 2.359375 -7.359375 C 1.546875 -6.453125 1.046875 -5.171875 1.046875 -3.953125 C 1.046875 -2.265625 2.0625 -0.890625 3.203125 -0.890625 C 4.0625 -0.890625 4.9375 -1.734375 5.625 -3.328125 C 6.171875 -4.578125 6.625 -6.421875 6.796875 -7.9375 Z M 5.609375 -8.078125 C 5.453125 -6.546875 5.015625 -4.765625 4.53125 -3.640625 C 4.015625 -2.453125 3.703125 -2.03125 3.1875 -2.03125 C 2.546875 -2.03125 2.203125 -2.78125 2.203125 -3.9375 C 2.203125 -5.421875 2.890625 -6.6875 4.109375 -7.421875 C 4.65625 -7.75 5.0625 -7.890625 5.609375 -7.921875 Z M 5.609375 -8.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-7"> +<path style="stroke:none;" d="M 10.203125 -5.9375 C 10.6875 -5.9375 11.03125 -5.921875 11.515625 -5.828125 L 11.515625 -6.984375 C 11.015625 -6.90625 10.6875 -6.890625 10.171875 -6.890625 L 7.828125 -6.890625 C 7.859375 -7.375 7.875 -7.765625 7.890625 -8.625 C 7.921875 -9.546875 7.9375 -9.671875 8 -10.109375 L 6.6875 -10.109375 C 6.75 -9.765625 6.78125 -9.390625 6.78125 -9.078125 C 6.78125 -7.84375 6.765625 -7.578125 6.75 -6.890625 L 5.203125 -6.890625 C 4.703125 -6.890625 4.328125 -6.90625 3.828125 -7 L 3.828125 -5.828125 C 4.34375 -5.921875 4.734375 -5.9375 5.203125 -5.9375 L 6.65625 -5.9375 C 6.5 -4.359375 6.203125 -3.25 5.5 -2.09375 C 4.984375 -1.265625 4.46875 -0.734375 3.5 -0.078125 C 3.84375 0.203125 4 0.390625 4.25 0.828125 C 5.359375 -0.03125 5.96875 -0.765625 6.53125 -1.796875 C 7.046875 -2.78125 7.46875 -4.015625 7.609375 -5.171875 L 7.265625 -5.171875 C 7.515625 -3.9375 7.6875 -3.40625 8.109375 -2.546875 C 8.765625 -1.171875 9.546875 -0.1875 10.90625 0.890625 C 11.15625 0.4375 11.28125 0.28125 11.671875 -0.109375 C 10.4375 -0.921875 9.6875 -1.765625 9.046875 -2.984375 C 8.578125 -3.875 8.3125 -4.734375 8.03125 -5.9375 Z M 2.640625 -4.34375 C 1.84375 -3.8125 0.953125 -3.328125 0.25 -3.109375 L 0.71875 -2.046875 C 1.0625 -2.265625 1.359375 -2.4375 1.765625 -2.65625 C 2.09375 -2.859375 2.5 -3.109375 2.578125 -3.171875 L 2.578125 -0.375 C 2.578125 0.078125 2.5625 0.421875 2.5 0.875 L 3.78125 0.875 C 3.703125 0.40625 3.6875 0.140625 3.6875 -0.328125 L 3.6875 -8.984375 C 3.6875 -9.4375 3.703125 -9.703125 3.78125 -10.171875 L 2.5 -10.171875 C 2.5625 -9.703125 2.578125 -9.40625 2.578125 -8.984375 L 2.578125 -4.3125 Z M 0.46875 -8.171875 C 0.90625 -7.21875 1.109375 -6.609375 1.34375 -5.375 L 2.359375 -5.796875 C 2.09375 -6.953125 1.90625 -7.46875 1.390625 -8.59375 L 0.4375 -8.234375 Z M 10.78125 -7.8125 C 10.15625 -8.671875 9.890625 -8.96875 9.03125 -9.8125 L 8.203125 -9.25 C 9.09375 -8.40625 9.4375 -7.984375 10.03125 -7.046875 L 10.890625 -7.6875 Z M 10.78125 -7.8125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-8"> +<path style="stroke:none;" d="M 0.734375 -7.46875 C 1.015625 -7.515625 1.203125 -7.53125 1.359375 -7.53125 C 3.296875 -7.640625 3.578125 -7.671875 5.140625 -7.859375 C 5.265625 -7.6875 5.328125 -7.578125 5.578125 -7.171875 L 6.4375 -7.71875 C 5.765625 -8.65625 5.3125 -9.21875 4.65625 -9.90625 L 3.828125 -9.421875 C 4.3125 -8.9375 4.453125 -8.796875 4.578125 -8.609375 C 3.828125 -8.546875 3.5 -8.515625 2.71875 -8.5 C 2.875 -8.75 3.078125 -9.09375 3.640625 -10.0625 L 2.515625 -10.375 C 2.25 -9.578125 2.09375 -9.234375 1.578125 -8.453125 C 1.421875 -8.453125 1.375 -8.453125 1.25 -8.453125 C 0.984375 -8.453125 0.84375 -8.453125 0.453125 -8.484375 L 0.578125 -7.453125 Z M 2.109375 -3.9375 L 4.625 -3.9375 L 4.625 -3.4375 C 4.625 -3.1875 4.75 -3.265625 4.390625 -3.265625 C 4.109375 -3.265625 3.78125 -3.296875 3.09375 -3.390625 C 3.28125 -3 3.328125 -2.8125 3.34375 -2.453125 C 3.796875 -2.4375 4.0625 -2.421875 4.25 -2.421875 C 4.640625 -2.421875 4.984375 -2.46875 5.171875 -2.5625 C 5.375 -2.640625 5.65625 -3.03125 5.65625 -3.4375 L 5.65625 -6.03125 C 5.65625 -6.640625 5.65625 -6.953125 5.71875 -7.40625 C 5.265625 -7.328125 4.984375 -7.3125 4.46875 -7.3125 L 2.453125 -7.3125 C 1.96875 -7.3125 1.65625 -7.328125 1.203125 -7.375 C 1.234375 -6.953125 1.25 -6.75 1.25 -6.234375 L 1.25 -3.640625 C 1.25 -3.0625 1.234375 -2.75 1.171875 -2.296875 L 2.34375 -2.296875 C 2.296875 -2.703125 2.28125 -2.984375 2.28125 -3.578125 L 2.28125 -3.9375 Z M 2.28125 -4.625 L 2.28125 -5.203125 L 4.625 -5.203125 L 4.625 -4.75 L 2.28125 -4.75 Z M 2.28125 -5.890625 L 2.28125 -6.484375 L 4.625 -6.484375 L 4.625 -6.03125 L 2.28125 -6.03125 Z M 7.421875 -9.21875 C 7.421875 -9.609375 7.421875 -9.796875 7.515625 -10.21875 L 6.265625 -10.21875 C 6.34375 -9.796875 6.359375 -9.59375 6.359375 -9.1875 L 6.359375 -7.359375 C 6.359375 -6.671875 6.921875 -6.390625 8.59375 -6.390625 C 9.984375 -6.390625 10.5 -6.46875 10.765625 -6.671875 C 11.046875 -6.875 11.21875 -7.28125 11.296875 -8.25 C 10.8125 -8.40625 10.890625 -8.390625 10.28125 -8.71875 C 10.21875 -7.140625 10.375 -7.265625 8.953125 -7.265625 C 8.171875 -7.265625 7.59375 -7.296875 7.453125 -7.34375 C 7.28125 -7.40625 7.421875 -7.328125 7.421875 -7.515625 L 7.421875 -7.984375 C 8.15625 -8.140625 8.515625 -8.234375 9.296875 -8.46875 C 9.734375 -8.609375 10.546875 -8.921875 11.140625 -9.171875 L 10.34375 -9.984375 C 9.640625 -9.484375 8.65625 -9.125 7.421875 -8.859375 Z M 7.375 -5.25 C 7.375 -5.65625 7.390625 -5.875 7.46875 -6.25 L 6.234375 -6.25 C 6.3125 -5.84375 6.328125 -5.625 6.328125 -5.234375 L 6.328125 -3.46875 C 6.328125 -2.796875 6.90625 -2.515625 8.640625 -2.515625 C 9.96875 -2.515625 10.578125 -2.609375 10.859375 -2.84375 C 11.09375 -3.0625 11.25 -3.40625 11.359375 -4.390625 C 10.859375 -4.53125 10.890625 -4.53125 10.3125 -4.875 C 10.265625 -3.84375 10.265625 -3.640625 10.125 -3.53125 C 9.96875 -3.40625 9.75 -3.40625 8.6875 -3.40625 C 7.421875 -3.40625 7.375 -3.34375 7.375 -3.640625 L 7.375 -4.21875 C 8.53125 -4.46875 9.40625 -4.71875 10.25 -5.0625 C 10.546875 -5.1875 10.578125 -5.203125 10.984375 -5.328125 L 10.203125 -6.171875 C 9.546875 -5.671875 8.515625 -5.3125 7.375 -5.09375 Z M 1.46875 0.640625 C 2.109375 -0.171875 2.40625 -0.65625 2.828125 -1.78125 L 1.875 -2.21875 C 1.453125 -1.078125 1.265625 -0.78125 0.46875 0.109375 L 1.375 0.75 Z M 3.328125 -2.109375 C 3.390625 -1.828125 3.390625 -1.578125 3.390625 -1.234375 L 3.390625 -0.1875 C 3.390625 0.546875 3.859375 0.75 6.171875 0.75 C 7.609375 0.75 8.265625 0.65625 8.53125 0.46875 C 8.8125 0.25 9.03125 -0.25 9.125 -1.21875 C 8.640625 -1.328125 8.5625 -1.359375 8.03125 -1.6875 C 8 -0.828125 7.984375 -0.578125 7.875 -0.40625 C 7.734375 -0.1875 7.4375 -0.1875 5.84375 -0.1875 C 4.53125 -0.1875 4.46875 -0.09375 4.46875 -0.359375 L 4.46875 -1.296875 C 4.46875 -1.65625 4.46875 -1.84375 4.5625 -2.25 L 3.296875 -2.25 Z M 11.40625 -0.0625 C 10.9375 -0.859375 10.546875 -1.390625 9.75 -2.296875 L 8.875 -1.84375 C 9.625 -1.015625 10.046875 -0.375 10.5625 0.640625 L 11.484375 0.078125 Z M 7.40625 -1.328125 C 6.796875 -1.859375 6.4375 -2.140625 5.640625 -2.5625 L 4.90625 -1.9375 C 5.671875 -1.53125 6.09375 -1.203125 6.75 -0.53125 L 7.515625 -1.234375 Z M 7.40625 -1.328125 "/> +</symbol> </g> </defs> <g id="surface1"> -<rect x="0" y="0" width="253" height="159" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> -<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 87.511719 243.597656 C 102.1875 250.628906 102.1875 262.023438 87.511719 269.054688 C 72.832031 276.082031 49.035156 276.082031 34.355469 269.054688 C 19.679688 262.023438 19.679688 250.628906 34.355469 243.597656 C 49.035156 236.570312 72.832031 236.570312 87.511719 243.597656 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<rect x="0" y="0" width="651" height="261" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 482.148438 297.984375 C 496.828125 305.015625 496.828125 316.410156 482.148438 323.441406 C 467.46875 330.46875 443.671875 330.46875 428.996094 323.441406 C 414.316406 316.410156 414.316406 305.015625 428.996094 297.984375 C 443.671875 290.953125 467.46875 290.953125 482.148438 297.984375 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="415.21886" y="80.7121"/> + <use xlink:href="#glyph0-2" x="421.89326" y="80.7121"/> + <use xlink:href="#glyph0-3" x="425.23166" y="80.7121"/> + <use xlink:href="#glyph0-2" x="431.90606" y="80.7121"/> + <use xlink:href="#glyph0-4" x="435.24446" y="80.7121"/> + <use xlink:href="#glyph0-2" x="441.91886" y="80.7121"/> + <use xlink:href="#glyph0-5" x="445.25726" y="80.7121"/> + <use xlink:href="#glyph0-2" x="451.93166" y="80.7121"/> + <use xlink:href="#glyph0-6" x="455.27006" y="80.7121"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 577.523438 242.113281 C 590.023438 249.144531 590.023438 260.539062 577.523438 267.570312 C 565.027344 274.597656 544.765625 274.597656 532.269531 267.570312 C 519.773438 260.539062 519.773438 249.144531 532.269531 242.113281 C 544.765625 235.085938 565.027344 235.085938 577.523438 242.113281 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="529.55658" y="24.8421"/> + <use xlink:href="#glyph0-2" x="536.23098" y="24.8421"/> + <use xlink:href="#glyph0-5" x="539.56938" y="24.8421"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 577.523438 297.984375 C 590.023438 305.015625 590.023438 316.410156 577.523438 323.441406 C 565.027344 330.46875 544.765625 330.46875 532.269531 323.441406 C 519.773438 316.410156 519.773438 305.015625 532.269531 297.984375 C 544.765625 290.953125 565.027344 290.953125 577.523438 297.984375 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-1" x="16.58138" y="80.32599"/> - <use xlink:href="#glyph0-2" x="23.25578" y="80.32599"/> - <use xlink:href="#glyph0-3" x="26.59418" y="80.32599"/> - <use xlink:href="#glyph0-2" x="33.26858" y="80.32599"/> - <use xlink:href="#glyph0-4" x="36.60698" y="80.32599"/> - <use xlink:href="#glyph0-2" x="43.28138" y="80.32599"/> - <use xlink:href="#glyph0-5" x="46.61978" y="80.32599"/> - <use xlink:href="#glyph0-2" x="53.29418" y="80.32599"/> - <use xlink:href="#glyph0-6" x="56.63258" y="80.32599"/> + <use xlink:href="#glyph0-4" x="527.88959" y="80.7122"/> + <use xlink:href="#glyph0-2" x="534.56399" y="80.7122"/> + <use xlink:href="#glyph0-7" x="537.90239" y="80.7122"/> + <use xlink:href="#glyph0-6" x="541.24079" y="80.7122"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 480.375 296.761719 L 523.207031 272.667969 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 530.179688 268.746094 L 521.734375 270.054688 L 524.675781 275.285156 Z M 530.179688 268.746094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 576.503906 268.601562 C 584.160156 273.480469 599.417969 278.480469 599.484375 283.242188 C 599.527344 286.472656 592.570312 289.589844 585.746094 292.714844 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 578.597656 296.304688 L 587.09375 295.394531 L 584.398438 290.03125 Z M 578.597656 296.304688 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.777344 295.40625 C 532.148438 291.496094 522.761719 287.839844 522.898438 283.679688 C 522.972656 281.34375 526.054688 278.847656 529.609375 276.324219 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.050781 271.578125 L 527.832031 273.910156 L 531.390625 278.738281 Z M 536.050781 271.578125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 493.65625 310.710938 L 512.496094 310.710938 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 520.496094 310.710938 L 512.496094 307.710938 L 512.496094 313.710938 Z M 520.496094 310.710938 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 660.484375 242.113281 C 667.515625 249.144531 667.515625 260.539062 660.484375 267.570312 C 653.453125 274.597656 642.058594 274.597656 635.027344 267.570312 C 628 260.539062 628 249.144531 635.027344 242.113281 C 642.058594 235.085938 653.453125 235.085938 660.484375 242.113281 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="627.419586" y="24.8421"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 660.484375 297.984375 C 667.515625 305.015625 667.515625 316.410156 660.484375 323.441406 C 653.453125 330.46875 642.058594 330.46875 635.027344 323.441406 C 628 316.410156 628 305.015625 635.027344 297.984375 C 642.058594 290.953125 653.453125 290.953125 660.484375 297.984375 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="627.419586" y="80.7122"/> </g> -<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.886719 187.726562 C 195.382812 194.757812 195.382812 206.15625 182.886719 213.183594 C 170.390625 220.214844 150.128906 220.214844 137.632812 213.183594 C 125.136719 206.15625 125.136719 194.757812 137.632812 187.726562 C 150.128906 180.699219 170.390625 180.699219 182.886719 187.726562 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 567.625 360.539062 C 574.65625 367.570312 574.65625 378.964844 567.625 385.996094 C 560.597656 393.023438 549.199219 393.023438 542.167969 385.996094 C 535.140625 378.964844 535.140625 367.570312 542.167969 360.539062 C 549.199219 353.511719 560.597656 353.511719 567.625 360.539062 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-3" x="130.91908" y="24.4559"/> - <use xlink:href="#glyph0-2" x="137.59348" y="24.4559"/> - <use xlink:href="#glyph0-5" x="140.93188" y="24.4559"/> + <use xlink:href="#glyph0-1" x="534.560486" y="143.2672"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 478.746094 325.308594 L 530.863281 358.128906 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 537.632812 362.394531 L 532.460938 355.59375 L 529.265625 360.667969 Z M 537.632812 362.394531 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 587.398438 310.710938 L 619.355469 310.710938 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 627.355469 310.710938 L 619.355469 307.710938 L 619.355469 313.710938 Z M 627.355469 310.710938 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 587.398438 254.84375 L 619.355469 254.84375 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 627.355469 254.84375 L 619.355469 251.84375 L 619.355469 257.84375 Z M 627.355469 254.84375 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-8" x="485.313786" y="42.8421"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="485.313786" y="72.1652"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-10" x="492.6623" y="107.5976"/> </g> -<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.886719 243.597656 C 195.382812 250.628906 195.382812 262.023438 182.886719 269.054688 C 170.390625 276.082031 150.128906 276.082031 137.632812 269.054688 C 125.136719 262.023438 125.136719 250.628906 137.632812 243.597656 C 150.128906 236.570312 170.390625 236.570312 182.886719 243.597656 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-8" x="517.522486" y="54.5624"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="565.049486" y="54.5624"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="585.313786" y="72.1652"/> +</g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-4" x="129.25209" y="80.326"/> - <use xlink:href="#glyph0-2" x="135.92649" y="80.326"/> - <use xlink:href="#glyph0-7" x="139.26489" y="80.326"/> - <use xlink:href="#glyph0-6" x="142.60329" y="80.326"/> + <use xlink:href="#glyph0-8" x="585.313786" y="17.3113"/> +</g> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(83.137512%,25.881958%,22.3526%);stroke-opacity:1;stroke-miterlimit:10;" d="M 567.113281 305.054688 C 570.238281 308.179688 570.238281 313.246094 567.113281 316.367188 C 563.988281 319.492188 558.925781 319.492188 555.800781 316.367188 C 552.675781 313.246094 552.675781 308.179688 555.800781 305.054688 C 558.925781 301.929688 563.988281 301.929688 567.113281 305.054688 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="552.159847" y="84.0547"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.898438 412.953125 L 530.898438 412.953125 L 530.898438 428.953125 L 514.898438 428.953125 Z M 514.898438 412.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="502.8974" y="190.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 530.898438 412.953125 L 546.898438 412.953125 L 546.898438 428.953125 L 530.898438 428.953125 Z M 530.898438 412.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="518.8974" y="190.95313"/> </g> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.738281 242.375 L 128.566406 218.28125 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.539062 214.359375 L 127.097656 215.667969 L 130.039062 220.898438 Z M 135.539062 214.359375 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.863281 214.21875 C 189.523438 219.09375 204.78125 224.097656 204.847656 228.855469 C 204.890625 232.085938 197.933594 235.207031 191.105469 238.328125 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.960938 241.917969 L 192.453125 241.007812 L 189.761719 235.644531 Z M 183.960938 241.917969 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.136719 241.019531 C 137.511719 237.109375 128.125 233.453125 128.261719 229.296875 C 128.335938 226.957031 131.417969 224.460938 134.972656 221.9375 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.410156 217.191406 L 133.191406 219.523438 L 136.753906 224.355469 Z M 141.410156 217.191406 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.019531 256.324219 L 117.859375 256.324219 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.859375 256.324219 L 117.859375 253.324219 L 117.859375 259.324219 Z M 125.859375 256.324219 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.847656 187.726562 C 272.875 194.757812 272.875 206.15625 265.847656 213.183594 C 258.816406 220.214844 247.421875 220.214844 240.390625 213.183594 C 233.363281 206.15625 233.363281 194.757812 240.390625 187.726562 C 247.421875 180.699219 258.816406 180.699219 265.847656 187.726562 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 546.898438 412.953125 L 562.898438 412.953125 L 562.898438 428.953125 L 546.898438 428.953125 Z M 546.898438 412.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-4" x="534.8974" y="190.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 562.898438 412.953125 L 578.898438 412.953125 L 578.898438 428.953125 L 562.898438 428.953125 Z M 562.898438 412.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-5" x="550.8974" y="190.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 578.898438 412.953125 L 594.898438 412.953125 L 594.898438 428.953125 L 578.898438 428.953125 Z M 578.898438 412.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-6" x="566.8974" y="190.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.898438 428.953125 L 530.898438 428.953125 L 530.898438 444.953125 L 514.898438 444.953125 Z M 514.898438 428.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="502.8974" y="206.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 530.898438 428.953125 L 546.898438 428.953125 L 546.898438 444.953125 L 530.898438 444.953125 Z M 530.898438 428.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="518.8974" y="206.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 546.898438 428.953125 L 562.898438 428.953125 L 562.898438 444.953125 L 546.898438 444.953125 Z M 546.898438 428.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-1" x="228.781986" y="24.456"/> + <use xlink:href="#glyph0-3" x="534.8974" y="206.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 562.898438 428.953125 L 578.898438 428.953125 L 578.898438 444.953125 L 562.898438 444.953125 Z M 562.898438 428.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="550.8974" y="206.95316"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 578.898438 428.953125 L 594.898438 428.953125 L 594.898438 444.953125 L 578.898438 444.953125 Z M 578.898438 428.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="566.8974" y="206.95315"/> </g> -<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.847656 243.597656 C 272.875 250.628906 272.875 262.023438 265.847656 269.054688 C 258.816406 276.082031 247.421875 276.082031 240.390625 269.054688 C 233.363281 262.023438 233.363281 250.628906 240.390625 243.597656 C 247.421875 236.570312 258.816406 236.570312 265.847656 243.597656 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.898438 444.953125 L 530.898438 444.953125 L 530.898438 460.953125 L 514.898438 460.953125 Z M 514.898438 444.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="502.8974" y="222.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 530.898438 444.953125 L 546.898438 444.953125 L 546.898438 460.953125 L 530.898438 460.953125 Z M 530.898438 444.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="518.8974" y="222.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 546.898438 444.953125 L 562.898438 444.953125 L 562.898438 460.953125 L 546.898438 460.953125 Z M 546.898438 444.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="534.8974" y="222.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 562.898438 444.953125 L 578.898438 444.953125 L 578.898438 460.953125 L 562.898438 460.953125 Z M 562.898438 444.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-1" x="228.781986" y="80.32601"/> + <use xlink:href="#glyph0-3" x="550.8974" y="222.95316"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 578.898438 444.953125 L 594.898438 444.953125 L 594.898438 460.953125 L 578.898438 460.953125 Z M 578.898438 444.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="566.8974" y="222.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.898438 460.953125 L 530.898438 460.953125 L 530.898438 476.953125 L 514.898438 476.953125 Z M 514.898438 460.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="502.8974" y="238.95315"/> </g> -<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.988281 306.152344 C 180.015625 313.183594 180.015625 324.578125 172.988281 331.609375 C 165.957031 338.636719 154.5625 338.636719 147.53125 331.609375 C 140.503906 324.578125 140.503906 313.183594 147.53125 306.152344 C 154.5625 299.125 165.957031 299.125 172.988281 306.152344 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 530.898438 460.953125 L 546.898438 460.953125 L 546.898438 476.953125 L 530.898438 476.953125 Z M 530.898438 460.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="518.8974" y="238.95316"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 546.898438 460.953125 L 562.898438 460.953125 L 562.898438 476.953125 L 546.898438 476.953125 Z M 546.898438 460.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-1" x="135.922986" y="142.88109"/> + <use xlink:href="#glyph0-3" x="534.8974" y="238.95316"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 562.898438 460.953125 L 578.898438 460.953125 L 578.898438 476.953125 L 562.898438 476.953125 Z M 562.898438 460.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="550.8974" y="238.95317"/> </g> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 84.109375 270.921875 L 136.226562 303.746094 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.996094 308.007812 L 137.824219 301.207031 L 134.625 306.28125 Z M 142.996094 308.007812 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.761719 256.324219 L 224.71875 256.324219 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.71875 256.324219 L 224.71875 253.324219 L 224.71875 259.324219 Z M 232.71875 256.324219 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.761719 200.457031 L 224.71875 200.457031 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.71875 200.457031 L 224.71875 197.457031 L 224.71875 203.457031 Z M 232.71875 200.457031 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 578.898438 460.953125 L 594.898438 460.953125 L 594.898438 476.953125 L 578.898438 476.953125 Z M 578.898438 460.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="566.8974" y="238.95316"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.898438 476.953125 L 530.898438 476.953125 L 530.898438 492.953125 L 514.898438 492.953125 Z M 514.898438 476.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="502.8974" y="254.95319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 530.898438 476.953125 L 546.898438 476.953125 L 546.898438 492.953125 L 530.898438 492.953125 Z M 530.898438 476.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-8" x="86.676306" y="42.4559"/> + <use xlink:href="#glyph0-1" x="518.8974" y="254.95319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 546.898438 476.953125 L 562.898438 476.953125 L 562.898438 492.953125 L 546.898438 492.953125 Z M 546.898438 476.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="534.8974" y="254.9532"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 562.898438 476.953125 L 578.898438 476.953125 L 578.898438 492.953125 L 562.898438 492.953125 Z M 562.898438 476.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="550.8974" y="254.9532"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 578.898438 476.953125 L 594.898438 476.953125 L 594.898438 492.953125 L 578.898438 492.953125 Z M 578.898438 476.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="566.8974" y="254.95319"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-9" x="86.676306" y="71.77904"/> + <use xlink:href="#glyph1-1" x="395.3538" y="191.82228"/> + <use xlink:href="#glyph1-2" x="407.3538" y="191.82228"/> + <use xlink:href="#glyph1-3" x="419.3538" y="191.82228"/> + <use xlink:href="#glyph1-4" x="431.3538" y="191.82228"/> + <use xlink:href="#glyph1-5" x="443.3538" y="191.82228"/> + <use xlink:href="#glyph1-6" x="455.3538" y="191.82228"/> + <use xlink:href="#glyph1-7" x="467.3538" y="191.82228"/> + <use xlink:href="#glyph1-8" x="479.3538" y="191.82228"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 50.550781 295.371094 C 57.582031 302.402344 57.582031 313.800781 50.550781 320.828125 C 43.523438 327.859375 32.125 327.859375 25.097656 320.828125 C 18.066406 313.800781 18.066406 302.402344 25.097656 295.371094 C 32.125 288.34375 43.523438 288.34375 50.550781 295.371094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="17.486876" y="78.1008"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.332031 295.371094 C 133.359375 302.402344 133.359375 313.800781 126.332031 320.828125 C 119.300781 327.859375 107.902344 327.859375 100.875 320.828125 C 93.84375 313.800781 93.84375 302.402344 100.875 295.371094 C 107.902344 288.34375 119.300781 288.34375 126.332031 295.371094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="93.265436" y="78.1008"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.109375 295.371094 C 209.136719 302.402344 209.136719 313.800781 202.109375 320.828125 C 195.078125 327.859375 183.683594 327.859375 176.652344 320.828125 C 169.625 313.800781 169.625 302.402344 176.652344 295.371094 C 183.683594 288.34375 195.078125 288.34375 202.109375 295.371094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-4" x="169.043986" y="78.1008"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.886719 295.371094 C 284.917969 302.402344 284.917969 313.800781 277.886719 320.828125 C 270.859375 327.859375 259.460938 327.859375 252.429688 320.828125 C 245.402344 313.800781 245.402344 302.402344 252.429688 295.371094 C 259.460938 288.34375 270.859375 288.34375 277.886719 295.371094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-7" x="243.155594" y="78.1008"/> + <use xlink:href="#glyph0-5" x="246.489194" y="78.1008"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.664062 295.371094 C 360.695312 302.402344 360.695312 313.800781 353.664062 320.828125 C 346.636719 327.859375 335.238281 327.859375 328.210938 320.828125 C 321.179688 313.800781 321.179688 302.402344 328.210938 295.371094 C 335.238281 288.34375 346.636719 288.34375 353.664062 295.371094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-6" x="320.601086" y="78.1008"/> </g> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 56.324219 308.101562 L 85.203125 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.203125 308.101562 L 85.203125 305.101562 L 85.203125 311.101562 Z M 93.203125 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.101562 308.101562 L 160.980469 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.980469 308.101562 L 160.980469 305.101562 L 160.980469 311.101562 Z M 168.980469 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.882812 308.101562 L 236.757812 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.757812 308.101562 L 236.757812 305.101562 L 236.757812 311.101562 Z M 244.757812 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.660156 308.101562 L 312.539062 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.539062 308.101562 L 312.539062 305.101562 L 312.539062 311.101562 Z M 320.539062 308.101562 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.917969 294.035156 C 320.128906 283.75 310.167969 268.320312 302.542969 263.175781 C 294.917969 258.035156 288.242188 258.554688 283.160156 263.175781 C 279.632812 266.386719 277.429688 274.054688 275.175781 281.535156 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.644531 289.121094 L 278.019531 282.480469 L 272.328125 280.582031 Z M 272.644531 289.121094 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.171875 388.953125 L 216.171875 388.953125 L 216.171875 404.953125 L 200.171875 404.953125 Z M 200.171875 388.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="188.1704" y="166.95311"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.171875 388.953125 L 232.171875 388.953125 L 232.171875 404.953125 L 216.171875 404.953125 Z M 216.171875 388.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="204.1704" y="166.95311"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.171875 388.953125 L 248.171875 388.953125 L 248.171875 404.953125 L 232.171875 404.953125 Z M 232.171875 388.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-4" x="220.1704" y="166.95312"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.171875 388.953125 L 264.171875 388.953125 L 264.171875 404.953125 L 248.171875 404.953125 Z M 248.171875 388.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-5" x="236.1704" y="166.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.171875 388.953125 L 280.171875 388.953125 L 280.171875 404.953125 L 264.171875 404.953125 Z M 264.171875 388.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> + <use xlink:href="#glyph0-6" x="252.1704" y="166.95312"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.171875 404.953125 L 216.171875 404.953125 L 216.171875 420.953125 L 200.171875 420.953125 Z M 200.171875 404.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="188.1704" y="182.95312"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.171875 404.953125 L 232.171875 404.953125 L 232.171875 420.953125 L 216.171875 420.953125 Z M 216.171875 404.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="204.1704" y="182.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.171875 404.953125 L 248.171875 404.953125 L 248.171875 420.953125 L 232.171875 420.953125 Z M 232.171875 404.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-10" x="94.02482" y="107.21146"/> + <use xlink:href="#glyph0-1" x="220.1704" y="182.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.171875 404.953125 L 264.171875 404.953125 L 264.171875 420.953125 L 248.171875 420.953125 Z M 248.171875 404.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="236.1704" y="182.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.171875 404.953125 L 280.171875 404.953125 L 280.171875 420.953125 L 264.171875 420.953125 Z M 264.171875 404.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="252.1704" y="182.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.171875 420.953125 L 216.171875 420.953125 L 216.171875 436.953125 L 200.171875 436.953125 Z M 200.171875 420.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="188.1704" y="198.95312"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.171875 420.953125 L 232.171875 420.953125 L 232.171875 436.953125 L 216.171875 436.953125 Z M 216.171875 420.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="204.1704" y="198.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.171875 420.953125 L 248.171875 420.953125 L 248.171875 436.953125 L 232.171875 436.953125 Z M 232.171875 420.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="220.1704" y="198.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.171875 420.953125 L 264.171875 420.953125 L 264.171875 436.953125 L 248.171875 436.953125 Z M 248.171875 420.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="236.1704" y="198.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.171875 420.953125 L 280.171875 420.953125 L 280.171875 436.953125 L 264.171875 436.953125 Z M 264.171875 420.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="252.1704" y="198.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.171875 436.953125 L 216.171875 436.953125 L 216.171875 452.953125 L 200.171875 452.953125 Z M 200.171875 436.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="188.1704" y="214.95313"/> </g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.171875 436.953125 L 232.171875 436.953125 L 232.171875 452.953125 L 216.171875 452.953125 Z M 216.171875 436.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-8" x="118.884986" y="54.1762"/> + <use xlink:href="#glyph0-1" x="204.1704" y="214.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.171875 436.953125 L 248.171875 436.953125 L 248.171875 452.953125 L 232.171875 452.953125 Z M 232.171875 436.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="220.1704" y="214.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.171875 436.953125 L 264.171875 436.953125 L 264.171875 452.953125 L 248.171875 452.953125 Z M 248.171875 436.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="236.1704" y="214.95315"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.171875 436.953125 L 280.171875 436.953125 L 280.171875 452.953125 L 264.171875 452.953125 Z M 264.171875 436.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="252.1704" y="214.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.171875 452.953125 L 216.171875 452.953125 L 216.171875 468.953125 L 200.171875 468.953125 Z M 200.171875 452.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="188.1704" y="230.95317"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.171875 452.953125 L 232.171875 452.953125 L 232.171875 468.953125 L 216.171875 468.953125 Z M 216.171875 452.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="204.1704" y="230.95318"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.171875 452.953125 L 248.171875 452.953125 L 248.171875 468.953125 L 232.171875 468.953125 Z M 232.171875 452.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="220.1704" y="230.95318"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.171875 452.953125 L 264.171875 452.953125 L 264.171875 468.953125 L 248.171875 468.953125 Z M 248.171875 452.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="236.1704" y="230.95319"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.171875 452.953125 L 280.171875 452.953125 L 280.171875 468.953125 L 264.171875 468.953125 Z M 264.171875 452.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="252.1704" y="230.95318"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-9" x="166.411986" y="54.1762"/> + <use xlink:href="#glyph1-1" x="76.0409" y="170.56143"/> + <use xlink:href="#glyph1-2" x="88.0409" y="170.56143"/> + <use xlink:href="#glyph1-3" x="100.0409" y="170.56143"/> + <use xlink:href="#glyph1-4" x="112.0409" y="170.56143"/> + <use xlink:href="#glyph1-5" x="124.0409" y="170.56143"/> + <use xlink:href="#glyph1-6" x="136.0409" y="170.56143"/> + <use xlink:href="#glyph1-7" x="148.0409" y="170.56143"/> + <use xlink:href="#glyph1-8" x="160.0409" y="170.56143"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.171875 468.953125 L 216.171875 468.953125 L 216.171875 484.953125 L 200.171875 484.953125 Z M 200.171875 468.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="188.1704" y="246.95312"/> </g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.171875 468.953125 L 232.171875 468.953125 L 232.171875 484.953125 L 216.171875 484.953125 Z M 216.171875 468.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-9" x="186.676286" y="71.77903"/> + <use xlink:href="#glyph0-1" x="204.1704" y="246.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.171875 468.953125 L 248.171875 468.953125 L 248.171875 484.953125 L 232.171875 484.953125 Z M 232.171875 468.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="220.1704" y="246.95313"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.171875 468.953125 L 264.171875 468.953125 L 264.171875 484.953125 L 248.171875 484.953125 Z M 248.171875 468.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="236.1704" y="246.95314"/> +</g> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.171875 468.953125 L 280.171875 468.953125 L 280.171875 484.953125 L 264.171875 484.953125 Z M 264.171875 468.953125 " transform="matrix(1,0,0,1,-16.5,-233.5)"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="252.1704" y="246.95313"/> </g> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <use xlink:href="#glyph0-8" x="186.676286" y="16.9251"/> + <use xlink:href="#glyph0-8" x="46.716256" y="61.6414"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="129.218786" y="59.3857"/> </g> -<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(83.137512%,25.881958%,22.3526%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.476562 250.667969 C 175.601562 253.792969 175.601562 258.859375 172.476562 261.984375 C 169.351562 265.105469 164.285156 265.105469 161.164062 261.984375 C 158.039062 258.859375 158.039062 253.792969 161.164062 250.667969 C 164.285156 247.542969 169.351562 247.542969 172.476562 250.667969 " transform="matrix(1,0,0,1,-20.5,-179.5)"/> -<g style="fill:rgb(83.137512%,25.881958%,22.3526%);fill-opacity:1;"> - <use xlink:href="#glyph0-11" x="153.522247" y="83.66852"/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="278.842786" y="64.6489"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-8" x="206.933286" y="59.3857"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-8" x="278.842786" y="15.5436"/> </g> </g> </svg>