example_problem.svg 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  5. xmlns:dc="http://purl.org/dc/elements/1.1/"
  6. xmlns:cc="http://creativecommons.org/ns#"
  7. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  8. xmlns:svg="http://www.w3.org/2000/svg"
  9. xmlns="http://www.w3.org/2000/svg"
  10. xmlns:xlink="http://www.w3.org/1999/xlink"
  11. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  12. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  13. width="126.85883mm"
  14. height="84.666664mm"
  15. viewBox="0 0 449.49978 299.99997"
  16. id="svg2"
  17. version="1.1"
  18. inkscape:version="0.91 r13725"
  19. sodipodi:docname="example_problem.svg">
  20. <defs
  21. id="defs4">
  22. <marker
  23. inkscape:stockid="Arrow1Lend"
  24. orient="auto"
  25. refY="0"
  26. refX="0"
  27. id="marker65086"
  28. style="overflow:visible"
  29. inkscape:isstock="true">
  30. <path
  31. inkscape:connector-curvature="0"
  32. id="path65088"
  33. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  34. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  35. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  36. </marker>
  37. <marker
  38. inkscape:isstock="true"
  39. style="overflow:visible"
  40. id="marker60974"
  41. refX="0"
  42. refY="0"
  43. orient="auto"
  44. inkscape:stockid="Arrow1Mend">
  45. <path
  46. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  47. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  48. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  49. id="path60976"
  50. inkscape:connector-curvature="0" />
  51. </marker>
  52. <marker
  53. inkscape:isstock="true"
  54. style="overflow:visible"
  55. id="marker59980"
  56. refX="0"
  57. refY="0"
  58. orient="auto"
  59. inkscape:stockid="Arrow1Mend">
  60. <path
  61. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  62. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  63. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  64. id="path59982"
  65. inkscape:connector-curvature="0" />
  66. </marker>
  67. <marker
  68. inkscape:stockid="Arrow1Mend"
  69. orient="auto"
  70. refY="0"
  71. refX="0"
  72. id="marker55449"
  73. style="overflow:visible"
  74. inkscape:isstock="true"
  75. inkscape:collect="always">
  76. <path
  77. inkscape:connector-curvature="0"
  78. id="path55451"
  79. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  80. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  81. transform="matrix(-0.4,0,0,-0.4,-4,0)" />
  82. </marker>
  83. <marker
  84. inkscape:stockid="Arrow1Lend"
  85. orient="auto"
  86. refY="0"
  87. refX="0"
  88. id="marker54467"
  89. style="overflow:visible"
  90. inkscape:isstock="true">
  91. <path
  92. inkscape:connector-curvature="0"
  93. id="path54469"
  94. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  95. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  96. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  97. </marker>
  98. <marker
  99. inkscape:stockid="Arrow1Lend"
  100. orient="auto"
  101. refY="0"
  102. refX="0"
  103. id="marker53509"
  104. style="overflow:visible"
  105. inkscape:isstock="true">
  106. <path
  107. inkscape:connector-curvature="0"
  108. id="path53511"
  109. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  110. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  111. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  112. </marker>
  113. <marker
  114. inkscape:stockid="Arrow1Lend"
  115. orient="auto"
  116. refY="0"
  117. refX="0"
  118. id="marker52545"
  119. style="overflow:visible"
  120. inkscape:isstock="true">
  121. <path
  122. inkscape:connector-curvature="0"
  123. id="path52547"
  124. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  125. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  126. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  127. </marker>
  128. <marker
  129. inkscape:stockid="Arrow1Lend"
  130. orient="auto"
  131. refY="0"
  132. refX="0"
  133. id="marker51599"
  134. style="overflow:visible"
  135. inkscape:isstock="true">
  136. <path
  137. inkscape:connector-curvature="0"
  138. id="path51601"
  139. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  140. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  141. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  142. </marker>
  143. <linearGradient
  144. inkscape:collect="always"
  145. id="linearGradient41864">
  146. <stop
  147. style="stop-color:#646464;stop-opacity:1"
  148. offset="0"
  149. id="stop41866" />
  150. <stop
  151. style="stop-color:#c8c8c8;stop-opacity:1"
  152. offset="1"
  153. id="stop41868" />
  154. </linearGradient>
  155. <marker
  156. inkscape:stockid="EmptyTriangleOutL"
  157. orient="auto"
  158. refY="0"
  159. refX="0"
  160. id="EmptyTriangleOutL"
  161. style="overflow:visible"
  162. inkscape:isstock="true">
  163. <path
  164. id="path9967"
  165. d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
  166. style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  167. transform="matrix(0.8,0,0,0.8,-4.8,0)"
  168. inkscape:connector-curvature="0" />
  169. </marker>
  170. <marker
  171. inkscape:isstock="true"
  172. style="overflow:visible"
  173. id="marker33698"
  174. refX="0"
  175. refY="0"
  176. orient="auto"
  177. inkscape:stockid="Arrow1Lend"
  178. inkscape:collect="always">
  179. <path
  180. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  181. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  182. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  183. id="path33700"
  184. inkscape:connector-curvature="0" />
  185. </marker>
  186. <marker
  187. inkscape:stockid="Arrow2Mend"
  188. orient="auto"
  189. refY="0"
  190. refX="0"
  191. id="Arrow2Mend"
  192. style="overflow:visible"
  193. inkscape:isstock="true">
  194. <path
  195. id="path9834"
  196. style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
  197. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  198. transform="scale(-0.6,-0.6)"
  199. inkscape:connector-curvature="0" />
  200. </marker>
  201. <marker
  202. inkscape:isstock="true"
  203. style="overflow:visible"
  204. id="marker21778"
  205. refX="0"
  206. refY="0"
  207. orient="auto"
  208. inkscape:stockid="Arrow2Mend">
  209. <path
  210. transform="scale(-0.6,-0.6)"
  211. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  212. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  213. id="path21780"
  214. inkscape:connector-curvature="0" />
  215. </marker>
  216. <marker
  217. inkscape:isstock="true"
  218. style="overflow:visible"
  219. id="marker21774"
  220. refX="0"
  221. refY="0"
  222. orient="auto"
  223. inkscape:stockid="Arrow2Mend">
  224. <path
  225. transform="scale(-0.6,-0.6)"
  226. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  227. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  228. id="path21776"
  229. inkscape:connector-curvature="0" />
  230. </marker>
  231. <marker
  232. inkscape:isstock="true"
  233. style="overflow:visible"
  234. id="marker21770"
  235. refX="0"
  236. refY="0"
  237. orient="auto"
  238. inkscape:stockid="Arrow2Mend">
  239. <path
  240. transform="scale(-0.6,-0.6)"
  241. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  242. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  243. id="path21772"
  244. inkscape:connector-curvature="0" />
  245. </marker>
  246. <marker
  247. inkscape:isstock="true"
  248. style="overflow:visible"
  249. id="marker21766"
  250. refX="0"
  251. refY="0"
  252. orient="auto"
  253. inkscape:stockid="Arrow2Mend">
  254. <path
  255. transform="scale(-0.6,-0.6)"
  256. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  257. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  258. id="path21768"
  259. inkscape:connector-curvature="0" />
  260. </marker>
  261. <marker
  262. inkscape:isstock="true"
  263. style="overflow:visible"
  264. id="marker21762"
  265. refX="0"
  266. refY="0"
  267. orient="auto"
  268. inkscape:stockid="Arrow2Mend">
  269. <path
  270. transform="scale(-0.6,-0.6)"
  271. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  272. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  273. id="path21764"
  274. inkscape:connector-curvature="0" />
  275. </marker>
  276. <marker
  277. inkscape:isstock="true"
  278. style="overflow:visible"
  279. id="marker21758"
  280. refX="0"
  281. refY="0"
  282. orient="auto"
  283. inkscape:stockid="Arrow2Mend">
  284. <path
  285. transform="scale(-0.6,-0.6)"
  286. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  287. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  288. id="path21760"
  289. inkscape:connector-curvature="0" />
  290. </marker>
  291. <marker
  292. inkscape:isstock="true"
  293. style="overflow:visible"
  294. id="marker21754"
  295. refX="0"
  296. refY="0"
  297. orient="auto"
  298. inkscape:stockid="Arrow2Mend">
  299. <path
  300. transform="scale(-0.6,-0.6)"
  301. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  302. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  303. id="path21756"
  304. inkscape:connector-curvature="0" />
  305. </marker>
  306. <marker
  307. inkscape:isstock="true"
  308. style="overflow:visible"
  309. id="marker21750"
  310. refX="0"
  311. refY="0"
  312. orient="auto"
  313. inkscape:stockid="Arrow2Mend">
  314. <path
  315. transform="scale(-0.6,-0.6)"
  316. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  317. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  318. id="path21752"
  319. inkscape:connector-curvature="0" />
  320. </marker>
  321. <marker
  322. inkscape:isstock="true"
  323. style="overflow:visible"
  324. id="marker21746"
  325. refX="0"
  326. refY="0"
  327. orient="auto"
  328. inkscape:stockid="Arrow2Mend">
  329. <path
  330. transform="scale(-0.6,-0.6)"
  331. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  332. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  333. id="path21748"
  334. inkscape:connector-curvature="0" />
  335. </marker>
  336. <marker
  337. inkscape:isstock="true"
  338. style="overflow:visible"
  339. id="marker21742"
  340. refX="0"
  341. refY="0"
  342. orient="auto"
  343. inkscape:stockid="Arrow2Mend">
  344. <path
  345. transform="scale(-0.6,-0.6)"
  346. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  347. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  348. id="path21744"
  349. inkscape:connector-curvature="0" />
  350. </marker>
  351. <marker
  352. inkscape:isstock="true"
  353. style="overflow:visible"
  354. id="marker21738"
  355. refX="0"
  356. refY="0"
  357. orient="auto"
  358. inkscape:stockid="Arrow2Mend">
  359. <path
  360. transform="scale(-0.6,-0.6)"
  361. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  362. style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  363. id="path21740"
  364. inkscape:connector-curvature="0" />
  365. </marker>
  366. <marker
  367. inkscape:isstock="true"
  368. style="overflow:visible"
  369. id="marker4842"
  370. refX="0"
  371. refY="0"
  372. orient="auto"
  373. inkscape:stockid="Arrow2Mend">
  374. <path
  375. transform="scale(-0.6,-0.6)"
  376. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  377. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  378. id="path4844"
  379. inkscape:connector-curvature="0" />
  380. </marker>
  381. <marker
  382. inkscape:isstock="true"
  383. style="overflow:visible"
  384. id="marker4838"
  385. refX="0"
  386. refY="0"
  387. orient="auto"
  388. inkscape:stockid="Arrow2Mend">
  389. <path
  390. transform="scale(-0.6,-0.6)"
  391. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  392. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  393. id="path4840"
  394. inkscape:connector-curvature="0" />
  395. </marker>
  396. <marker
  397. inkscape:isstock="true"
  398. style="overflow:visible"
  399. id="marker4833"
  400. refX="0"
  401. refY="0"
  402. orient="auto"
  403. inkscape:stockid="Arrow2Mend">
  404. <path
  405. transform="scale(-0.6,-0.6)"
  406. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  407. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  408. id="path4835"
  409. inkscape:connector-curvature="0" />
  410. </marker>
  411. <marker
  412. inkscape:isstock="true"
  413. style="overflow:visible"
  414. id="marker4829"
  415. refX="0"
  416. refY="0"
  417. orient="auto"
  418. inkscape:stockid="Arrow2Mend">
  419. <path
  420. transform="scale(-0.6,-0.6)"
  421. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  422. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  423. id="path4831"
  424. inkscape:connector-curvature="0" />
  425. </marker>
  426. <marker
  427. inkscape:isstock="true"
  428. style="overflow:visible"
  429. id="marker4825"
  430. refX="0"
  431. refY="0"
  432. orient="auto"
  433. inkscape:stockid="Arrow2Mend">
  434. <path
  435. transform="scale(-0.6,-0.6)"
  436. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  437. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  438. id="path4827"
  439. inkscape:connector-curvature="0" />
  440. </marker>
  441. <marker
  442. inkscape:isstock="true"
  443. style="overflow:visible"
  444. id="marker4821"
  445. refX="0"
  446. refY="0"
  447. orient="auto"
  448. inkscape:stockid="Arrow2Mend">
  449. <path
  450. transform="scale(-0.6,-0.6)"
  451. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  452. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  453. id="path4823"
  454. inkscape:connector-curvature="0" />
  455. </marker>
  456. <marker
  457. inkscape:isstock="true"
  458. style="overflow:visible"
  459. id="marker4817"
  460. refX="0"
  461. refY="0"
  462. orient="auto"
  463. inkscape:stockid="Arrow2Mend">
  464. <path
  465. transform="scale(-0.6,-0.6)"
  466. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  467. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  468. id="path4819"
  469. inkscape:connector-curvature="0" />
  470. </marker>
  471. <marker
  472. inkscape:isstock="true"
  473. style="overflow:visible"
  474. id="marker4813"
  475. refX="0"
  476. refY="0"
  477. orient="auto"
  478. inkscape:stockid="Arrow2Mend">
  479. <path
  480. transform="scale(-0.6,-0.6)"
  481. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  482. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  483. id="path4815"
  484. inkscape:connector-curvature="0" />
  485. </marker>
  486. <marker
  487. inkscape:isstock="true"
  488. style="overflow:visible"
  489. id="marker4809"
  490. refX="0"
  491. refY="0"
  492. orient="auto"
  493. inkscape:stockid="Arrow2Mend">
  494. <path
  495. transform="scale(-0.6,-0.6)"
  496. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  497. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  498. id="path4811"
  499. inkscape:connector-curvature="0" />
  500. </marker>
  501. <marker
  502. inkscape:isstock="true"
  503. style="overflow:visible"
  504. id="marker4805"
  505. refX="0"
  506. refY="0"
  507. orient="auto"
  508. inkscape:stockid="Arrow2Mend">
  509. <path
  510. transform="scale(-0.6,-0.6)"
  511. d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
  512. style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
  513. id="path4807"
  514. inkscape:connector-curvature="0" />
  515. </marker>
  516. <marker
  517. inkscape:stockid="Arrow1Mend"
  518. orient="auto"
  519. refY="0"
  520. refX="0"
  521. id="marker42467"
  522. style="overflow:visible"
  523. inkscape:isstock="true">
  524. <path
  525. id="path42469"
  526. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  527. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  528. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  529. inkscape:connector-curvature="0" />
  530. </marker>
  531. <marker
  532. inkscape:stockid="Arrow1Mend"
  533. orient="auto"
  534. refY="0"
  535. refX="0"
  536. id="marker41707"
  537. style="overflow:visible"
  538. inkscape:isstock="true">
  539. <path
  540. id="path41709"
  541. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  542. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  543. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  544. inkscape:connector-curvature="0" />
  545. </marker>
  546. <marker
  547. inkscape:stockid="Arrow1Mend"
  548. orient="auto"
  549. refY="0"
  550. refX="0"
  551. id="marker40953"
  552. style="overflow:visible"
  553. inkscape:isstock="true">
  554. <path
  555. id="path40955"
  556. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  557. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  558. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  559. inkscape:connector-curvature="0" />
  560. </marker>
  561. <marker
  562. inkscape:stockid="Arrow1Mend"
  563. orient="auto"
  564. refY="0"
  565. refX="0"
  566. id="marker40205"
  567. style="overflow:visible"
  568. inkscape:isstock="true">
  569. <path
  570. id="path40207"
  571. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  572. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  573. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  574. inkscape:connector-curvature="0" />
  575. </marker>
  576. <marker
  577. inkscape:stockid="Arrow1Mend"
  578. orient="auto"
  579. refY="0"
  580. refX="0"
  581. id="marker39463"
  582. style="overflow:visible"
  583. inkscape:isstock="true">
  584. <path
  585. id="path39465"
  586. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  587. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  588. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  589. inkscape:connector-curvature="0" />
  590. </marker>
  591. <marker
  592. inkscape:stockid="Arrow1Mend"
  593. orient="auto"
  594. refY="0"
  595. refX="0"
  596. id="marker38727"
  597. style="overflow:visible"
  598. inkscape:isstock="true">
  599. <path
  600. id="path38729"
  601. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  602. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  603. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  604. inkscape:connector-curvature="0" />
  605. </marker>
  606. <marker
  607. inkscape:stockid="Arrow1Mend"
  608. orient="auto"
  609. refY="0"
  610. refX="0"
  611. id="marker37997"
  612. style="overflow:visible"
  613. inkscape:isstock="true">
  614. <path
  615. id="path37999"
  616. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  617. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  618. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  619. inkscape:connector-curvature="0" />
  620. </marker>
  621. <marker
  622. inkscape:stockid="Arrow1Mend"
  623. orient="auto"
  624. refY="0"
  625. refX="0"
  626. id="marker37273"
  627. style="overflow:visible"
  628. inkscape:isstock="true">
  629. <path
  630. id="path37275"
  631. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  632. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  633. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  634. inkscape:connector-curvature="0" />
  635. </marker>
  636. <marker
  637. inkscape:stockid="Arrow1Mend"
  638. orient="auto"
  639. refY="0"
  640. refX="0"
  641. id="marker36555"
  642. style="overflow:visible"
  643. inkscape:isstock="true">
  644. <path
  645. id="path36557"
  646. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  647. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  648. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  649. inkscape:connector-curvature="0" />
  650. </marker>
  651. <marker
  652. inkscape:stockid="Arrow1Mend"
  653. orient="auto"
  654. refY="0"
  655. refX="0"
  656. id="marker35843"
  657. style="overflow:visible"
  658. inkscape:isstock="true">
  659. <path
  660. id="path35845"
  661. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  662. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  663. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  664. inkscape:connector-curvature="0" />
  665. </marker>
  666. <marker
  667. inkscape:stockid="Arrow1Mend"
  668. orient="auto"
  669. refY="0"
  670. refX="0"
  671. id="marker35137"
  672. style="overflow:visible"
  673. inkscape:isstock="true">
  674. <path
  675. id="path35139"
  676. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  677. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  678. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  679. inkscape:connector-curvature="0" />
  680. </marker>
  681. <marker
  682. inkscape:stockid="Arrow1Mend"
  683. orient="auto"
  684. refY="0"
  685. refX="0"
  686. id="marker34437"
  687. style="overflow:visible"
  688. inkscape:isstock="true">
  689. <path
  690. id="path34439"
  691. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  692. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  693. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  694. inkscape:connector-curvature="0" />
  695. </marker>
  696. <marker
  697. inkscape:stockid="Arrow1Mend"
  698. orient="auto"
  699. refY="0"
  700. refX="0"
  701. id="marker33743"
  702. style="overflow:visible"
  703. inkscape:isstock="true">
  704. <path
  705. id="path33745"
  706. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  707. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  708. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  709. inkscape:connector-curvature="0" />
  710. </marker>
  711. <marker
  712. inkscape:stockid="Arrow1Mend"
  713. orient="auto"
  714. refY="0"
  715. refX="0"
  716. id="marker33733"
  717. style="overflow:visible"
  718. inkscape:isstock="true">
  719. <path
  720. id="path33735"
  721. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  722. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  723. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  724. inkscape:connector-curvature="0" />
  725. </marker>
  726. <marker
  727. inkscape:stockid="Arrow1Mend"
  728. orient="auto"
  729. refY="0"
  730. refX="0"
  731. id="marker33045"
  732. style="overflow:visible"
  733. inkscape:isstock="true">
  734. <path
  735. id="path33047"
  736. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  737. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  738. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  739. inkscape:connector-curvature="0" />
  740. </marker>
  741. <marker
  742. inkscape:isstock="true"
  743. style="overflow:visible"
  744. id="marker32195"
  745. refX="0"
  746. refY="0"
  747. orient="auto"
  748. inkscape:stockid="Arrow1Mend">
  749. <path
  750. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  751. style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1pt;stroke-opacity:1"
  752. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  753. id="path32197"
  754. inkscape:connector-curvature="0" />
  755. </marker>
  756. <marker
  757. inkscape:isstock="true"
  758. style="overflow:visible"
  759. id="marker30185"
  760. refX="0"
  761. refY="0"
  762. orient="auto"
  763. inkscape:stockid="Arrow1Mend"
  764. inkscape:collect="always">
  765. <path
  766. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  767. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  768. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  769. id="path30187"
  770. inkscape:connector-curvature="0" />
  771. </marker>
  772. <marker
  773. inkscape:isstock="true"
  774. style="overflow:visible"
  775. id="marker29527"
  776. refX="0"
  777. refY="0"
  778. orient="auto"
  779. inkscape:stockid="Arrow1Mend">
  780. <path
  781. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  782. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  783. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  784. id="path29529"
  785. inkscape:connector-curvature="0" />
  786. </marker>
  787. <marker
  788. inkscape:isstock="true"
  789. style="overflow:visible"
  790. id="marker28875"
  791. refX="0"
  792. refY="0"
  793. orient="auto"
  794. inkscape:stockid="Arrow1Mend">
  795. <path
  796. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  797. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  798. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  799. id="path28877"
  800. inkscape:connector-curvature="0" />
  801. </marker>
  802. <marker
  803. inkscape:isstock="true"
  804. style="overflow:visible"
  805. id="marker28229"
  806. refX="0"
  807. refY="0"
  808. orient="auto"
  809. inkscape:stockid="Arrow1Mend">
  810. <path
  811. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  812. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  813. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  814. id="path28231"
  815. inkscape:connector-curvature="0" />
  816. </marker>
  817. <marker
  818. inkscape:isstock="true"
  819. style="overflow:visible"
  820. id="marker27589"
  821. refX="0"
  822. refY="0"
  823. orient="auto"
  824. inkscape:stockid="Arrow1Mend">
  825. <path
  826. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  827. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  828. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  829. id="path27591"
  830. inkscape:connector-curvature="0" />
  831. </marker>
  832. <marker
  833. inkscape:isstock="true"
  834. style="overflow:visible"
  835. id="marker26955"
  836. refX="0"
  837. refY="0"
  838. orient="auto"
  839. inkscape:stockid="Arrow1Mend">
  840. <path
  841. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  842. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  843. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  844. id="path26957"
  845. inkscape:connector-curvature="0" />
  846. </marker>
  847. <marker
  848. inkscape:isstock="true"
  849. style="overflow:visible"
  850. id="marker26327"
  851. refX="0"
  852. refY="0"
  853. orient="auto"
  854. inkscape:stockid="Arrow1Mend">
  855. <path
  856. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  857. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  858. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  859. id="path26329"
  860. inkscape:connector-curvature="0" />
  861. </marker>
  862. <marker
  863. inkscape:isstock="true"
  864. style="overflow:visible"
  865. id="marker25705"
  866. refX="0"
  867. refY="0"
  868. orient="auto"
  869. inkscape:stockid="Arrow1Mend">
  870. <path
  871. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  872. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  873. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  874. id="path25707"
  875. inkscape:connector-curvature="0" />
  876. </marker>
  877. <marker
  878. inkscape:isstock="true"
  879. style="overflow:visible"
  880. id="marker25089"
  881. refX="0"
  882. refY="0"
  883. orient="auto"
  884. inkscape:stockid="Arrow1Mend">
  885. <path
  886. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  887. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  888. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  889. id="path25091"
  890. inkscape:connector-curvature="0" />
  891. </marker>
  892. <marker
  893. inkscape:isstock="true"
  894. style="overflow:visible"
  895. id="marker24479"
  896. refX="0"
  897. refY="0"
  898. orient="auto"
  899. inkscape:stockid="Arrow1Mend">
  900. <path
  901. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  902. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  903. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  904. id="path24481"
  905. inkscape:connector-curvature="0" />
  906. </marker>
  907. <marker
  908. inkscape:isstock="true"
  909. style="overflow:visible"
  910. id="marker23875"
  911. refX="0"
  912. refY="0"
  913. orient="auto"
  914. inkscape:stockid="Arrow1Mend">
  915. <path
  916. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  917. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  918. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  919. id="path23877"
  920. inkscape:connector-curvature="0" />
  921. </marker>
  922. <marker
  923. inkscape:isstock="true"
  924. style="overflow:visible"
  925. id="marker23865"
  926. refX="0"
  927. refY="0"
  928. orient="auto"
  929. inkscape:stockid="Arrow1Mend">
  930. <path
  931. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  932. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  933. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  934. id="path23867"
  935. inkscape:connector-curvature="0" />
  936. </marker>
  937. <marker
  938. inkscape:isstock="true"
  939. style="overflow:visible"
  940. id="marker22665"
  941. refX="0"
  942. refY="0"
  943. orient="auto"
  944. inkscape:stockid="Arrow1Send">
  945. <path
  946. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  947. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  948. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  949. id="path22667"
  950. inkscape:connector-curvature="0" />
  951. </marker>
  952. <marker
  953. inkscape:isstock="true"
  954. style="overflow:visible"
  955. id="marker22079"
  956. refX="0"
  957. refY="0"
  958. orient="auto"
  959. inkscape:stockid="Arrow1Send">
  960. <path
  961. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  962. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  963. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  964. id="path22081"
  965. inkscape:connector-curvature="0" />
  966. </marker>
  967. <marker
  968. inkscape:isstock="true"
  969. style="overflow:visible"
  970. id="marker21499"
  971. refX="0"
  972. refY="0"
  973. orient="auto"
  974. inkscape:stockid="Arrow1Send">
  975. <path
  976. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  977. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  978. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  979. id="path21501"
  980. inkscape:connector-curvature="0" />
  981. </marker>
  982. <marker
  983. inkscape:isstock="true"
  984. style="overflow:visible"
  985. id="marker20925"
  986. refX="0"
  987. refY="0"
  988. orient="auto"
  989. inkscape:stockid="Arrow1Send">
  990. <path
  991. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  992. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  993. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  994. id="path20927"
  995. inkscape:connector-curvature="0" />
  996. </marker>
  997. <marker
  998. inkscape:isstock="true"
  999. style="overflow:visible"
  1000. id="marker20357"
  1001. refX="0"
  1002. refY="0"
  1003. orient="auto"
  1004. inkscape:stockid="Arrow1Send">
  1005. <path
  1006. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1007. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1008. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1009. id="path20359"
  1010. inkscape:connector-curvature="0" />
  1011. </marker>
  1012. <marker
  1013. inkscape:isstock="true"
  1014. style="overflow:visible"
  1015. id="marker19795"
  1016. refX="0"
  1017. refY="0"
  1018. orient="auto"
  1019. inkscape:stockid="Arrow1Send">
  1020. <path
  1021. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1022. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1023. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1024. id="path19797"
  1025. inkscape:connector-curvature="0" />
  1026. </marker>
  1027. <marker
  1028. inkscape:isstock="true"
  1029. style="overflow:visible"
  1030. id="marker19239"
  1031. refX="0"
  1032. refY="0"
  1033. orient="auto"
  1034. inkscape:stockid="Arrow1Send">
  1035. <path
  1036. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1037. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1038. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1039. id="path19241"
  1040. inkscape:connector-curvature="0" />
  1041. </marker>
  1042. <marker
  1043. inkscape:isstock="true"
  1044. style="overflow:visible"
  1045. id="marker18689"
  1046. refX="0"
  1047. refY="0"
  1048. orient="auto"
  1049. inkscape:stockid="Arrow1Send">
  1050. <path
  1051. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1052. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1053. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1054. id="path18691"
  1055. inkscape:connector-curvature="0" />
  1056. </marker>
  1057. <marker
  1058. inkscape:isstock="true"
  1059. style="overflow:visible"
  1060. id="marker18145"
  1061. refX="0"
  1062. refY="0"
  1063. orient="auto"
  1064. inkscape:stockid="Arrow1Send">
  1065. <path
  1066. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1067. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1068. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1069. id="path18147"
  1070. inkscape:connector-curvature="0" />
  1071. </marker>
  1072. <marker
  1073. inkscape:isstock="true"
  1074. style="overflow:visible"
  1075. id="marker17607"
  1076. refX="0"
  1077. refY="0"
  1078. orient="auto"
  1079. inkscape:stockid="Arrow1Send">
  1080. <path
  1081. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1082. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1083. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1084. id="path17609"
  1085. inkscape:connector-curvature="0" />
  1086. </marker>
  1087. <marker
  1088. inkscape:isstock="true"
  1089. style="overflow:visible"
  1090. id="marker17075"
  1091. refX="0"
  1092. refY="0"
  1093. orient="auto"
  1094. inkscape:stockid="Arrow1Send">
  1095. <path
  1096. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1097. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1098. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1099. id="path17077"
  1100. inkscape:connector-curvature="0" />
  1101. </marker>
  1102. <marker
  1103. inkscape:isstock="true"
  1104. style="overflow:visible"
  1105. id="marker16549"
  1106. refX="0"
  1107. refY="0"
  1108. orient="auto"
  1109. inkscape:stockid="Arrow1Send">
  1110. <path
  1111. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1112. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1113. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1114. id="path16551"
  1115. inkscape:connector-curvature="0" />
  1116. </marker>
  1117. <marker
  1118. inkscape:isstock="true"
  1119. style="overflow:visible"
  1120. id="marker16029"
  1121. refX="0"
  1122. refY="0"
  1123. orient="auto"
  1124. inkscape:stockid="Arrow1Send">
  1125. <path
  1126. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1127. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1128. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1129. id="path16031"
  1130. inkscape:connector-curvature="0" />
  1131. </marker>
  1132. <marker
  1133. inkscape:isstock="true"
  1134. style="overflow:visible"
  1135. id="marker15515"
  1136. refX="0"
  1137. refY="0"
  1138. orient="auto"
  1139. inkscape:stockid="Arrow1Send">
  1140. <path
  1141. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1142. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1143. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1144. id="path15517"
  1145. inkscape:connector-curvature="0" />
  1146. </marker>
  1147. <marker
  1148. inkscape:isstock="true"
  1149. style="overflow:visible"
  1150. id="marker15505"
  1151. refX="0"
  1152. refY="0"
  1153. orient="auto"
  1154. inkscape:stockid="Arrow1Send">
  1155. <path
  1156. transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
  1157. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1158. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1159. id="path15507"
  1160. inkscape:connector-curvature="0" />
  1161. </marker>
  1162. <marker
  1163. inkscape:isstock="true"
  1164. style="overflow:visible"
  1165. id="marker14401"
  1166. refX="0"
  1167. refY="0"
  1168. orient="auto"
  1169. inkscape:stockid="Tail">
  1170. <g
  1171. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1172. transform="scale(-1.2,-1.2)"
  1173. id="g14403">
  1174. <path
  1175. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1176. d="M -3.8048674,-3.9585227 0.54352094,0"
  1177. id="path14405"
  1178. inkscape:connector-curvature="0" />
  1179. <path
  1180. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1181. d="M -1.2866832,-3.9585227 3.0617053,0"
  1182. id="path14407"
  1183. inkscape:connector-curvature="0" />
  1184. <path
  1185. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1186. d="M 1.3053582,-3.9585227 5.6537466,0"
  1187. id="path14409"
  1188. inkscape:connector-curvature="0" />
  1189. <path
  1190. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1191. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1192. id="path14411"
  1193. inkscape:connector-curvature="0" />
  1194. <path
  1195. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1196. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1197. id="path14413"
  1198. inkscape:connector-curvature="0" />
  1199. <path
  1200. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1201. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1202. id="path14415"
  1203. inkscape:connector-curvature="0" />
  1204. </g>
  1205. </marker>
  1206. <marker
  1207. inkscape:isstock="true"
  1208. style="overflow:visible"
  1209. id="marker13875"
  1210. refX="0"
  1211. refY="0"
  1212. orient="auto"
  1213. inkscape:stockid="Tail">
  1214. <g
  1215. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1216. transform="scale(-1.2,-1.2)"
  1217. id="g13877">
  1218. <path
  1219. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1220. d="M -3.8048674,-3.9585227 0.54352094,0"
  1221. id="path13879"
  1222. inkscape:connector-curvature="0" />
  1223. <path
  1224. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1225. d="M -1.2866832,-3.9585227 3.0617053,0"
  1226. id="path13881"
  1227. inkscape:connector-curvature="0" />
  1228. <path
  1229. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1230. d="M 1.3053582,-3.9585227 5.6537466,0"
  1231. id="path13883"
  1232. inkscape:connector-curvature="0" />
  1233. <path
  1234. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1235. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1236. id="path13885"
  1237. inkscape:connector-curvature="0" />
  1238. <path
  1239. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1240. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1241. id="path13887"
  1242. inkscape:connector-curvature="0" />
  1243. <path
  1244. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1245. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1246. id="path13889"
  1247. inkscape:connector-curvature="0" />
  1248. </g>
  1249. </marker>
  1250. <marker
  1251. inkscape:isstock="true"
  1252. style="overflow:visible"
  1253. id="marker13373"
  1254. refX="0"
  1255. refY="0"
  1256. orient="auto"
  1257. inkscape:stockid="Tail">
  1258. <g
  1259. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1260. transform="scale(-1.2,-1.2)"
  1261. id="g13375">
  1262. <path
  1263. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1264. d="M -3.8048674,-3.9585227 0.54352094,0"
  1265. id="path13377"
  1266. inkscape:connector-curvature="0" />
  1267. <path
  1268. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1269. d="M -1.2866832,-3.9585227 3.0617053,0"
  1270. id="path13379"
  1271. inkscape:connector-curvature="0" />
  1272. <path
  1273. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1274. d="M 1.3053582,-3.9585227 5.6537466,0"
  1275. id="path13381"
  1276. inkscape:connector-curvature="0" />
  1277. <path
  1278. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1279. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1280. id="path13383"
  1281. inkscape:connector-curvature="0" />
  1282. <path
  1283. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1284. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1285. id="path13385"
  1286. inkscape:connector-curvature="0" />
  1287. <path
  1288. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1289. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1290. id="path13387"
  1291. inkscape:connector-curvature="0" />
  1292. </g>
  1293. </marker>
  1294. <marker
  1295. inkscape:isstock="true"
  1296. style="overflow:visible"
  1297. id="marker12895"
  1298. refX="0"
  1299. refY="0"
  1300. orient="auto"
  1301. inkscape:stockid="Tail">
  1302. <g
  1303. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1304. transform="scale(-1.2,-1.2)"
  1305. id="g12897">
  1306. <path
  1307. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1308. d="M -3.8048674,-3.9585227 0.54352094,0"
  1309. id="path12899"
  1310. inkscape:connector-curvature="0" />
  1311. <path
  1312. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1313. d="M -1.2866832,-3.9585227 3.0617053,0"
  1314. id="path12901"
  1315. inkscape:connector-curvature="0" />
  1316. <path
  1317. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1318. d="M 1.3053582,-3.9585227 5.6537466,0"
  1319. id="path12903"
  1320. inkscape:connector-curvature="0" />
  1321. <path
  1322. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1323. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1324. id="path12905"
  1325. inkscape:connector-curvature="0" />
  1326. <path
  1327. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1328. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1329. id="path12907"
  1330. inkscape:connector-curvature="0" />
  1331. <path
  1332. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1333. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1334. id="path12909"
  1335. inkscape:connector-curvature="0" />
  1336. </g>
  1337. </marker>
  1338. <marker
  1339. inkscape:isstock="true"
  1340. style="overflow:visible"
  1341. id="marker12441"
  1342. refX="0"
  1343. refY="0"
  1344. orient="auto"
  1345. inkscape:stockid="Tail">
  1346. <g
  1347. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1348. transform="scale(-1.2,-1.2)"
  1349. id="g12443">
  1350. <path
  1351. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1352. d="M -3.8048674,-3.9585227 0.54352094,0"
  1353. id="path12445"
  1354. inkscape:connector-curvature="0" />
  1355. <path
  1356. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1357. d="M -1.2866832,-3.9585227 3.0617053,0"
  1358. id="path12447"
  1359. inkscape:connector-curvature="0" />
  1360. <path
  1361. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1362. d="M 1.3053582,-3.9585227 5.6537466,0"
  1363. id="path12449"
  1364. inkscape:connector-curvature="0" />
  1365. <path
  1366. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1367. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1368. id="path12451"
  1369. inkscape:connector-curvature="0" />
  1370. <path
  1371. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1372. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1373. id="path12453"
  1374. inkscape:connector-curvature="0" />
  1375. <path
  1376. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1377. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1378. id="path12455"
  1379. inkscape:connector-curvature="0" />
  1380. </g>
  1381. </marker>
  1382. <marker
  1383. inkscape:isstock="true"
  1384. style="overflow:visible"
  1385. id="marker12011"
  1386. refX="0"
  1387. refY="0"
  1388. orient="auto"
  1389. inkscape:stockid="Tail">
  1390. <g
  1391. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1392. transform="scale(-1.2,-1.2)"
  1393. id="g12013">
  1394. <path
  1395. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1396. d="M -3.8048674,-3.9585227 0.54352094,0"
  1397. id="path12015"
  1398. inkscape:connector-curvature="0" />
  1399. <path
  1400. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1401. d="M -1.2866832,-3.9585227 3.0617053,0"
  1402. id="path12017"
  1403. inkscape:connector-curvature="0" />
  1404. <path
  1405. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1406. d="M 1.3053582,-3.9585227 5.6537466,0"
  1407. id="path12019"
  1408. inkscape:connector-curvature="0" />
  1409. <path
  1410. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1411. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1412. id="path12021"
  1413. inkscape:connector-curvature="0" />
  1414. <path
  1415. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1416. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1417. id="path12023"
  1418. inkscape:connector-curvature="0" />
  1419. <path
  1420. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1421. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1422. id="path12025"
  1423. inkscape:connector-curvature="0" />
  1424. </g>
  1425. </marker>
  1426. <marker
  1427. inkscape:isstock="true"
  1428. style="overflow:visible"
  1429. id="marker11605"
  1430. refX="0"
  1431. refY="0"
  1432. orient="auto"
  1433. inkscape:stockid="Tail">
  1434. <g
  1435. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1436. transform="scale(-1.2,-1.2)"
  1437. id="g11607">
  1438. <path
  1439. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1440. d="M -3.8048674,-3.9585227 0.54352094,0"
  1441. id="path11609"
  1442. inkscape:connector-curvature="0" />
  1443. <path
  1444. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1445. d="M -1.2866832,-3.9585227 3.0617053,0"
  1446. id="path11611"
  1447. inkscape:connector-curvature="0" />
  1448. <path
  1449. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1450. d="M 1.3053582,-3.9585227 5.6537466,0"
  1451. id="path11613"
  1452. inkscape:connector-curvature="0" />
  1453. <path
  1454. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1455. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1456. id="path11615"
  1457. inkscape:connector-curvature="0" />
  1458. <path
  1459. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1460. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1461. id="path11617"
  1462. inkscape:connector-curvature="0" />
  1463. <path
  1464. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1465. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1466. id="path11619"
  1467. inkscape:connector-curvature="0" />
  1468. </g>
  1469. </marker>
  1470. <marker
  1471. inkscape:isstock="true"
  1472. style="overflow:visible"
  1473. id="marker11223"
  1474. refX="0"
  1475. refY="0"
  1476. orient="auto"
  1477. inkscape:stockid="Tail">
  1478. <g
  1479. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1480. transform="scale(-1.2,-1.2)"
  1481. id="g11225">
  1482. <path
  1483. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1484. d="M -3.8048674,-3.9585227 0.54352094,0"
  1485. id="path11227"
  1486. inkscape:connector-curvature="0" />
  1487. <path
  1488. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1489. d="M -1.2866832,-3.9585227 3.0617053,0"
  1490. id="path11229"
  1491. inkscape:connector-curvature="0" />
  1492. <path
  1493. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1494. d="M 1.3053582,-3.9585227 5.6537466,0"
  1495. id="path11231"
  1496. inkscape:connector-curvature="0" />
  1497. <path
  1498. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1499. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1500. id="path11233"
  1501. inkscape:connector-curvature="0" />
  1502. <path
  1503. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1504. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1505. id="path11235"
  1506. inkscape:connector-curvature="0" />
  1507. <path
  1508. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1509. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1510. id="path11237"
  1511. inkscape:connector-curvature="0" />
  1512. </g>
  1513. </marker>
  1514. <marker
  1515. inkscape:isstock="true"
  1516. style="overflow:visible"
  1517. id="marker10865"
  1518. refX="0"
  1519. refY="0"
  1520. orient="auto"
  1521. inkscape:stockid="Tail">
  1522. <g
  1523. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1524. transform="scale(-1.2,-1.2)"
  1525. id="g10867">
  1526. <path
  1527. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1528. d="M -3.8048674,-3.9585227 0.54352094,0"
  1529. id="path10869"
  1530. inkscape:connector-curvature="0" />
  1531. <path
  1532. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1533. d="M -1.2866832,-3.9585227 3.0617053,0"
  1534. id="path10871"
  1535. inkscape:connector-curvature="0" />
  1536. <path
  1537. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1538. d="M 1.3053582,-3.9585227 5.6537466,0"
  1539. id="path10873"
  1540. inkscape:connector-curvature="0" />
  1541. <path
  1542. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1543. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1544. id="path10875"
  1545. inkscape:connector-curvature="0" />
  1546. <path
  1547. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1548. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1549. id="path10877"
  1550. inkscape:connector-curvature="0" />
  1551. <path
  1552. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1553. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1554. id="path10879"
  1555. inkscape:connector-curvature="0" />
  1556. </g>
  1557. </marker>
  1558. <marker
  1559. inkscape:isstock="true"
  1560. style="overflow:visible"
  1561. id="marker10531"
  1562. refX="0"
  1563. refY="0"
  1564. orient="auto"
  1565. inkscape:stockid="Tail">
  1566. <g
  1567. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1568. transform="scale(-1.2,-1.2)"
  1569. id="g10533">
  1570. <path
  1571. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1572. d="M -3.8048674,-3.9585227 0.54352094,0"
  1573. id="path10535"
  1574. inkscape:connector-curvature="0" />
  1575. <path
  1576. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1577. d="M -1.2866832,-3.9585227 3.0617053,0"
  1578. id="path10537"
  1579. inkscape:connector-curvature="0" />
  1580. <path
  1581. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1582. d="M 1.3053582,-3.9585227 5.6537466,0"
  1583. id="path10539"
  1584. inkscape:connector-curvature="0" />
  1585. <path
  1586. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1587. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1588. id="path10541"
  1589. inkscape:connector-curvature="0" />
  1590. <path
  1591. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1592. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1593. id="path10543"
  1594. inkscape:connector-curvature="0" />
  1595. <path
  1596. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1597. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1598. id="path10545"
  1599. inkscape:connector-curvature="0" />
  1600. </g>
  1601. </marker>
  1602. <marker
  1603. inkscape:isstock="true"
  1604. style="overflow:visible"
  1605. id="marker10221"
  1606. refX="0"
  1607. refY="0"
  1608. orient="auto"
  1609. inkscape:stockid="Tail">
  1610. <g
  1611. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1612. transform="scale(-1.2,-1.2)"
  1613. id="g10223">
  1614. <path
  1615. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1616. d="M -3.8048674,-3.9585227 0.54352094,0"
  1617. id="path10225"
  1618. inkscape:connector-curvature="0" />
  1619. <path
  1620. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1621. d="M -1.2866832,-3.9585227 3.0617053,0"
  1622. id="path10227"
  1623. inkscape:connector-curvature="0" />
  1624. <path
  1625. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1626. d="M 1.3053582,-3.9585227 5.6537466,0"
  1627. id="path10229"
  1628. inkscape:connector-curvature="0" />
  1629. <path
  1630. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1631. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1632. id="path10231"
  1633. inkscape:connector-curvature="0" />
  1634. <path
  1635. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1636. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1637. id="path10233"
  1638. inkscape:connector-curvature="0" />
  1639. <path
  1640. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1641. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1642. id="path10235"
  1643. inkscape:connector-curvature="0" />
  1644. </g>
  1645. </marker>
  1646. <marker
  1647. inkscape:isstock="true"
  1648. style="overflow:visible"
  1649. id="marker9935"
  1650. refX="0"
  1651. refY="0"
  1652. orient="auto"
  1653. inkscape:stockid="Tail">
  1654. <g
  1655. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1656. transform="scale(-1.2,-1.2)"
  1657. id="g9937">
  1658. <path
  1659. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1660. d="M -3.8048674,-3.9585227 0.54352094,0"
  1661. id="path9939"
  1662. inkscape:connector-curvature="0" />
  1663. <path
  1664. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1665. d="M -1.2866832,-3.9585227 3.0617053,0"
  1666. id="path9941"
  1667. inkscape:connector-curvature="0" />
  1668. <path
  1669. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1670. d="M 1.3053582,-3.9585227 5.6537466,0"
  1671. id="path9943"
  1672. inkscape:connector-curvature="0" />
  1673. <path
  1674. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1675. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1676. id="path9945"
  1677. inkscape:connector-curvature="0" />
  1678. <path
  1679. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1680. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1681. id="path9947"
  1682. inkscape:connector-curvature="0" />
  1683. <path
  1684. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1685. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1686. id="path9949"
  1687. inkscape:connector-curvature="0" />
  1688. </g>
  1689. </marker>
  1690. <marker
  1691. inkscape:isstock="true"
  1692. style="overflow:visible"
  1693. id="marker9673"
  1694. refX="0"
  1695. refY="0"
  1696. orient="auto"
  1697. inkscape:stockid="Tail">
  1698. <g
  1699. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1700. transform="scale(-1.2,-1.2)"
  1701. id="g9675">
  1702. <path
  1703. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1704. d="M -3.8048674,-3.9585227 0.54352094,0"
  1705. id="path9677"
  1706. inkscape:connector-curvature="0" />
  1707. <path
  1708. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1709. d="M -1.2866832,-3.9585227 3.0617053,0"
  1710. id="path9679"
  1711. inkscape:connector-curvature="0" />
  1712. <path
  1713. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1714. d="M 1.3053582,-3.9585227 5.6537466,0"
  1715. id="path9681"
  1716. inkscape:connector-curvature="0" />
  1717. <path
  1718. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1719. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1720. id="path9683"
  1721. inkscape:connector-curvature="0" />
  1722. <path
  1723. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1724. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1725. id="path9685"
  1726. inkscape:connector-curvature="0" />
  1727. <path
  1728. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1729. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1730. id="path9687"
  1731. inkscape:connector-curvature="0" />
  1732. </g>
  1733. </marker>
  1734. <marker
  1735. inkscape:isstock="true"
  1736. style="overflow:visible"
  1737. id="marker9435"
  1738. refX="0"
  1739. refY="0"
  1740. orient="auto"
  1741. inkscape:stockid="Tail">
  1742. <g
  1743. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1744. transform="scale(-1.2,-1.2)"
  1745. id="g9437">
  1746. <path
  1747. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1748. d="M -3.8048674,-3.9585227 0.54352094,0"
  1749. id="path9439"
  1750. inkscape:connector-curvature="0" />
  1751. <path
  1752. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1753. d="M -1.2866832,-3.9585227 3.0617053,0"
  1754. id="path9441"
  1755. inkscape:connector-curvature="0" />
  1756. <path
  1757. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1758. d="M 1.3053582,-3.9585227 5.6537466,0"
  1759. id="path9443"
  1760. inkscape:connector-curvature="0" />
  1761. <path
  1762. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1763. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1764. id="path9445"
  1765. inkscape:connector-curvature="0" />
  1766. <path
  1767. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1768. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1769. id="path9447"
  1770. inkscape:connector-curvature="0" />
  1771. <path
  1772. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1773. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1774. id="path9449"
  1775. inkscape:connector-curvature="0" />
  1776. </g>
  1777. </marker>
  1778. <marker
  1779. inkscape:isstock="true"
  1780. style="overflow:visible"
  1781. id="marker9221"
  1782. refX="0"
  1783. refY="0"
  1784. orient="auto"
  1785. inkscape:stockid="Tail">
  1786. <g
  1787. style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
  1788. transform="scale(-1.2,-1.2)"
  1789. id="g9223">
  1790. <path
  1791. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1792. d="M -3.8048674,-3.9585227 0.54352094,0"
  1793. id="path9225"
  1794. inkscape:connector-curvature="0" />
  1795. <path
  1796. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1797. d="M -1.2866832,-3.9585227 3.0617053,0"
  1798. id="path9227"
  1799. inkscape:connector-curvature="0" />
  1800. <path
  1801. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1802. d="M 1.3053582,-3.9585227 5.6537466,0"
  1803. id="path9229"
  1804. inkscape:connector-curvature="0" />
  1805. <path
  1806. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1807. d="M -3.8048674,4.1775838 0.54352094,0.21974226"
  1808. id="path9231"
  1809. inkscape:connector-curvature="0" />
  1810. <path
  1811. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1812. d="M -1.2866832,4.1775838 3.0617053,0.21974226"
  1813. id="path9233"
  1814. inkscape:connector-curvature="0" />
  1815. <path
  1816. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1"
  1817. d="M 1.3053582,4.1775838 5.6537466,0.21974226"
  1818. id="path9235"
  1819. inkscape:connector-curvature="0" />
  1820. </g>
  1821. </marker>
  1822. <marker
  1823. inkscape:isstock="true"
  1824. style="overflow:visible"
  1825. id="marker7704"
  1826. refX="0"
  1827. refY="0"
  1828. orient="auto"
  1829. inkscape:stockid="EmptyTriangleOutL">
  1830. <path
  1831. transform="matrix(0.8,0,0,0.8,-4.8,0)"
  1832. style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1833. d="m 5.77,0 -8.65,5 0,-10 8.65,5 z"
  1834. id="path7706"
  1835. inkscape:connector-curvature="0" />
  1836. </marker>
  1837. <marker
  1838. inkscape:isstock="true"
  1839. style="overflow:visible"
  1840. id="marker5237"
  1841. refX="0"
  1842. refY="0"
  1843. orient="auto"
  1844. inkscape:stockid="Arrow1Lend">
  1845. <path
  1846. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1847. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  1848. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1849. id="path5239"
  1850. inkscape:connector-curvature="0" />
  1851. </marker>
  1852. <marker
  1853. inkscape:stockid="Arrow1Lend"
  1854. orient="auto"
  1855. refY="0"
  1856. refX="0"
  1857. id="marker5179"
  1858. style="overflow:visible"
  1859. inkscape:isstock="true"
  1860. inkscape:collect="always">
  1861. <path
  1862. id="path5181"
  1863. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1864. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  1865. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1866. inkscape:connector-curvature="0" />
  1867. </marker>
  1868. <marker
  1869. inkscape:isstock="true"
  1870. style="overflow:visible"
  1871. id="marker4877"
  1872. refX="0"
  1873. refY="0"
  1874. orient="auto"
  1875. inkscape:stockid="Arrow1Lend">
  1876. <path
  1877. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1878. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1879. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1880. id="path4879"
  1881. inkscape:connector-curvature="0" />
  1882. </marker>
  1883. <marker
  1884. inkscape:isstock="true"
  1885. style="overflow:visible"
  1886. id="marker4837"
  1887. refX="0"
  1888. refY="0"
  1889. orient="auto"
  1890. inkscape:stockid="Arrow1Lend">
  1891. <path
  1892. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1893. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1894. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1895. id="path4839"
  1896. inkscape:connector-curvature="0" />
  1897. </marker>
  1898. <marker
  1899. inkscape:isstock="true"
  1900. style="overflow:visible"
  1901. id="marker4803"
  1902. refX="0"
  1903. refY="0"
  1904. orient="auto"
  1905. inkscape:stockid="Arrow1Lend">
  1906. <path
  1907. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1908. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1909. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1910. id="path4805"
  1911. inkscape:connector-curvature="0" />
  1912. </marker>
  1913. <marker
  1914. inkscape:isstock="true"
  1915. style="overflow:visible"
  1916. id="marker4775"
  1917. refX="0"
  1918. refY="0"
  1919. orient="auto"
  1920. inkscape:stockid="Arrow1Lend">
  1921. <path
  1922. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1923. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1924. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1925. id="path4777"
  1926. inkscape:connector-curvature="0" />
  1927. </marker>
  1928. <marker
  1929. inkscape:isstock="true"
  1930. style="overflow:visible"
  1931. id="marker4753"
  1932. refX="0"
  1933. refY="0"
  1934. orient="auto"
  1935. inkscape:stockid="Arrow1Lend">
  1936. <path
  1937. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1938. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1939. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1940. id="path4755"
  1941. inkscape:connector-curvature="0" />
  1942. </marker>
  1943. <marker
  1944. inkscape:stockid="Arrow1Lend"
  1945. orient="auto"
  1946. refY="0"
  1947. refX="0"
  1948. id="marker5555-4"
  1949. style="overflow:visible"
  1950. inkscape:isstock="true">
  1951. <path
  1952. inkscape:connector-curvature="0"
  1953. id="path5557-9"
  1954. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1955. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1956. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  1957. </marker>
  1958. <marker
  1959. inkscape:isstock="true"
  1960. style="overflow:visible"
  1961. id="marker6254-6"
  1962. refX="0"
  1963. refY="0"
  1964. orient="auto"
  1965. inkscape:stockid="Arrow1Lend">
  1966. <path
  1967. inkscape:connector-curvature="0"
  1968. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1969. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1970. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1971. id="path6256-9" />
  1972. </marker>
  1973. <marker
  1974. inkscape:stockid="Arrow1Lend"
  1975. orient="auto"
  1976. refY="0"
  1977. refX="0"
  1978. id="marker7043-0"
  1979. style="overflow:visible"
  1980. inkscape:isstock="true">
  1981. <path
  1982. inkscape:connector-curvature="0"
  1983. id="path7045-0"
  1984. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  1985. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1986. transform="matrix(-0.8,0,0,-0.8,-10,0)" />
  1987. </marker>
  1988. <marker
  1989. inkscape:isstock="true"
  1990. style="overflow:visible"
  1991. id="marker5288"
  1992. refX="0"
  1993. refY="0"
  1994. orient="auto"
  1995. inkscape:stockid="Arrow1Lend">
  1996. <path
  1997. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  1998. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  1999. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2000. id="path5290"
  2001. inkscape:connector-curvature="0" />
  2002. </marker>
  2003. <linearGradient
  2004. inkscape:collect="always"
  2005. xlink:href="#linearGradient41864"
  2006. id="linearGradient41870"
  2007. x1="86.542679"
  2008. y1="-27.119108"
  2009. x2="86.542679"
  2010. y2="135.01039"
  2011. gradientUnits="userSpaceOnUse"
  2012. gradientTransform="translate(0.50023817,0)" />
  2013. <marker
  2014. inkscape:stockid="Arrow1Mend"
  2015. orient="auto"
  2016. refY="0"
  2017. refX="0"
  2018. id="marker9508"
  2019. style="overflow:visible"
  2020. inkscape:isstock="true">
  2021. <path
  2022. id="path9510"
  2023. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2024. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2025. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  2026. inkscape:connector-curvature="0" />
  2027. </marker>
  2028. <linearGradient
  2029. osb:paint="gradient"
  2030. id="linearGradient9393">
  2031. <stop
  2032. id="stop9395"
  2033. offset="0"
  2034. style="stop-color:#000000;stop-opacity:1;" />
  2035. <stop
  2036. id="stop9397"
  2037. offset="1"
  2038. style="stop-color:#000000;stop-opacity:0;" />
  2039. </linearGradient>
  2040. <linearGradient
  2041. id="linearGradient9317">
  2042. <stop
  2043. id="stop9319"
  2044. offset="0"
  2045. style="stop-color:#969696;stop-opacity:1;" />
  2046. </linearGradient>
  2047. <marker
  2048. inkscape:stockid="Arrow1Mend"
  2049. orient="auto"
  2050. refY="0"
  2051. refX="0"
  2052. id="marker7072"
  2053. style="overflow:visible"
  2054. inkscape:isstock="true">
  2055. <path
  2056. id="path7074"
  2057. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2058. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1"
  2059. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  2060. inkscape:connector-curvature="0" />
  2061. </marker>
  2062. <marker
  2063. inkscape:stockid="Arrow1Mend"
  2064. orient="auto"
  2065. refY="0"
  2066. refX="0"
  2067. id="marker6990"
  2068. style="overflow:visible"
  2069. inkscape:isstock="true">
  2070. <path
  2071. id="path6992"
  2072. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2073. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2074. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  2075. inkscape:connector-curvature="0" />
  2076. </marker>
  2077. <marker
  2078. inkscape:stockid="Arrow1Lend"
  2079. orient="auto"
  2080. refY="0"
  2081. refX="0"
  2082. id="marker6834"
  2083. style="overflow:visible"
  2084. inkscape:isstock="true">
  2085. <path
  2086. id="path6836"
  2087. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2088. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2089. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2090. inkscape:connector-curvature="0" />
  2091. </marker>
  2092. <marker
  2093. inkscape:stockid="Arrow1Lend"
  2094. orient="auto"
  2095. refY="0"
  2096. refX="0"
  2097. id="marker6770"
  2098. style="overflow:visible"
  2099. inkscape:isstock="true">
  2100. <path
  2101. id="path6772"
  2102. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2103. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1"
  2104. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2105. inkscape:connector-curvature="0" />
  2106. </marker>
  2107. <marker
  2108. inkscape:stockid="Arrow1Lend"
  2109. orient="auto"
  2110. refY="0"
  2111. refX="0"
  2112. id="marker6712"
  2113. style="overflow:visible"
  2114. inkscape:isstock="true">
  2115. <path
  2116. id="path6714"
  2117. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2118. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2119. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2120. inkscape:connector-curvature="0" />
  2121. </marker>
  2122. <marker
  2123. inkscape:stockid="Arrow1Lend"
  2124. orient="auto"
  2125. refY="0"
  2126. refX="0"
  2127. id="marker6660"
  2128. style="overflow:visible"
  2129. inkscape:isstock="true">
  2130. <path
  2131. id="path6662"
  2132. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2133. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2134. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2135. inkscape:connector-curvature="0" />
  2136. </marker>
  2137. <marker
  2138. inkscape:isstock="true"
  2139. style="overflow:visible"
  2140. id="marker6442"
  2141. refX="0"
  2142. refY="0"
  2143. orient="auto"
  2144. inkscape:stockid="Arrow1Lend">
  2145. <path
  2146. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2147. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2148. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2149. id="path6444"
  2150. inkscape:connector-curvature="0" />
  2151. </marker>
  2152. <marker
  2153. inkscape:isstock="true"
  2154. style="overflow:visible"
  2155. id="marker6408"
  2156. refX="0"
  2157. refY="0"
  2158. orient="auto"
  2159. inkscape:stockid="Arrow1Lend">
  2160. <path
  2161. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2162. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2163. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2164. id="path6410"
  2165. inkscape:connector-curvature="0" />
  2166. </marker>
  2167. <marker
  2168. inkscape:isstock="true"
  2169. style="overflow:visible"
  2170. id="Arrow1Lend-9"
  2171. refX="0"
  2172. refY="0"
  2173. orient="auto"
  2174. inkscape:stockid="Arrow1Lend">
  2175. <path
  2176. transform="matrix(-0.8,0,0,-0.8,-10,0)"
  2177. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2178. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2179. id="path5737-7"
  2180. inkscape:connector-curvature="0" />
  2181. </marker>
  2182. <marker
  2183. inkscape:stockid="Arrow1Mend"
  2184. orient="auto"
  2185. refY="0"
  2186. refX="0"
  2187. id="marker6990-1"
  2188. style="overflow:visible"
  2189. inkscape:isstock="true">
  2190. <path
  2191. inkscape:connector-curvature="0"
  2192. id="path6992-4"
  2193. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2194. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2195. transform="matrix(-0.4,0,0,-0.4,-4,0)" />
  2196. </marker>
  2197. <marker
  2198. inkscape:collect="always"
  2199. inkscape:isstock="true"
  2200. style="overflow:visible"
  2201. id="Arrow1Mend-3"
  2202. refX="0"
  2203. refY="0"
  2204. orient="auto"
  2205. inkscape:stockid="Arrow1Mend">
  2206. <path
  2207. inkscape:connector-curvature="0"
  2208. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  2209. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2210. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2211. id="path5743-2" />
  2212. </marker>
  2213. <marker
  2214. inkscape:collect="always"
  2215. inkscape:stockid="Arrow1Mend"
  2216. orient="auto"
  2217. refY="0"
  2218. refX="0"
  2219. id="marker7160-7"
  2220. style="overflow:visible"
  2221. inkscape:isstock="true">
  2222. <path
  2223. inkscape:connector-curvature="0"
  2224. id="path7162-5"
  2225. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2226. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2227. transform="matrix(-0.4,0,0,-0.4,-4,0)" />
  2228. </marker>
  2229. <marker
  2230. inkscape:collect="always"
  2231. inkscape:isstock="true"
  2232. style="overflow:visible"
  2233. id="marker7350-2"
  2234. refX="0"
  2235. refY="0"
  2236. orient="auto"
  2237. inkscape:stockid="Arrow1Mend">
  2238. <path
  2239. inkscape:connector-curvature="0"
  2240. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  2241. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2242. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2243. id="path7352-7" />
  2244. </marker>
  2245. <marker
  2246. inkscape:collect="always"
  2247. inkscape:isstock="true"
  2248. style="overflow:visible"
  2249. id="marker7350-2-4"
  2250. refX="0"
  2251. refY="0"
  2252. orient="auto"
  2253. inkscape:stockid="Arrow1Mend">
  2254. <path
  2255. inkscape:connector-curvature="0"
  2256. transform="matrix(-0.4,0,0,-0.4,-4,0)"
  2257. style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:1pt;stroke-opacity:1"
  2258. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2259. id="path7352-7-8" />
  2260. </marker>
  2261. <marker
  2262. inkscape:stockid="Arrow1Mend"
  2263. orient="auto"
  2264. refY="0"
  2265. refX="0"
  2266. id="marker6990-1-8"
  2267. style="overflow:visible"
  2268. inkscape:isstock="true">
  2269. <path
  2270. inkscape:connector-curvature="0"
  2271. id="path6992-4-0"
  2272. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2273. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2274. transform="matrix(-0.4,0,0,-0.4,-4,0)" />
  2275. </marker>
  2276. <marker
  2277. inkscape:stockid="Arrow1Mend"
  2278. orient="auto"
  2279. refY="0"
  2280. refX="0"
  2281. id="marker6990-1-5"
  2282. style="overflow:visible"
  2283. inkscape:isstock="true">
  2284. <path
  2285. inkscape:connector-curvature="0"
  2286. id="path6992-4-7"
  2287. d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
  2288. style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
  2289. transform="matrix(-0.4,0,0,-0.4,-4,0)" />
  2290. </marker>
  2291. </defs>
  2292. <sodipodi:namedview
  2293. id="base"
  2294. pagecolor="#ffffff"
  2295. bordercolor="#666666"
  2296. borderopacity="1.0"
  2297. inkscape:pageopacity="0.0"
  2298. inkscape:pageshadow="2"
  2299. inkscape:zoom="0.98994949"
  2300. inkscape:cx="153.7208"
  2301. inkscape:cy="-78.502501"
  2302. inkscape:document-units="px"
  2303. inkscape:current-layer="layer1"
  2304. showgrid="false"
  2305. inkscape:window-width="2558"
  2306. inkscape:window-height="1422"
  2307. inkscape:window-x="0"
  2308. inkscape:window-y="16"
  2309. inkscape:window-maximized="0"
  2310. fit-margin-top="0"
  2311. fit-margin-left="0"
  2312. fit-margin-right="0"
  2313. fit-margin-bottom="0" />
  2314. <metadata
  2315. id="metadata7">
  2316. <rdf:RDF>
  2317. <cc:Work
  2318. rdf:about="">
  2319. <dc:format>image/svg+xml</dc:format>
  2320. <dc:type
  2321. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  2322. <dc:title></dc:title>
  2323. </cc:Work>
  2324. </rdf:RDF>
  2325. </metadata>
  2326. <g
  2327. inkscape:label="Layer 1"
  2328. inkscape:groupmode="layer"
  2329. id="layer1"
  2330. transform="translate(-34.520088,103.88303)">
  2331. <rect
  2332. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#646464;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2333. id="rect36243"
  2334. width="350"
  2335. height="100"
  2336. x="134.01985"
  2337. y="-103.88305" />
  2338. <rect
  2339. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#969696;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2340. id="rect36243-3"
  2341. width="350"
  2342. height="100"
  2343. x="134.01985"
  2344. y="-3.883049" />
  2345. <rect
  2346. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c8c8c8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2347. id="rect36243-3-2"
  2348. width="350"
  2349. height="100"
  2350. x="134.01985"
  2351. y="96.116951" />
  2352. <rect
  2353. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2354. id="rect4208-5"
  2355. width="115.40993"
  2356. height="41.668797"
  2357. x="141.35252"
  2358. y="25.282553"
  2359. ry="0" />
  2360. <text
  2361. xml:space="preserve"
  2362. style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;font-family:Sans;-inkscape-font-specification:Sans;text-align:center;text-anchor:middle;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2363. x="198.60828"
  2364. y="53.573017"
  2365. id="text4172"><tspan
  2366. sodipodi:role="line"
  2367. id="tspan4174"
  2368. x="198.60828"
  2369. y="53.573017">Place</tspan></text>
  2370. <rect
  2371. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2372. id="rect4208-6"
  2373. width="115.40993"
  2374. height="41.668797"
  2375. x="361.27725"
  2376. y="25.282553"
  2377. ry="0" />
  2378. <text
  2379. xml:space="preserve"
  2380. style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;font-family:Sans;-inkscape-font-specification:Sans;text-align:center;text-anchor:middle;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2381. x="419.87088"
  2382. y="53.573017"
  2383. id="text4176"><tspan
  2384. sodipodi:role="line"
  2385. id="tspan4178"
  2386. x="419.87088"
  2387. y="53.573017">Transition</tspan></text>
  2388. <path
  2389. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker5237);enable-background:accumulate"
  2390. d="m 256.31209,35.703642 103.03556,0"
  2391. id="path5175"
  2392. inkscape:connector-curvature="0"
  2393. sodipodi:nodetypes="cc" />
  2394. <path
  2395. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker5179);enable-background:accumulate"
  2396. d="m 360.61035,52.876242 -101.39407,0"
  2397. id="path5177"
  2398. inkscape:connector-curvature="0"
  2399. sodipodi:nodetypes="cc" />
  2400. <circle
  2401. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2402. id="path4136"
  2403. cx="263.46613"
  2404. cy="146.11694"
  2405. r="21.785715" />
  2406. <rect
  2407. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2408. id="rect4138"
  2409. width="11.071428"
  2410. height="44.285713"
  2411. x="365.28784"
  2412. y="123.9741" />
  2413. <path
  2414. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker6660);enable-background:accumulate"
  2415. d="m 285.78756,146.11695 77.58929,0"
  2416. id="path4395"
  2417. inkscape:connector-curvature="0"
  2418. sodipodi:nodetypes="cc" />
  2419. <g
  2420. id="g36303"
  2421. transform="translate(-1.1832677,-55.335817)">
  2422. <rect
  2423. ry="0"
  2424. y="-19.423046"
  2425. x="252.31503"
  2426. height="41.668797"
  2427. width="115.40993"
  2428. id="rect4208"
  2429. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
  2430. <text
  2431. id="text4136"
  2432. y="8.8674049"
  2433. x="309.95163"
  2434. style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;font-family:Sans;-inkscape-font-specification:Sans;text-align:center;text-anchor:middle;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2435. xml:space="preserve"><tspan
  2436. y="8.8674049"
  2437. x="309.95163"
  2438. id="tspan4138"
  2439. sodipodi:role="line">Class</tspan></text>
  2440. </g>
  2441. <path
  2442. style="fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker33698)"
  2443. d="m 367.03364,-68.817821 c 73.85559,-36.667679 98.36173,67.540983 1.78942,30.187543"
  2444. id="path39218"
  2445. inkscape:connector-curvature="0"
  2446. sodipodi:nodetypes="cc" />
  2447. <path
  2448. style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker65086)"
  2449. d="m 250.79606,-36.801707 c -73.85559,36.66768 -97.98293,-69.687553 -1.41062,-32.334114"
  2450. id="path39218-2"
  2451. inkscape:connector-curvature="0"
  2452. sodipodi:nodetypes="cc" />
  2453. <path
  2454. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#EmptyTriangleOutL);enable-background:accumulate"
  2455. d="m 185.41657,-55.296667 64.9023,0"
  2456. id="path41191"
  2457. inkscape:connector-curvature="0"
  2458. sodipodi:nodetypes="cc" />
  2459. <rect
  2460. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient41870);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2461. id="rect41862"
  2462. width="100"
  2463. height="300"
  2464. x="34.520088"
  2465. y="-103.88305" />
  2466. <circle
  2467. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2468. id="path6573-28"
  2469. cx="-89.30648"
  2470. cy="-8.515111"
  2471. r="2.1465743"
  2472. transform="scale(-1,1)" />
  2473. <circle
  2474. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2475. id="path6573-6-7"
  2476. cx="-89.30648"
  2477. cy="28.902645"
  2478. r="2.1465743"
  2479. transform="scale(-1,1)" />
  2480. <circle
  2481. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2482. id="path6573-2-2"
  2483. cx="-89.30648"
  2484. cy="66.320473"
  2485. r="2.1465743"
  2486. transform="scale(-1,1)" />
  2487. <circle
  2488. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2489. id="path6573-8-2"
  2490. cx="-89.30648"
  2491. cy="103.7382"
  2492. r="2.1465743"
  2493. transform="scale(-1,1)" />
  2494. <path
  2495. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker6990-1);enable-background:accumulate"
  2496. d="m 89.30648,-7.14175 0,34.09265"
  2497. id="path6628-5"
  2498. inkscape:connector-curvature="0" />
  2499. <path
  2500. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Mend-3);enable-background:accumulate"
  2501. d="m 89.306489,30.23389 0,33.58758"
  2502. id="path6630-4"
  2503. inkscape:connector-curvature="0" />
  2504. <path
  2505. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker7160-7);enable-background:accumulate"
  2506. d="m 89.306489,67.60954 0,34.09265"
  2507. id="path6632-6"
  2508. inkscape:connector-curvature="0" />
  2509. <path
  2510. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker7350-2);enable-background:accumulate"
  2511. d="M 88.675149,103.97503 C 30.59138,45.89126 87.412459,-8.1519 87.412459,-8.1519"
  2512. id="path6634-1"
  2513. inkscape:connector-curvature="0" />
  2514. <circle
  2515. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2516. id="path6573-2-2-3"
  2517. cx="-89.30648"
  2518. cy="141.57492"
  2519. r="2.1465743"
  2520. transform="scale(-1,1)" />
  2521. <path
  2522. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-end:url(#marker30185);enable-background:accumulate"
  2523. d="m 89.30648,105.48834 0,33.58758"
  2524. id="path6630-4-6"
  2525. inkscape:connector-curvature="0" />
  2526. <circle
  2527. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2528. id="path6573-2-2-5"
  2529. cx="-89.30648"
  2530. cy="179.61064"
  2531. r="2.1465743"
  2532. transform="scale(-1,1)" />
  2533. <path
  2534. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-end:url(#marker55449);enable-background:accumulate"
  2535. d="m 89.30648,143.52406 0,33.58758"
  2536. id="path6630-4-5"
  2537. inkscape:connector-curvature="0" />
  2538. <path
  2539. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:url(#marker7350-2-4);enable-background:accumulate"
  2540. d="m 90.476869,179.63192 c 58.083771,-58.08377 1.26269,-225.341215 1.26269,-225.341215"
  2541. id="path6634-1-1"
  2542. inkscape:connector-curvature="0"
  2543. sodipodi:nodetypes="cc" />
  2544. <circle
  2545. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2546. id="path6573-28-8"
  2547. cx="-89.30648"
  2548. cy="-46.6726"
  2549. r="2.1465743"
  2550. transform="scale(-1,1)" />
  2551. <path
  2552. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-end:url(#marker60974);enable-background:accumulate"
  2553. d="m 89.30648,-45.299253 0,34.092653"
  2554. id="path6628-5-5"
  2555. inkscape:connector-curvature="0" />
  2556. <circle
  2557. style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
  2558. id="path6573-28-9"
  2559. cx="-89.30648"
  2560. cy="-84.932129"
  2561. r="2.1465743"
  2562. transform="scale(-1,1)" />
  2563. <path
  2564. style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-rule:evenodd;stroke:#00ffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-end:url(#marker59980);enable-background:accumulate"
  2565. d="m 89.30648,-83.558781 0,34.092654"
  2566. id="path6628-5-4"
  2567. inkscape:connector-curvature="0" />
  2568. </g>
  2569. </svg>