trading_zone_crosslists_1_0.pgf 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775
  1. %% Creator: Matplotlib, PGF backend
  2. %%
  3. %% To include the figure in your LaTeX document, write
  4. %% \input{<filename>.pgf}
  5. %%
  6. %% Make sure the required packages are loaded in your preamble
  7. %% \usepackage{pgf}
  8. %%
  9. %% Also ensure that all the required font packages are loaded; for instance,
  10. %% the lmodern package is sometimes necessary when using math font.
  11. %% \usepackage{lmodern}
  12. %%
  13. %% Figures using additional raster images can only be included by \input if
  14. %% they are in the same directory as the main LaTeX file. For loading figures
  15. %% from other directories you can use the `import` package
  16. %% \usepackage{import}
  17. %%
  18. %% and then include the figures with
  19. %% \import{<path to file>}{<filename>.pgf}
  20. %%
  21. %% Matplotlib used the following preamble
  22. %% \usepackage{fontspec}
  23. %%
  24. \begingroup%
  25. \makeatletter%
  26. \begin{pgfpicture}%
  27. \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{5.739669in}{4.116555in}}%
  28. \pgfusepath{use as bounding box, clip}%
  29. \begin{pgfscope}%
  30. \pgfsetbuttcap%
  31. \pgfsetmiterjoin%
  32. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  33. \pgfsetfillcolor{currentfill}%
  34. \pgfsetlinewidth{0.000000pt}%
  35. \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
  36. \pgfsetstrokecolor{currentstroke}%
  37. \pgfsetdash{}{0pt}%
  38. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  39. \pgfpathlineto{\pgfqpoint{5.739669in}{0.000000in}}%
  40. \pgfpathlineto{\pgfqpoint{5.739669in}{4.116555in}}%
  41. \pgfpathlineto{\pgfqpoint{0.000000in}{4.116555in}}%
  42. \pgfpathlineto{\pgfqpoint{0.000000in}{0.000000in}}%
  43. \pgfpathclose%
  44. \pgfusepath{fill}%
  45. \end{pgfscope}%
  46. \begin{pgfscope}%
  47. \pgfsetbuttcap%
  48. \pgfsetmiterjoin%
  49. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  50. \pgfsetfillcolor{currentfill}%
  51. \pgfsetlinewidth{0.000000pt}%
  52. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  53. \pgfsetstrokecolor{currentstroke}%
  54. \pgfsetstrokeopacity{0.000000}%
  55. \pgfsetdash{}{0pt}%
  56. \pgfpathmoveto{\pgfqpoint{0.679669in}{0.320555in}}%
  57. \pgfpathlineto{\pgfqpoint{2.934215in}{0.320555in}}%
  58. \pgfpathlineto{\pgfqpoint{2.934215in}{4.016555in}}%
  59. \pgfpathlineto{\pgfqpoint{0.679669in}{4.016555in}}%
  60. \pgfpathlineto{\pgfqpoint{0.679669in}{0.320555in}}%
  61. \pgfpathclose%
  62. \pgfusepath{fill}%
  63. \end{pgfscope}%
  64. \begin{pgfscope}%
  65. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  66. \pgfusepath{clip}%
  67. \pgfsetbuttcap%
  68. \pgfsetroundjoin%
  69. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  70. \pgfsetfillcolor{currentfill}%
  71. \pgfsetlinewidth{1.003750pt}%
  72. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  73. \pgfsetstrokecolor{currentstroke}%
  74. \pgfsetdash{}{0pt}%
  75. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  76. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  77. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  78. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  79. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  80. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  81. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  82. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  83. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  84. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  85. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  86. \pgfpathclose%
  87. \pgfusepath{stroke,fill}%
  88. }%
  89. \begin{pgfscope}%
  90. \pgfsys@transformshift{0.679669in}{3.256862in}%
  91. \pgfsys@useobject{currentmarker}{}%
  92. \end{pgfscope}%
  93. \begin{pgfscope}%
  94. \pgfsys@transformshift{0.804922in}{3.100447in}%
  95. \pgfsys@useobject{currentmarker}{}%
  96. \end{pgfscope}%
  97. \begin{pgfscope}%
  98. \pgfsys@transformshift{0.930174in}{2.853953in}%
  99. \pgfsys@useobject{currentmarker}{}%
  100. \end{pgfscope}%
  101. \begin{pgfscope}%
  102. \pgfsys@transformshift{1.055427in}{2.778896in}%
  103. \pgfsys@useobject{currentmarker}{}%
  104. \end{pgfscope}%
  105. \begin{pgfscope}%
  106. \pgfsys@transformshift{1.180679in}{2.727268in}%
  107. \pgfsys@useobject{currentmarker}{}%
  108. \end{pgfscope}%
  109. \begin{pgfscope}%
  110. \pgfsys@transformshift{1.305932in}{2.659744in}%
  111. \pgfsys@useobject{currentmarker}{}%
  112. \end{pgfscope}%
  113. \begin{pgfscope}%
  114. \pgfsys@transformshift{1.431184in}{2.461594in}%
  115. \pgfsys@useobject{currentmarker}{}%
  116. \end{pgfscope}%
  117. \begin{pgfscope}%
  118. \pgfsys@transformshift{1.556437in}{2.361229in}%
  119. \pgfsys@useobject{currentmarker}{}%
  120. \end{pgfscope}%
  121. \begin{pgfscope}%
  122. \pgfsys@transformshift{1.681689in}{2.286036in}%
  123. \pgfsys@useobject{currentmarker}{}%
  124. \end{pgfscope}%
  125. \begin{pgfscope}%
  126. \pgfsys@transformshift{1.806942in}{1.913011in}%
  127. \pgfsys@useobject{currentmarker}{}%
  128. \end{pgfscope}%
  129. \begin{pgfscope}%
  130. \pgfsys@transformshift{1.932194in}{1.821186in}%
  131. \pgfsys@useobject{currentmarker}{}%
  132. \end{pgfscope}%
  133. \begin{pgfscope}%
  134. \pgfsys@transformshift{2.057447in}{1.656250in}%
  135. \pgfsys@useobject{currentmarker}{}%
  136. \end{pgfscope}%
  137. \begin{pgfscope}%
  138. \pgfsys@transformshift{2.182699in}{1.501152in}%
  139. \pgfsys@useobject{currentmarker}{}%
  140. \end{pgfscope}%
  141. \begin{pgfscope}%
  142. \pgfsys@transformshift{2.307952in}{1.515761in}%
  143. \pgfsys@useobject{currentmarker}{}%
  144. \end{pgfscope}%
  145. \begin{pgfscope}%
  146. \pgfsys@transformshift{2.433205in}{1.567793in}%
  147. \pgfsys@useobject{currentmarker}{}%
  148. \end{pgfscope}%
  149. \begin{pgfscope}%
  150. \pgfsys@transformshift{2.558457in}{1.409192in}%
  151. \pgfsys@useobject{currentmarker}{}%
  152. \end{pgfscope}%
  153. \begin{pgfscope}%
  154. \pgfsys@transformshift{2.683710in}{1.343562in}%
  155. \pgfsys@useobject{currentmarker}{}%
  156. \end{pgfscope}%
  157. \begin{pgfscope}%
  158. \pgfsys@transformshift{2.808962in}{1.163660in}%
  159. \pgfsys@useobject{currentmarker}{}%
  160. \end{pgfscope}%
  161. \begin{pgfscope}%
  162. \pgfsys@transformshift{2.934215in}{1.178093in}%
  163. \pgfsys@useobject{currentmarker}{}%
  164. \end{pgfscope}%
  165. \end{pgfscope}%
  166. \begin{pgfscope}%
  167. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  168. \pgfusepath{clip}%
  169. \pgfsetbuttcap%
  170. \pgfsetroundjoin%
  171. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  172. \pgfsetfillcolor{currentfill}%
  173. \pgfsetlinewidth{1.003750pt}%
  174. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  175. \pgfsetstrokecolor{currentstroke}%
  176. \pgfsetdash{}{0pt}%
  177. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  178. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  179. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  180. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  181. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  182. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  183. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  184. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  185. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  186. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  187. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  188. \pgfpathclose%
  189. \pgfusepath{stroke,fill}%
  190. }%
  191. \begin{pgfscope}%
  192. \pgfsys@transformshift{0.679669in}{3.304749in}%
  193. \pgfsys@useobject{currentmarker}{}%
  194. \end{pgfscope}%
  195. \begin{pgfscope}%
  196. \pgfsys@transformshift{0.804922in}{3.056746in}%
  197. \pgfsys@useobject{currentmarker}{}%
  198. \end{pgfscope}%
  199. \begin{pgfscope}%
  200. \pgfsys@transformshift{0.930174in}{2.887201in}%
  201. \pgfsys@useobject{currentmarker}{}%
  202. \end{pgfscope}%
  203. \begin{pgfscope}%
  204. \pgfsys@transformshift{1.055427in}{2.764237in}%
  205. \pgfsys@useobject{currentmarker}{}%
  206. \end{pgfscope}%
  207. \begin{pgfscope}%
  208. \pgfsys@transformshift{1.180679in}{2.783102in}%
  209. \pgfsys@useobject{currentmarker}{}%
  210. \end{pgfscope}%
  211. \begin{pgfscope}%
  212. \pgfsys@transformshift{1.305932in}{2.725182in}%
  213. \pgfsys@useobject{currentmarker}{}%
  214. \end{pgfscope}%
  215. \begin{pgfscope}%
  216. \pgfsys@transformshift{1.431184in}{2.518594in}%
  217. \pgfsys@useobject{currentmarker}{}%
  218. \end{pgfscope}%
  219. \begin{pgfscope}%
  220. \pgfsys@transformshift{1.556437in}{2.425469in}%
  221. \pgfsys@useobject{currentmarker}{}%
  222. \end{pgfscope}%
  223. \begin{pgfscope}%
  224. \pgfsys@transformshift{1.681689in}{2.384981in}%
  225. \pgfsys@useobject{currentmarker}{}%
  226. \end{pgfscope}%
  227. \begin{pgfscope}%
  228. \pgfsys@transformshift{1.806942in}{2.133775in}%
  229. \pgfsys@useobject{currentmarker}{}%
  230. \end{pgfscope}%
  231. \begin{pgfscope}%
  232. \pgfsys@transformshift{1.932194in}{2.020694in}%
  233. \pgfsys@useobject{currentmarker}{}%
  234. \end{pgfscope}%
  235. \begin{pgfscope}%
  236. \pgfsys@transformshift{2.057447in}{1.949559in}%
  237. \pgfsys@useobject{currentmarker}{}%
  238. \end{pgfscope}%
  239. \begin{pgfscope}%
  240. \pgfsys@transformshift{2.182699in}{1.932750in}%
  241. \pgfsys@useobject{currentmarker}{}%
  242. \end{pgfscope}%
  243. \begin{pgfscope}%
  244. \pgfsys@transformshift{2.307952in}{1.909406in}%
  245. \pgfsys@useobject{currentmarker}{}%
  246. \end{pgfscope}%
  247. \begin{pgfscope}%
  248. \pgfsys@transformshift{2.433205in}{1.971643in}%
  249. \pgfsys@useobject{currentmarker}{}%
  250. \end{pgfscope}%
  251. \begin{pgfscope}%
  252. \pgfsys@transformshift{2.558457in}{1.888814in}%
  253. \pgfsys@useobject{currentmarker}{}%
  254. \end{pgfscope}%
  255. \begin{pgfscope}%
  256. \pgfsys@transformshift{2.683710in}{1.821555in}%
  257. \pgfsys@useobject{currentmarker}{}%
  258. \end{pgfscope}%
  259. \begin{pgfscope}%
  260. \pgfsys@transformshift{2.808962in}{1.519306in}%
  261. \pgfsys@useobject{currentmarker}{}%
  262. \end{pgfscope}%
  263. \begin{pgfscope}%
  264. \pgfsys@transformshift{2.934215in}{1.708147in}%
  265. \pgfsys@useobject{currentmarker}{}%
  266. \end{pgfscope}%
  267. \end{pgfscope}%
  268. \begin{pgfscope}%
  269. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  270. \pgfusepath{clip}%
  271. \pgfsetbuttcap%
  272. \pgfsetroundjoin%
  273. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  274. \pgfsetfillcolor{currentfill}%
  275. \pgfsetlinewidth{1.003750pt}%
  276. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  277. \pgfsetstrokecolor{currentstroke}%
  278. \pgfsetdash{}{0pt}%
  279. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  280. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  281. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  282. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  283. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  284. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  285. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  286. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  287. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  288. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  289. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  290. \pgfpathclose%
  291. \pgfusepath{stroke,fill}%
  292. }%
  293. \begin{pgfscope}%
  294. \pgfsys@transformshift{0.679669in}{1.705216in}%
  295. \pgfsys@useobject{currentmarker}{}%
  296. \end{pgfscope}%
  297. \begin{pgfscope}%
  298. \pgfsys@transformshift{0.804922in}{1.624559in}%
  299. \pgfsys@useobject{currentmarker}{}%
  300. \end{pgfscope}%
  301. \begin{pgfscope}%
  302. \pgfsys@transformshift{0.930174in}{1.984266in}%
  303. \pgfsys@useobject{currentmarker}{}%
  304. \end{pgfscope}%
  305. \begin{pgfscope}%
  306. \pgfsys@transformshift{1.055427in}{2.146462in}%
  307. \pgfsys@useobject{currentmarker}{}%
  308. \end{pgfscope}%
  309. \begin{pgfscope}%
  310. \pgfsys@transformshift{1.180679in}{2.252280in}%
  311. \pgfsys@useobject{currentmarker}{}%
  312. \end{pgfscope}%
  313. \begin{pgfscope}%
  314. \pgfsys@transformshift{1.305932in}{2.305572in}%
  315. \pgfsys@useobject{currentmarker}{}%
  316. \end{pgfscope}%
  317. \begin{pgfscope}%
  318. \pgfsys@transformshift{1.431184in}{2.321759in}%
  319. \pgfsys@useobject{currentmarker}{}%
  320. \end{pgfscope}%
  321. \begin{pgfscope}%
  322. \pgfsys@transformshift{1.556437in}{2.373519in}%
  323. \pgfsys@useobject{currentmarker}{}%
  324. \end{pgfscope}%
  325. \begin{pgfscope}%
  326. \pgfsys@transformshift{1.681689in}{2.683969in}%
  327. \pgfsys@useobject{currentmarker}{}%
  328. \end{pgfscope}%
  329. \begin{pgfscope}%
  330. \pgfsys@transformshift{1.806942in}{2.622144in}%
  331. \pgfsys@useobject{currentmarker}{}%
  332. \end{pgfscope}%
  333. \begin{pgfscope}%
  334. \pgfsys@transformshift{1.932194in}{2.645069in}%
  335. \pgfsys@useobject{currentmarker}{}%
  336. \end{pgfscope}%
  337. \begin{pgfscope}%
  338. \pgfsys@transformshift{2.057447in}{2.592161in}%
  339. \pgfsys@useobject{currentmarker}{}%
  340. \end{pgfscope}%
  341. \begin{pgfscope}%
  342. \pgfsys@transformshift{2.182699in}{2.794032in}%
  343. \pgfsys@useobject{currentmarker}{}%
  344. \end{pgfscope}%
  345. \begin{pgfscope}%
  346. \pgfsys@transformshift{2.307952in}{2.851276in}%
  347. \pgfsys@useobject{currentmarker}{}%
  348. \end{pgfscope}%
  349. \begin{pgfscope}%
  350. \pgfsys@transformshift{2.433205in}{3.034296in}%
  351. \pgfsys@useobject{currentmarker}{}%
  352. \end{pgfscope}%
  353. \begin{pgfscope}%
  354. \pgfsys@transformshift{2.558457in}{3.029797in}%
  355. \pgfsys@useobject{currentmarker}{}%
  356. \end{pgfscope}%
  357. \begin{pgfscope}%
  358. \pgfsys@transformshift{2.683710in}{3.225131in}%
  359. \pgfsys@useobject{currentmarker}{}%
  360. \end{pgfscope}%
  361. \begin{pgfscope}%
  362. \pgfsys@transformshift{2.808962in}{3.137875in}%
  363. \pgfsys@useobject{currentmarker}{}%
  364. \end{pgfscope}%
  365. \begin{pgfscope}%
  366. \pgfsys@transformshift{2.934215in}{3.324575in}%
  367. \pgfsys@useobject{currentmarker}{}%
  368. \end{pgfscope}%
  369. \end{pgfscope}%
  370. \begin{pgfscope}%
  371. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  372. \pgfusepath{clip}%
  373. \pgfsetbuttcap%
  374. \pgfsetroundjoin%
  375. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  376. \pgfsetfillcolor{currentfill}%
  377. \pgfsetlinewidth{1.003750pt}%
  378. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  379. \pgfsetstrokecolor{currentstroke}%
  380. \pgfsetdash{}{0pt}%
  381. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  382. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  383. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  384. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  385. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  386. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  387. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  388. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  389. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  390. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  391. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  392. \pgfpathclose%
  393. \pgfusepath{stroke,fill}%
  394. }%
  395. \begin{pgfscope}%
  396. \pgfsys@transformshift{0.679669in}{3.867859in}%
  397. \pgfsys@useobject{currentmarker}{}%
  398. \end{pgfscope}%
  399. \begin{pgfscope}%
  400. \pgfsys@transformshift{0.804922in}{3.762300in}%
  401. \pgfsys@useobject{currentmarker}{}%
  402. \end{pgfscope}%
  403. \begin{pgfscope}%
  404. \pgfsys@transformshift{0.930174in}{3.634142in}%
  405. \pgfsys@useobject{currentmarker}{}%
  406. \end{pgfscope}%
  407. \begin{pgfscope}%
  408. \pgfsys@transformshift{1.055427in}{3.603556in}%
  409. \pgfsys@useobject{currentmarker}{}%
  410. \end{pgfscope}%
  411. \begin{pgfscope}%
  412. \pgfsys@transformshift{1.180679in}{3.575936in}%
  413. \pgfsys@useobject{currentmarker}{}%
  414. \end{pgfscope}%
  415. \begin{pgfscope}%
  416. \pgfsys@transformshift{1.305932in}{3.659596in}%
  417. \pgfsys@useobject{currentmarker}{}%
  418. \end{pgfscope}%
  419. \begin{pgfscope}%
  420. \pgfsys@transformshift{1.431184in}{3.584824in}%
  421. \pgfsys@useobject{currentmarker}{}%
  422. \end{pgfscope}%
  423. \begin{pgfscope}%
  424. \pgfsys@transformshift{1.556437in}{3.510749in}%
  425. \pgfsys@useobject{currentmarker}{}%
  426. \end{pgfscope}%
  427. \begin{pgfscope}%
  428. \pgfsys@transformshift{1.681689in}{3.493173in}%
  429. \pgfsys@useobject{currentmarker}{}%
  430. \end{pgfscope}%
  431. \begin{pgfscope}%
  432. \pgfsys@transformshift{1.806942in}{3.445799in}%
  433. \pgfsys@useobject{currentmarker}{}%
  434. \end{pgfscope}%
  435. \begin{pgfscope}%
  436. \pgfsys@transformshift{1.932194in}{3.378342in}%
  437. \pgfsys@useobject{currentmarker}{}%
  438. \end{pgfscope}%
  439. \begin{pgfscope}%
  440. \pgfsys@transformshift{2.057447in}{3.393363in}%
  441. \pgfsys@useobject{currentmarker}{}%
  442. \end{pgfscope}%
  443. \begin{pgfscope}%
  444. \pgfsys@transformshift{2.182699in}{3.529307in}%
  445. \pgfsys@useobject{currentmarker}{}%
  446. \end{pgfscope}%
  447. \begin{pgfscope}%
  448. \pgfsys@transformshift{2.307952in}{3.523449in}%
  449. \pgfsys@useobject{currentmarker}{}%
  450. \end{pgfscope}%
  451. \begin{pgfscope}%
  452. \pgfsys@transformshift{2.433205in}{3.578233in}%
  453. \pgfsys@useobject{currentmarker}{}%
  454. \end{pgfscope}%
  455. \begin{pgfscope}%
  456. \pgfsys@transformshift{2.558457in}{3.628996in}%
  457. \pgfsys@useobject{currentmarker}{}%
  458. \end{pgfscope}%
  459. \begin{pgfscope}%
  460. \pgfsys@transformshift{2.683710in}{3.542905in}%
  461. \pgfsys@useobject{currentmarker}{}%
  462. \end{pgfscope}%
  463. \begin{pgfscope}%
  464. \pgfsys@transformshift{2.808962in}{3.549264in}%
  465. \pgfsys@useobject{currentmarker}{}%
  466. \end{pgfscope}%
  467. \begin{pgfscope}%
  468. \pgfsys@transformshift{2.934215in}{3.539555in}%
  469. \pgfsys@useobject{currentmarker}{}%
  470. \end{pgfscope}%
  471. \end{pgfscope}%
  472. \begin{pgfscope}%
  473. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  474. \pgfusepath{clip}%
  475. \pgfsetbuttcap%
  476. \pgfsetroundjoin%
  477. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  478. \pgfsetfillcolor{currentfill}%
  479. \pgfsetlinewidth{1.003750pt}%
  480. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  481. \pgfsetstrokecolor{currentstroke}%
  482. \pgfsetdash{}{0pt}%
  483. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  484. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  485. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  486. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  487. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  488. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  489. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  490. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  491. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  492. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  493. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  494. \pgfpathclose%
  495. \pgfusepath{stroke,fill}%
  496. }%
  497. \begin{pgfscope}%
  498. \pgfsys@transformshift{0.679669in}{3.967794in}%
  499. \pgfsys@useobject{currentmarker}{}%
  500. \end{pgfscope}%
  501. \begin{pgfscope}%
  502. \pgfsys@transformshift{0.804922in}{3.827662in}%
  503. \pgfsys@useobject{currentmarker}{}%
  504. \end{pgfscope}%
  505. \begin{pgfscope}%
  506. \pgfsys@transformshift{0.930174in}{3.630464in}%
  507. \pgfsys@useobject{currentmarker}{}%
  508. \end{pgfscope}%
  509. \begin{pgfscope}%
  510. \pgfsys@transformshift{1.055427in}{3.533664in}%
  511. \pgfsys@useobject{currentmarker}{}%
  512. \end{pgfscope}%
  513. \begin{pgfscope}%
  514. \pgfsys@transformshift{1.180679in}{3.535572in}%
  515. \pgfsys@useobject{currentmarker}{}%
  516. \end{pgfscope}%
  517. \begin{pgfscope}%
  518. \pgfsys@transformshift{1.305932in}{3.433924in}%
  519. \pgfsys@useobject{currentmarker}{}%
  520. \end{pgfscope}%
  521. \begin{pgfscope}%
  522. \pgfsys@transformshift{1.431184in}{3.314277in}%
  523. \pgfsys@useobject{currentmarker}{}%
  524. \end{pgfscope}%
  525. \begin{pgfscope}%
  526. \pgfsys@transformshift{1.556437in}{3.187400in}%
  527. \pgfsys@useobject{currentmarker}{}%
  528. \end{pgfscope}%
  529. \begin{pgfscope}%
  530. \pgfsys@transformshift{1.681689in}{3.097405in}%
  531. \pgfsys@useobject{currentmarker}{}%
  532. \end{pgfscope}%
  533. \begin{pgfscope}%
  534. \pgfsys@transformshift{1.806942in}{2.823843in}%
  535. \pgfsys@useobject{currentmarker}{}%
  536. \end{pgfscope}%
  537. \begin{pgfscope}%
  538. \pgfsys@transformshift{1.932194in}{2.735078in}%
  539. \pgfsys@useobject{currentmarker}{}%
  540. \end{pgfscope}%
  541. \begin{pgfscope}%
  542. \pgfsys@transformshift{2.057447in}{2.553555in}%
  543. \pgfsys@useobject{currentmarker}{}%
  544. \end{pgfscope}%
  545. \begin{pgfscope}%
  546. \pgfsys@transformshift{2.182699in}{2.409093in}%
  547. \pgfsys@useobject{currentmarker}{}%
  548. \end{pgfscope}%
  549. \begin{pgfscope}%
  550. \pgfsys@transformshift{2.307952in}{2.420251in}%
  551. \pgfsys@useobject{currentmarker}{}%
  552. \end{pgfscope}%
  553. \begin{pgfscope}%
  554. \pgfsys@transformshift{2.433205in}{2.292743in}%
  555. \pgfsys@useobject{currentmarker}{}%
  556. \end{pgfscope}%
  557. \begin{pgfscope}%
  558. \pgfsys@transformshift{2.558457in}{2.361474in}%
  559. \pgfsys@useobject{currentmarker}{}%
  560. \end{pgfscope}%
  561. \begin{pgfscope}%
  562. \pgfsys@transformshift{2.683710in}{2.163838in}%
  563. \pgfsys@useobject{currentmarker}{}%
  564. \end{pgfscope}%
  565. \begin{pgfscope}%
  566. \pgfsys@transformshift{2.808962in}{2.024020in}%
  567. \pgfsys@useobject{currentmarker}{}%
  568. \end{pgfscope}%
  569. \begin{pgfscope}%
  570. \pgfsys@transformshift{2.934215in}{2.062458in}%
  571. \pgfsys@useobject{currentmarker}{}%
  572. \end{pgfscope}%
  573. \end{pgfscope}%
  574. \begin{pgfscope}%
  575. \pgfsetbuttcap%
  576. \pgfsetroundjoin%
  577. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  578. \pgfsetfillcolor{currentfill}%
  579. \pgfsetlinewidth{0.803000pt}%
  580. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  581. \pgfsetstrokecolor{currentstroke}%
  582. \pgfsetdash{}{0pt}%
  583. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  584. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  585. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  586. \pgfusepath{stroke,fill}%
  587. }%
  588. \begin{pgfscope}%
  589. \pgfsys@transformshift{1.180679in}{0.320555in}%
  590. \pgfsys@useobject{currentmarker}{}%
  591. \end{pgfscope}%
  592. \end{pgfscope}%
  593. \begin{pgfscope}%
  594. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  595. \pgfsetstrokecolor{textcolor}%
  596. \pgfsetfillcolor{textcolor}%
  597. \pgftext[x=1.180679in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2005}\)}%
  598. \end{pgfscope}%
  599. \begin{pgfscope}%
  600. \pgfsetbuttcap%
  601. \pgfsetroundjoin%
  602. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  603. \pgfsetfillcolor{currentfill}%
  604. \pgfsetlinewidth{0.803000pt}%
  605. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  606. \pgfsetstrokecolor{currentstroke}%
  607. \pgfsetdash{}{0pt}%
  608. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  609. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  610. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  611. \pgfusepath{stroke,fill}%
  612. }%
  613. \begin{pgfscope}%
  614. \pgfsys@transformshift{1.806942in}{0.320555in}%
  615. \pgfsys@useobject{currentmarker}{}%
  616. \end{pgfscope}%
  617. \end{pgfscope}%
  618. \begin{pgfscope}%
  619. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  620. \pgfsetstrokecolor{textcolor}%
  621. \pgfsetfillcolor{textcolor}%
  622. \pgftext[x=1.806942in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2010}\)}%
  623. \end{pgfscope}%
  624. \begin{pgfscope}%
  625. \pgfsetbuttcap%
  626. \pgfsetroundjoin%
  627. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  628. \pgfsetfillcolor{currentfill}%
  629. \pgfsetlinewidth{0.803000pt}%
  630. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  631. \pgfsetstrokecolor{currentstroke}%
  632. \pgfsetdash{}{0pt}%
  633. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  634. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  635. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  636. \pgfusepath{stroke,fill}%
  637. }%
  638. \begin{pgfscope}%
  639. \pgfsys@transformshift{2.433205in}{0.320555in}%
  640. \pgfsys@useobject{currentmarker}{}%
  641. \end{pgfscope}%
  642. \end{pgfscope}%
  643. \begin{pgfscope}%
  644. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  645. \pgfsetstrokecolor{textcolor}%
  646. \pgfsetfillcolor{textcolor}%
  647. \pgftext[x=2.433205in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2015}\)}%
  648. \end{pgfscope}%
  649. \begin{pgfscope}%
  650. \pgfsetbuttcap%
  651. \pgfsetroundjoin%
  652. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  653. \pgfsetfillcolor{currentfill}%
  654. \pgfsetlinewidth{0.803000pt}%
  655. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  656. \pgfsetstrokecolor{currentstroke}%
  657. \pgfsetdash{}{0pt}%
  658. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  659. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  660. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  661. \pgfusepath{stroke,fill}%
  662. }%
  663. \begin{pgfscope}%
  664. \pgfsys@transformshift{0.679669in}{1.286835in}%
  665. \pgfsys@useobject{currentmarker}{}%
  666. \end{pgfscope}%
  667. \end{pgfscope}%
  668. \begin{pgfscope}%
  669. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  670. \pgfsetstrokecolor{textcolor}%
  671. \pgfsetfillcolor{textcolor}%
  672. \pgftext[x=0.294444in, y=1.238641in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{-2}}\)}%
  673. \end{pgfscope}%
  674. \begin{pgfscope}%
  675. \pgfsetbuttcap%
  676. \pgfsetroundjoin%
  677. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  678. \pgfsetfillcolor{currentfill}%
  679. \pgfsetlinewidth{0.803000pt}%
  680. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  681. \pgfsetstrokecolor{currentstroke}%
  682. \pgfsetdash{}{0pt}%
  683. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  684. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  685. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  686. \pgfusepath{stroke,fill}%
  687. }%
  688. \begin{pgfscope}%
  689. \pgfsys@transformshift{0.679669in}{3.134835in}%
  690. \pgfsys@useobject{currentmarker}{}%
  691. \end{pgfscope}%
  692. \end{pgfscope}%
  693. \begin{pgfscope}%
  694. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  695. \pgfsetstrokecolor{textcolor}%
  696. \pgfsetfillcolor{textcolor}%
  697. \pgftext[x=0.294444in, y=3.086641in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{-1}}\)}%
  698. \end{pgfscope}%
  699. \begin{pgfscope}%
  700. \pgfsetbuttcap%
  701. \pgfsetroundjoin%
  702. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  703. \pgfsetfillcolor{currentfill}%
  704. \pgfsetlinewidth{0.602250pt}%
  705. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  706. \pgfsetstrokecolor{currentstroke}%
  707. \pgfsetdash{}{0pt}%
  708. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  709. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  710. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  711. \pgfusepath{stroke,fill}%
  712. }%
  713. \begin{pgfscope}%
  714. \pgfsys@transformshift{0.679669in}{0.320555in}%
  715. \pgfsys@useobject{currentmarker}{}%
  716. \end{pgfscope}%
  717. \end{pgfscope}%
  718. \begin{pgfscope}%
  719. \pgfsetbuttcap%
  720. \pgfsetroundjoin%
  721. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  722. \pgfsetfillcolor{currentfill}%
  723. \pgfsetlinewidth{0.602250pt}%
  724. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  725. \pgfsetstrokecolor{currentstroke}%
  726. \pgfsetdash{}{0pt}%
  727. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  728. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  729. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  730. \pgfusepath{stroke,fill}%
  731. }%
  732. \begin{pgfscope}%
  733. \pgfsys@transformshift{0.679669in}{0.551442in}%
  734. \pgfsys@useobject{currentmarker}{}%
  735. \end{pgfscope}%
  736. \end{pgfscope}%
  737. \begin{pgfscope}%
  738. \pgfsetbuttcap%
  739. \pgfsetroundjoin%
  740. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  741. \pgfsetfillcolor{currentfill}%
  742. \pgfsetlinewidth{0.602250pt}%
  743. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  744. \pgfsetstrokecolor{currentstroke}%
  745. \pgfsetdash{}{0pt}%
  746. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  747. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  748. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  749. \pgfusepath{stroke,fill}%
  750. }%
  751. \begin{pgfscope}%
  752. \pgfsys@transformshift{0.679669in}{0.730532in}%
  753. \pgfsys@useobject{currentmarker}{}%
  754. \end{pgfscope}%
  755. \end{pgfscope}%
  756. \begin{pgfscope}%
  757. \pgfsetbuttcap%
  758. \pgfsetroundjoin%
  759. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  760. \pgfsetfillcolor{currentfill}%
  761. \pgfsetlinewidth{0.602250pt}%
  762. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  763. \pgfsetstrokecolor{currentstroke}%
  764. \pgfsetdash{}{0pt}%
  765. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  766. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  767. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  768. \pgfusepath{stroke,fill}%
  769. }%
  770. \begin{pgfscope}%
  771. \pgfsys@transformshift{0.679669in}{0.876859in}%
  772. \pgfsys@useobject{currentmarker}{}%
  773. \end{pgfscope}%
  774. \end{pgfscope}%
  775. \begin{pgfscope}%
  776. \pgfsetbuttcap%
  777. \pgfsetroundjoin%
  778. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  779. \pgfsetfillcolor{currentfill}%
  780. \pgfsetlinewidth{0.602250pt}%
  781. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  782. \pgfsetstrokecolor{currentstroke}%
  783. \pgfsetdash{}{0pt}%
  784. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  785. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  786. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  787. \pgfusepath{stroke,fill}%
  788. }%
  789. \begin{pgfscope}%
  790. \pgfsys@transformshift{0.679669in}{1.000577in}%
  791. \pgfsys@useobject{currentmarker}{}%
  792. \end{pgfscope}%
  793. \end{pgfscope}%
  794. \begin{pgfscope}%
  795. \pgfsetbuttcap%
  796. \pgfsetroundjoin%
  797. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  798. \pgfsetfillcolor{currentfill}%
  799. \pgfsetlinewidth{0.602250pt}%
  800. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  801. \pgfsetstrokecolor{currentstroke}%
  802. \pgfsetdash{}{0pt}%
  803. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  804. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  805. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  806. \pgfusepath{stroke,fill}%
  807. }%
  808. \begin{pgfscope}%
  809. \pgfsys@transformshift{0.679669in}{1.107746in}%
  810. \pgfsys@useobject{currentmarker}{}%
  811. \end{pgfscope}%
  812. \end{pgfscope}%
  813. \begin{pgfscope}%
  814. \pgfsetbuttcap%
  815. \pgfsetroundjoin%
  816. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  817. \pgfsetfillcolor{currentfill}%
  818. \pgfsetlinewidth{0.602250pt}%
  819. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  820. \pgfsetstrokecolor{currentstroke}%
  821. \pgfsetdash{}{0pt}%
  822. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  823. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  824. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  825. \pgfusepath{stroke,fill}%
  826. }%
  827. \begin{pgfscope}%
  828. \pgfsys@transformshift{0.679669in}{1.202275in}%
  829. \pgfsys@useobject{currentmarker}{}%
  830. \end{pgfscope}%
  831. \end{pgfscope}%
  832. \begin{pgfscope}%
  833. \pgfsetbuttcap%
  834. \pgfsetroundjoin%
  835. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  836. \pgfsetfillcolor{currentfill}%
  837. \pgfsetlinewidth{0.602250pt}%
  838. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  839. \pgfsetstrokecolor{currentstroke}%
  840. \pgfsetdash{}{0pt}%
  841. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  842. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  843. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  844. \pgfusepath{stroke,fill}%
  845. }%
  846. \begin{pgfscope}%
  847. \pgfsys@transformshift{0.679669in}{1.843139in}%
  848. \pgfsys@useobject{currentmarker}{}%
  849. \end{pgfscope}%
  850. \end{pgfscope}%
  851. \begin{pgfscope}%
  852. \pgfsetbuttcap%
  853. \pgfsetroundjoin%
  854. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  855. \pgfsetfillcolor{currentfill}%
  856. \pgfsetlinewidth{0.602250pt}%
  857. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  858. \pgfsetstrokecolor{currentstroke}%
  859. \pgfsetdash{}{0pt}%
  860. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  861. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  862. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  863. \pgfusepath{stroke,fill}%
  864. }%
  865. \begin{pgfscope}%
  866. \pgfsys@transformshift{0.679669in}{2.168555in}%
  867. \pgfsys@useobject{currentmarker}{}%
  868. \end{pgfscope}%
  869. \end{pgfscope}%
  870. \begin{pgfscope}%
  871. \pgfsetbuttcap%
  872. \pgfsetroundjoin%
  873. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  874. \pgfsetfillcolor{currentfill}%
  875. \pgfsetlinewidth{0.602250pt}%
  876. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  877. \pgfsetstrokecolor{currentstroke}%
  878. \pgfsetdash{}{0pt}%
  879. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  880. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  881. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  882. \pgfusepath{stroke,fill}%
  883. }%
  884. \begin{pgfscope}%
  885. \pgfsys@transformshift{0.679669in}{2.399442in}%
  886. \pgfsys@useobject{currentmarker}{}%
  887. \end{pgfscope}%
  888. \end{pgfscope}%
  889. \begin{pgfscope}%
  890. \pgfsetbuttcap%
  891. \pgfsetroundjoin%
  892. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  893. \pgfsetfillcolor{currentfill}%
  894. \pgfsetlinewidth{0.602250pt}%
  895. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  896. \pgfsetstrokecolor{currentstroke}%
  897. \pgfsetdash{}{0pt}%
  898. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  899. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  900. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  901. \pgfusepath{stroke,fill}%
  902. }%
  903. \begin{pgfscope}%
  904. \pgfsys@transformshift{0.679669in}{2.578532in}%
  905. \pgfsys@useobject{currentmarker}{}%
  906. \end{pgfscope}%
  907. \end{pgfscope}%
  908. \begin{pgfscope}%
  909. \pgfsetbuttcap%
  910. \pgfsetroundjoin%
  911. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  912. \pgfsetfillcolor{currentfill}%
  913. \pgfsetlinewidth{0.602250pt}%
  914. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  915. \pgfsetstrokecolor{currentstroke}%
  916. \pgfsetdash{}{0pt}%
  917. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  918. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  919. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  920. \pgfusepath{stroke,fill}%
  921. }%
  922. \begin{pgfscope}%
  923. \pgfsys@transformshift{0.679669in}{2.724859in}%
  924. \pgfsys@useobject{currentmarker}{}%
  925. \end{pgfscope}%
  926. \end{pgfscope}%
  927. \begin{pgfscope}%
  928. \pgfsetbuttcap%
  929. \pgfsetroundjoin%
  930. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  931. \pgfsetfillcolor{currentfill}%
  932. \pgfsetlinewidth{0.602250pt}%
  933. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  934. \pgfsetstrokecolor{currentstroke}%
  935. \pgfsetdash{}{0pt}%
  936. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  937. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  938. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  939. \pgfusepath{stroke,fill}%
  940. }%
  941. \begin{pgfscope}%
  942. \pgfsys@transformshift{0.679669in}{2.848577in}%
  943. \pgfsys@useobject{currentmarker}{}%
  944. \end{pgfscope}%
  945. \end{pgfscope}%
  946. \begin{pgfscope}%
  947. \pgfsetbuttcap%
  948. \pgfsetroundjoin%
  949. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  950. \pgfsetfillcolor{currentfill}%
  951. \pgfsetlinewidth{0.602250pt}%
  952. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  953. \pgfsetstrokecolor{currentstroke}%
  954. \pgfsetdash{}{0pt}%
  955. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  956. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  957. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  958. \pgfusepath{stroke,fill}%
  959. }%
  960. \begin{pgfscope}%
  961. \pgfsys@transformshift{0.679669in}{2.955746in}%
  962. \pgfsys@useobject{currentmarker}{}%
  963. \end{pgfscope}%
  964. \end{pgfscope}%
  965. \begin{pgfscope}%
  966. \pgfsetbuttcap%
  967. \pgfsetroundjoin%
  968. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  969. \pgfsetfillcolor{currentfill}%
  970. \pgfsetlinewidth{0.602250pt}%
  971. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  972. \pgfsetstrokecolor{currentstroke}%
  973. \pgfsetdash{}{0pt}%
  974. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  975. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  976. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  977. \pgfusepath{stroke,fill}%
  978. }%
  979. \begin{pgfscope}%
  980. \pgfsys@transformshift{0.679669in}{3.050275in}%
  981. \pgfsys@useobject{currentmarker}{}%
  982. \end{pgfscope}%
  983. \end{pgfscope}%
  984. \begin{pgfscope}%
  985. \pgfsetbuttcap%
  986. \pgfsetroundjoin%
  987. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  988. \pgfsetfillcolor{currentfill}%
  989. \pgfsetlinewidth{0.602250pt}%
  990. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  991. \pgfsetstrokecolor{currentstroke}%
  992. \pgfsetdash{}{0pt}%
  993. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  994. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  995. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  996. \pgfusepath{stroke,fill}%
  997. }%
  998. \begin{pgfscope}%
  999. \pgfsys@transformshift{0.679669in}{3.691139in}%
  1000. \pgfsys@useobject{currentmarker}{}%
  1001. \end{pgfscope}%
  1002. \end{pgfscope}%
  1003. \begin{pgfscope}%
  1004. \pgfsetbuttcap%
  1005. \pgfsetroundjoin%
  1006. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1007. \pgfsetfillcolor{currentfill}%
  1008. \pgfsetlinewidth{0.602250pt}%
  1009. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1010. \pgfsetstrokecolor{currentstroke}%
  1011. \pgfsetdash{}{0pt}%
  1012. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  1013. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  1014. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  1015. \pgfusepath{stroke,fill}%
  1016. }%
  1017. \begin{pgfscope}%
  1018. \pgfsys@transformshift{0.679669in}{4.016555in}%
  1019. \pgfsys@useobject{currentmarker}{}%
  1020. \end{pgfscope}%
  1021. \end{pgfscope}%
  1022. \begin{pgfscope}%
  1023. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1024. \pgfsetstrokecolor{textcolor}%
  1025. \pgfsetfillcolor{textcolor}%
  1026. \pgftext[x=0.238889in,y=2.168555in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle P(b_k=1|\)trade\(\displaystyle )\)}%
  1027. \end{pgfscope}%
  1028. \begin{pgfscope}%
  1029. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1030. \pgfusepath{clip}%
  1031. \pgfsetrectcap%
  1032. \pgfsetroundjoin%
  1033. \pgfsetlinewidth{0.501875pt}%
  1034. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  1035. \pgfsetstrokecolor{currentstroke}%
  1036. \pgfsetdash{}{0pt}%
  1037. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.256862in}}%
  1038. \pgfpathlineto{\pgfqpoint{0.804922in}{3.100447in}}%
  1039. \pgfpathlineto{\pgfqpoint{0.930174in}{2.853953in}}%
  1040. \pgfpathlineto{\pgfqpoint{1.055427in}{2.778896in}}%
  1041. \pgfpathlineto{\pgfqpoint{1.180679in}{2.727268in}}%
  1042. \pgfpathlineto{\pgfqpoint{1.305932in}{2.659744in}}%
  1043. \pgfpathlineto{\pgfqpoint{1.431184in}{2.461594in}}%
  1044. \pgfpathlineto{\pgfqpoint{1.556437in}{2.361229in}}%
  1045. \pgfpathlineto{\pgfqpoint{1.681689in}{2.286036in}}%
  1046. \pgfpathlineto{\pgfqpoint{1.806942in}{1.913011in}}%
  1047. \pgfpathlineto{\pgfqpoint{1.932194in}{1.821186in}}%
  1048. \pgfpathlineto{\pgfqpoint{2.057447in}{1.656250in}}%
  1049. \pgfpathlineto{\pgfqpoint{2.182699in}{1.501152in}}%
  1050. \pgfpathlineto{\pgfqpoint{2.307952in}{1.515761in}}%
  1051. \pgfpathlineto{\pgfqpoint{2.433205in}{1.567793in}}%
  1052. \pgfpathlineto{\pgfqpoint{2.558457in}{1.409192in}}%
  1053. \pgfpathlineto{\pgfqpoint{2.683710in}{1.343562in}}%
  1054. \pgfpathlineto{\pgfqpoint{2.808962in}{1.163660in}}%
  1055. \pgfpathlineto{\pgfqpoint{2.934215in}{1.178093in}}%
  1056. \pgfusepath{stroke}%
  1057. \end{pgfscope}%
  1058. \begin{pgfscope}%
  1059. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1060. \pgfusepath{clip}%
  1061. \pgfsetrectcap%
  1062. \pgfsetroundjoin%
  1063. \pgfsetlinewidth{0.501875pt}%
  1064. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  1065. \pgfsetstrokecolor{currentstroke}%
  1066. \pgfsetdash{}{0pt}%
  1067. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.304749in}}%
  1068. \pgfpathlineto{\pgfqpoint{0.804922in}{3.056746in}}%
  1069. \pgfpathlineto{\pgfqpoint{0.930174in}{2.887201in}}%
  1070. \pgfpathlineto{\pgfqpoint{1.055427in}{2.764237in}}%
  1071. \pgfpathlineto{\pgfqpoint{1.180679in}{2.783102in}}%
  1072. \pgfpathlineto{\pgfqpoint{1.305932in}{2.725182in}}%
  1073. \pgfpathlineto{\pgfqpoint{1.431184in}{2.518594in}}%
  1074. \pgfpathlineto{\pgfqpoint{1.556437in}{2.425469in}}%
  1075. \pgfpathlineto{\pgfqpoint{1.681689in}{2.384981in}}%
  1076. \pgfpathlineto{\pgfqpoint{1.806942in}{2.133775in}}%
  1077. \pgfpathlineto{\pgfqpoint{1.932194in}{2.020694in}}%
  1078. \pgfpathlineto{\pgfqpoint{2.057447in}{1.949559in}}%
  1079. \pgfpathlineto{\pgfqpoint{2.182699in}{1.932750in}}%
  1080. \pgfpathlineto{\pgfqpoint{2.307952in}{1.909406in}}%
  1081. \pgfpathlineto{\pgfqpoint{2.433205in}{1.971643in}}%
  1082. \pgfpathlineto{\pgfqpoint{2.558457in}{1.888814in}}%
  1083. \pgfpathlineto{\pgfqpoint{2.683710in}{1.821555in}}%
  1084. \pgfpathlineto{\pgfqpoint{2.808962in}{1.519306in}}%
  1085. \pgfpathlineto{\pgfqpoint{2.934215in}{1.708147in}}%
  1086. \pgfusepath{stroke}%
  1087. \end{pgfscope}%
  1088. \begin{pgfscope}%
  1089. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1090. \pgfusepath{clip}%
  1091. \pgfsetrectcap%
  1092. \pgfsetroundjoin%
  1093. \pgfsetlinewidth{0.501875pt}%
  1094. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  1095. \pgfsetstrokecolor{currentstroke}%
  1096. \pgfsetdash{}{0pt}%
  1097. \pgfpathmoveto{\pgfqpoint{0.679669in}{1.705216in}}%
  1098. \pgfpathlineto{\pgfqpoint{0.804922in}{1.624559in}}%
  1099. \pgfpathlineto{\pgfqpoint{0.930174in}{1.984266in}}%
  1100. \pgfpathlineto{\pgfqpoint{1.055427in}{2.146462in}}%
  1101. \pgfpathlineto{\pgfqpoint{1.180679in}{2.252280in}}%
  1102. \pgfpathlineto{\pgfqpoint{1.305932in}{2.305572in}}%
  1103. \pgfpathlineto{\pgfqpoint{1.431184in}{2.321759in}}%
  1104. \pgfpathlineto{\pgfqpoint{1.556437in}{2.373519in}}%
  1105. \pgfpathlineto{\pgfqpoint{1.681689in}{2.683969in}}%
  1106. \pgfpathlineto{\pgfqpoint{1.806942in}{2.622144in}}%
  1107. \pgfpathlineto{\pgfqpoint{1.932194in}{2.645069in}}%
  1108. \pgfpathlineto{\pgfqpoint{2.057447in}{2.592161in}}%
  1109. \pgfpathlineto{\pgfqpoint{2.182699in}{2.794032in}}%
  1110. \pgfpathlineto{\pgfqpoint{2.307952in}{2.851276in}}%
  1111. \pgfpathlineto{\pgfqpoint{2.433205in}{3.034296in}}%
  1112. \pgfpathlineto{\pgfqpoint{2.558457in}{3.029797in}}%
  1113. \pgfpathlineto{\pgfqpoint{2.683710in}{3.225131in}}%
  1114. \pgfpathlineto{\pgfqpoint{2.808962in}{3.137875in}}%
  1115. \pgfpathlineto{\pgfqpoint{2.934215in}{3.324575in}}%
  1116. \pgfusepath{stroke}%
  1117. \end{pgfscope}%
  1118. \begin{pgfscope}%
  1119. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1120. \pgfusepath{clip}%
  1121. \pgfsetrectcap%
  1122. \pgfsetroundjoin%
  1123. \pgfsetlinewidth{0.501875pt}%
  1124. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  1125. \pgfsetstrokecolor{currentstroke}%
  1126. \pgfsetdash{}{0pt}%
  1127. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.867859in}}%
  1128. \pgfpathlineto{\pgfqpoint{0.804922in}{3.762300in}}%
  1129. \pgfpathlineto{\pgfqpoint{0.930174in}{3.634142in}}%
  1130. \pgfpathlineto{\pgfqpoint{1.055427in}{3.603556in}}%
  1131. \pgfpathlineto{\pgfqpoint{1.180679in}{3.575936in}}%
  1132. \pgfpathlineto{\pgfqpoint{1.305932in}{3.659596in}}%
  1133. \pgfpathlineto{\pgfqpoint{1.431184in}{3.584824in}}%
  1134. \pgfpathlineto{\pgfqpoint{1.556437in}{3.510749in}}%
  1135. \pgfpathlineto{\pgfqpoint{1.681689in}{3.493173in}}%
  1136. \pgfpathlineto{\pgfqpoint{1.806942in}{3.445799in}}%
  1137. \pgfpathlineto{\pgfqpoint{1.932194in}{3.378342in}}%
  1138. \pgfpathlineto{\pgfqpoint{2.057447in}{3.393363in}}%
  1139. \pgfpathlineto{\pgfqpoint{2.182699in}{3.529307in}}%
  1140. \pgfpathlineto{\pgfqpoint{2.307952in}{3.523449in}}%
  1141. \pgfpathlineto{\pgfqpoint{2.433205in}{3.578233in}}%
  1142. \pgfpathlineto{\pgfqpoint{2.558457in}{3.628996in}}%
  1143. \pgfpathlineto{\pgfqpoint{2.683710in}{3.542905in}}%
  1144. \pgfpathlineto{\pgfqpoint{2.808962in}{3.549264in}}%
  1145. \pgfpathlineto{\pgfqpoint{2.934215in}{3.539555in}}%
  1146. \pgfusepath{stroke}%
  1147. \end{pgfscope}%
  1148. \begin{pgfscope}%
  1149. \pgfpathrectangle{\pgfqpoint{0.679669in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1150. \pgfusepath{clip}%
  1151. \pgfsetrectcap%
  1152. \pgfsetroundjoin%
  1153. \pgfsetlinewidth{0.501875pt}%
  1154. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  1155. \pgfsetstrokecolor{currentstroke}%
  1156. \pgfsetdash{}{0pt}%
  1157. \pgfpathmoveto{\pgfqpoint{0.679669in}{3.967794in}}%
  1158. \pgfpathlineto{\pgfqpoint{0.804922in}{3.827662in}}%
  1159. \pgfpathlineto{\pgfqpoint{0.930174in}{3.630464in}}%
  1160. \pgfpathlineto{\pgfqpoint{1.055427in}{3.533664in}}%
  1161. \pgfpathlineto{\pgfqpoint{1.180679in}{3.535572in}}%
  1162. \pgfpathlineto{\pgfqpoint{1.305932in}{3.433924in}}%
  1163. \pgfpathlineto{\pgfqpoint{1.431184in}{3.314277in}}%
  1164. \pgfpathlineto{\pgfqpoint{1.556437in}{3.187400in}}%
  1165. \pgfpathlineto{\pgfqpoint{1.681689in}{3.097405in}}%
  1166. \pgfpathlineto{\pgfqpoint{1.806942in}{2.823843in}}%
  1167. \pgfpathlineto{\pgfqpoint{1.932194in}{2.735078in}}%
  1168. \pgfpathlineto{\pgfqpoint{2.057447in}{2.553555in}}%
  1169. \pgfpathlineto{\pgfqpoint{2.182699in}{2.409093in}}%
  1170. \pgfpathlineto{\pgfqpoint{2.307952in}{2.420251in}}%
  1171. \pgfpathlineto{\pgfqpoint{2.433205in}{2.292743in}}%
  1172. \pgfpathlineto{\pgfqpoint{2.558457in}{2.361474in}}%
  1173. \pgfpathlineto{\pgfqpoint{2.683710in}{2.163838in}}%
  1174. \pgfpathlineto{\pgfqpoint{2.808962in}{2.024020in}}%
  1175. \pgfpathlineto{\pgfqpoint{2.934215in}{2.062458in}}%
  1176. \pgfusepath{stroke}%
  1177. \end{pgfscope}%
  1178. \begin{pgfscope}%
  1179. \pgfsetrectcap%
  1180. \pgfsetmiterjoin%
  1181. \pgfsetlinewidth{0.803000pt}%
  1182. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1183. \pgfsetstrokecolor{currentstroke}%
  1184. \pgfsetdash{}{0pt}%
  1185. \pgfpathmoveto{\pgfqpoint{0.679669in}{0.320555in}}%
  1186. \pgfpathlineto{\pgfqpoint{0.679669in}{4.016555in}}%
  1187. \pgfusepath{stroke}%
  1188. \end{pgfscope}%
  1189. \begin{pgfscope}%
  1190. \pgfsetrectcap%
  1191. \pgfsetmiterjoin%
  1192. \pgfsetlinewidth{0.803000pt}%
  1193. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1194. \pgfsetstrokecolor{currentstroke}%
  1195. \pgfsetdash{}{0pt}%
  1196. \pgfpathmoveto{\pgfqpoint{2.934215in}{0.320555in}}%
  1197. \pgfpathlineto{\pgfqpoint{2.934215in}{4.016555in}}%
  1198. \pgfusepath{stroke}%
  1199. \end{pgfscope}%
  1200. \begin{pgfscope}%
  1201. \pgfsetrectcap%
  1202. \pgfsetmiterjoin%
  1203. \pgfsetlinewidth{0.803000pt}%
  1204. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1205. \pgfsetstrokecolor{currentstroke}%
  1206. \pgfsetdash{}{0pt}%
  1207. \pgfpathmoveto{\pgfqpoint{0.679669in}{0.320555in}}%
  1208. \pgfpathlineto{\pgfqpoint{2.934215in}{0.320555in}}%
  1209. \pgfusepath{stroke}%
  1210. \end{pgfscope}%
  1211. \begin{pgfscope}%
  1212. \pgfsetrectcap%
  1213. \pgfsetmiterjoin%
  1214. \pgfsetlinewidth{0.803000pt}%
  1215. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1216. \pgfsetstrokecolor{currentstroke}%
  1217. \pgfsetdash{}{0pt}%
  1218. \pgfpathmoveto{\pgfqpoint{0.679669in}{4.016555in}}%
  1219. \pgfpathlineto{\pgfqpoint{2.934215in}{4.016555in}}%
  1220. \pgfusepath{stroke}%
  1221. \end{pgfscope}%
  1222. \begin{pgfscope}%
  1223. \pgfsetbuttcap%
  1224. \pgfsetmiterjoin%
  1225. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  1226. \pgfsetfillcolor{currentfill}%
  1227. \pgfsetfillopacity{0.800000}%
  1228. \pgfsetlinewidth{1.003750pt}%
  1229. \definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%
  1230. \pgfsetstrokecolor{currentstroke}%
  1231. \pgfsetstrokeopacity{0.800000}%
  1232. \pgfsetdash{}{0pt}%
  1233. \pgfpathmoveto{\pgfqpoint{0.738003in}{0.362222in}}%
  1234. \pgfpathlineto{\pgfqpoint{1.775753in}{0.362222in}}%
  1235. \pgfpathquadraticcurveto{\pgfqpoint{1.792419in}{0.362222in}}{\pgfqpoint{1.792419in}{0.378889in}}%
  1236. \pgfpathlineto{\pgfqpoint{1.792419in}{0.952305in}}%
  1237. \pgfpathquadraticcurveto{\pgfqpoint{1.792419in}{0.968971in}}{\pgfqpoint{1.775753in}{0.968971in}}%
  1238. \pgfpathlineto{\pgfqpoint{0.738003in}{0.968971in}}%
  1239. \pgfpathquadraticcurveto{\pgfqpoint{0.721336in}{0.968971in}}{\pgfqpoint{0.721336in}{0.952305in}}%
  1240. \pgfpathlineto{\pgfqpoint{0.721336in}{0.378889in}}%
  1241. \pgfpathquadraticcurveto{\pgfqpoint{0.721336in}{0.362222in}}{\pgfqpoint{0.738003in}{0.362222in}}%
  1242. \pgfpathlineto{\pgfqpoint{0.738003in}{0.362222in}}%
  1243. \pgfpathclose%
  1244. \pgfusepath{stroke,fill}%
  1245. \end{pgfscope}%
  1246. \begin{pgfscope}%
  1247. \pgfsetbuttcap%
  1248. \pgfsetroundjoin%
  1249. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  1250. \pgfsetfillcolor{currentfill}%
  1251. \pgfsetlinewidth{1.003750pt}%
  1252. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  1253. \pgfsetstrokecolor{currentstroke}%
  1254. \pgfsetdash{}{0pt}%
  1255. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1256. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1257. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1258. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1259. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1260. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1261. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1262. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1263. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1264. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1265. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1266. \pgfpathclose%
  1267. \pgfusepath{stroke,fill}%
  1268. }%
  1269. \begin{pgfscope}%
  1270. \pgfsys@transformshift{0.838003in}{0.899180in}%
  1271. \pgfsys@useobject{currentmarker}{}%
  1272. \end{pgfscope}%
  1273. \end{pgfscope}%
  1274. \begin{pgfscope}%
  1275. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1276. \pgfsetstrokecolor{textcolor}%
  1277. \pgfsetfillcolor{textcolor}%
  1278. \pgftext[x=0.988003in,y=0.877305in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont gauge interaction}%
  1279. \end{pgfscope}%
  1280. \begin{pgfscope}%
  1281. \pgfsetbuttcap%
  1282. \pgfsetroundjoin%
  1283. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  1284. \pgfsetfillcolor{currentfill}%
  1285. \pgfsetlinewidth{1.003750pt}%
  1286. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  1287. \pgfsetstrokecolor{currentstroke}%
  1288. \pgfsetdash{}{0pt}%
  1289. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1290. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1291. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1292. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1293. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1294. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1295. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1296. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1297. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1298. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1299. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1300. \pgfpathclose%
  1301. \pgfusepath{stroke,fill}%
  1302. }%
  1303. \begin{pgfscope}%
  1304. \pgfsys@transformshift{0.838003in}{0.782097in}%
  1305. \pgfsys@useobject{currentmarker}{}%
  1306. \end{pgfscope}%
  1307. \end{pgfscope}%
  1308. \begin{pgfscope}%
  1309. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1310. \pgfsetstrokecolor{textcolor}%
  1311. \pgfsetfillcolor{textcolor}%
  1312. \pgftext[x=0.988003in,y=0.760222in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont weak scale}%
  1313. \end{pgfscope}%
  1314. \begin{pgfscope}%
  1315. \pgfsetbuttcap%
  1316. \pgfsetroundjoin%
  1317. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  1318. \pgfsetfillcolor{currentfill}%
  1319. \pgfsetlinewidth{1.003750pt}%
  1320. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  1321. \pgfsetstrokecolor{currentstroke}%
  1322. \pgfsetdash{}{0pt}%
  1323. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1324. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1325. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1326. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1327. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1328. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1329. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1330. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1331. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1332. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1333. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1334. \pgfpathclose%
  1335. \pgfusepath{stroke,fill}%
  1336. }%
  1337. \begin{pgfscope}%
  1338. \pgfsys@transformshift{0.838003in}{0.665930in}%
  1339. \pgfsys@useobject{currentmarker}{}%
  1340. \end{pgfscope}%
  1341. \end{pgfscope}%
  1342. \begin{pgfscope}%
  1343. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1344. \pgfsetstrokecolor{textcolor}%
  1345. \pgfsetfillcolor{textcolor}%
  1346. \pgftext[x=0.988003in,y=0.644055in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont dark matter}%
  1347. \end{pgfscope}%
  1348. \begin{pgfscope}%
  1349. \pgfsetbuttcap%
  1350. \pgfsetroundjoin%
  1351. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  1352. \pgfsetfillcolor{currentfill}%
  1353. \pgfsetlinewidth{1.003750pt}%
  1354. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  1355. \pgfsetstrokecolor{currentstroke}%
  1356. \pgfsetdash{}{0pt}%
  1357. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1358. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1359. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1360. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1361. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1362. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1363. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1364. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1365. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1366. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1367. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1368. \pgfpathclose%
  1369. \pgfusepath{stroke,fill}%
  1370. }%
  1371. \begin{pgfscope}%
  1372. \pgfsys@transformshift{0.838003in}{0.549763in}%
  1373. \pgfsys@useobject{currentmarker}{}%
  1374. \end{pgfscope}%
  1375. \end{pgfscope}%
  1376. \begin{pgfscope}%
  1377. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1378. \pgfsetstrokecolor{textcolor}%
  1379. \pgfsetfillcolor{textcolor}%
  1380. \pgftext[x=0.988003in,y=0.527888in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont standard model}%
  1381. \end{pgfscope}%
  1382. \begin{pgfscope}%
  1383. \pgfsetbuttcap%
  1384. \pgfsetroundjoin%
  1385. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  1386. \pgfsetfillcolor{currentfill}%
  1387. \pgfsetlinewidth{1.003750pt}%
  1388. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  1389. \pgfsetstrokecolor{currentstroke}%
  1390. \pgfsetdash{}{0pt}%
  1391. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1392. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1393. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1394. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1395. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1396. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1397. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1398. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1399. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1400. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1401. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1402. \pgfpathclose%
  1403. \pgfusepath{stroke,fill}%
  1404. }%
  1405. \begin{pgfscope}%
  1406. \pgfsys@transformshift{0.838003in}{0.433597in}%
  1407. \pgfsys@useobject{currentmarker}{}%
  1408. \end{pgfscope}%
  1409. \end{pgfscope}%
  1410. \begin{pgfscope}%
  1411. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1412. \pgfsetstrokecolor{textcolor}%
  1413. \pgfsetfillcolor{textcolor}%
  1414. \pgftext[x=0.988003in,y=0.411722in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont extra dimension}%
  1415. \end{pgfscope}%
  1416. \begin{pgfscope}%
  1417. \pgfsetbuttcap%
  1418. \pgfsetmiterjoin%
  1419. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  1420. \pgfsetfillcolor{currentfill}%
  1421. \pgfsetlinewidth{0.000000pt}%
  1422. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1423. \pgfsetstrokecolor{currentstroke}%
  1424. \pgfsetstrokeopacity{0.000000}%
  1425. \pgfsetdash{}{0pt}%
  1426. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.320555in}}%
  1427. \pgfpathlineto{\pgfqpoint{5.639669in}{0.320555in}}%
  1428. \pgfpathlineto{\pgfqpoint{5.639669in}{4.016555in}}%
  1429. \pgfpathlineto{\pgfqpoint{3.385124in}{4.016555in}}%
  1430. \pgfpathlineto{\pgfqpoint{3.385124in}{0.320555in}}%
  1431. \pgfpathclose%
  1432. \pgfusepath{fill}%
  1433. \end{pgfscope}%
  1434. \begin{pgfscope}%
  1435. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1436. \pgfusepath{clip}%
  1437. \pgfsetbuttcap%
  1438. \pgfsetroundjoin%
  1439. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  1440. \pgfsetfillcolor{currentfill}%
  1441. \pgfsetlinewidth{1.003750pt}%
  1442. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  1443. \pgfsetstrokecolor{currentstroke}%
  1444. \pgfsetdash{}{0pt}%
  1445. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1446. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1447. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1448. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1449. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1450. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1451. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1452. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1453. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1454. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1455. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1456. \pgfpathclose%
  1457. \pgfusepath{stroke,fill}%
  1458. }%
  1459. \begin{pgfscope}%
  1460. \pgfsys@transformshift{3.385124in}{0.944342in}%
  1461. \pgfsys@useobject{currentmarker}{}%
  1462. \end{pgfscope}%
  1463. \begin{pgfscope}%
  1464. \pgfsys@transformshift{3.510376in}{0.809759in}%
  1465. \pgfsys@useobject{currentmarker}{}%
  1466. \end{pgfscope}%
  1467. \begin{pgfscope}%
  1468. \pgfsys@transformshift{3.635629in}{1.215961in}%
  1469. \pgfsys@useobject{currentmarker}{}%
  1470. \end{pgfscope}%
  1471. \begin{pgfscope}%
  1472. \pgfsys@transformshift{3.760881in}{0.945292in}%
  1473. \pgfsys@useobject{currentmarker}{}%
  1474. \end{pgfscope}%
  1475. \begin{pgfscope}%
  1476. \pgfsys@transformshift{3.886134in}{1.370560in}%
  1477. \pgfsys@useobject{currentmarker}{}%
  1478. \end{pgfscope}%
  1479. \begin{pgfscope}%
  1480. \pgfsys@transformshift{4.011386in}{1.473754in}%
  1481. \pgfsys@useobject{currentmarker}{}%
  1482. \end{pgfscope}%
  1483. \begin{pgfscope}%
  1484. \pgfsys@transformshift{4.136639in}{1.240070in}%
  1485. \pgfsys@useobject{currentmarker}{}%
  1486. \end{pgfscope}%
  1487. \begin{pgfscope}%
  1488. \pgfsys@transformshift{4.261891in}{1.207976in}%
  1489. \pgfsys@useobject{currentmarker}{}%
  1490. \end{pgfscope}%
  1491. \begin{pgfscope}%
  1492. \pgfsys@transformshift{4.387144in}{0.988627in}%
  1493. \pgfsys@useobject{currentmarker}{}%
  1494. \end{pgfscope}%
  1495. \begin{pgfscope}%
  1496. \pgfsys@transformshift{4.512396in}{1.048055in}%
  1497. \pgfsys@useobject{currentmarker}{}%
  1498. \end{pgfscope}%
  1499. \begin{pgfscope}%
  1500. \pgfsys@transformshift{4.637649in}{0.991879in}%
  1501. \pgfsys@useobject{currentmarker}{}%
  1502. \end{pgfscope}%
  1503. \begin{pgfscope}%
  1504. \pgfsys@transformshift{4.762901in}{0.972285in}%
  1505. \pgfsys@useobject{currentmarker}{}%
  1506. \end{pgfscope}%
  1507. \begin{pgfscope}%
  1508. \pgfsys@transformshift{4.888154in}{0.965316in}%
  1509. \pgfsys@useobject{currentmarker}{}%
  1510. \end{pgfscope}%
  1511. \begin{pgfscope}%
  1512. \pgfsys@transformshift{5.013407in}{0.703153in}%
  1513. \pgfsys@useobject{currentmarker}{}%
  1514. \end{pgfscope}%
  1515. \begin{pgfscope}%
  1516. \pgfsys@transformshift{5.138659in}{0.815438in}%
  1517. \pgfsys@useobject{currentmarker}{}%
  1518. \end{pgfscope}%
  1519. \begin{pgfscope}%
  1520. \pgfsys@transformshift{5.263912in}{0.333238in}%
  1521. \pgfsys@useobject{currentmarker}{}%
  1522. \end{pgfscope}%
  1523. \begin{pgfscope}%
  1524. \pgfsys@transformshift{5.389164in}{0.340139in}%
  1525. \pgfsys@useobject{currentmarker}{}%
  1526. \end{pgfscope}%
  1527. \begin{pgfscope}%
  1528. \pgfsys@transformshift{5.514417in}{-0.178214in}%
  1529. \pgfsys@useobject{currentmarker}{}%
  1530. \end{pgfscope}%
  1531. \begin{pgfscope}%
  1532. \pgfsys@transformshift{5.639669in}{0.190339in}%
  1533. \pgfsys@useobject{currentmarker}{}%
  1534. \end{pgfscope}%
  1535. \end{pgfscope}%
  1536. \begin{pgfscope}%
  1537. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1538. \pgfusepath{clip}%
  1539. \pgfsetbuttcap%
  1540. \pgfsetroundjoin%
  1541. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  1542. \pgfsetfillcolor{currentfill}%
  1543. \pgfsetlinewidth{1.003750pt}%
  1544. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  1545. \pgfsetstrokecolor{currentstroke}%
  1546. \pgfsetdash{}{0pt}%
  1547. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1548. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1549. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1550. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1551. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1552. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1553. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1554. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1555. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1556. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1557. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1558. \pgfpathclose%
  1559. \pgfusepath{stroke,fill}%
  1560. }%
  1561. \begin{pgfscope}%
  1562. \pgfsys@transformshift{3.385124in}{1.343895in}%
  1563. \pgfsys@useobject{currentmarker}{}%
  1564. \end{pgfscope}%
  1565. \begin{pgfscope}%
  1566. \pgfsys@transformshift{3.510376in}{1.102413in}%
  1567. \pgfsys@useobject{currentmarker}{}%
  1568. \end{pgfscope}%
  1569. \begin{pgfscope}%
  1570. \pgfsys@transformshift{3.635629in}{1.116751in}%
  1571. \pgfsys@useobject{currentmarker}{}%
  1572. \end{pgfscope}%
  1573. \begin{pgfscope}%
  1574. \pgfsys@transformshift{3.760881in}{1.091619in}%
  1575. \pgfsys@useobject{currentmarker}{}%
  1576. \end{pgfscope}%
  1577. \begin{pgfscope}%
  1578. \pgfsys@transformshift{3.886134in}{0.862912in}%
  1579. \pgfsys@useobject{currentmarker}{}%
  1580. \end{pgfscope}%
  1581. \begin{pgfscope}%
  1582. \pgfsys@transformshift{4.011386in}{1.313649in}%
  1583. \pgfsys@useobject{currentmarker}{}%
  1584. \end{pgfscope}%
  1585. \begin{pgfscope}%
  1586. \pgfsys@transformshift{4.136639in}{1.487124in}%
  1587. \pgfsys@useobject{currentmarker}{}%
  1588. \end{pgfscope}%
  1589. \begin{pgfscope}%
  1590. \pgfsys@transformshift{4.261891in}{1.472043in}%
  1591. \pgfsys@useobject{currentmarker}{}%
  1592. \end{pgfscope}%
  1593. \begin{pgfscope}%
  1594. \pgfsys@transformshift{4.387144in}{1.179101in}%
  1595. \pgfsys@useobject{currentmarker}{}%
  1596. \end{pgfscope}%
  1597. \begin{pgfscope}%
  1598. \pgfsys@transformshift{4.512396in}{1.536220in}%
  1599. \pgfsys@useobject{currentmarker}{}%
  1600. \end{pgfscope}%
  1601. \begin{pgfscope}%
  1602. \pgfsys@transformshift{4.637649in}{1.408744in}%
  1603. \pgfsys@useobject{currentmarker}{}%
  1604. \end{pgfscope}%
  1605. \begin{pgfscope}%
  1606. \pgfsys@transformshift{4.762901in}{1.346900in}%
  1607. \pgfsys@useobject{currentmarker}{}%
  1608. \end{pgfscope}%
  1609. \begin{pgfscope}%
  1610. \pgfsys@transformshift{4.888154in}{1.131601in}%
  1611. \pgfsys@useobject{currentmarker}{}%
  1612. \end{pgfscope}%
  1613. \begin{pgfscope}%
  1614. \pgfsys@transformshift{5.013407in}{0.947826in}%
  1615. \pgfsys@useobject{currentmarker}{}%
  1616. \end{pgfscope}%
  1617. \begin{pgfscope}%
  1618. \pgfsys@transformshift{5.138659in}{1.254491in}%
  1619. \pgfsys@useobject{currentmarker}{}%
  1620. \end{pgfscope}%
  1621. \begin{pgfscope}%
  1622. \pgfsys@transformshift{5.263912in}{0.867751in}%
  1623. \pgfsys@useobject{currentmarker}{}%
  1624. \end{pgfscope}%
  1625. \begin{pgfscope}%
  1626. \pgfsys@transformshift{5.389164in}{1.347585in}%
  1627. \pgfsys@useobject{currentmarker}{}%
  1628. \end{pgfscope}%
  1629. \begin{pgfscope}%
  1630. \pgfsys@transformshift{5.514417in}{1.201659in}%
  1631. \pgfsys@useobject{currentmarker}{}%
  1632. \end{pgfscope}%
  1633. \begin{pgfscope}%
  1634. \pgfsys@transformshift{5.639669in}{1.371360in}%
  1635. \pgfsys@useobject{currentmarker}{}%
  1636. \end{pgfscope}%
  1637. \end{pgfscope}%
  1638. \begin{pgfscope}%
  1639. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1640. \pgfusepath{clip}%
  1641. \pgfsetbuttcap%
  1642. \pgfsetroundjoin%
  1643. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  1644. \pgfsetfillcolor{currentfill}%
  1645. \pgfsetlinewidth{1.003750pt}%
  1646. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  1647. \pgfsetstrokecolor{currentstroke}%
  1648. \pgfsetdash{}{0pt}%
  1649. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1650. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1651. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1652. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1653. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1654. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1655. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1656. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1657. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1658. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1659. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1660. \pgfpathclose%
  1661. \pgfusepath{stroke,fill}%
  1662. }%
  1663. \begin{pgfscope}%
  1664. \pgfsys@transformshift{3.385124in}{1.343895in}%
  1665. \pgfsys@useobject{currentmarker}{}%
  1666. \end{pgfscope}%
  1667. \begin{pgfscope}%
  1668. \pgfsys@transformshift{3.510376in}{1.551547in}%
  1669. \pgfsys@useobject{currentmarker}{}%
  1670. \end{pgfscope}%
  1671. \begin{pgfscope}%
  1672. \pgfsys@transformshift{3.635629in}{1.640732in}%
  1673. \pgfsys@useobject{currentmarker}{}%
  1674. \end{pgfscope}%
  1675. \begin{pgfscope}%
  1676. \pgfsys@transformshift{3.760881in}{1.677111in}%
  1677. \pgfsys@useobject{currentmarker}{}%
  1678. \end{pgfscope}%
  1679. \begin{pgfscope}%
  1680. \pgfsys@transformshift{3.886134in}{1.695976in}%
  1681. \pgfsys@useobject{currentmarker}{}%
  1682. \end{pgfscope}%
  1683. \begin{pgfscope}%
  1684. \pgfsys@transformshift{4.011386in}{1.733981in}%
  1685. \pgfsys@useobject{currentmarker}{}%
  1686. \end{pgfscope}%
  1687. \begin{pgfscope}%
  1688. \pgfsys@transformshift{4.136639in}{1.480235in}%
  1689. \pgfsys@useobject{currentmarker}{}%
  1690. \end{pgfscope}%
  1691. \begin{pgfscope}%
  1692. \pgfsys@transformshift{4.261891in}{1.342050in}%
  1693. \pgfsys@useobject{currentmarker}{}%
  1694. \end{pgfscope}%
  1695. \begin{pgfscope}%
  1696. \pgfsys@transformshift{4.387144in}{1.453976in}%
  1697. \pgfsys@useobject{currentmarker}{}%
  1698. \end{pgfscope}%
  1699. \begin{pgfscope}%
  1700. \pgfsys@transformshift{4.512396in}{1.501621in}%
  1701. \pgfsys@useobject{currentmarker}{}%
  1702. \end{pgfscope}%
  1703. \begin{pgfscope}%
  1704. \pgfsys@transformshift{4.637649in}{1.264883in}%
  1705. \pgfsys@useobject{currentmarker}{}%
  1706. \end{pgfscope}%
  1707. \begin{pgfscope}%
  1708. \pgfsys@transformshift{4.762901in}{1.452441in}%
  1709. \pgfsys@useobject{currentmarker}{}%
  1710. \end{pgfscope}%
  1711. \begin{pgfscope}%
  1712. \pgfsys@transformshift{4.888154in}{1.601256in}%
  1713. \pgfsys@useobject{currentmarker}{}%
  1714. \end{pgfscope}%
  1715. \begin{pgfscope}%
  1716. \pgfsys@transformshift{5.013407in}{1.263419in}%
  1717. \pgfsys@useobject{currentmarker}{}%
  1718. \end{pgfscope}%
  1719. \begin{pgfscope}%
  1720. \pgfsys@transformshift{5.138659in}{1.420856in}%
  1721. \pgfsys@useobject{currentmarker}{}%
  1722. \end{pgfscope}%
  1723. \begin{pgfscope}%
  1724. \pgfsys@transformshift{5.263912in}{1.283596in}%
  1725. \pgfsys@useobject{currentmarker}{}%
  1726. \end{pgfscope}%
  1727. \begin{pgfscope}%
  1728. \pgfsys@transformshift{5.389164in}{1.347585in}%
  1729. \pgfsys@useobject{currentmarker}{}%
  1730. \end{pgfscope}%
  1731. \begin{pgfscope}%
  1732. \pgfsys@transformshift{5.514417in}{1.070952in}%
  1733. \pgfsys@useobject{currentmarker}{}%
  1734. \end{pgfscope}%
  1735. \begin{pgfscope}%
  1736. \pgfsys@transformshift{5.639669in}{1.067511in}%
  1737. \pgfsys@useobject{currentmarker}{}%
  1738. \end{pgfscope}%
  1739. \end{pgfscope}%
  1740. \begin{pgfscope}%
  1741. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1742. \pgfusepath{clip}%
  1743. \pgfsetbuttcap%
  1744. \pgfsetroundjoin%
  1745. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  1746. \pgfsetfillcolor{currentfill}%
  1747. \pgfsetlinewidth{1.003750pt}%
  1748. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  1749. \pgfsetstrokecolor{currentstroke}%
  1750. \pgfsetdash{}{0pt}%
  1751. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1752. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1753. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1754. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1755. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1756. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1757. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1758. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1759. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1760. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1761. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1762. \pgfpathclose%
  1763. \pgfusepath{stroke,fill}%
  1764. }%
  1765. \begin{pgfscope}%
  1766. \pgfsys@transformshift{3.385124in}{1.684896in}%
  1767. \pgfsys@useobject{currentmarker}{}%
  1768. \end{pgfscope}%
  1769. \begin{pgfscope}%
  1770. \pgfsys@transformshift{3.510376in}{1.753246in}%
  1771. \pgfsys@useobject{currentmarker}{}%
  1772. \end{pgfscope}%
  1773. \begin{pgfscope}%
  1774. \pgfsys@transformshift{3.635629in}{1.413501in}%
  1775. \pgfsys@useobject{currentmarker}{}%
  1776. \end{pgfscope}%
  1777. \begin{pgfscope}%
  1778. \pgfsys@transformshift{3.760881in}{1.669913in}%
  1779. \pgfsys@useobject{currentmarker}{}%
  1780. \end{pgfscope}%
  1781. \begin{pgfscope}%
  1782. \pgfsys@transformshift{3.886134in}{1.744632in}%
  1783. \pgfsys@useobject{currentmarker}{}%
  1784. \end{pgfscope}%
  1785. \begin{pgfscope}%
  1786. \pgfsys@transformshift{4.011386in}{1.810475in}%
  1787. \pgfsys@useobject{currentmarker}{}%
  1788. \end{pgfscope}%
  1789. \begin{pgfscope}%
  1790. \pgfsys@transformshift{4.136639in}{1.625408in}%
  1791. \pgfsys@useobject{currentmarker}{}%
  1792. \end{pgfscope}%
  1793. \begin{pgfscope}%
  1794. \pgfsys@transformshift{4.261891in}{1.687786in}%
  1795. \pgfsys@useobject{currentmarker}{}%
  1796. \end{pgfscope}%
  1797. \begin{pgfscope}%
  1798. \pgfsys@transformshift{4.387144in}{1.700756in}%
  1799. \pgfsys@useobject{currentmarker}{}%
  1800. \end{pgfscope}%
  1801. \begin{pgfscope}%
  1802. \pgfsys@transformshift{4.512396in}{1.508661in}%
  1803. \pgfsys@useobject{currentmarker}{}%
  1804. \end{pgfscope}%
  1805. \begin{pgfscope}%
  1806. \pgfsys@transformshift{4.637649in}{1.475829in}%
  1807. \pgfsys@useobject{currentmarker}{}%
  1808. \end{pgfscope}%
  1809. \begin{pgfscope}%
  1810. \pgfsys@transformshift{4.762901in}{1.448628in}%
  1811. \pgfsys@useobject{currentmarker}{}%
  1812. \end{pgfscope}%
  1813. \begin{pgfscope}%
  1814. \pgfsys@transformshift{4.888154in}{1.362488in}%
  1815. \pgfsys@useobject{currentmarker}{}%
  1816. \end{pgfscope}%
  1817. \begin{pgfscope}%
  1818. \pgfsys@transformshift{5.013407in}{1.148874in}%
  1819. \pgfsys@useobject{currentmarker}{}%
  1820. \end{pgfscope}%
  1821. \begin{pgfscope}%
  1822. \pgfsys@transformshift{5.138659in}{1.163897in}%
  1823. \pgfsys@useobject{currentmarker}{}%
  1824. \end{pgfscope}%
  1825. \begin{pgfscope}%
  1826. \pgfsys@transformshift{5.263912in}{0.996711in}%
  1827. \pgfsys@useobject{currentmarker}{}%
  1828. \end{pgfscope}%
  1829. \begin{pgfscope}%
  1830. \pgfsys@transformshift{5.389164in}{0.989406in}%
  1831. \pgfsys@useobject{currentmarker}{}%
  1832. \end{pgfscope}%
  1833. \begin{pgfscope}%
  1834. \pgfsys@transformshift{5.514417in}{0.947234in}%
  1835. \pgfsys@useobject{currentmarker}{}%
  1836. \end{pgfscope}%
  1837. \begin{pgfscope}%
  1838. \pgfsys@transformshift{5.639669in}{0.975827in}%
  1839. \pgfsys@useobject{currentmarker}{}%
  1840. \end{pgfscope}%
  1841. \end{pgfscope}%
  1842. \begin{pgfscope}%
  1843. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  1844. \pgfusepath{clip}%
  1845. \pgfsetbuttcap%
  1846. \pgfsetroundjoin%
  1847. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  1848. \pgfsetfillcolor{currentfill}%
  1849. \pgfsetlinewidth{1.003750pt}%
  1850. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  1851. \pgfsetstrokecolor{currentstroke}%
  1852. \pgfsetdash{}{0pt}%
  1853. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  1854. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1855. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  1856. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  1857. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  1858. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  1859. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  1860. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  1861. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  1862. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  1863. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  1864. \pgfpathclose%
  1865. \pgfusepath{stroke,fill}%
  1866. }%
  1867. \begin{pgfscope}%
  1868. \pgfsys@transformshift{3.385124in}{2.220352in}%
  1869. \pgfsys@useobject{currentmarker}{}%
  1870. \end{pgfscope}%
  1871. \begin{pgfscope}%
  1872. \pgfsys@transformshift{3.510376in}{2.055204in}%
  1873. \pgfsys@useobject{currentmarker}{}%
  1874. \end{pgfscope}%
  1875. \begin{pgfscope}%
  1876. \pgfsys@transformshift{3.635629in}{1.969805in}%
  1877. \pgfsys@useobject{currentmarker}{}%
  1878. \end{pgfscope}%
  1879. \begin{pgfscope}%
  1880. \pgfsys@transformshift{3.760881in}{2.218953in}%
  1881. \pgfsys@useobject{currentmarker}{}%
  1882. \end{pgfscope}%
  1883. \begin{pgfscope}%
  1884. \pgfsys@transformshift{3.886134in}{2.191515in}%
  1885. \pgfsys@useobject{currentmarker}{}%
  1886. \end{pgfscope}%
  1887. \begin{pgfscope}%
  1888. \pgfsys@transformshift{4.011386in}{2.302538in}%
  1889. \pgfsys@useobject{currentmarker}{}%
  1890. \end{pgfscope}%
  1891. \begin{pgfscope}%
  1892. \pgfsys@transformshift{4.136639in}{2.131069in}%
  1893. \pgfsys@useobject{currentmarker}{}%
  1894. \end{pgfscope}%
  1895. \begin{pgfscope}%
  1896. \pgfsys@transformshift{4.261891in}{2.079205in}%
  1897. \pgfsys@useobject{currentmarker}{}%
  1898. \end{pgfscope}%
  1899. \begin{pgfscope}%
  1900. \pgfsys@transformshift{4.387144in}{2.079443in}%
  1901. \pgfsys@useobject{currentmarker}{}%
  1902. \end{pgfscope}%
  1903. \begin{pgfscope}%
  1904. \pgfsys@transformshift{4.512396in}{2.174540in}%
  1905. \pgfsys@useobject{currentmarker}{}%
  1906. \end{pgfscope}%
  1907. \begin{pgfscope}%
  1908. \pgfsys@transformshift{4.637649in}{2.076322in}%
  1909. \pgfsys@useobject{currentmarker}{}%
  1910. \end{pgfscope}%
  1911. \begin{pgfscope}%
  1912. \pgfsys@transformshift{4.762901in}{2.177883in}%
  1913. \pgfsys@useobject{currentmarker}{}%
  1914. \end{pgfscope}%
  1915. \begin{pgfscope}%
  1916. \pgfsys@transformshift{4.888154in}{2.233578in}%
  1917. \pgfsys@useobject{currentmarker}{}%
  1918. \end{pgfscope}%
  1919. \begin{pgfscope}%
  1920. \pgfsys@transformshift{5.013407in}{1.907636in}%
  1921. \pgfsys@useobject{currentmarker}{}%
  1922. \end{pgfscope}%
  1923. \begin{pgfscope}%
  1924. \pgfsys@transformshift{5.138659in}{1.978989in}%
  1925. \pgfsys@useobject{currentmarker}{}%
  1926. \end{pgfscope}%
  1927. \begin{pgfscope}%
  1928. \pgfsys@transformshift{5.263912in}{1.903128in}%
  1929. \pgfsys@useobject{currentmarker}{}%
  1930. \end{pgfscope}%
  1931. \begin{pgfscope}%
  1932. \pgfsys@transformshift{5.389164in}{1.789811in}%
  1933. \pgfsys@useobject{currentmarker}{}%
  1934. \end{pgfscope}%
  1935. \begin{pgfscope}%
  1936. \pgfsys@transformshift{5.514417in}{1.357211in}%
  1937. \pgfsys@useobject{currentmarker}{}%
  1938. \end{pgfscope}%
  1939. \begin{pgfscope}%
  1940. \pgfsys@transformshift{5.639669in}{1.612333in}%
  1941. \pgfsys@useobject{currentmarker}{}%
  1942. \end{pgfscope}%
  1943. \end{pgfscope}%
  1944. \begin{pgfscope}%
  1945. \pgfsetbuttcap%
  1946. \pgfsetroundjoin%
  1947. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1948. \pgfsetfillcolor{currentfill}%
  1949. \pgfsetlinewidth{0.803000pt}%
  1950. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1951. \pgfsetstrokecolor{currentstroke}%
  1952. \pgfsetdash{}{0pt}%
  1953. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  1954. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  1955. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  1956. \pgfusepath{stroke,fill}%
  1957. }%
  1958. \begin{pgfscope}%
  1959. \pgfsys@transformshift{3.886134in}{0.320555in}%
  1960. \pgfsys@useobject{currentmarker}{}%
  1961. \end{pgfscope}%
  1962. \end{pgfscope}%
  1963. \begin{pgfscope}%
  1964. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1965. \pgfsetstrokecolor{textcolor}%
  1966. \pgfsetfillcolor{textcolor}%
  1967. \pgftext[x=3.886134in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2005}\)}%
  1968. \end{pgfscope}%
  1969. \begin{pgfscope}%
  1970. \pgfsetbuttcap%
  1971. \pgfsetroundjoin%
  1972. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1973. \pgfsetfillcolor{currentfill}%
  1974. \pgfsetlinewidth{0.803000pt}%
  1975. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  1976. \pgfsetstrokecolor{currentstroke}%
  1977. \pgfsetdash{}{0pt}%
  1978. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  1979. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  1980. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  1981. \pgfusepath{stroke,fill}%
  1982. }%
  1983. \begin{pgfscope}%
  1984. \pgfsys@transformshift{4.512396in}{0.320555in}%
  1985. \pgfsys@useobject{currentmarker}{}%
  1986. \end{pgfscope}%
  1987. \end{pgfscope}%
  1988. \begin{pgfscope}%
  1989. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  1990. \pgfsetstrokecolor{textcolor}%
  1991. \pgfsetfillcolor{textcolor}%
  1992. \pgftext[x=4.512396in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2010}\)}%
  1993. \end{pgfscope}%
  1994. \begin{pgfscope}%
  1995. \pgfsetbuttcap%
  1996. \pgfsetroundjoin%
  1997. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  1998. \pgfsetfillcolor{currentfill}%
  1999. \pgfsetlinewidth{0.803000pt}%
  2000. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2001. \pgfsetstrokecolor{currentstroke}%
  2002. \pgfsetdash{}{0pt}%
  2003. \pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
  2004. \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
  2005. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
  2006. \pgfusepath{stroke,fill}%
  2007. }%
  2008. \begin{pgfscope}%
  2009. \pgfsys@transformshift{5.138659in}{0.320555in}%
  2010. \pgfsys@useobject{currentmarker}{}%
  2011. \end{pgfscope}%
  2012. \end{pgfscope}%
  2013. \begin{pgfscope}%
  2014. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2015. \pgfsetstrokecolor{textcolor}%
  2016. \pgfsetfillcolor{textcolor}%
  2017. \pgftext[x=5.138659in,y=0.223333in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2015}\)}%
  2018. \end{pgfscope}%
  2019. \begin{pgfscope}%
  2020. \pgfsetbuttcap%
  2021. \pgfsetroundjoin%
  2022. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2023. \pgfsetfillcolor{currentfill}%
  2024. \pgfsetlinewidth{0.803000pt}%
  2025. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2026. \pgfsetstrokecolor{currentstroke}%
  2027. \pgfsetdash{}{0pt}%
  2028. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2029. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2030. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  2031. \pgfusepath{stroke,fill}%
  2032. }%
  2033. \begin{pgfscope}%
  2034. \pgfsys@transformshift{3.385124in}{1.286835in}%
  2035. \pgfsys@useobject{currentmarker}{}%
  2036. \end{pgfscope}%
  2037. \end{pgfscope}%
  2038. \begin{pgfscope}%
  2039. \pgfsetbuttcap%
  2040. \pgfsetroundjoin%
  2041. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2042. \pgfsetfillcolor{currentfill}%
  2043. \pgfsetlinewidth{0.803000pt}%
  2044. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2045. \pgfsetstrokecolor{currentstroke}%
  2046. \pgfsetdash{}{0pt}%
  2047. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2048. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2049. \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
  2050. \pgfusepath{stroke,fill}%
  2051. }%
  2052. \begin{pgfscope}%
  2053. \pgfsys@transformshift{3.385124in}{3.134835in}%
  2054. \pgfsys@useobject{currentmarker}{}%
  2055. \end{pgfscope}%
  2056. \end{pgfscope}%
  2057. \begin{pgfscope}%
  2058. \pgfsetbuttcap%
  2059. \pgfsetroundjoin%
  2060. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2061. \pgfsetfillcolor{currentfill}%
  2062. \pgfsetlinewidth{0.602250pt}%
  2063. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2064. \pgfsetstrokecolor{currentstroke}%
  2065. \pgfsetdash{}{0pt}%
  2066. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2067. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2068. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2069. \pgfusepath{stroke,fill}%
  2070. }%
  2071. \begin{pgfscope}%
  2072. \pgfsys@transformshift{3.385124in}{0.320555in}%
  2073. \pgfsys@useobject{currentmarker}{}%
  2074. \end{pgfscope}%
  2075. \end{pgfscope}%
  2076. \begin{pgfscope}%
  2077. \pgfsetbuttcap%
  2078. \pgfsetroundjoin%
  2079. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2080. \pgfsetfillcolor{currentfill}%
  2081. \pgfsetlinewidth{0.602250pt}%
  2082. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2083. \pgfsetstrokecolor{currentstroke}%
  2084. \pgfsetdash{}{0pt}%
  2085. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2086. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2087. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2088. \pgfusepath{stroke,fill}%
  2089. }%
  2090. \begin{pgfscope}%
  2091. \pgfsys@transformshift{3.385124in}{0.551442in}%
  2092. \pgfsys@useobject{currentmarker}{}%
  2093. \end{pgfscope}%
  2094. \end{pgfscope}%
  2095. \begin{pgfscope}%
  2096. \pgfsetbuttcap%
  2097. \pgfsetroundjoin%
  2098. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2099. \pgfsetfillcolor{currentfill}%
  2100. \pgfsetlinewidth{0.602250pt}%
  2101. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2102. \pgfsetstrokecolor{currentstroke}%
  2103. \pgfsetdash{}{0pt}%
  2104. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2105. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2106. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2107. \pgfusepath{stroke,fill}%
  2108. }%
  2109. \begin{pgfscope}%
  2110. \pgfsys@transformshift{3.385124in}{0.730532in}%
  2111. \pgfsys@useobject{currentmarker}{}%
  2112. \end{pgfscope}%
  2113. \end{pgfscope}%
  2114. \begin{pgfscope}%
  2115. \pgfsetbuttcap%
  2116. \pgfsetroundjoin%
  2117. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2118. \pgfsetfillcolor{currentfill}%
  2119. \pgfsetlinewidth{0.602250pt}%
  2120. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2121. \pgfsetstrokecolor{currentstroke}%
  2122. \pgfsetdash{}{0pt}%
  2123. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2124. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2125. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2126. \pgfusepath{stroke,fill}%
  2127. }%
  2128. \begin{pgfscope}%
  2129. \pgfsys@transformshift{3.385124in}{0.876859in}%
  2130. \pgfsys@useobject{currentmarker}{}%
  2131. \end{pgfscope}%
  2132. \end{pgfscope}%
  2133. \begin{pgfscope}%
  2134. \pgfsetbuttcap%
  2135. \pgfsetroundjoin%
  2136. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2137. \pgfsetfillcolor{currentfill}%
  2138. \pgfsetlinewidth{0.602250pt}%
  2139. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2140. \pgfsetstrokecolor{currentstroke}%
  2141. \pgfsetdash{}{0pt}%
  2142. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2143. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2144. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2145. \pgfusepath{stroke,fill}%
  2146. }%
  2147. \begin{pgfscope}%
  2148. \pgfsys@transformshift{3.385124in}{1.000577in}%
  2149. \pgfsys@useobject{currentmarker}{}%
  2150. \end{pgfscope}%
  2151. \end{pgfscope}%
  2152. \begin{pgfscope}%
  2153. \pgfsetbuttcap%
  2154. \pgfsetroundjoin%
  2155. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2156. \pgfsetfillcolor{currentfill}%
  2157. \pgfsetlinewidth{0.602250pt}%
  2158. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2159. \pgfsetstrokecolor{currentstroke}%
  2160. \pgfsetdash{}{0pt}%
  2161. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2162. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2163. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2164. \pgfusepath{stroke,fill}%
  2165. }%
  2166. \begin{pgfscope}%
  2167. \pgfsys@transformshift{3.385124in}{1.107746in}%
  2168. \pgfsys@useobject{currentmarker}{}%
  2169. \end{pgfscope}%
  2170. \end{pgfscope}%
  2171. \begin{pgfscope}%
  2172. \pgfsetbuttcap%
  2173. \pgfsetroundjoin%
  2174. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2175. \pgfsetfillcolor{currentfill}%
  2176. \pgfsetlinewidth{0.602250pt}%
  2177. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2178. \pgfsetstrokecolor{currentstroke}%
  2179. \pgfsetdash{}{0pt}%
  2180. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2181. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2182. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2183. \pgfusepath{stroke,fill}%
  2184. }%
  2185. \begin{pgfscope}%
  2186. \pgfsys@transformshift{3.385124in}{1.202275in}%
  2187. \pgfsys@useobject{currentmarker}{}%
  2188. \end{pgfscope}%
  2189. \end{pgfscope}%
  2190. \begin{pgfscope}%
  2191. \pgfsetbuttcap%
  2192. \pgfsetroundjoin%
  2193. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2194. \pgfsetfillcolor{currentfill}%
  2195. \pgfsetlinewidth{0.602250pt}%
  2196. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2197. \pgfsetstrokecolor{currentstroke}%
  2198. \pgfsetdash{}{0pt}%
  2199. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2200. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2201. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2202. \pgfusepath{stroke,fill}%
  2203. }%
  2204. \begin{pgfscope}%
  2205. \pgfsys@transformshift{3.385124in}{1.843139in}%
  2206. \pgfsys@useobject{currentmarker}{}%
  2207. \end{pgfscope}%
  2208. \end{pgfscope}%
  2209. \begin{pgfscope}%
  2210. \pgfsetbuttcap%
  2211. \pgfsetroundjoin%
  2212. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2213. \pgfsetfillcolor{currentfill}%
  2214. \pgfsetlinewidth{0.602250pt}%
  2215. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2216. \pgfsetstrokecolor{currentstroke}%
  2217. \pgfsetdash{}{0pt}%
  2218. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2219. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2220. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2221. \pgfusepath{stroke,fill}%
  2222. }%
  2223. \begin{pgfscope}%
  2224. \pgfsys@transformshift{3.385124in}{2.168555in}%
  2225. \pgfsys@useobject{currentmarker}{}%
  2226. \end{pgfscope}%
  2227. \end{pgfscope}%
  2228. \begin{pgfscope}%
  2229. \pgfsetbuttcap%
  2230. \pgfsetroundjoin%
  2231. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2232. \pgfsetfillcolor{currentfill}%
  2233. \pgfsetlinewidth{0.602250pt}%
  2234. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2235. \pgfsetstrokecolor{currentstroke}%
  2236. \pgfsetdash{}{0pt}%
  2237. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2238. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2239. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2240. \pgfusepath{stroke,fill}%
  2241. }%
  2242. \begin{pgfscope}%
  2243. \pgfsys@transformshift{3.385124in}{2.399442in}%
  2244. \pgfsys@useobject{currentmarker}{}%
  2245. \end{pgfscope}%
  2246. \end{pgfscope}%
  2247. \begin{pgfscope}%
  2248. \pgfsetbuttcap%
  2249. \pgfsetroundjoin%
  2250. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2251. \pgfsetfillcolor{currentfill}%
  2252. \pgfsetlinewidth{0.602250pt}%
  2253. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2254. \pgfsetstrokecolor{currentstroke}%
  2255. \pgfsetdash{}{0pt}%
  2256. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2257. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2258. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2259. \pgfusepath{stroke,fill}%
  2260. }%
  2261. \begin{pgfscope}%
  2262. \pgfsys@transformshift{3.385124in}{2.578532in}%
  2263. \pgfsys@useobject{currentmarker}{}%
  2264. \end{pgfscope}%
  2265. \end{pgfscope}%
  2266. \begin{pgfscope}%
  2267. \pgfsetbuttcap%
  2268. \pgfsetroundjoin%
  2269. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2270. \pgfsetfillcolor{currentfill}%
  2271. \pgfsetlinewidth{0.602250pt}%
  2272. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2273. \pgfsetstrokecolor{currentstroke}%
  2274. \pgfsetdash{}{0pt}%
  2275. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2276. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2277. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2278. \pgfusepath{stroke,fill}%
  2279. }%
  2280. \begin{pgfscope}%
  2281. \pgfsys@transformshift{3.385124in}{2.724859in}%
  2282. \pgfsys@useobject{currentmarker}{}%
  2283. \end{pgfscope}%
  2284. \end{pgfscope}%
  2285. \begin{pgfscope}%
  2286. \pgfsetbuttcap%
  2287. \pgfsetroundjoin%
  2288. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2289. \pgfsetfillcolor{currentfill}%
  2290. \pgfsetlinewidth{0.602250pt}%
  2291. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2292. \pgfsetstrokecolor{currentstroke}%
  2293. \pgfsetdash{}{0pt}%
  2294. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2295. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2296. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2297. \pgfusepath{stroke,fill}%
  2298. }%
  2299. \begin{pgfscope}%
  2300. \pgfsys@transformshift{3.385124in}{2.848577in}%
  2301. \pgfsys@useobject{currentmarker}{}%
  2302. \end{pgfscope}%
  2303. \end{pgfscope}%
  2304. \begin{pgfscope}%
  2305. \pgfsetbuttcap%
  2306. \pgfsetroundjoin%
  2307. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2308. \pgfsetfillcolor{currentfill}%
  2309. \pgfsetlinewidth{0.602250pt}%
  2310. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2311. \pgfsetstrokecolor{currentstroke}%
  2312. \pgfsetdash{}{0pt}%
  2313. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2314. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2315. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2316. \pgfusepath{stroke,fill}%
  2317. }%
  2318. \begin{pgfscope}%
  2319. \pgfsys@transformshift{3.385124in}{2.955746in}%
  2320. \pgfsys@useobject{currentmarker}{}%
  2321. \end{pgfscope}%
  2322. \end{pgfscope}%
  2323. \begin{pgfscope}%
  2324. \pgfsetbuttcap%
  2325. \pgfsetroundjoin%
  2326. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2327. \pgfsetfillcolor{currentfill}%
  2328. \pgfsetlinewidth{0.602250pt}%
  2329. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2330. \pgfsetstrokecolor{currentstroke}%
  2331. \pgfsetdash{}{0pt}%
  2332. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2333. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2334. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2335. \pgfusepath{stroke,fill}%
  2336. }%
  2337. \begin{pgfscope}%
  2338. \pgfsys@transformshift{3.385124in}{3.050275in}%
  2339. \pgfsys@useobject{currentmarker}{}%
  2340. \end{pgfscope}%
  2341. \end{pgfscope}%
  2342. \begin{pgfscope}%
  2343. \pgfsetbuttcap%
  2344. \pgfsetroundjoin%
  2345. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2346. \pgfsetfillcolor{currentfill}%
  2347. \pgfsetlinewidth{0.602250pt}%
  2348. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2349. \pgfsetstrokecolor{currentstroke}%
  2350. \pgfsetdash{}{0pt}%
  2351. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2352. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2353. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2354. \pgfusepath{stroke,fill}%
  2355. }%
  2356. \begin{pgfscope}%
  2357. \pgfsys@transformshift{3.385124in}{3.691139in}%
  2358. \pgfsys@useobject{currentmarker}{}%
  2359. \end{pgfscope}%
  2360. \end{pgfscope}%
  2361. \begin{pgfscope}%
  2362. \pgfsetbuttcap%
  2363. \pgfsetroundjoin%
  2364. \definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
  2365. \pgfsetfillcolor{currentfill}%
  2366. \pgfsetlinewidth{0.602250pt}%
  2367. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2368. \pgfsetstrokecolor{currentstroke}%
  2369. \pgfsetdash{}{0pt}%
  2370. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
  2371. \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
  2372. \pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}%
  2373. \pgfusepath{stroke,fill}%
  2374. }%
  2375. \begin{pgfscope}%
  2376. \pgfsys@transformshift{3.385124in}{4.016555in}%
  2377. \pgfsys@useobject{currentmarker}{}%
  2378. \end{pgfscope}%
  2379. \end{pgfscope}%
  2380. \begin{pgfscope}%
  2381. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2382. \pgfsetstrokecolor{textcolor}%
  2383. \pgfsetfillcolor{textcolor}%
  2384. \pgftext[x=3.280957in,y=2.168555in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle P(b_k=1|\)trade\(\displaystyle )\)}%
  2385. \end{pgfscope}%
  2386. \begin{pgfscope}%
  2387. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2388. \pgfusepath{clip}%
  2389. \pgfsetrectcap%
  2390. \pgfsetroundjoin%
  2391. \pgfsetlinewidth{0.501875pt}%
  2392. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  2393. \pgfsetstrokecolor{currentstroke}%
  2394. \pgfsetdash{}{0pt}%
  2395. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.944342in}}%
  2396. \pgfpathlineto{\pgfqpoint{3.510376in}{0.809759in}}%
  2397. \pgfpathlineto{\pgfqpoint{3.635629in}{1.215961in}}%
  2398. \pgfpathlineto{\pgfqpoint{3.760881in}{0.945292in}}%
  2399. \pgfpathlineto{\pgfqpoint{3.886134in}{1.370560in}}%
  2400. \pgfpathlineto{\pgfqpoint{4.011386in}{1.473754in}}%
  2401. \pgfpathlineto{\pgfqpoint{4.136639in}{1.240070in}}%
  2402. \pgfpathlineto{\pgfqpoint{4.261891in}{1.207976in}}%
  2403. \pgfpathlineto{\pgfqpoint{4.387144in}{0.988627in}}%
  2404. \pgfpathlineto{\pgfqpoint{4.512396in}{1.048055in}}%
  2405. \pgfpathlineto{\pgfqpoint{4.637649in}{0.991879in}}%
  2406. \pgfpathlineto{\pgfqpoint{4.762901in}{0.972285in}}%
  2407. \pgfpathlineto{\pgfqpoint{4.888154in}{0.965316in}}%
  2408. \pgfpathlineto{\pgfqpoint{5.013407in}{0.703153in}}%
  2409. \pgfpathlineto{\pgfqpoint{5.138659in}{0.815438in}}%
  2410. \pgfpathlineto{\pgfqpoint{5.263912in}{0.333238in}}%
  2411. \pgfpathlineto{\pgfqpoint{5.389164in}{0.340139in}}%
  2412. \pgfpathlineto{\pgfqpoint{5.396312in}{0.310555in}}%
  2413. \pgfusepath{stroke}%
  2414. \end{pgfscope}%
  2415. \begin{pgfscope}%
  2416. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2417. \pgfusepath{clip}%
  2418. \pgfsetrectcap%
  2419. \pgfsetroundjoin%
  2420. \pgfsetlinewidth{0.501875pt}%
  2421. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  2422. \pgfsetstrokecolor{currentstroke}%
  2423. \pgfsetdash{}{0pt}%
  2424. \pgfpathmoveto{\pgfqpoint{3.385124in}{1.343895in}}%
  2425. \pgfpathlineto{\pgfqpoint{3.510376in}{1.102413in}}%
  2426. \pgfpathlineto{\pgfqpoint{3.635629in}{1.116751in}}%
  2427. \pgfpathlineto{\pgfqpoint{3.760881in}{1.091619in}}%
  2428. \pgfpathlineto{\pgfqpoint{3.886134in}{0.862912in}}%
  2429. \pgfpathlineto{\pgfqpoint{4.011386in}{1.313649in}}%
  2430. \pgfpathlineto{\pgfqpoint{4.136639in}{1.487124in}}%
  2431. \pgfpathlineto{\pgfqpoint{4.261891in}{1.472043in}}%
  2432. \pgfpathlineto{\pgfqpoint{4.387144in}{1.179101in}}%
  2433. \pgfpathlineto{\pgfqpoint{4.512396in}{1.536220in}}%
  2434. \pgfpathlineto{\pgfqpoint{4.637649in}{1.408744in}}%
  2435. \pgfpathlineto{\pgfqpoint{4.762901in}{1.346900in}}%
  2436. \pgfpathlineto{\pgfqpoint{4.888154in}{1.131601in}}%
  2437. \pgfpathlineto{\pgfqpoint{5.013407in}{0.947826in}}%
  2438. \pgfpathlineto{\pgfqpoint{5.138659in}{1.254491in}}%
  2439. \pgfpathlineto{\pgfqpoint{5.263912in}{0.867751in}}%
  2440. \pgfpathlineto{\pgfqpoint{5.389164in}{1.347585in}}%
  2441. \pgfpathlineto{\pgfqpoint{5.514417in}{1.201659in}}%
  2442. \pgfpathlineto{\pgfqpoint{5.639669in}{1.371360in}}%
  2443. \pgfusepath{stroke}%
  2444. \end{pgfscope}%
  2445. \begin{pgfscope}%
  2446. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2447. \pgfusepath{clip}%
  2448. \pgfsetrectcap%
  2449. \pgfsetroundjoin%
  2450. \pgfsetlinewidth{0.501875pt}%
  2451. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  2452. \pgfsetstrokecolor{currentstroke}%
  2453. \pgfsetdash{}{0pt}%
  2454. \pgfpathmoveto{\pgfqpoint{3.385124in}{1.343895in}}%
  2455. \pgfpathlineto{\pgfqpoint{3.510376in}{1.551547in}}%
  2456. \pgfpathlineto{\pgfqpoint{3.635629in}{1.640732in}}%
  2457. \pgfpathlineto{\pgfqpoint{3.760881in}{1.677111in}}%
  2458. \pgfpathlineto{\pgfqpoint{3.886134in}{1.695976in}}%
  2459. \pgfpathlineto{\pgfqpoint{4.011386in}{1.733981in}}%
  2460. \pgfpathlineto{\pgfqpoint{4.136639in}{1.480235in}}%
  2461. \pgfpathlineto{\pgfqpoint{4.261891in}{1.342050in}}%
  2462. \pgfpathlineto{\pgfqpoint{4.387144in}{1.453976in}}%
  2463. \pgfpathlineto{\pgfqpoint{4.512396in}{1.501621in}}%
  2464. \pgfpathlineto{\pgfqpoint{4.637649in}{1.264883in}}%
  2465. \pgfpathlineto{\pgfqpoint{4.762901in}{1.452441in}}%
  2466. \pgfpathlineto{\pgfqpoint{4.888154in}{1.601256in}}%
  2467. \pgfpathlineto{\pgfqpoint{5.013407in}{1.263419in}}%
  2468. \pgfpathlineto{\pgfqpoint{5.138659in}{1.420856in}}%
  2469. \pgfpathlineto{\pgfqpoint{5.263912in}{1.283596in}}%
  2470. \pgfpathlineto{\pgfqpoint{5.389164in}{1.347585in}}%
  2471. \pgfpathlineto{\pgfqpoint{5.514417in}{1.070952in}}%
  2472. \pgfpathlineto{\pgfqpoint{5.639669in}{1.067511in}}%
  2473. \pgfusepath{stroke}%
  2474. \end{pgfscope}%
  2475. \begin{pgfscope}%
  2476. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2477. \pgfusepath{clip}%
  2478. \pgfsetrectcap%
  2479. \pgfsetroundjoin%
  2480. \pgfsetlinewidth{0.501875pt}%
  2481. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  2482. \pgfsetstrokecolor{currentstroke}%
  2483. \pgfsetdash{}{0pt}%
  2484. \pgfpathmoveto{\pgfqpoint{3.385124in}{1.684896in}}%
  2485. \pgfpathlineto{\pgfqpoint{3.510376in}{1.753246in}}%
  2486. \pgfpathlineto{\pgfqpoint{3.635629in}{1.413501in}}%
  2487. \pgfpathlineto{\pgfqpoint{3.760881in}{1.669913in}}%
  2488. \pgfpathlineto{\pgfqpoint{3.886134in}{1.744632in}}%
  2489. \pgfpathlineto{\pgfqpoint{4.011386in}{1.810475in}}%
  2490. \pgfpathlineto{\pgfqpoint{4.136639in}{1.625408in}}%
  2491. \pgfpathlineto{\pgfqpoint{4.261891in}{1.687786in}}%
  2492. \pgfpathlineto{\pgfqpoint{4.387144in}{1.700756in}}%
  2493. \pgfpathlineto{\pgfqpoint{4.512396in}{1.508661in}}%
  2494. \pgfpathlineto{\pgfqpoint{4.637649in}{1.475829in}}%
  2495. \pgfpathlineto{\pgfqpoint{4.762901in}{1.448628in}}%
  2496. \pgfpathlineto{\pgfqpoint{4.888154in}{1.362488in}}%
  2497. \pgfpathlineto{\pgfqpoint{5.013407in}{1.148874in}}%
  2498. \pgfpathlineto{\pgfqpoint{5.138659in}{1.163897in}}%
  2499. \pgfpathlineto{\pgfqpoint{5.263912in}{0.996711in}}%
  2500. \pgfpathlineto{\pgfqpoint{5.389164in}{0.989406in}}%
  2501. \pgfpathlineto{\pgfqpoint{5.514417in}{0.947234in}}%
  2502. \pgfpathlineto{\pgfqpoint{5.639669in}{0.975827in}}%
  2503. \pgfusepath{stroke}%
  2504. \end{pgfscope}%
  2505. \begin{pgfscope}%
  2506. \pgfpathrectangle{\pgfqpoint{3.385124in}{0.320555in}}{\pgfqpoint{2.254545in}{3.696000in}}%
  2507. \pgfusepath{clip}%
  2508. \pgfsetrectcap%
  2509. \pgfsetroundjoin%
  2510. \pgfsetlinewidth{0.501875pt}%
  2511. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  2512. \pgfsetstrokecolor{currentstroke}%
  2513. \pgfsetdash{}{0pt}%
  2514. \pgfpathmoveto{\pgfqpoint{3.385124in}{2.220352in}}%
  2515. \pgfpathlineto{\pgfqpoint{3.510376in}{2.055204in}}%
  2516. \pgfpathlineto{\pgfqpoint{3.635629in}{1.969805in}}%
  2517. \pgfpathlineto{\pgfqpoint{3.760881in}{2.218953in}}%
  2518. \pgfpathlineto{\pgfqpoint{3.886134in}{2.191515in}}%
  2519. \pgfpathlineto{\pgfqpoint{4.011386in}{2.302538in}}%
  2520. \pgfpathlineto{\pgfqpoint{4.136639in}{2.131069in}}%
  2521. \pgfpathlineto{\pgfqpoint{4.261891in}{2.079205in}}%
  2522. \pgfpathlineto{\pgfqpoint{4.387144in}{2.079443in}}%
  2523. \pgfpathlineto{\pgfqpoint{4.512396in}{2.174540in}}%
  2524. \pgfpathlineto{\pgfqpoint{4.637649in}{2.076322in}}%
  2525. \pgfpathlineto{\pgfqpoint{4.762901in}{2.177883in}}%
  2526. \pgfpathlineto{\pgfqpoint{4.888154in}{2.233578in}}%
  2527. \pgfpathlineto{\pgfqpoint{5.013407in}{1.907636in}}%
  2528. \pgfpathlineto{\pgfqpoint{5.138659in}{1.978989in}}%
  2529. \pgfpathlineto{\pgfqpoint{5.263912in}{1.903128in}}%
  2530. \pgfpathlineto{\pgfqpoint{5.389164in}{1.789811in}}%
  2531. \pgfpathlineto{\pgfqpoint{5.514417in}{1.357211in}}%
  2532. \pgfpathlineto{\pgfqpoint{5.639669in}{1.612333in}}%
  2533. \pgfusepath{stroke}%
  2534. \end{pgfscope}%
  2535. \begin{pgfscope}%
  2536. \pgfsetrectcap%
  2537. \pgfsetmiterjoin%
  2538. \pgfsetlinewidth{0.803000pt}%
  2539. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2540. \pgfsetstrokecolor{currentstroke}%
  2541. \pgfsetdash{}{0pt}%
  2542. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.320555in}}%
  2543. \pgfpathlineto{\pgfqpoint{3.385124in}{4.016555in}}%
  2544. \pgfusepath{stroke}%
  2545. \end{pgfscope}%
  2546. \begin{pgfscope}%
  2547. \pgfsetrectcap%
  2548. \pgfsetmiterjoin%
  2549. \pgfsetlinewidth{0.803000pt}%
  2550. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2551. \pgfsetstrokecolor{currentstroke}%
  2552. \pgfsetdash{}{0pt}%
  2553. \pgfpathmoveto{\pgfqpoint{5.639669in}{0.320555in}}%
  2554. \pgfpathlineto{\pgfqpoint{5.639669in}{4.016555in}}%
  2555. \pgfusepath{stroke}%
  2556. \end{pgfscope}%
  2557. \begin{pgfscope}%
  2558. \pgfsetrectcap%
  2559. \pgfsetmiterjoin%
  2560. \pgfsetlinewidth{0.803000pt}%
  2561. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2562. \pgfsetstrokecolor{currentstroke}%
  2563. \pgfsetdash{}{0pt}%
  2564. \pgfpathmoveto{\pgfqpoint{3.385124in}{0.320555in}}%
  2565. \pgfpathlineto{\pgfqpoint{5.639669in}{0.320555in}}%
  2566. \pgfusepath{stroke}%
  2567. \end{pgfscope}%
  2568. \begin{pgfscope}%
  2569. \pgfsetrectcap%
  2570. \pgfsetmiterjoin%
  2571. \pgfsetlinewidth{0.803000pt}%
  2572. \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
  2573. \pgfsetstrokecolor{currentstroke}%
  2574. \pgfsetdash{}{0pt}%
  2575. \pgfpathmoveto{\pgfqpoint{3.385124in}{4.016555in}}%
  2576. \pgfpathlineto{\pgfqpoint{5.639669in}{4.016555in}}%
  2577. \pgfusepath{stroke}%
  2578. \end{pgfscope}%
  2579. \begin{pgfscope}%
  2580. \pgfsetbuttcap%
  2581. \pgfsetmiterjoin%
  2582. \definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
  2583. \pgfsetfillcolor{currentfill}%
  2584. \pgfsetfillopacity{0.800000}%
  2585. \pgfsetlinewidth{1.003750pt}%
  2586. \definecolor{currentstroke}{rgb}{0.800000,0.800000,0.800000}%
  2587. \pgfsetstrokecolor{currentstroke}%
  2588. \pgfsetstrokeopacity{0.800000}%
  2589. \pgfsetdash{}{0pt}%
  2590. \pgfpathmoveto{\pgfqpoint{4.185169in}{3.364557in}}%
  2591. \pgfpathlineto{\pgfqpoint{5.581336in}{3.364557in}}%
  2592. \pgfpathquadraticcurveto{\pgfqpoint{5.598002in}{3.364557in}}{\pgfqpoint{5.598002in}{3.381223in}}%
  2593. \pgfpathlineto{\pgfqpoint{5.598002in}{3.958222in}}%
  2594. \pgfpathquadraticcurveto{\pgfqpoint{5.598002in}{3.974889in}}{\pgfqpoint{5.581336in}{3.974889in}}%
  2595. \pgfpathlineto{\pgfqpoint{4.185169in}{3.974889in}}%
  2596. \pgfpathquadraticcurveto{\pgfqpoint{4.168503in}{3.974889in}}{\pgfqpoint{4.168503in}{3.958222in}}%
  2597. \pgfpathlineto{\pgfqpoint{4.168503in}{3.381223in}}%
  2598. \pgfpathquadraticcurveto{\pgfqpoint{4.168503in}{3.364557in}}{\pgfqpoint{4.185169in}{3.364557in}}%
  2599. \pgfpathlineto{\pgfqpoint{4.185169in}{3.364557in}}%
  2600. \pgfpathclose%
  2601. \pgfusepath{stroke,fill}%
  2602. \end{pgfscope}%
  2603. \begin{pgfscope}%
  2604. \pgfsetbuttcap%
  2605. \pgfsetroundjoin%
  2606. \definecolor{currentfill}{rgb}{0.215686,0.494118,0.721569}%
  2607. \pgfsetfillcolor{currentfill}%
  2608. \pgfsetlinewidth{1.003750pt}%
  2609. \definecolor{currentstroke}{rgb}{0.215686,0.494118,0.721569}%
  2610. \pgfsetstrokecolor{currentstroke}%
  2611. \pgfsetdash{}{0pt}%
  2612. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2613. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2614. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2615. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2616. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2617. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2618. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2619. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2620. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2621. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2622. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2623. \pgfpathclose%
  2624. \pgfusepath{stroke,fill}%
  2625. }%
  2626. \begin{pgfscope}%
  2627. \pgfsys@transformshift{4.285169in}{3.904764in}%
  2628. \pgfsys@useobject{currentmarker}{}%
  2629. \end{pgfscope}%
  2630. \end{pgfscope}%
  2631. \begin{pgfscope}%
  2632. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2633. \pgfsetstrokecolor{textcolor}%
  2634. \pgfsetfillcolor{textcolor}%
  2635. \pgftext[x=4.435169in,y=3.882889in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont soft supersymmetry}%
  2636. \end{pgfscope}%
  2637. \begin{pgfscope}%
  2638. \pgfsetbuttcap%
  2639. \pgfsetroundjoin%
  2640. \definecolor{currentfill}{rgb}{1.000000,0.498039,0.000000}%
  2641. \pgfsetfillcolor{currentfill}%
  2642. \pgfsetlinewidth{1.003750pt}%
  2643. \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.000000}%
  2644. \pgfsetstrokecolor{currentstroke}%
  2645. \pgfsetdash{}{0pt}%
  2646. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2647. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2648. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2649. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2650. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2651. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2652. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2653. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2654. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2655. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2656. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2657. \pgfpathclose%
  2658. \pgfusepath{stroke,fill}%
  2659. }%
  2660. \begin{pgfscope}%
  2661. \pgfsys@transformshift{4.285169in}{3.787764in}%
  2662. \pgfsys@useobject{currentmarker}{}%
  2663. \end{pgfscope}%
  2664. \end{pgfscope}%
  2665. \begin{pgfscope}%
  2666. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2667. \pgfsetstrokecolor{textcolor}%
  2668. \pgfsetfillcolor{textcolor}%
  2669. \pgftext[x=4.435169in,y=3.765889in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric particle}%
  2670. \end{pgfscope}%
  2671. \begin{pgfscope}%
  2672. \pgfsetbuttcap%
  2673. \pgfsetroundjoin%
  2674. \definecolor{currentfill}{rgb}{0.301961,0.686275,0.290196}%
  2675. \pgfsetfillcolor{currentfill}%
  2676. \pgfsetlinewidth{1.003750pt}%
  2677. \definecolor{currentstroke}{rgb}{0.301961,0.686275,0.290196}%
  2678. \pgfsetstrokecolor{currentstroke}%
  2679. \pgfsetdash{}{0pt}%
  2680. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2681. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2682. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2683. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2684. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2685. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2686. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2687. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2688. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2689. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2690. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2691. \pgfpathclose%
  2692. \pgfusepath{stroke,fill}%
  2693. }%
  2694. \begin{pgfscope}%
  2695. \pgfsys@transformshift{4.285169in}{3.670764in}%
  2696. \pgfsys@useobject{currentmarker}{}%
  2697. \end{pgfscope}%
  2698. \end{pgfscope}%
  2699. \begin{pgfscope}%
  2700. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2701. \pgfsetstrokecolor{textcolor}%
  2702. \pgfsetfillcolor{textcolor}%
  2703. \pgftext[x=4.435169in,y=3.648889in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric model}%
  2704. \end{pgfscope}%
  2705. \begin{pgfscope}%
  2706. \pgfsetbuttcap%
  2707. \pgfsetroundjoin%
  2708. \definecolor{currentfill}{rgb}{0.968627,0.505882,0.749020}%
  2709. \pgfsetfillcolor{currentfill}%
  2710. \pgfsetlinewidth{1.003750pt}%
  2711. \definecolor{currentstroke}{rgb}{0.968627,0.505882,0.749020}%
  2712. \pgfsetstrokecolor{currentstroke}%
  2713. \pgfsetdash{}{0pt}%
  2714. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2715. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2716. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2717. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2718. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2719. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2720. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2721. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2722. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2723. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2724. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2725. \pgfpathclose%
  2726. \pgfusepath{stroke,fill}%
  2727. }%
  2728. \begin{pgfscope}%
  2729. \pgfsys@transformshift{4.285169in}{3.553765in}%
  2730. \pgfsys@useobject{currentmarker}{}%
  2731. \end{pgfscope}%
  2732. \end{pgfscope}%
  2733. \begin{pgfscope}%
  2734. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2735. \pgfsetstrokecolor{textcolor}%
  2736. \pgfsetfillcolor{textcolor}%
  2737. \pgftext[x=4.435169in,y=3.531890in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric theory}%
  2738. \end{pgfscope}%
  2739. \begin{pgfscope}%
  2740. \pgfsetbuttcap%
  2741. \pgfsetroundjoin%
  2742. \definecolor{currentfill}{rgb}{0.650980,0.337255,0.156863}%
  2743. \pgfsetfillcolor{currentfill}%
  2744. \pgfsetlinewidth{1.003750pt}%
  2745. \definecolor{currentstroke}{rgb}{0.650980,0.337255,0.156863}%
  2746. \pgfsetstrokecolor{currentstroke}%
  2747. \pgfsetdash{}{0pt}%
  2748. \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.021960in}{-0.021960in}}{\pgfqpoint{0.021960in}{0.021960in}}{%
  2749. \pgfpathmoveto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2750. \pgfpathcurveto{\pgfqpoint{0.005824in}{-0.021960in}}{\pgfqpoint{0.011410in}{-0.019646in}}{\pgfqpoint{0.015528in}{-0.015528in}}%
  2751. \pgfpathcurveto{\pgfqpoint{0.019646in}{-0.011410in}}{\pgfqpoint{0.021960in}{-0.005824in}}{\pgfqpoint{0.021960in}{0.000000in}}%
  2752. \pgfpathcurveto{\pgfqpoint{0.021960in}{0.005824in}}{\pgfqpoint{0.019646in}{0.011410in}}{\pgfqpoint{0.015528in}{0.015528in}}%
  2753. \pgfpathcurveto{\pgfqpoint{0.011410in}{0.019646in}}{\pgfqpoint{0.005824in}{0.021960in}}{\pgfqpoint{0.000000in}{0.021960in}}%
  2754. \pgfpathcurveto{\pgfqpoint{-0.005824in}{0.021960in}}{\pgfqpoint{-0.011410in}{0.019646in}}{\pgfqpoint{-0.015528in}{0.015528in}}%
  2755. \pgfpathcurveto{\pgfqpoint{-0.019646in}{0.011410in}}{\pgfqpoint{-0.021960in}{0.005824in}}{\pgfqpoint{-0.021960in}{0.000000in}}%
  2756. \pgfpathcurveto{\pgfqpoint{-0.021960in}{-0.005824in}}{\pgfqpoint{-0.019646in}{-0.011410in}}{\pgfqpoint{-0.015528in}{-0.015528in}}%
  2757. \pgfpathcurveto{\pgfqpoint{-0.011410in}{-0.019646in}}{\pgfqpoint{-0.005824in}{-0.021960in}}{\pgfqpoint{0.000000in}{-0.021960in}}%
  2758. \pgfpathlineto{\pgfqpoint{0.000000in}{-0.021960in}}%
  2759. \pgfpathclose%
  2760. \pgfusepath{stroke,fill}%
  2761. }%
  2762. \begin{pgfscope}%
  2763. \pgfsys@transformshift{4.285169in}{3.436765in}%
  2764. \pgfsys@useobject{currentmarker}{}%
  2765. \end{pgfscope}%
  2766. \end{pgfscope}%
  2767. \begin{pgfscope}%
  2768. \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
  2769. \pgfsetstrokecolor{textcolor}%
  2770. \pgfsetfillcolor{textcolor}%
  2771. \pgftext[x=4.435169in,y=3.414890in,left,base]{\color{textcolor}\rmfamily\fontsize{6.000000}{7.200000}\selectfont supersymmetric standard}%
  2772. \end{pgfscope}%
  2773. \end{pgfpicture}%
  2774. \makeatother%
  2775. \endgroup%