@zxncij2390/monorepo3 3.18.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (921) hide show
  1. package/.eslintignore +16 -0
  2. package/.eslintrc.cjs +150 -0
  3. package/.github/ISSUE_TEMPLATE/bug-report.yml +178 -0
  4. package/.github/ISSUE_TEMPLATE/enhancement.yml +99 -0
  5. package/.github/ISSUE_TEMPLATE/question.yml +72 -0
  6. package/.github/ISSUE_TEMPLATE.md +39 -0
  7. package/.github/PULL_REQUEST_TEMPLATE.md +24 -0
  8. package/.github/workflows/lock.yml +18 -0
  9. package/.github/workflows/publish-buildsystem.yml +34 -0
  10. package/.github/workflows/publish-docs.yml +21 -0
  11. package/.github/workflows/publish.yml +40 -0
  12. package/.github/workflows/pull_request.yaml +28 -0
  13. package/.github/workflows/push.yaml +32 -0
  14. package/.github/workflows/v3-nightly.yml +40 -0
  15. package/.mocharc.cjs +68 -0
  16. package/.vscode/launch.json +103 -0
  17. package/.vscode/settings.json +17 -0
  18. package/.vscode/tasks.json +124 -0
  19. package/AUTHORS +13 -0
  20. package/CHANGELOG.md +33 -0
  21. package/CODE_OF_CONDUCT.md +6 -0
  22. package/CONTRIBUTING.md +9 -0
  23. package/LICENSE +25 -0
  24. package/README.md +66 -0
  25. package/buildsystem-config.ts +146 -0
  26. package/debug/launch/graph.ts +20 -0
  27. package/debug/launch/main.ts +38 -0
  28. package/debug/launch/setup.ts +50 -0
  29. package/debug/launch/sp.ts +21 -0
  30. package/debug/launch/tsconfig.json +27 -0
  31. package/debug/serve/main.ts +47 -0
  32. package/debug/serve/plumbing/local-module-resolver-plugin.ts +68 -0
  33. package/debug/serve/plumbing/run.ts +24 -0
  34. package/debug/serve/plumbing/serve.ts +27 -0
  35. package/debug/serve/plumbing/webpack.config.ts +43 -0
  36. package/debug/serve/spa.html +12 -0
  37. package/debug/serve/tsconfig.json +15 -0
  38. package/debug/spfx/.eslintrc.js +352 -0
  39. package/debug/spfx/README.md +73 -0
  40. package/debug/spfx/package-lock.json +57299 -0
  41. package/debug/spfx/package.json +38 -0
  42. package/debug/spfx/pnpjs-local-debug-start.js +19 -0
  43. package/debug/spfx/teams/f4c0e5ff-c402-46b7-8073-8cc506808d06_color.png +0 -0
  44. package/debug/spfx/teams/f4c0e5ff-c402-46b7-8073-8cc506808d06_outline.png +0 -0
  45. package/docs/_theme/main.html +5 -0
  46. package/docs/azidjsclient/index.md +36 -0
  47. package/docs/concepts/adv-clientside-pages.md +169 -0
  48. package/docs/concepts/auth-browser.md +42 -0
  49. package/docs/concepts/auth-nodejs.md +101 -0
  50. package/docs/concepts/auth-spfx.md +76 -0
  51. package/docs/concepts/authentication.md +42 -0
  52. package/docs/concepts/batching-caching.md +77 -0
  53. package/docs/concepts/batching.md +257 -0
  54. package/docs/concepts/calling-other-endpoints.md +213 -0
  55. package/docs/concepts/custom-bundle.md +15 -0
  56. package/docs/concepts/error-handling.md +245 -0
  57. package/docs/concepts/invokable.md +7 -0
  58. package/docs/concepts/nightly-builds.md +19 -0
  59. package/docs/concepts/project-preset.md +123 -0
  60. package/docs/concepts/selective-imports.md +106 -0
  61. package/docs/concepts/typings.md +23 -0
  62. package/docs/contributing/debug-tests.md +76 -0
  63. package/docs/contributing/debugging.md +135 -0
  64. package/docs/contributing/documentation.md +34 -0
  65. package/docs/contributing/extending-the-library.md +223 -0
  66. package/docs/contributing/index.md +22 -0
  67. package/docs/contributing/local-debug-configuration.md +28 -0
  68. package/docs/contributing/npm-scripts.md +148 -0
  69. package/docs/contributing/pull-requests.md +27 -0
  70. package/docs/contributing/settings.md +98 -0
  71. package/docs/contributing/setup-dev-machine.md +36 -0
  72. package/docs/core/behavior-recipes.md +199 -0
  73. package/docs/core/behaviors.md +179 -0
  74. package/docs/core/moments.md +215 -0
  75. package/docs/core/observers.md +100 -0
  76. package/docs/core/storage.md +90 -0
  77. package/docs/core/timeline.md +190 -0
  78. package/docs/core/util.md +191 -0
  79. package/docs/css/extra.css +33 -0
  80. package/docs/getting-started.md +361 -0
  81. package/docs/graph/behaviors.md +267 -0
  82. package/docs/graph/bookings.md +180 -0
  83. package/docs/graph/calendars.md +270 -0
  84. package/docs/graph/cloud-communications.md +40 -0
  85. package/docs/graph/columns.md +125 -0
  86. package/docs/graph/contacts.md +298 -0
  87. package/docs/graph/content-types.md +193 -0
  88. package/docs/graph/directoryobjects.md +106 -0
  89. package/docs/graph/groups.md +164 -0
  90. package/docs/graph/insights.md +151 -0
  91. package/docs/graph/invitations.md +22 -0
  92. package/docs/graph/items.md +38 -0
  93. package/docs/graph/lists.md +87 -0
  94. package/docs/graph/messages.md +20 -0
  95. package/docs/graph/onedrive.md +614 -0
  96. package/docs/graph/outlook.md +82 -0
  97. package/docs/graph/photos.md +71 -0
  98. package/docs/graph/planner.md +249 -0
  99. package/docs/graph/search.md +25 -0
  100. package/docs/graph/shares.md +44 -0
  101. package/docs/graph/sites.md +47 -0
  102. package/docs/graph/subscriptions.md +79 -0
  103. package/docs/graph/teams.md +293 -0
  104. package/docs/graph/users.md +134 -0
  105. package/docs/img/ConsoleListenerColors.png +0 -0
  106. package/docs/img/Logo.png +0 -0
  107. package/docs/img/PnPJS_FluentAPI.gif +0 -0
  108. package/docs/img/SPFx-On-Premesis-2016-1.png +0 -0
  109. package/docs/img/TimelineArchitecture.jpg +0 -0
  110. package/docs/img/csp_copyccvalue.png +0 -0
  111. package/docs/img/csp_networktab.png +0 -0
  112. package/docs/img/office365-header-icon.png +0 -0
  113. package/docs/img/usage-2020-eoy.png +0 -0
  114. package/docs/img/usage-2021-eoy.png +0 -0
  115. package/docs/img/usage-2022-eoy.png +0 -0
  116. package/docs/index.md +56 -0
  117. package/docs/logging/index.md +262 -0
  118. package/docs/msaljsclient/index.md +33 -0
  119. package/docs/news/2020-year-in-review.md +162 -0
  120. package/docs/news/2021-year-in-review.md +148 -0
  121. package/docs/news/2022-year-in-review.md +122 -0
  122. package/docs/nodejs/behaviors.md +164 -0
  123. package/docs/nodejs/sp-extensions.md +99 -0
  124. package/docs/packages.md +53 -0
  125. package/docs/queryable/behaviors.md +496 -0
  126. package/docs/queryable/extensions.md +204 -0
  127. package/docs/queryable/queryable.md +385 -0
  128. package/docs/sp/alias-parameters.md +76 -0
  129. package/docs/sp/alm.md +139 -0
  130. package/docs/sp/attachments.md +157 -0
  131. package/docs/sp/behaviors.md +142 -0
  132. package/docs/sp/clientside-pages.md +1048 -0
  133. package/docs/sp/column-defaults.md +241 -0
  134. package/docs/sp/comments-likes.md +302 -0
  135. package/docs/sp/content-types.md +131 -0
  136. package/docs/sp/context-info.md +67 -0
  137. package/docs/sp/favorites.md +91 -0
  138. package/docs/sp/features.md +83 -0
  139. package/docs/sp/fields.md +668 -0
  140. package/docs/sp/files.md +559 -0
  141. package/docs/sp/folders.md +532 -0
  142. package/docs/sp/forms.md +22 -0
  143. package/docs/sp/groupSiteManager.md +40 -0
  144. package/docs/sp/hubsites.md +140 -0
  145. package/docs/sp/items.md +601 -0
  146. package/docs/sp/lists.md +572 -0
  147. package/docs/sp/navigation.md +171 -0
  148. package/docs/sp/permissions.md +82 -0
  149. package/docs/sp/profiles.md +407 -0
  150. package/docs/sp/publishing-sitepageservice.md +16 -0
  151. package/docs/sp/recycle-bin.md +72 -0
  152. package/docs/sp/regional-settings.md +108 -0
  153. package/docs/sp/related-items.md +136 -0
  154. package/docs/sp/search.md +207 -0
  155. package/docs/sp/security.md +196 -0
  156. package/docs/sp/sharing.md +273 -0
  157. package/docs/sp/site-designs.md +117 -0
  158. package/docs/sp/site-groups.md +144 -0
  159. package/docs/sp/site-scripts.md +123 -0
  160. package/docs/sp/site-users.md +211 -0
  161. package/docs/sp/sites.md +269 -0
  162. package/docs/sp/social.md +182 -0
  163. package/docs/sp/sp-utilities-utility.md +159 -0
  164. package/docs/sp/subscriptions.md +79 -0
  165. package/docs/sp/taxonomy.md +470 -0
  166. package/docs/sp/tenant-properties.md +55 -0
  167. package/docs/sp/user-custom-actions.md +95 -0
  168. package/docs/sp/views.md +226 -0
  169. package/docs/sp/webs.md +947 -0
  170. package/docs/sp-admin/index.md +139 -0
  171. package/docs/transition-guide.md +87 -0
  172. package/docs/v1/404.html +1611 -0
  173. package/docs/v1/assets/fonts/font-awesome.css +4 -0
  174. package/docs/v1/assets/fonts/material-icons.css +13 -0
  175. package/docs/v1/assets/fonts/specimen/FontAwesome.ttf +0 -0
  176. package/docs/v1/assets/fonts/specimen/FontAwesome.woff +0 -0
  177. package/docs/v1/assets/fonts/specimen/FontAwesome.woff2 +0 -0
  178. package/docs/v1/assets/fonts/specimen/MaterialIcons-Regular.ttf +0 -0
  179. package/docs/v1/assets/fonts/specimen/MaterialIcons-Regular.woff +0 -0
  180. package/docs/v1/assets/fonts/specimen/MaterialIcons-Regular.woff2 +0 -0
  181. package/docs/v1/assets/images/favicon.png +0 -0
  182. package/docs/v1/assets/images/icons/bitbucket.1b09e088.svg +20 -0
  183. package/docs/v1/assets/images/icons/github.f0b8504a.svg +18 -0
  184. package/docs/v1/assets/images/icons/gitlab.6dd19c00.svg +38 -0
  185. package/docs/v1/assets/javascripts/application.583bbe55.js +1 -0
  186. package/docs/v1/assets/javascripts/lunr/lunr.da.js +1 -0
  187. package/docs/v1/assets/javascripts/lunr/lunr.de.js +1 -0
  188. package/docs/v1/assets/javascripts/lunr/lunr.du.js +1 -0
  189. package/docs/v1/assets/javascripts/lunr/lunr.es.js +1 -0
  190. package/docs/v1/assets/javascripts/lunr/lunr.fi.js +1 -0
  191. package/docs/v1/assets/javascripts/lunr/lunr.fr.js +1 -0
  192. package/docs/v1/assets/javascripts/lunr/lunr.hu.js +1 -0
  193. package/docs/v1/assets/javascripts/lunr/lunr.it.js +1 -0
  194. package/docs/v1/assets/javascripts/lunr/lunr.jp.js +1 -0
  195. package/docs/v1/assets/javascripts/lunr/lunr.multi.js +1 -0
  196. package/docs/v1/assets/javascripts/lunr/lunr.no.js +1 -0
  197. package/docs/v1/assets/javascripts/lunr/lunr.pt.js +1 -0
  198. package/docs/v1/assets/javascripts/lunr/lunr.ro.js +1 -0
  199. package/docs/v1/assets/javascripts/lunr/lunr.ru.js +1 -0
  200. package/docs/v1/assets/javascripts/lunr/lunr.stemmer.support.js +1 -0
  201. package/docs/v1/assets/javascripts/lunr/lunr.sv.js +1 -0
  202. package/docs/v1/assets/javascripts/lunr/lunr.tr.js +1 -0
  203. package/docs/v1/assets/javascripts/lunr/tinyseg.js +1 -0
  204. package/docs/v1/assets/javascripts/modernizr.1aa3b519.js +1 -0
  205. package/docs/v1/assets/stylesheets/application-palette.22915126.css +1176 -0
  206. package/docs/v1/assets/stylesheets/application.451f80e5.css +2552 -0
  207. package/docs/v1/common/docs/adalclient/index.html +1994 -0
  208. package/docs/v1/common/docs/collections/index.html +1786 -0
  209. package/docs/v1/common/docs/custom-httpclientimpl/index.html +1798 -0
  210. package/docs/v1/common/docs/index.html +1787 -0
  211. package/docs/v1/common/docs/libconfig/index.html +1930 -0
  212. package/docs/v1/common/docs/netutil/index.html +1860 -0
  213. package/docs/v1/common/docs/storage/index.html +1850 -0
  214. package/docs/v1/common/docs/util/index.html +2058 -0
  215. package/docs/v1/config-store/docs/configuration/index.html +1730 -0
  216. package/docs/v1/config-store/docs/index.html +1761 -0
  217. package/docs/v1/config-store/docs/providers/index.html +1782 -0
  218. package/docs/v1/documentation/SPFx-On-Premesis-2016/index.html +1720 -0
  219. package/docs/v1/documentation/beta-versions/index.html +1742 -0
  220. package/docs/v1/documentation/css/extra.css +33 -0
  221. package/docs/v1/documentation/debugging/index.html +2098 -0
  222. package/docs/v1/documentation/deployment/index.html +1972 -0
  223. package/docs/v1/documentation/documentation/index.html +1760 -0
  224. package/docs/v1/documentation/getting-started/index.html +2280 -0
  225. package/docs/v1/documentation/getting-started-dev/index.html +1799 -0
  226. package/docs/v1/documentation/gulp-commands/index.html +2100 -0
  227. package/docs/v1/documentation/img/Logo.png +0 -0
  228. package/docs/v1/documentation/img/PnPJS_FluentAPI.gif +0 -0
  229. package/docs/v1/documentation/img/SPFx-On-Premesis-2016-1.png +0 -0
  230. package/docs/v1/documentation/img/office365-header-icon.png +0 -0
  231. package/docs/v1/documentation/img/pnpjs-common-uml.svg +220 -0
  232. package/docs/v1/documentation/img/pnpjs-config-store-uml.svg +56 -0
  233. package/docs/v1/documentation/img/pnpjs-graph-uml.svg +602 -0
  234. package/docs/v1/documentation/img/pnpjs-logging-uml.svg +59 -0
  235. package/docs/v1/documentation/img/pnpjs-nodejs-uml.svg +85 -0
  236. package/docs/v1/documentation/img/pnpjs-odata-uml.svg +253 -0
  237. package/docs/v1/documentation/img/pnpjs-sp-addinhelpers-uml.svg +48 -0
  238. package/docs/v1/documentation/img/pnpjs-sp-clientsvc-uml.svg +167 -0
  239. package/docs/v1/documentation/img/pnpjs-sp-taxonomy-uml.svg +458 -0
  240. package/docs/v1/documentation/img/pnpjs-sp-uml.svg +2833 -0
  241. package/docs/v1/documentation/package-structure/index.html +1875 -0
  242. package/docs/v1/documentation/packages/index.html +1741 -0
  243. package/docs/v1/documentation/polyfill/index.html +1877 -0
  244. package/docs/v1/documentation/theme/main.html +5 -0
  245. package/docs/v1/documentation/transition-guide/index.html +1977 -0
  246. package/docs/v1/graph/docs/contacts/index.html +2080 -0
  247. package/docs/v1/graph/docs/directoryobjects/index.html +1865 -0
  248. package/docs/v1/graph/docs/index.html +1858 -0
  249. package/docs/v1/graph/docs/insights/index.html +1698 -0
  250. package/docs/v1/graph/docs/invitations/index.html +1742 -0
  251. package/docs/v1/graph/docs/onedrive/index.html +2086 -0
  252. package/docs/v1/graph/docs/people/index.html +1664 -0
  253. package/docs/v1/graph/docs/planner/index.html +2097 -0
  254. package/docs/v1/graph/docs/security/index.html +1692 -0
  255. package/docs/v1/graph/docs/sites/index.html +2043 -0
  256. package/docs/v1/graph/docs/subscriptions/index.html +1835 -0
  257. package/docs/v1/graph/docs/teams/index.html +2097 -0
  258. package/docs/v1/index.html +1889 -0
  259. package/docs/v1/logging/docs/index.html +2045 -0
  260. package/docs/v1/nodejs/docs/adal-certificate-fetch-client/index.html +1676 -0
  261. package/docs/v1/nodejs/docs/adal-fetch-client/index.html +1713 -0
  262. package/docs/v1/nodejs/docs/bearer-token-fetch-client/index.html +1712 -0
  263. package/docs/v1/nodejs/docs/index.html +1764 -0
  264. package/docs/v1/nodejs/docs/provider-hosted-app/index.html +1725 -0
  265. package/docs/v1/nodejs/docs/proxy/index.html +1699 -0
  266. package/docs/v1/nodejs/docs/sp-fetch-client/index.html +1895 -0
  267. package/docs/v1/odata/docs/caching/index.html +1988 -0
  268. package/docs/v1/odata/docs/core/index.html +1829 -0
  269. package/docs/v1/odata/docs/index.html +1781 -0
  270. package/docs/v1/odata/docs/odata-batch/index.html +1755 -0
  271. package/docs/v1/odata/docs/parsers/index.html +1862 -0
  272. package/docs/v1/odata/docs/pipeline/index.html +1811 -0
  273. package/docs/v1/odata/docs/queryable/index.html +1967 -0
  274. package/docs/v1/pnpjs/docs/index.html +1814 -0
  275. package/docs/v1/search/search_index.json +1 -0
  276. package/docs/v1/sitemap.xml +428 -0
  277. package/docs/v1/sitemap.xml.gz +0 -0
  278. package/docs/v1/sp/docs/alias-parameters/index.html +1830 -0
  279. package/docs/v1/sp/docs/alm/index.html +1920 -0
  280. package/docs/v1/sp/docs/attachments/index.html +1998 -0
  281. package/docs/v1/sp/docs/client-side-pages/index.html +2031 -0
  282. package/docs/v1/sp/docs/comments-likes/index.html +1958 -0
  283. package/docs/v1/sp/docs/content-types/index.html +1758 -0
  284. package/docs/v1/sp/docs/entity-merging/index.html +1838 -0
  285. package/docs/v1/sp/docs/features/index.html +1824 -0
  286. package/docs/v1/sp/docs/fields/index.html +2031 -0
  287. package/docs/v1/sp/docs/files/index.html +2178 -0
  288. package/docs/v1/sp/docs/index.html +1894 -0
  289. package/docs/v1/sp/docs/items/index.html +2362 -0
  290. package/docs/v1/sp/docs/navigation-service/index.html +1791 -0
  291. package/docs/v1/sp/docs/permissions/index.html +1860 -0
  292. package/docs/v1/sp/docs/profiles/index.html +1794 -0
  293. package/docs/v1/sp/docs/related-items/index.html +1886 -0
  294. package/docs/v1/sp/docs/search/index.html +1830 -0
  295. package/docs/v1/sp/docs/sharing/index.html +2058 -0
  296. package/docs/v1/sp/docs/sitedesigns/index.html +1851 -0
  297. package/docs/v1/sp/docs/sites/index.html +2186 -0
  298. package/docs/v1/sp/docs/social/index.html +2011 -0
  299. package/docs/v1/sp/docs/sp-utilities-utility/index.html +2061 -0
  300. package/docs/v1/sp/docs/tenant-properties/index.html +1795 -0
  301. package/docs/v1/sp/docs/views/index.html +1869 -0
  302. package/docs/v1/sp/docs/webs/index.html +1972 -0
  303. package/docs/v1/sp-addinhelpers/docs/index.html +1771 -0
  304. package/docs/v1/sp-addinhelpers/docs/sp-request-executor-client/index.html +1760 -0
  305. package/docs/v1/sp-addinhelpers/docs/sp-rest-addin/index.html +1711 -0
  306. package/docs/v1/sp-clientsvc/docs/index.html +1736 -0
  307. package/docs/v1/sp-taxonomy/docs/index.html +1887 -0
  308. package/docs/v1/sp-taxonomy/docs/labels/index.html +1827 -0
  309. package/docs/v1/sp-taxonomy/docs/term-groups/index.html +1875 -0
  310. package/docs/v1/sp-taxonomy/docs/term-sets/index.html +1946 -0
  311. package/docs/v1/sp-taxonomy/docs/term-stores/index.html +2111 -0
  312. package/docs/v1/sp-taxonomy/docs/terms/index.html +2036 -0
  313. package/docs/v1/sp-taxonomy/docs/utilities/index.html +1783 -0
  314. package/docs/v2/404.html +2108 -0
  315. package/docs/v2/SPFx-on-premises/index.html +2278 -0
  316. package/docs/v2/_theme/main.html +5 -0
  317. package/docs/v2/adaljsclient/adalclient/index.html +15 -0
  318. package/docs/v2/adaljsclient/index.html +15 -0
  319. package/docs/v2/assets/images/favicon.png +0 -0
  320. package/docs/v2/assets/javascripts/bundle.9554a270.min.js +2 -0
  321. package/docs/v2/assets/javascripts/bundle.9554a270.min.js.map +1 -0
  322. package/docs/v2/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
  323. package/docs/v2/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
  324. package/docs/v2/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
  325. package/docs/v2/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
  326. package/docs/v2/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
  327. package/docs/v2/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
  328. package/docs/v2/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
  329. package/docs/v2/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
  330. package/docs/v2/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
  331. package/docs/v2/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
  332. package/docs/v2/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
  333. package/docs/v2/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
  334. package/docs/v2/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
  335. package/docs/v2/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
  336. package/docs/v2/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
  337. package/docs/v2/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
  338. package/docs/v2/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
  339. package/docs/v2/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
  340. package/docs/v2/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
  341. package/docs/v2/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
  342. package/docs/v2/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
  343. package/docs/v2/assets/javascripts/lunr/tinyseg.min.js +1 -0
  344. package/docs/v2/assets/javascripts/vendor.77e55a48.min.js +30 -0
  345. package/docs/v2/assets/javascripts/vendor.77e55a48.min.js.map +1 -0
  346. package/docs/v2/assets/javascripts/worker/search.4ac00218.min.js +59 -0
  347. package/docs/v2/assets/javascripts/worker/search.4ac00218.min.js.map +1 -0
  348. package/docs/v2/assets/stylesheets/main.38780c08.min.css +3 -0
  349. package/docs/v2/assets/stylesheets/main.38780c08.min.css.map +1 -0
  350. package/docs/v2/assets/stylesheets/palette.3f72e892.min.css +3 -0
  351. package/docs/v2/assets/stylesheets/palette.3f72e892.min.css.map +1 -0
  352. package/docs/v2/authentication/adaljsclient/index.html +2510 -0
  353. package/docs/v2/authentication/bearertokenclient/index.html +2251 -0
  354. package/docs/v2/authentication/client-spa/index.html +2206 -0
  355. package/docs/v2/authentication/client-spfx/index.html +2397 -0
  356. package/docs/v2/authentication/index.html +2307 -0
  357. package/docs/v2/authentication/lambdaclient/index.html +2304 -0
  358. package/docs/v2/authentication/msaljsclient/index.html +2413 -0
  359. package/docs/v2/authentication/server-nodejs/index.html +2404 -0
  360. package/docs/v2/authentication/sp-app-registration/index.html +2273 -0
  361. package/docs/v2/common/collections/index.html +2277 -0
  362. package/docs/v2/common/custom-httpclientimpl/index.html +2300 -0
  363. package/docs/v2/common/index.html +2262 -0
  364. package/docs/v2/common/libconfig/index.html +2413 -0
  365. package/docs/v2/common/netutil/index.html +2350 -0
  366. package/docs/v2/common/storage/index.html +2339 -0
  367. package/docs/v2/common/util/index.html +2638 -0
  368. package/docs/v2/concepts/configuration/index.html +2685 -0
  369. package/docs/v2/concepts/custom-bundle/index.html +2279 -0
  370. package/docs/v2/concepts/error-handling/index.html +2539 -0
  371. package/docs/v2/concepts/ie11-mode/index.html +2278 -0
  372. package/docs/v2/concepts/invokable/index.html +2254 -0
  373. package/docs/v2/concepts/polyfill/index.html +2401 -0
  374. package/docs/v2/concepts/selective-imports/index.html +2360 -0
  375. package/docs/v2/concepts/settings/index.html +2551 -0
  376. package/docs/v2/config-store/configuration/index.html +2226 -0
  377. package/docs/v2/config-store/index.html +2239 -0
  378. package/docs/v2/config-store/providers/index.html +2275 -0
  379. package/docs/v2/contributing/debug-tests/index.html +2323 -0
  380. package/docs/v2/contributing/debugging/index.html +2514 -0
  381. package/docs/v2/contributing/documentation/index.html +2291 -0
  382. package/docs/v2/contributing/extending-the-library/index.html +2521 -0
  383. package/docs/v2/contributing/index.html +2270 -0
  384. package/docs/v2/contributing/local-debug-configuration/index.html +2284 -0
  385. package/docs/v2/contributing/pull-requests/index.html +2261 -0
  386. package/docs/v2/contributing/setup-dev-machine/index.html +2284 -0
  387. package/docs/v2/css/extra.css +33 -0
  388. package/docs/v2/debug-tests/index.html +15 -0
  389. package/docs/v2/debugging/index.html +15 -0
  390. package/docs/v2/documentation/index.html +15 -0
  391. package/docs/v2/getting-started/index.html +2789 -0
  392. package/docs/v2/getting-started-dev/index.html +15 -0
  393. package/docs/v2/graph/calendars/index.html +2569 -0
  394. package/docs/v2/graph/contacts/index.html +2673 -0
  395. package/docs/v2/graph/directoryobjects/index.html +2402 -0
  396. package/docs/v2/graph/groups/index.html +2488 -0
  397. package/docs/v2/graph/index.html +2333 -0
  398. package/docs/v2/graph/insights/index.html +2478 -0
  399. package/docs/v2/graph/invitations/index.html +2273 -0
  400. package/docs/v2/graph/onedrive/index.html +2617 -0
  401. package/docs/v2/graph/outlook/index.html +2363 -0
  402. package/docs/v2/graph/photos/index.html +2351 -0
  403. package/docs/v2/graph/planner/index.html +2628 -0
  404. package/docs/v2/graph/search/index.html +2264 -0
  405. package/docs/v2/graph/subscriptions/index.html +2333 -0
  406. package/docs/v2/graph/teams/index.html +2619 -0
  407. package/docs/v2/graph/users/index.html +2461 -0
  408. package/docs/v2/img/ConsoleListenerColors.png +0 -0
  409. package/docs/v2/img/Logo.png +0 -0
  410. package/docs/v2/img/PnPJS_FluentAPI.gif +0 -0
  411. package/docs/v2/img/SPFx-On-Premesis-2016-1.png +0 -0
  412. package/docs/v2/img/office365-header-icon.png +0 -0
  413. package/docs/v2/img/usage-2020-eoy.png +0 -0
  414. package/docs/v2/index.html +2410 -0
  415. package/docs/v2/logging/index.html +2622 -0
  416. package/docs/v2/news/2020-year-in-review/index.html +2525 -0
  417. package/docs/v2/nodejs/adal-fetch-client/index.html +2204 -0
  418. package/docs/v2/nodejs/bearer-token-fetch-client/index.html +2203 -0
  419. package/docs/v2/nodejs/index.html +2261 -0
  420. package/docs/v2/nodejs/provider-hosted-app/index.html +2220 -0
  421. package/docs/v2/nodejs/proxy/index.html +2238 -0
  422. package/docs/v2/nodejs/sp-extensions/index.html +2362 -0
  423. package/docs/v2/nodejs/sp-fetch-client/index.html +2294 -0
  424. package/docs/v2/nodejs-support/index.html +2398 -0
  425. package/docs/v2/npm-scripts/index.html +2521 -0
  426. package/docs/v2/odata/caching/index.html +2465 -0
  427. package/docs/v2/odata/core/index.html +2322 -0
  428. package/docs/v2/odata/debug/index.html +2358 -0
  429. package/docs/v2/odata/extensions/index.html +2581 -0
  430. package/docs/v2/odata/index.html +2259 -0
  431. package/docs/v2/odata/odata-batch/index.html +2250 -0
  432. package/docs/v2/odata/parsers/index.html +2355 -0
  433. package/docs/v2/odata/pipeline/index.html +2297 -0
  434. package/docs/v2/odata/queryable/index.html +2455 -0
  435. package/docs/v2/packages/index.html +2251 -0
  436. package/docs/v2/pnpjs/index.html +2281 -0
  437. package/docs/v2/search/search_index.json +1 -0
  438. package/docs/v2/sitemap.xml +483 -0
  439. package/docs/v2/sitemap.xml.gz +0 -0
  440. package/docs/v2/sp/alias-parameters/index.html +2330 -0
  441. package/docs/v2/sp/alm/index.html +2433 -0
  442. package/docs/v2/sp/attachments/index.html +2504 -0
  443. package/docs/v2/sp/clientside-pages/index.html +3477 -0
  444. package/docs/v2/sp/column-defaults/index.html +2540 -0
  445. package/docs/v2/sp/comments-likes/index.html +2646 -0
  446. package/docs/v2/sp/content-types/index.html +2462 -0
  447. package/docs/v2/sp/custom-irequestclient/index.html +2339 -0
  448. package/docs/v2/sp/entity-merging/index.html +2325 -0
  449. package/docs/v2/sp/features/index.html +2440 -0
  450. package/docs/v2/sp/fields/index.html +3103 -0
  451. package/docs/v2/sp/files/index.html +2949 -0
  452. package/docs/v2/sp/folders/index.html +2968 -0
  453. package/docs/v2/sp/forms/index.html +2289 -0
  454. package/docs/v2/sp/hubsites/index.html +2485 -0
  455. package/docs/v2/sp/index.html +2328 -0
  456. package/docs/v2/sp/items/index.html +2974 -0
  457. package/docs/v2/sp/lists/index.html +3387 -0
  458. package/docs/v2/sp/navigation/index.html +2535 -0
  459. package/docs/v2/sp/permissions/index.html +2338 -0
  460. package/docs/v2/sp/profiles/index.html +2806 -0
  461. package/docs/v2/sp/regional-settings/index.html +2394 -0
  462. package/docs/v2/sp/related-items/index.html +2417 -0
  463. package/docs/v2/sp/search/index.html +2474 -0
  464. package/docs/v2/sp/security/index.html +2432 -0
  465. package/docs/v2/sp/sharing/index.html +2589 -0
  466. package/docs/v2/sp/site-designs/index.html +2414 -0
  467. package/docs/v2/sp/site-groups/index.html +2504 -0
  468. package/docs/v2/sp/site-scripts/index.html +2433 -0
  469. package/docs/v2/sp/site-users/index.html +2641 -0
  470. package/docs/v2/sp/sites/index.html +2727 -0
  471. package/docs/v2/sp/social/index.html +2517 -0
  472. package/docs/v2/sp/sp-utilities-utility/index.html +2460 -0
  473. package/docs/v2/sp/subscriptions/index.html +2395 -0
  474. package/docs/v2/sp/taxonomy/index.html +2565 -0
  475. package/docs/v2/sp/tenant-properties/index.html +2286 -0
  476. package/docs/v2/sp/user-custom-actions/index.html +2424 -0
  477. package/docs/v2/sp/views/index.html +2652 -0
  478. package/docs/v2/sp/webs/index.html +4190 -0
  479. package/docs/v2/sp-addinhelpers/index.html +2274 -0
  480. package/docs/v2/sp-addinhelpers/sp-request-executor-client/index.html +2253 -0
  481. package/docs/v2/sp-addinhelpers/sp-rest-addin/index.html +2206 -0
  482. package/docs/v2/transition-guide/index.html +2435 -0
  483. package/mkdocs-requirements.txt +2 -0
  484. package/mkdocs.yml +188 -0
  485. package/package.json +96 -0
  486. package/packages/azidjsclient/index.ts +68 -0
  487. package/packages/azidjsclient/package.json +13 -0
  488. package/packages/azidjsclient/tsconfig.json +12 -0
  489. package/packages/core/behaviors/assign-from.ts +17 -0
  490. package/packages/core/behaviors/copy-from.ts +58 -0
  491. package/packages/core/extendable.ts +193 -0
  492. package/packages/core/index.ts +11 -0
  493. package/packages/core/moments.ts +117 -0
  494. package/packages/core/package.json +10 -0
  495. package/packages/core/storage.ts +274 -0
  496. package/packages/core/timeline.ts +387 -0
  497. package/packages/core/tsconfig.json +10 -0
  498. package/packages/core/util.ts +169 -0
  499. package/packages/graph/attachments/conversations.ts +14 -0
  500. package/packages/graph/attachments/index.ts +8 -0
  501. package/packages/graph/attachments/types.ts +37 -0
  502. package/packages/graph/batching.ts +408 -0
  503. package/packages/graph/behaviors/consistency-level.ts +17 -0
  504. package/packages/graph/behaviors/defaults.ts +41 -0
  505. package/packages/graph/behaviors/endpoint.ts +22 -0
  506. package/packages/graph/behaviors/graphbrowser.ts +38 -0
  507. package/packages/graph/behaviors/paged.ts +109 -0
  508. package/packages/graph/behaviors/spfx.ts +46 -0
  509. package/packages/graph/behaviors/telemetry.ts +19 -0
  510. package/packages/graph/bookings/funcs.ts +18 -0
  511. package/packages/graph/bookings/index.ts +62 -0
  512. package/packages/graph/bookings/types.ts +352 -0
  513. package/packages/graph/calendars/funcs.ts +58 -0
  514. package/packages/graph/calendars/groups.ts +19 -0
  515. package/packages/graph/calendars/index.ts +18 -0
  516. package/packages/graph/calendars/types.ts +73 -0
  517. package/packages/graph/calendars/users.ts +28 -0
  518. package/packages/graph/cloud-communications/index.ts +24 -0
  519. package/packages/graph/cloud-communications/types.ts +32 -0
  520. package/packages/graph/cloud-communications/users.ts +15 -0
  521. package/packages/graph/columns/addColumns.ts +28 -0
  522. package/packages/graph/columns/content-types.ts +44 -0
  523. package/packages/graph/columns/index.ts +14 -0
  524. package/packages/graph/columns/lists.ts +33 -0
  525. package/packages/graph/columns/sites.ts +32 -0
  526. package/packages/graph/columns/types.ts +24 -0
  527. package/packages/graph/contacts/index.ts +14 -0
  528. package/packages/graph/contacts/types.ts +126 -0
  529. package/packages/graph/contacts/users.ts +17 -0
  530. package/packages/graph/content-types/index.ts +11 -0
  531. package/packages/graph/content-types/lists.ts +44 -0
  532. package/packages/graph/content-types/sites.ts +70 -0
  533. package/packages/graph/content-types/types.ts +112 -0
  534. package/packages/graph/conversations/groups.ts +20 -0
  535. package/packages/graph/conversations/index.ts +19 -0
  536. package/packages/graph/conversations/types.ts +147 -0
  537. package/packages/graph/decorators.ts +164 -0
  538. package/packages/graph/directory-objects/index.ts +24 -0
  539. package/packages/graph/directory-objects/types.ts +94 -0
  540. package/packages/graph/fi.ts +46 -0
  541. package/packages/graph/graphqueryable.ts +193 -0
  542. package/packages/graph/groups/index.ts +25 -0
  543. package/packages/graph/groups/types.ts +130 -0
  544. package/packages/graph/index.ts +21 -0
  545. package/packages/graph/insights/index.ts +20 -0
  546. package/packages/graph/insights/types.ts +105 -0
  547. package/packages/graph/insights/users.ts +14 -0
  548. package/packages/graph/invitations/index.ts +22 -0
  549. package/packages/graph/invitations/types.ts +41 -0
  550. package/packages/graph/lists/drive.ts +21 -0
  551. package/packages/graph/lists/index.ts +10 -0
  552. package/packages/graph/lists/sites.ts +16 -0
  553. package/packages/graph/lists/types.ts +47 -0
  554. package/packages/graph/members/groups.ts +17 -0
  555. package/packages/graph/members/index.ts +8 -0
  556. package/packages/graph/members/types.ts +40 -0
  557. package/packages/graph/messages/index.ts +14 -0
  558. package/packages/graph/messages/types.ts +46 -0
  559. package/packages/graph/messages/users.ts +27 -0
  560. package/packages/graph/onedrive/funcs.ts +40 -0
  561. package/packages/graph/onedrive/groups.ts +33 -0
  562. package/packages/graph/onedrive/index.ts +48 -0
  563. package/packages/graph/onedrive/sites.ts +35 -0
  564. package/packages/graph/onedrive/types.ts +482 -0
  565. package/packages/graph/onedrive/users.ts +56 -0
  566. package/packages/graph/onenote/index.ts +16 -0
  567. package/packages/graph/onenote/types.ts +119 -0
  568. package/packages/graph/onenote/users.ts +14 -0
  569. package/packages/graph/operations.ts +22 -0
  570. package/packages/graph/outlook/index.ts +11 -0
  571. package/packages/graph/outlook/types.ts +58 -0
  572. package/packages/graph/outlook/users.ts +14 -0
  573. package/packages/graph/package.json +16 -0
  574. package/packages/graph/photos/groups.ts +14 -0
  575. package/packages/graph/photos/index.ts +7 -0
  576. package/packages/graph/photos/types.ts +33 -0
  577. package/packages/graph/photos/users.ts +14 -0
  578. package/packages/graph/planner/groups.ts +14 -0
  579. package/packages/graph/planner/index.ts +42 -0
  580. package/packages/graph/planner/types.ts +213 -0
  581. package/packages/graph/planner/users.ts +14 -0
  582. package/packages/graph/post-install.cjs +20 -0
  583. package/packages/graph/presets/all.ts +42 -0
  584. package/packages/graph/search/index.ts +18 -0
  585. package/packages/graph/search/types.ts +20 -0
  586. package/packages/graph/shares/index.ts +23 -0
  587. package/packages/graph/shares/types.ts +47 -0
  588. package/packages/graph/sites/group.ts +14 -0
  589. package/packages/graph/sites/index.ts +25 -0
  590. package/packages/graph/sites/types.ts +45 -0
  591. package/packages/graph/subscriptions/index.ts +24 -0
  592. package/packages/graph/subscriptions/types.ts +59 -0
  593. package/packages/graph/teams/index.ts +68 -0
  594. package/packages/graph/teams/types.ts +333 -0
  595. package/packages/graph/teams/users.ts +14 -0
  596. package/packages/graph/tsconfig.json +16 -0
  597. package/packages/graph/users/index.ts +34 -0
  598. package/packages/graph/users/types.ts +56 -0
  599. package/packages/graph/utils/type.ts +3 -0
  600. package/packages/logging/index.ts +145 -0
  601. package/packages/logging/listeners.ts +134 -0
  602. package/packages/logging/package.json +10 -0
  603. package/packages/logging/tsconfig.json +7 -0
  604. package/packages/msaljsclient/index.ts +40 -0
  605. package/packages/msaljsclient/package.json +12 -0
  606. package/packages/msaljsclient/tsconfig.json +12 -0
  607. package/packages/nodejs/behaviors/fetch.ts +130 -0
  608. package/packages/nodejs/behaviors/graphdefault.ts +50 -0
  609. package/packages/nodejs/behaviors/msal.ts +24 -0
  610. package/packages/nodejs/behaviors/spdefault.ts +45 -0
  611. package/packages/nodejs/behaviors/stream-parse.ts +7 -0
  612. package/packages/nodejs/index.ts +33 -0
  613. package/packages/nodejs/package.json +17 -0
  614. package/packages/nodejs/sp-extensions/stream.ts +136 -0
  615. package/packages/nodejs/tsconfig.json +28 -0
  616. package/packages/queryable/add-prop.ts +18 -0
  617. package/packages/queryable/behaviors/bearer-token.ts +15 -0
  618. package/packages/queryable/behaviors/browser-fetch.ts +131 -0
  619. package/packages/queryable/behaviors/caching-pessimistic.ts +67 -0
  620. package/packages/queryable/behaviors/caching.ts +149 -0
  621. package/packages/queryable/behaviors/cancelable.ts +264 -0
  622. package/packages/queryable/behaviors/inject-headers.ts +23 -0
  623. package/packages/queryable/behaviors/parsers.ts +134 -0
  624. package/packages/queryable/behaviors/resolvers.ts +28 -0
  625. package/packages/queryable/behaviors/timeout.ts +24 -0
  626. package/packages/queryable/index.ts +19 -0
  627. package/packages/queryable/invokable.ts +42 -0
  628. package/packages/queryable/operations.ts +32 -0
  629. package/packages/queryable/package.json +11 -0
  630. package/packages/queryable/queryable-factory.ts +19 -0
  631. package/packages/queryable/queryable.ts +239 -0
  632. package/packages/queryable/request-builders.ts +20 -0
  633. package/packages/queryable/tsconfig.json +11 -0
  634. package/packages/readme.md +21 -0
  635. package/packages/sp/appcatalog/index.ts +35 -0
  636. package/packages/sp/appcatalog/types.ts +176 -0
  637. package/packages/sp/appcatalog/web.ts +19 -0
  638. package/packages/sp/attachments/index.ts +11 -0
  639. package/packages/sp/attachments/item.ts +17 -0
  640. package/packages/sp/attachments/types.ts +95 -0
  641. package/packages/sp/batching.ts +483 -0
  642. package/packages/sp/behaviors/defaults.ts +38 -0
  643. package/packages/sp/behaviors/request-digest.ts +78 -0
  644. package/packages/sp/behaviors/spbrowser.ts +40 -0
  645. package/packages/sp/behaviors/spfx.ts +83 -0
  646. package/packages/sp/behaviors/telemetry.ts +35 -0
  647. package/packages/sp/clientside-pages/funcs.ts +27 -0
  648. package/packages/sp/clientside-pages/index.ts +27 -0
  649. package/packages/sp/clientside-pages/types.ts +1661 -0
  650. package/packages/sp/clientside-pages/web.ts +93 -0
  651. package/packages/sp/column-defaults/folder.ts +89 -0
  652. package/packages/sp/column-defaults/index.ts +8 -0
  653. package/packages/sp/column-defaults/list.ts +219 -0
  654. package/packages/sp/column-defaults/types.ts +19 -0
  655. package/packages/sp/comments/clientside-page.ts +120 -0
  656. package/packages/sp/comments/index.ts +14 -0
  657. package/packages/sp/comments/item.ts +77 -0
  658. package/packages/sp/comments/types.ts +160 -0
  659. package/packages/sp/content-types/index.ts +17 -0
  660. package/packages/sp/content-types/item.ts +17 -0
  661. package/packages/sp/content-types/list.ts +17 -0
  662. package/packages/sp/content-types/types.ts +181 -0
  663. package/packages/sp/content-types/web.ts +17 -0
  664. package/packages/sp/context-info/index.ts +40 -0
  665. package/packages/sp/decorators.ts +18 -0
  666. package/packages/sp/favorites/index.ts +32 -0
  667. package/packages/sp/favorites/types.ts +187 -0
  668. package/packages/sp/features/index.ts +11 -0
  669. package/packages/sp/features/site.ts +17 -0
  670. package/packages/sp/features/types.ts +73 -0
  671. package/packages/sp/features/web.ts +17 -0
  672. package/packages/sp/fi.ts +46 -0
  673. package/packages/sp/fields/index.ts +22 -0
  674. package/packages/sp/fields/list.ts +17 -0
  675. package/packages/sp/fields/types.ts +648 -0
  676. package/packages/sp/fields/web.ts +23 -0
  677. package/packages/sp/files/folder.ts +17 -0
  678. package/packages/sp/files/index.ts +25 -0
  679. package/packages/sp/files/item.ts +17 -0
  680. package/packages/sp/files/readable-file.ts +40 -0
  681. package/packages/sp/files/types.ts +771 -0
  682. package/packages/sp/files/web.ts +46 -0
  683. package/packages/sp/folders/index.ts +19 -0
  684. package/packages/sp/folders/item.ts +16 -0
  685. package/packages/sp/folders/list.ts +17 -0
  686. package/packages/sp/folders/types.ts +439 -0
  687. package/packages/sp/folders/web.ts +50 -0
  688. package/packages/sp/forms/index.ts +9 -0
  689. package/packages/sp/forms/list.ts +14 -0
  690. package/packages/sp/forms/types.ts +41 -0
  691. package/packages/sp/groupsitemanager/index.ts +18 -0
  692. package/packages/sp/groupsitemanager/types.ts +433 -0
  693. package/packages/sp/hubsites/index.ts +31 -0
  694. package/packages/sp/hubsites/site.ts +43 -0
  695. package/packages/sp/hubsites/types.ts +71 -0
  696. package/packages/sp/hubsites/web.ts +38 -0
  697. package/packages/sp/index.ts +24 -0
  698. package/packages/sp/items/get-all.ts +52 -0
  699. package/packages/sp/items/index.ts +18 -0
  700. package/packages/sp/items/list.ts +14 -0
  701. package/packages/sp/items/types.ts +405 -0
  702. package/packages/sp/lists/index.ts +23 -0
  703. package/packages/sp/lists/types.ts +851 -0
  704. package/packages/sp/lists/web.ts +68 -0
  705. package/packages/sp/navigation/index.ts +35 -0
  706. package/packages/sp/navigation/types.ts +243 -0
  707. package/packages/sp/navigation/web.ts +19 -0
  708. package/packages/sp/operations.ts +33 -0
  709. package/packages/sp/package.json +15 -0
  710. package/packages/sp/post-install.cjs +20 -0
  711. package/packages/sp/presets/all.ts +75 -0
  712. package/packages/sp/profiles/index.ts +30 -0
  713. package/packages/sp/profiles/types.ts +595 -0
  714. package/packages/sp/publishing-sitepageservice/index.ts +22 -0
  715. package/packages/sp/publishing-sitepageservice/types.ts +18 -0
  716. package/packages/sp/recycle-bin/index.ts +36 -0
  717. package/packages/sp/recycle-bin/types.ts +113 -0
  718. package/packages/sp/regional-settings/content-type.ts +11 -0
  719. package/packages/sp/regional-settings/field.ts +11 -0
  720. package/packages/sp/regional-settings/funcs.ts +10 -0
  721. package/packages/sp/regional-settings/index.ts +18 -0
  722. package/packages/sp/regional-settings/list.ts +11 -0
  723. package/packages/sp/regional-settings/types.ts +159 -0
  724. package/packages/sp/regional-settings/user-custom-actions.ts +11 -0
  725. package/packages/sp/regional-settings/web.ts +21 -0
  726. package/packages/sp/related-items/index.ts +7 -0
  727. package/packages/sp/related-items/types.ts +194 -0
  728. package/packages/sp/related-items/web.ts +22 -0
  729. package/packages/sp/search/index.ts +48 -0
  730. package/packages/sp/search/query.ts +254 -0
  731. package/packages/sp/search/suggest.ts +130 -0
  732. package/packages/sp/search/types.ts +480 -0
  733. package/packages/sp/security/funcs.ts +94 -0
  734. package/packages/sp/security/index.ts +21 -0
  735. package/packages/sp/security/item.ts +29 -0
  736. package/packages/sp/security/list.ts +29 -0
  737. package/packages/sp/security/types.ts +440 -0
  738. package/packages/sp/security/web.ts +34 -0
  739. package/packages/sp/sharing/file.ts +75 -0
  740. package/packages/sp/sharing/folder.ts +69 -0
  741. package/packages/sp/sharing/funcs.ts +258 -0
  742. package/packages/sp/sharing/index.ts +27 -0
  743. package/packages/sp/sharing/item.ts +53 -0
  744. package/packages/sp/sharing/types.ts +626 -0
  745. package/packages/sp/sharing/web.ts +109 -0
  746. package/packages/sp/site-designs/index.ts +29 -0
  747. package/packages/sp/site-designs/types.ts +456 -0
  748. package/packages/sp/site-designs/web.ts +41 -0
  749. package/packages/sp/site-groups/index.ts +11 -0
  750. package/packages/sp/site-groups/types.ts +133 -0
  751. package/packages/sp/site-groups/web.ts +73 -0
  752. package/packages/sp/site-scripts/index.ts +27 -0
  753. package/packages/sp/site-scripts/list.ts +27 -0
  754. package/packages/sp/site-scripts/types.ts +243 -0
  755. package/packages/sp/site-scripts/web.ts +24 -0
  756. package/packages/sp/site-users/index.ts +12 -0
  757. package/packages/sp/site-users/types.ts +195 -0
  758. package/packages/sp/site-users/web.ts +56 -0
  759. package/packages/sp/sites/index.ts +26 -0
  760. package/packages/sp/sites/types.ts +422 -0
  761. package/packages/sp/social/index.ts +33 -0
  762. package/packages/sp/social/types.ts +381 -0
  763. package/packages/sp/spqueryable.ts +244 -0
  764. package/packages/sp/sputilities/index.ts +23 -0
  765. package/packages/sp/sputilities/types.ts +197 -0
  766. package/packages/sp/subscriptions/index.ts +10 -0
  767. package/packages/sp/subscriptions/list.ts +18 -0
  768. package/packages/sp/subscriptions/types.ts +107 -0
  769. package/packages/sp/taxonomy/index.ts +50 -0
  770. package/packages/sp/taxonomy/types.ts +508 -0
  771. package/packages/sp/tsconfig.json +16 -0
  772. package/packages/sp/types.ts +283 -0
  773. package/packages/sp/user-custom-actions/index.ts +15 -0
  774. package/packages/sp/user-custom-actions/list.ts +18 -0
  775. package/packages/sp/user-custom-actions/site.ts +18 -0
  776. package/packages/sp/user-custom-actions/types.ts +133 -0
  777. package/packages/sp/user-custom-actions/web.ts +21 -0
  778. package/packages/sp/utils/encode-path-str.ts +29 -0
  779. package/packages/sp/utils/extract-web-url.ts +21 -0
  780. package/packages/sp/utils/file-names.ts +35 -0
  781. package/packages/sp/utils/metadata.ts +5 -0
  782. package/packages/sp/utils/odata-url-from.ts +42 -0
  783. package/packages/sp/utils/to-resource-path.ts +9 -0
  784. package/packages/sp/views/index.ts +14 -0
  785. package/packages/sp/views/list.ts +33 -0
  786. package/packages/sp/views/types.ts +210 -0
  787. package/packages/sp/webparts/file.ts +21 -0
  788. package/packages/sp/webparts/index.ts +11 -0
  789. package/packages/sp/webparts/types.ts +141 -0
  790. package/packages/sp/webs/index.ts +32 -0
  791. package/packages/sp/webs/types.ts +350 -0
  792. package/packages/sp-admin/index.ts +46 -0
  793. package/packages/sp-admin/office-tenant.ts +567 -0
  794. package/packages/sp-admin/package.json +13 -0
  795. package/packages/sp-admin/site-properties.ts +45 -0
  796. package/packages/sp-admin/tenant.ts +595 -0
  797. package/packages/sp-admin/tsconfig.json +20 -0
  798. package/packages/sp-admin/types.ts +1679 -0
  799. package/packages/tsconfig-watch.json +9 -0
  800. package/packages/tsconfig.json +37 -0
  801. package/pre-install.cjs +1 -0
  802. package/samples/custom-bundle-webpack/index.ts +33 -0
  803. package/samples/custom-bundle-webpack/package-lock.json +4601 -0
  804. package/samples/custom-bundle-webpack/package.json +18 -0
  805. package/samples/custom-bundle-webpack/readme.md +102 -0
  806. package/samples/custom-bundle-webpack/tsconfig.json +12 -0
  807. package/samples/custom-bundle-webpack/webpack.config.js +27 -0
  808. package/samples/nodejs-app/.vscode/launch.json +27 -0
  809. package/samples/nodejs-app/.vscode/settings.json +10 -0
  810. package/samples/nodejs-app/.vscode/tasks.json +22 -0
  811. package/samples/nodejs-app/index.ts +63 -0
  812. package/samples/nodejs-app/package-lock.json +259 -0
  813. package/samples/nodejs-app/package.json +21 -0
  814. package/samples/nodejs-app/readme.md +140 -0
  815. package/samples/nodejs-app/tsconfig.json +14 -0
  816. package/samples/nodejs-commonjs/package-lock.json +702 -0
  817. package/samples/nodejs-commonjs/package.json +21 -0
  818. package/samples/nodejs-commonjs/readme.md +58 -0
  819. package/samples/nodejs-commonjs/src/index.ts +23 -0
  820. package/samples/nodejs-commonjs/src/settings.ts +35 -0
  821. package/samples/nodejs-commonjs/tsconfig.json +35 -0
  822. package/samples/project-preset/README.md +73 -0
  823. package/samples/project-preset/package-lock.json +21097 -0
  824. package/samples/project-preset/package.json +29 -0
  825. package/samples/project-preset/teams/4530a515-8ba7-45bb-9a27-be06b33c59d4_color.png +0 -0
  826. package/samples/project-preset/teams/4530a515-8ba7-45bb-9a27-be06b33c59d4_outline.png +0 -0
  827. package/samples/readme.md +16 -0
  828. package/settings.example.js +57 -0
  829. package/test/args.ts +107 -0
  830. package/test/clean-subsite.ts +36 -0
  831. package/test/core/assumptions.ts +99 -0
  832. package/test/core/storage.ts +60 -0
  833. package/test/core/timeline.ts +205 -0
  834. package/test/core/util.ts +205 -0
  835. package/test/graph/assets/testconvert.docx +0 -0
  836. package/test/graph/batch.ts +125 -0
  837. package/test/graph/calendars.ts +234 -0
  838. package/test/graph/columns.ts +247 -0
  839. package/test/graph/contacts.ts +254 -0
  840. package/test/graph/content-types.ts +206 -0
  841. package/test/graph/directoryobjects.ts +115 -0
  842. package/test/graph/groups.ts +130 -0
  843. package/test/graph/lists.ts +72 -0
  844. package/test/graph/onedrive.ts +365 -0
  845. package/test/graph/outlook.ts +95 -0
  846. package/test/graph/paging.ts +91 -0
  847. package/test/graph/planner.ts +160 -0
  848. package/test/graph/querable.ts +97 -0
  849. package/test/graph/search.ts +4 -0
  850. package/test/graph/shares.ts +26 -0
  851. package/test/graph/sites.ts +40 -0
  852. package/test/graph/teams.ts +76 -0
  853. package/test/graph/utilities/getTestingGraphSPSite.ts +27 -0
  854. package/test/graph/utilities/getValidUser.ts +37 -0
  855. package/test/load-settings.ts +103 -0
  856. package/test/logging/logging.ts +86 -0
  857. package/test/mocha-root-hooks.ts +227 -0
  858. package/test/nodejs/sp-extensions.ts +86 -0
  859. package/test/pnp-test.ts +60 -0
  860. package/test/queryable/add-prop.ts +24 -0
  861. package/test/queryable/behaviors.ts +188 -0
  862. package/test/queryable/invokable.ts +35 -0
  863. package/test/queryable/queryable.ts +118 -0
  864. package/test/sp/alias.ts +46 -0
  865. package/test/sp/appcatalog.ts +142 -0
  866. package/test/sp/assets/helloworld.sppkg +0 -0
  867. package/test/sp/assets/sample_file.jpg +0 -0
  868. package/test/sp/attachments.ts +134 -0
  869. package/test/sp/batch.ts +362 -0
  870. package/test/sp/clientside-pages.ts +426 -0
  871. package/test/sp/column-defaults.ts +225 -0
  872. package/test/sp/comments.ts +202 -0
  873. package/test/sp/content-types.ts +68 -0
  874. package/test/sp/favorites.ts +2 -0
  875. package/test/sp/features.ts +201 -0
  876. package/test/sp/fields.ts +396 -0
  877. package/test/sp/files.ts +338 -0
  878. package/test/sp/folders.ts +242 -0
  879. package/test/sp/forms.ts +22 -0
  880. package/test/sp/groupsitemanager.ts +88 -0
  881. package/test/sp/hubsites.ts +41 -0
  882. package/test/sp/items.ts +179 -0
  883. package/test/sp/lists.ts +319 -0
  884. package/test/sp/navigation.ts +167 -0
  885. package/test/sp/profiles.ts +2 -0
  886. package/test/sp/query-escaping.ts +94 -0
  887. package/test/sp/recycle-bin.ts +1 -0
  888. package/test/sp/regional-settings.ts +58 -0
  889. package/test/sp/related-items.ts +94 -0
  890. package/test/sp/search.ts +39 -0
  891. package/test/sp/security.ts +90 -0
  892. package/test/sp/sharing.ts +313 -0
  893. package/test/sp/site-designs.ts +224 -0
  894. package/test/sp/site-groups.ts +98 -0
  895. package/test/sp/site-scripts.ts +162 -0
  896. package/test/sp/site-users.ts +93 -0
  897. package/test/sp/sites.ts +156 -0
  898. package/test/sp/social.ts +2 -0
  899. package/test/sp/spfx.ts +52 -0
  900. package/test/sp/sputilities.ts +78 -0
  901. package/test/sp/subscriptions.ts +64 -0
  902. package/test/sp/taxonomy.ts +178 -0
  903. package/test/sp/user-custom-actions.ts +31 -0
  904. package/test/sp/views.ts +117 -0
  905. package/test/sp/webparts.ts +38 -0
  906. package/test/sp/webs.ts +249 -0
  907. package/test/test-invokable-props.ts +35 -0
  908. package/test/test-props.ts +90 -0
  909. package/test/test-recording.ts +171 -0
  910. package/test/tsconfig.json +18 -0
  911. package/tools/buildsystem/package-lock.json +4404 -0
  912. package/tools/buildsystem/package.json +56 -0
  913. package/tools/buildsystem/readme.md +23 -0
  914. package/tools/config.js +34 -0
  915. package/tools/local-module-resolver/cjs.ts +33 -0
  916. package/tools/local-module-resolver/esm-debug.ts +2 -0
  917. package/tools/local-module-resolver/esm-test.ts +2 -0
  918. package/tools/local-module-resolver/esm.ts +112 -0
  919. package/tools/local-module-resolver/readme.md +8 -0
  920. package/tsconfig.buildsystem.json +17 -0
  921. package/tsconfig.json +42 -0
@@ -0,0 +1,602 @@
1
+ <?xml version='1.0'?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"><!-- Generated by graphviz version 2.36.0 (20140111.2315)
3
+ -->
4
+ <!-- Title: G Pages: 1 -->
5
+ <svg height='1080pt' xmlns:svg='http://www.w3.org/2000/svg' viewBox='0.00 0.00 4118.00 1080.00' width='4118pt' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg'><defs><filter filterRes='100' id='shadow' x='0' y='0'><feGaussianBlur stdDeviation='2 2'/><feOffset dx='2' dy='2'/></filter><linearGradient id='aliceblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0f8ff;stop-opacity:1'/></linearGradient><linearGradient id='antiquewhite' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#faebd7;stop-opacity:1'/></linearGradient><linearGradient id='antiquewhite1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffefdb;stop-opacity:1'/></linearGradient><linearGradient id='antiquewhite2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eedfcc;stop-opacity:1'/></linearGradient><linearGradient id='antiquewhite3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc0b0;stop-opacity:1'/></linearGradient><linearGradient id='antiquewhite4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8378;stop-opacity:1'/></linearGradient><linearGradient id='aquamarine' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7fffd4;stop-opacity:1'/></linearGradient><linearGradient id='aquamarine1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7fffd4;stop-opacity:1'/></linearGradient><linearGradient id='aquamarine2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#76eec6;stop-opacity:1'/></linearGradient><linearGradient id='aquamarine3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#66cdaa;stop-opacity:1'/></linearGradient><linearGradient id='aquamarine4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#458b74;stop-opacity:1'/></linearGradient><linearGradient id='azure' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0ffff;stop-opacity:1'/></linearGradient><linearGradient id='azure1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0ffff;stop-opacity:1'/></linearGradient><linearGradient id='azure2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e0eeee;stop-opacity:1'/></linearGradient><linearGradient id='azure3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c1cdcd;stop-opacity:1'/></linearGradient><linearGradient id='azure4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#838b8b;stop-opacity:1'/></linearGradient><linearGradient id='beige' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f5f5dc;stop-opacity:1'/></linearGradient><linearGradient id='bisque' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe4c4;stop-opacity:1'/></linearGradient><linearGradient id='bisque1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe4c4;stop-opacity:1'/></linearGradient><linearGradient id='bisque2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eed5b7;stop-opacity:1'/></linearGradient><linearGradient id='bisque3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdb79e;stop-opacity:1'/></linearGradient><linearGradient id='bisque4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7d6b;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#000000;stop-opacity:1'/></linearGradient><linearGradient id='blue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0000ff;stop-opacity:1'/></linearGradient><linearGradient id='blue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0000ff;stop-opacity:1'/></linearGradient><linearGradient id='blue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0000ee;stop-opacity:1'/></linearGradient><linearGradient id='blue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0000cd;stop-opacity:1'/></linearGradient><linearGradient id='blue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00008b;stop-opacity:1'/></linearGradient><linearGradient id='blueviolet' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8a2be2;stop-opacity:1'/></linearGradient><linearGradient id='brown' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a52a2a;stop-opacity:1'/></linearGradient><linearGradient id='brown1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff4040;stop-opacity:1'/></linearGradient><linearGradient id='brown2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee3b3b;stop-opacity:1'/></linearGradient><linearGradient id='brown3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd3333;stop-opacity:1'/></linearGradient><linearGradient id='brown4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b2323;stop-opacity:1'/></linearGradient><linearGradient id='burlywood' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#deb887;stop-opacity:1'/></linearGradient><linearGradient id='burlywood1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffd39b;stop-opacity:1'/></linearGradient><linearGradient id='burlywood2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eec591;stop-opacity:1'/></linearGradient><linearGradient id='burlywood3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdaa7d;stop-opacity:1'/></linearGradient><linearGradient id='burlywood4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7355;stop-opacity:1'/></linearGradient><linearGradient id='cadetblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#5f9ea0;stop-opacity:1'/></linearGradient><linearGradient id='cadetblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#98f5ff;stop-opacity:1'/></linearGradient><linearGradient id='cadetblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8ee5ee;stop-opacity:1'/></linearGradient><linearGradient id='cadetblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7ac5cd;stop-opacity:1'/></linearGradient><linearGradient id='cadetblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#53868b;stop-opacity:1'/></linearGradient><linearGradient id='chartreuse' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7fff00;stop-opacity:1'/></linearGradient><linearGradient id='chartreuse1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7fff00;stop-opacity:1'/></linearGradient><linearGradient id='chartreuse2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#76ee00;stop-opacity:1'/></linearGradient><linearGradient id='chartreuse3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#66cd00;stop-opacity:1'/></linearGradient><linearGradient id='chartreuse4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#458b00;stop-opacity:1'/></linearGradient><linearGradient id='chocolate' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d2691e;stop-opacity:1'/></linearGradient><linearGradient id='chocolate1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff7f24;stop-opacity:1'/></linearGradient><linearGradient id='chocolate2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee7621;stop-opacity:1'/></linearGradient><linearGradient id='chocolate3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd661d;stop-opacity:1'/></linearGradient><linearGradient id='chocolate4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b4513;stop-opacity:1'/></linearGradient><linearGradient id='coral' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff7f50;stop-opacity:1'/></linearGradient><linearGradient id='coral1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff7256;stop-opacity:1'/></linearGradient><linearGradient id='coral2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee6a50;stop-opacity:1'/></linearGradient><linearGradient id='coral3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd5b45;stop-opacity:1'/></linearGradient><linearGradient id='coral4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b3e2f;stop-opacity:1'/></linearGradient><linearGradient id='cornflowerblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6495ed;stop-opacity:1'/></linearGradient><linearGradient id='cornsilk' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff8dc;stop-opacity:1'/></linearGradient><linearGradient id='cornsilk1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff8dc;stop-opacity:1'/></linearGradient><linearGradient id='cornsilk2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee8cd;stop-opacity:1'/></linearGradient><linearGradient id='cornsilk3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc8b1;stop-opacity:1'/></linearGradient><linearGradient id='cornsilk4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8878;stop-opacity:1'/></linearGradient><linearGradient id='crimson' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dc143c;stop-opacity:1'/></linearGradient><linearGradient id='cyan' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ffff;stop-opacity:1'/></linearGradient><linearGradient id='cyan1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ffff;stop-opacity:1'/></linearGradient><linearGradient id='cyan2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00eeee;stop-opacity:1'/></linearGradient><linearGradient id='cyan3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00cdcd;stop-opacity:1'/></linearGradient><linearGradient id='cyan4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#008b8b;stop-opacity:1'/></linearGradient><linearGradient id='darkgoldenrod' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b8860b;stop-opacity:1'/></linearGradient><linearGradient id='darkgoldenrod1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffb90f;stop-opacity:1'/></linearGradient><linearGradient id='darkgoldenrod2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eead0e;stop-opacity:1'/></linearGradient><linearGradient id='darkgoldenrod3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd950c;stop-opacity:1'/></linearGradient><linearGradient id='darkgoldenrod4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b6508;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#006400;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#556b2f;stop-opacity:1'/></linearGradient><linearGradient id='darkolivegreen2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bcee68;stop-opacity:1'/></linearGradient><linearGradient id='darkolivegreen3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a2cd5a;stop-opacity:1'/></linearGradient><linearGradient id='darkolivegreen4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6e8b3d;stop-opacity:1'/></linearGradient><linearGradient id='darkorange' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff8c00;stop-opacity:1'/></linearGradient><linearGradient id='darkorange1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff7f00;stop-opacity:1'/></linearGradient><linearGradient id='darkorange2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee7600;stop-opacity:1'/></linearGradient><linearGradient id='darkorange3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd6600;stop-opacity:1'/></linearGradient><linearGradient id='darkorange4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b4500;stop-opacity:1'/></linearGradient><linearGradient id='darkorchid' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9932cc;stop-opacity:1'/></linearGradient><linearGradient id='darkorchid1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bf3eff;stop-opacity:1'/></linearGradient><linearGradient id='darkorchid2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b23aee;stop-opacity:1'/></linearGradient><linearGradient id='darkorchid3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9a32cd;stop-opacity:1'/></linearGradient><linearGradient id='darkorchid4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#68228b;stop-opacity:1'/></linearGradient><linearGradient id='darksalmon' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e9967a;stop-opacity:1'/></linearGradient><linearGradient id='darkseagreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8fbc8f;stop-opacity:1'/></linearGradient><linearGradient id='darkseagreen1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c1ffc1;stop-opacity:1'/></linearGradient><linearGradient id='darkseagreen2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b4eeb4;stop-opacity:1'/></linearGradient><linearGradient id='darkseagreen3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9bcd9b;stop-opacity:1'/></linearGradient><linearGradient id='darkseagreen4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#698b69;stop-opacity:1'/></linearGradient><linearGradient id='darkslateblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#483d8b;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#2f4f4f;stop-opacity:1'/></linearGradient><linearGradient id='darkslategray2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8deeee;stop-opacity:1'/></linearGradient><linearGradient id='darkslategray3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#79cdcd;stop-opacity:1'/></linearGradient><linearGradient id='darkslategray4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#528b8b;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#2f4f4f;stop-opacity:1'/></linearGradient><linearGradient id='darkviolet' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9400d3;stop-opacity:1'/></linearGradient><linearGradient id='deeppink' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff1493;stop-opacity:1'/></linearGradient><linearGradient id='deeppink1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff1493;stop-opacity:1'/></linearGradient><linearGradient id='deeppink2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee1289;stop-opacity:1'/></linearGradient><linearGradient id='deeppink3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd1076;stop-opacity:1'/></linearGradient><linearGradient id='deeppink4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b0a50;stop-opacity:1'/></linearGradient><linearGradient id='deepskyblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00bfff;stop-opacity:1'/></linearGradient><linearGradient id='deepskyblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00bfff;stop-opacity:1'/></linearGradient><linearGradient id='deepskyblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00b2ee;stop-opacity:1'/></linearGradient><linearGradient id='deepskyblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#009acd;stop-opacity:1'/></linearGradient><linearGradient id='deepskyblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00688b;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#696969;stop-opacity:1'/></linearGradient><linearGradient id='dodgerblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1e90ff;stop-opacity:1'/></linearGradient><linearGradient id='dodgerblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1e90ff;stop-opacity:1'/></linearGradient><linearGradient id='dodgerblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1c86ee;stop-opacity:1'/></linearGradient><linearGradient id='dodgerblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1874cd;stop-opacity:1'/></linearGradient><linearGradient id='dodgerblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#104e8b;stop-opacity:1'/></linearGradient><linearGradient id='firebrick' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b22222;stop-opacity:1'/></linearGradient><linearGradient id='firebrick1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff3030;stop-opacity:1'/></linearGradient><linearGradient id='firebrick2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee2c2c;stop-opacity:1'/></linearGradient><linearGradient id='firebrick3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd2626;stop-opacity:1'/></linearGradient><linearGradient id='firebrick4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b1a1a;stop-opacity:1'/></linearGradient><linearGradient id='floralwhite' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffaf0;stop-opacity:1'/></linearGradient><linearGradient id='forestgreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#228b22;stop-opacity:1'/></linearGradient><linearGradient id='gainsboro' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dcdcdc;stop-opacity:1'/></linearGradient><linearGradient id='ghostwhite' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f8f8ff;stop-opacity:1'/></linearGradient><linearGradient id='gold' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffd700;stop-opacity:1'/></linearGradient><linearGradient id='gold1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffd700;stop-opacity:1'/></linearGradient><linearGradient id='gold2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eec900;stop-opacity:1'/></linearGradient><linearGradient id='gold3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdad00;stop-opacity:1'/></linearGradient><linearGradient id='gold4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7500;stop-opacity:1'/></linearGradient><linearGradient id='goldenrod' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#daa520;stop-opacity:1'/></linearGradient><linearGradient id='goldenrod1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffc125;stop-opacity:1'/></linearGradient><linearGradient id='goldenrod2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eeb422;stop-opacity:1'/></linearGradient><linearGradient id='goldenrod3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd9b1d;stop-opacity:1'/></linearGradient><linearGradient id='goldenrod4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b6914;stop-opacity:1'/></linearGradient><linearGradient id='gray' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c0c0c0;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#000000;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#050505;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0a0a0a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0f0f0f;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#141414;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1a1a1a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1f1f1f;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#242424;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#292929;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#2e2e2e;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#333333;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#383838;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#3d3d3d;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#424242;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#474747;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4d4d4d;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#525252;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#575757;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#5c5c5c;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#616161;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#666666;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6b6b6b;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#707070;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#757575;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7a7a7a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7f7f7f;stop-opacity:1'/></linearGradient><linearGradient id='gray52' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#858585;stop-opacity:1'/></linearGradient><linearGradient id='gray53' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#878787;stop-opacity:1'/></linearGradient><linearGradient id='gray54' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8a8a8a;stop-opacity:1'/></linearGradient><linearGradient id='gray55' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8c8c8c;stop-opacity:1'/></linearGradient><linearGradient id='gray56' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8f8f8f;stop-opacity:1'/></linearGradient><linearGradient id='gray57' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#919191;stop-opacity:1'/></linearGradient><linearGradient id='gray58' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#949494;stop-opacity:1'/></linearGradient><linearGradient id='gray59' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#969696;stop-opacity:1'/></linearGradient><linearGradient id='gray60' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#999999;stop-opacity:1'/></linearGradient><linearGradient id='gray61' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9c9c9c;stop-opacity:1'/></linearGradient><linearGradient id='gray62' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9e9e9e;stop-opacity:1'/></linearGradient><linearGradient id='gray63' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a1a1a1;stop-opacity:1'/></linearGradient><linearGradient id='gray64' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a3a3a3;stop-opacity:1'/></linearGradient><linearGradient id='gray65' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a6a6a6;stop-opacity:1'/></linearGradient><linearGradient id='gray66' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a8a8a8;stop-opacity:1'/></linearGradient><linearGradient id='gray67' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ababab;stop-opacity:1'/></linearGradient><linearGradient id='gray68' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#adadad;stop-opacity:1'/></linearGradient><linearGradient id='gray69' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b0b0b0;stop-opacity:1'/></linearGradient><linearGradient id='gray70' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b3b3b3;stop-opacity:1'/></linearGradient><linearGradient id='gray71' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b5b5b5;stop-opacity:1'/></linearGradient><linearGradient id='gray72' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b8b8b8;stop-opacity:1'/></linearGradient><linearGradient id='gray73' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bababa;stop-opacity:1'/></linearGradient><linearGradient id='gray74' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bdbdbd;stop-opacity:1'/></linearGradient><linearGradient id='gray75' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bfbfbf;stop-opacity:1'/></linearGradient><linearGradient id='gray76' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c2c2c2;stop-opacity:1'/></linearGradient><linearGradient id='gray77' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c4c4c4;stop-opacity:1'/></linearGradient><linearGradient id='gray78' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c7c7c7;stop-opacity:1'/></linearGradient><linearGradient id='gray79' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c9c9c9;stop-opacity:1'/></linearGradient><linearGradient id='gray80' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cccccc;stop-opacity:1'/></linearGradient><linearGradient id='gray81' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cfcfcf;stop-opacity:1'/></linearGradient><linearGradient id='gray82' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d1d1d1;stop-opacity:1'/></linearGradient><linearGradient id='gray83' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d4d4d4;stop-opacity:1'/></linearGradient><linearGradient id='gray84' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d6d6d6;stop-opacity:1'/></linearGradient><linearGradient id='gray85' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d9d9d9;stop-opacity:1'/></linearGradient><linearGradient id='gray86' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dbdbdb;stop-opacity:1'/></linearGradient><linearGradient id='gray87' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dedede;stop-opacity:1'/></linearGradient><linearGradient id='gray88' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e0e0e0;stop-opacity:1'/></linearGradient><linearGradient id='gray89' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e3e3e3;stop-opacity:1'/></linearGradient><linearGradient id='gray90' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e5e5e5;stop-opacity:1'/></linearGradient><linearGradient id='gray91' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e8e8e8;stop-opacity:1'/></linearGradient><linearGradient id='gray92' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ebebeb;stop-opacity:1'/></linearGradient><linearGradient id='gray93' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ededed;stop-opacity:1'/></linearGradient><linearGradient id='gray94' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0f0f0;stop-opacity:1'/></linearGradient><linearGradient id='gray95' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f2f2f2;stop-opacity:1'/></linearGradient><linearGradient id='gray96' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f5f5f5;stop-opacity:1'/></linearGradient><linearGradient id='gray97' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f7f7f7;stop-opacity:1'/></linearGradient><linearGradient id='gray98' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fafafa;stop-opacity:1'/></linearGradient><linearGradient id='gray99' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fcfcfc;stop-opacity:1'/></linearGradient><linearGradient id='gray100' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffffff;stop-opacity:1'/></linearGradient><linearGradient id='green' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ff00;stop-opacity:1'/></linearGradient><linearGradient id='green1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ff00;stop-opacity:1'/></linearGradient><linearGradient id='green2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ee00;stop-opacity:1'/></linearGradient><linearGradient id='green3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00cd00;stop-opacity:1'/></linearGradient><linearGradient id='green4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#008b00;stop-opacity:1'/></linearGradient><linearGradient id='greenyellow' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#adff2f;stop-opacity:1'/></linearGradient><linearGradient id='grey' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c0c0c0;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#000000;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#050505;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0a0a0a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0f0f0f;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#141414;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1a1a1a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#1f1f1f;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#242424;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#292929;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#2e2e2e;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#333333;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#383838;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#3d3d3d;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#424242;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#474747;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4d4d4d;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#525252;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#575757;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#5c5c5c;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#616161;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#666666;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6b6b6b;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#707070;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#757575;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7a7a7a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7f7f7f;stop-opacity:1'/></linearGradient><linearGradient id='grey52' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#858585;stop-opacity:1'/></linearGradient><linearGradient id='grey53' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#878787;stop-opacity:1'/></linearGradient><linearGradient id='grey54' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8a8a8a;stop-opacity:1'/></linearGradient><linearGradient id='grey55' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8c8c8c;stop-opacity:1'/></linearGradient><linearGradient id='grey56' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8f8f8f;stop-opacity:1'/></linearGradient><linearGradient id='grey57' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#919191;stop-opacity:1'/></linearGradient><linearGradient id='grey58' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#949494;stop-opacity:1'/></linearGradient><linearGradient id='grey59' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#969696;stop-opacity:1'/></linearGradient><linearGradient id='grey60' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#999999;stop-opacity:1'/></linearGradient><linearGradient id='grey61' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9c9c9c;stop-opacity:1'/></linearGradient><linearGradient id='grey62' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9e9e9e;stop-opacity:1'/></linearGradient><linearGradient id='grey63' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a1a1a1;stop-opacity:1'/></linearGradient><linearGradient id='grey64' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a3a3a3;stop-opacity:1'/></linearGradient><linearGradient id='grey65' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a6a6a6;stop-opacity:1'/></linearGradient><linearGradient id='grey66' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a8a8a8;stop-opacity:1'/></linearGradient><linearGradient id='grey67' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ababab;stop-opacity:1'/></linearGradient><linearGradient id='grey68' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#adadad;stop-opacity:1'/></linearGradient><linearGradient id='grey69' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b0b0b0;stop-opacity:1'/></linearGradient><linearGradient id='grey70' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b3b3b3;stop-opacity:1'/></linearGradient><linearGradient id='grey71' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b5b5b5;stop-opacity:1'/></linearGradient><linearGradient id='grey72' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b8b8b8;stop-opacity:1'/></linearGradient><linearGradient id='grey73' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bababa;stop-opacity:1'/></linearGradient><linearGradient id='grey74' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bdbdbd;stop-opacity:1'/></linearGradient><linearGradient id='grey75' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bfbfbf;stop-opacity:1'/></linearGradient><linearGradient id='grey76' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c2c2c2;stop-opacity:1'/></linearGradient><linearGradient id='grey77' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c4c4c4;stop-opacity:1'/></linearGradient><linearGradient id='grey78' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c7c7c7;stop-opacity:1'/></linearGradient><linearGradient id='grey79' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c9c9c9;stop-opacity:1'/></linearGradient><linearGradient id='grey80' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cccccc;stop-opacity:1'/></linearGradient><linearGradient id='grey81' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cfcfcf;stop-opacity:1'/></linearGradient><linearGradient id='grey82' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d1d1d1;stop-opacity:1'/></linearGradient><linearGradient id='grey83' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d4d4d4;stop-opacity:1'/></linearGradient><linearGradient id='grey84' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d6d6d6;stop-opacity:1'/></linearGradient><linearGradient id='grey85' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d9d9d9;stop-opacity:1'/></linearGradient><linearGradient id='grey86' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dbdbdb;stop-opacity:1'/></linearGradient><linearGradient id='grey87' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dedede;stop-opacity:1'/></linearGradient><linearGradient id='grey88' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e0e0e0;stop-opacity:1'/></linearGradient><linearGradient id='grey89' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e3e3e3;stop-opacity:1'/></linearGradient><linearGradient id='grey90' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e5e5e5;stop-opacity:1'/></linearGradient><linearGradient id='grey91' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e8e8e8;stop-opacity:1'/></linearGradient><linearGradient id='grey92' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ebebeb;stop-opacity:1'/></linearGradient><linearGradient id='grey93' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ededed;stop-opacity:1'/></linearGradient><linearGradient id='grey94' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0f0f0;stop-opacity:1'/></linearGradient><linearGradient id='grey95' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f2f2f2;stop-opacity:1'/></linearGradient><linearGradient id='grey96' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f5f5f5;stop-opacity:1'/></linearGradient><linearGradient id='grey97' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f7f7f7;stop-opacity:1'/></linearGradient><linearGradient id='grey98' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fafafa;stop-opacity:1'/></linearGradient><linearGradient id='grey99' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fcfcfc;stop-opacity:1'/></linearGradient><linearGradient id='grey100' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffffff;stop-opacity:1'/></linearGradient><linearGradient id='honeydew' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0fff0;stop-opacity:1'/></linearGradient><linearGradient id='honeydew1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0fff0;stop-opacity:1'/></linearGradient><linearGradient id='honeydew2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e0eee0;stop-opacity:1'/></linearGradient><linearGradient id='honeydew3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c1cdc1;stop-opacity:1'/></linearGradient><linearGradient id='honeydew4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#838b83;stop-opacity:1'/></linearGradient><linearGradient id='hotpink' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff69b4;stop-opacity:1'/></linearGradient><linearGradient id='hotpink1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff6eb4;stop-opacity:1'/></linearGradient><linearGradient id='hotpink2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee6aa7;stop-opacity:1'/></linearGradient><linearGradient id='hotpink3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd6090;stop-opacity:1'/></linearGradient><linearGradient id='hotpink4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b3a62;stop-opacity:1'/></linearGradient><linearGradient id='indianred' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd5c5c;stop-opacity:1'/></linearGradient><linearGradient id='indianred1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff6a6a;stop-opacity:1'/></linearGradient><linearGradient id='indianred2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee6363;stop-opacity:1'/></linearGradient><linearGradient id='indianred3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd5555;stop-opacity:1'/></linearGradient><linearGradient id='indianred4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b3a3a;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4b0082;stop-opacity:1'/></linearGradient><linearGradient id='ivory1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffff0;stop-opacity:1'/></linearGradient><linearGradient id='ivory2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eeeee0;stop-opacity:1'/></linearGradient><linearGradient id='ivory3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdcdc1;stop-opacity:1'/></linearGradient><linearGradient id='ivory4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8b83;stop-opacity:1'/></linearGradient><linearGradient id='khaki' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f0e68c;stop-opacity:1'/></linearGradient><linearGradient id='khaki1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff68f;stop-opacity:1'/></linearGradient><linearGradient id='khaki2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee685;stop-opacity:1'/></linearGradient><linearGradient id='khaki3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc673;stop-opacity:1'/></linearGradient><linearGradient id='khaki4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b864e;stop-opacity:1'/></linearGradient><linearGradient id='lavender' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e6e6fa;stop-opacity:1'/></linearGradient><linearGradient id='lavenderblush' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff0f5;stop-opacity:1'/></linearGradient><linearGradient id='lavenderblush1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff0f5;stop-opacity:1'/></linearGradient><linearGradient id='lavenderblush2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee0e5;stop-opacity:1'/></linearGradient><linearGradient id='lavenderblush3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc1c5;stop-opacity:1'/></linearGradient><linearGradient id='lavenderblush4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8386;stop-opacity:1'/></linearGradient><linearGradient id='lawngreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7cfc00;stop-opacity:1'/></linearGradient><linearGradient id='lemonchiffon' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffacd;stop-opacity:1'/></linearGradient><linearGradient id='lemonchiffon1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffacd;stop-opacity:1'/></linearGradient><linearGradient id='lemonchiffon2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee9bf;stop-opacity:1'/></linearGradient><linearGradient id='lemonchiffon3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc9a5;stop-opacity:1'/></linearGradient><linearGradient id='lemonchiffon4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8970;stop-opacity:1'/></linearGradient><linearGradient id='lightblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#add8e6;stop-opacity:1'/></linearGradient><linearGradient id='lightblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bfefff;stop-opacity:1'/></linearGradient><linearGradient id='lightblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b2dfee;stop-opacity:1'/></linearGradient><linearGradient id='lightblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9ac0cd;stop-opacity:1'/></linearGradient><linearGradient id='lightblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#68838b;stop-opacity:1'/></linearGradient><linearGradient id='lightcoral' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f08080;stop-opacity:1'/></linearGradient><linearGradient id='lightcyan' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e0ffff;stop-opacity:1'/></linearGradient><linearGradient id='lightcyan1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e0ffff;stop-opacity:1'/></linearGradient><linearGradient id='lightcyan2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d1eeee;stop-opacity:1'/></linearGradient><linearGradient id='lightcyan3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b4cdcd;stop-opacity:1'/></linearGradient><linearGradient id='lightcyan4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7a8b8b;stop-opacity:1'/></linearGradient><linearGradient id='lightgoldenrod' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eedd82;stop-opacity:1'/></linearGradient><linearGradient id='lightgoldenrod1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffec8b;stop-opacity:1'/></linearGradient><linearGradient id='lightgoldenrod2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eedc82;stop-opacity:1'/></linearGradient><linearGradient id='lightgoldenrod3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdbe70;stop-opacity:1'/></linearGradient><linearGradient id='lightgoldenrod4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b814c;stop-opacity:1'/></linearGradient><linearGradient id='lightgoldenrodyellow' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fafad2;stop-opacity:1'/></linearGradient><linearGradient id='lightgray' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d3d3d3;stop-opacity:1'/></linearGradient><linearGradient id='lightpink' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffb6c1;stop-opacity:1'/></linearGradient><linearGradient id='lightpink1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffaeb9;stop-opacity:1'/></linearGradient><linearGradient id='lightpink2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eea2ad;stop-opacity:1'/></linearGradient><linearGradient id='lightpink3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd8c95;stop-opacity:1'/></linearGradient><linearGradient id='lightpink4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b5f65;stop-opacity:1'/></linearGradient><linearGradient id='lightsalmon' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffa07a;stop-opacity:1'/></linearGradient><linearGradient id='lightsalmon1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffa07a;stop-opacity:1'/></linearGradient><linearGradient id='lightsalmon2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee9572;stop-opacity:1'/></linearGradient><linearGradient id='lightsalmon3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd8162;stop-opacity:1'/></linearGradient><linearGradient id='lightsalmon4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b5742;stop-opacity:1'/></linearGradient><linearGradient id='lightseagreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#20b2aa;stop-opacity:1'/></linearGradient><linearGradient id='lightskyblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#87cefa;stop-opacity:1'/></linearGradient><linearGradient id='lightskyblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b0e2ff;stop-opacity:1'/></linearGradient><linearGradient id='lightskyblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a4d3ee;stop-opacity:1'/></linearGradient><linearGradient id='lightskyblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8db6cd;stop-opacity:1'/></linearGradient><linearGradient id='lightskyblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#607b8b;stop-opacity:1'/></linearGradient><linearGradient id='lightslateblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8470ff;stop-opacity:1'/></linearGradient><linearGradient id='lightslategray' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#778899;stop-opacity:1'/></linearGradient><linearGradient id='lightslategrey' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#778899;stop-opacity:1'/></linearGradient><linearGradient id='lightsteelblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b0c4de;stop-opacity:1'/></linearGradient><linearGradient id='lightsteelblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cae1ff;stop-opacity:1'/></linearGradient><linearGradient id='lightsteelblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bcd2ee;stop-opacity:1'/></linearGradient><linearGradient id='lightsteelblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a2b5cd;stop-opacity:1'/></linearGradient><linearGradient id='lightsteelblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6e7b8b;stop-opacity:1'/></linearGradient><linearGradient id='lightyellow' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffffe0;stop-opacity:1'/></linearGradient><linearGradient id='lightyellow1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffffe0;stop-opacity:1'/></linearGradient><linearGradient id='lightyellow2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eeeed1;stop-opacity:1'/></linearGradient><linearGradient id='lightyellow3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdcdb4;stop-opacity:1'/></linearGradient><linearGradient id='lightyellow4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8b7a;stop-opacity:1'/></linearGradient><linearGradient id='limegreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#32cd32;stop-opacity:1'/></linearGradient><linearGradient id='linen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#faf0e6;stop-opacity:1'/></linearGradient><linearGradient id='magenta' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff00ff;stop-opacity:1'/></linearGradient><linearGradient id='magenta1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff00ff;stop-opacity:1'/></linearGradient><linearGradient id='magenta2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee00ee;stop-opacity:1'/></linearGradient><linearGradient id='magenta3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd00cd;stop-opacity:1'/></linearGradient><linearGradient id='magenta4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b008b;stop-opacity:1'/></linearGradient><linearGradient id='maroon' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b03060;stop-opacity:1'/></linearGradient><linearGradient id='maroon1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff34b3;stop-opacity:1'/></linearGradient><linearGradient id='maroon2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee30a7;stop-opacity:1'/></linearGradient><linearGradient id='maroon3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd2990;stop-opacity:1'/></linearGradient><linearGradient id='maroon4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b1c62;stop-opacity:1'/></linearGradient><linearGradient id='mediumaquamarine' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#66cdaa;stop-opacity:1'/></linearGradient><linearGradient id='mediumblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#0000cd;stop-opacity:1'/></linearGradient><linearGradient id='mediumorchid' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ba55d3;stop-opacity:1'/></linearGradient><linearGradient id='mediumorchid1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#e066ff;stop-opacity:1'/></linearGradient><linearGradient id='mediumorchid2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d15fee;stop-opacity:1'/></linearGradient><linearGradient id='mediumorchid3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b452cd;stop-opacity:1'/></linearGradient><linearGradient id='mediumorchid4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7a378b;stop-opacity:1'/></linearGradient><linearGradient id='mediumpurple' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9370db;stop-opacity:1'/></linearGradient><linearGradient id='mediumpurple1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ab82ff;stop-opacity:1'/></linearGradient><linearGradient id='mediumpurple2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9f79ee;stop-opacity:1'/></linearGradient><linearGradient id='mediumpurple3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8968cd;stop-opacity:1'/></linearGradient><linearGradient id='mediumpurple4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#5d478b;stop-opacity:1'/></linearGradient><linearGradient id='mediumseagreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#3cb371;stop-opacity:1'/></linearGradient><linearGradient id='mediumslateblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7b68ee;stop-opacity:1'/></linearGradient><linearGradient id='mediumspringgreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00fa9a;stop-opacity:1'/></linearGradient><linearGradient id='mediumturquoise' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#48d1cc;stop-opacity:1'/></linearGradient><linearGradient id='mediumvioletred' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c71585;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#191970;stop-opacity:1'/></linearGradient><linearGradient id='mistyrose' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe4e1;stop-opacity:1'/></linearGradient><linearGradient id='mistyrose1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe4e1;stop-opacity:1'/></linearGradient><linearGradient id='mistyrose2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eed5d2;stop-opacity:1'/></linearGradient><linearGradient id='mistyrose3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdb7b5;stop-opacity:1'/></linearGradient><linearGradient id='mistyrose4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7d7b;stop-opacity:1'/></linearGradient><linearGradient id='moccasin' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe4b5;stop-opacity:1'/></linearGradient><linearGradient id='navajowhite' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffdead;stop-opacity:1'/></linearGradient><linearGradient id='navajowhite1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffdead;stop-opacity:1'/></linearGradient><linearGradient id='navajowhite2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eecfa1;stop-opacity:1'/></linearGradient><linearGradient id='navajowhite3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdb38b;stop-opacity:1'/></linearGradient><linearGradient id='navajowhite4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b795e;stop-opacity:1'/></linearGradient><linearGradient id=' ' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#000080;stop-opacity:1'/></linearGradient><linearGradient id='oldlace' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fdf5e6;stop-opacity:1'/></linearGradient><linearGradient id='olivedrab' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6b8e23;stop-opacity:1'/></linearGradient><linearGradient id='olivedrab1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c0ff3e;stop-opacity:1'/></linearGradient><linearGradient id='olivedrab2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b3ee3a;stop-opacity:1'/></linearGradient><linearGradient id='olivedrab3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9acd32;stop-opacity:1'/></linearGradient><linearGradient id='olivedrab4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#698b22;stop-opacity:1'/></linearGradient><linearGradient id='orange' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffa500;stop-opacity:1'/></linearGradient><linearGradient id='orange1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffa500;stop-opacity:1'/></linearGradient><linearGradient id='orange2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee9a00;stop-opacity:1'/></linearGradient><linearGradient id='orange3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd8500;stop-opacity:1'/></linearGradient><linearGradient id='orange4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b5a00;stop-opacity:1'/></linearGradient><linearGradient id='orangered' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff4500;stop-opacity:1'/></linearGradient><linearGradient id='orangered1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff4500;stop-opacity:1'/></linearGradient><linearGradient id='orangered2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee4000;stop-opacity:1'/></linearGradient><linearGradient id='orangered3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd3700;stop-opacity:1'/></linearGradient><linearGradient id='orangered4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b2500;stop-opacity:1'/></linearGradient><linearGradient id='orchid' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#da70d6;stop-opacity:1'/></linearGradient><linearGradient id='orchid1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff83fa;stop-opacity:1'/></linearGradient><linearGradient id='orchid2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee7ae9;stop-opacity:1'/></linearGradient><linearGradient id='orchid3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd69c9;stop-opacity:1'/></linearGradient><linearGradient id='orchid4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b4789;stop-opacity:1'/></linearGradient><linearGradient id='palegoldenrod' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee8aa;stop-opacity:1'/></linearGradient><linearGradient id='palegreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#98fb98;stop-opacity:1'/></linearGradient><linearGradient id='palegreen1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9aff9a;stop-opacity:1'/></linearGradient><linearGradient id='palegreen2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#90ee90;stop-opacity:1'/></linearGradient><linearGradient id='palegreen3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7ccd7c;stop-opacity:1'/></linearGradient><linearGradient id='palegreen4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#548b54;stop-opacity:1'/></linearGradient><linearGradient id='paleturquoise' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#afeeee;stop-opacity:1'/></linearGradient><linearGradient id='paleturquoise1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bbffff;stop-opacity:1'/></linearGradient><linearGradient id='paleturquoise2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#aeeeee;stop-opacity:1'/></linearGradient><linearGradient id='paleturquoise3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#96cdcd;stop-opacity:1'/></linearGradient><linearGradient id='paleturquoise4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#668b8b;stop-opacity:1'/></linearGradient><linearGradient id='palevioletred' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#db7093;stop-opacity:1'/></linearGradient><linearGradient id='palevioletred1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff82ab;stop-opacity:1'/></linearGradient><linearGradient id='palevioletred2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee799f;stop-opacity:1'/></linearGradient><linearGradient id='palevioletred3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd6889;stop-opacity:1'/></linearGradient><linearGradient id='palevioletred4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b475d;stop-opacity:1'/></linearGradient><linearGradient id='papayawhip' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffefd5;stop-opacity:1'/></linearGradient><linearGradient id='peachpuff' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffdab9;stop-opacity:1'/></linearGradient><linearGradient id='peachpuff1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffdab9;stop-opacity:1'/></linearGradient><linearGradient id='peachpuff2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eecbad;stop-opacity:1'/></linearGradient><linearGradient id='peachpuff3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdaf95;stop-opacity:1'/></linearGradient><linearGradient id='peachpuff4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7765;stop-opacity:1'/></linearGradient><linearGradient id='peru' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd853f;stop-opacity:1'/></linearGradient><linearGradient id='pink' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffc0cb;stop-opacity:1'/></linearGradient><linearGradient id='pink1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffb5c5;stop-opacity:1'/></linearGradient><linearGradient id='pink2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eea9b8;stop-opacity:1'/></linearGradient><linearGradient id='pink3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd919e;stop-opacity:1'/></linearGradient><linearGradient id='pink4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b636c;stop-opacity:1'/></linearGradient><linearGradient id='plum' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#dda0dd;stop-opacity:1'/></linearGradient><linearGradient id='plum1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffbbff;stop-opacity:1'/></linearGradient><linearGradient id='plum2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eeaeee;stop-opacity:1'/></linearGradient><linearGradient id='plum3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd96cd;stop-opacity:1'/></linearGradient><linearGradient id='plum4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b668b;stop-opacity:1'/></linearGradient><linearGradient id='powderblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b0e0e6;stop-opacity:1'/></linearGradient><linearGradient id='purple' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a020f0;stop-opacity:1'/></linearGradient><linearGradient id='purple1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9b30ff;stop-opacity:1'/></linearGradient><linearGradient id='purple2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#912cee;stop-opacity:1'/></linearGradient><linearGradient id='purple3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7d26cd;stop-opacity:1'/></linearGradient><linearGradient id='purple4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#551a8b;stop-opacity:1'/></linearGradient><linearGradient id='red' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff0000;stop-opacity:1'/></linearGradient><linearGradient id='red1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff0000;stop-opacity:1'/></linearGradient><linearGradient id='red2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee0000;stop-opacity:1'/></linearGradient><linearGradient id='red3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd0000;stop-opacity:1'/></linearGradient><linearGradient id='red4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b0000;stop-opacity:1'/></linearGradient><linearGradient id='rosybrown' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#bc8f8f;stop-opacity:1'/></linearGradient><linearGradient id='rosybrown1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffc1c1;stop-opacity:1'/></linearGradient><linearGradient id='rosybrown2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eeb4b4;stop-opacity:1'/></linearGradient><linearGradient id='rosybrown3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd9b9b;stop-opacity:1'/></linearGradient><linearGradient id='rosybrown4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b6969;stop-opacity:1'/></linearGradient><linearGradient id='royalblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4169e1;stop-opacity:1'/></linearGradient><linearGradient id='royalblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4876ff;stop-opacity:1'/></linearGradient><linearGradient id='royalblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#436eee;stop-opacity:1'/></linearGradient><linearGradient id='royalblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#3a5fcd;stop-opacity:1'/></linearGradient><linearGradient id='royalblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#27408b;stop-opacity:1'/></linearGradient><linearGradient id='saddlebrown' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b4513;stop-opacity:1'/></linearGradient><linearGradient id='salmon' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fa8072;stop-opacity:1'/></linearGradient><linearGradient id='salmon1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff8c69;stop-opacity:1'/></linearGradient><linearGradient id='salmon2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee8262;stop-opacity:1'/></linearGradient><linearGradient id='salmon3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd7054;stop-opacity:1'/></linearGradient><linearGradient id='salmon4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b4c39;stop-opacity:1'/></linearGradient><linearGradient id='sandybrown' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f4a460;stop-opacity:1'/></linearGradient><linearGradient id='seagreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#2e8b57;stop-opacity:1'/></linearGradient><linearGradient id='seagreen1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#54ff9f;stop-opacity:1'/></linearGradient><linearGradient id='seagreen2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4eee94;stop-opacity:1'/></linearGradient><linearGradient id='seagreen3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#43cd80;stop-opacity:1'/></linearGradient><linearGradient id='seagreen4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#2e8b57;stop-opacity:1'/></linearGradient><linearGradient id='seashell' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff5ee;stop-opacity:1'/></linearGradient><linearGradient id='seashell1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fff5ee;stop-opacity:1'/></linearGradient><linearGradient id='seashell2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee5de;stop-opacity:1'/></linearGradient><linearGradient id='seashell3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc5bf;stop-opacity:1'/></linearGradient><linearGradient id='seashell4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8682;stop-opacity:1'/></linearGradient><linearGradient id='sienna' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#a0522d;stop-opacity:1'/></linearGradient><linearGradient id='sienna1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff8247;stop-opacity:1'/></linearGradient><linearGradient id='sienna2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee7942;stop-opacity:1'/></linearGradient><linearGradient id='sienna3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd6839;stop-opacity:1'/></linearGradient><linearGradient id='sienna4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b4726;stop-opacity:1'/></linearGradient><linearGradient id='skyblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#87ceeb;stop-opacity:1'/></linearGradient><linearGradient id='skyblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#87ceff;stop-opacity:1'/></linearGradient><linearGradient id='skyblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7ec0ee;stop-opacity:1'/></linearGradient><linearGradient id='skyblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6ca6cd;stop-opacity:1'/></linearGradient><linearGradient id='skyblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4a708b;stop-opacity:1'/></linearGradient><linearGradient id='slateblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6a5acd;stop-opacity:1'/></linearGradient><linearGradient id='slateblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#836fff;stop-opacity:1'/></linearGradient><linearGradient id='slateblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#7a67ee;stop-opacity:1'/></linearGradient><linearGradient id='slateblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6959cd;stop-opacity:1'/></linearGradient><linearGradient id='slateblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#473c8b;stop-opacity:1'/></linearGradient><linearGradient id='slategray' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#708090;stop-opacity:1'/></linearGradient><linearGradient id='slategray1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#c6e2ff;stop-opacity:1'/></linearGradient><linearGradient id='slategray2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#b9d3ee;stop-opacity:1'/></linearGradient><linearGradient id='slategray3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9fb6cd;stop-opacity:1'/></linearGradient><linearGradient id='slategray4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#6c7b8b;stop-opacity:1'/></linearGradient><linearGradient id='slategrey' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#708090;stop-opacity:1'/></linearGradient><linearGradient id='snow' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffafa;stop-opacity:1'/></linearGradient><linearGradient id='snow1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffafa;stop-opacity:1'/></linearGradient><linearGradient id='snow2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eee9e9;stop-opacity:1'/></linearGradient><linearGradient id='snow3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdc9c9;stop-opacity:1'/></linearGradient><linearGradient id='snow4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8989;stop-opacity:1'/></linearGradient><linearGradient id='springgreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ff7f;stop-opacity:1'/></linearGradient><linearGradient id='springgreen1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ff7f;stop-opacity:1'/></linearGradient><linearGradient id='springgreen2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00ee76;stop-opacity:1'/></linearGradient><linearGradient id='springgreen3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00cd66;stop-opacity:1'/></linearGradient><linearGradient id='springgreen4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#008b45;stop-opacity:1'/></linearGradient><linearGradient id='steelblue' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4682b4;stop-opacity:1'/></linearGradient><linearGradient id='steelblue1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#63b8ff;stop-opacity:1'/></linearGradient><linearGradient id='steelblue2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#5cacee;stop-opacity:1'/></linearGradient><linearGradient id='steelblue3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#4f94cd;stop-opacity:1'/></linearGradient><linearGradient id='steelblue4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#36648b;stop-opacity:1'/></linearGradient><linearGradient id='tan' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d2b48c;stop-opacity:1'/></linearGradient><linearGradient id='tan1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffa54f;stop-opacity:1'/></linearGradient><linearGradient id='tan2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee9a49;stop-opacity:1'/></linearGradient><linearGradient id='tan3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd853f;stop-opacity:1'/></linearGradient><linearGradient id='tan4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b5a2b;stop-opacity:1'/></linearGradient><linearGradient id='thistle' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d8bfd8;stop-opacity:1'/></linearGradient><linearGradient id='thistle1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe1ff;stop-opacity:1'/></linearGradient><linearGradient id='thistle2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eed2ee;stop-opacity:1'/></linearGradient><linearGradient id='thistle3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdb5cd;stop-opacity:1'/></linearGradient><linearGradient id='thistle4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7b8b;stop-opacity:1'/></linearGradient><linearGradient id='tomato' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff6347;stop-opacity:1'/></linearGradient><linearGradient id='tomato1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff6347;stop-opacity:1'/></linearGradient><linearGradient id='tomato2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee5c42;stop-opacity:1'/></linearGradient><linearGradient id='tomato3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd4f39;stop-opacity:1'/></linearGradient><linearGradient id='tomato4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b3626;stop-opacity:1'/></linearGradient><linearGradient id='transparent' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#fffffe;stop-opacity:1'/></linearGradient><linearGradient id='turquoise' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#40e0d0;stop-opacity:1'/></linearGradient><linearGradient id='turquoise1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00f5ff;stop-opacity:1'/></linearGradient><linearGradient id='turquoise2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00e5ee;stop-opacity:1'/></linearGradient><linearGradient id='turquoise3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00c5cd;stop-opacity:1'/></linearGradient><linearGradient id='turquoise4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#00868b;stop-opacity:1'/></linearGradient><linearGradient id='violet' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee82ee;stop-opacity:1'/></linearGradient><linearGradient id='violetred' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#d02090;stop-opacity:1'/></linearGradient><linearGradient id='violetred1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ff3e96;stop-opacity:1'/></linearGradient><linearGradient id='violetred2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ee3a8c;stop-opacity:1'/></linearGradient><linearGradient id='violetred3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cd3278;stop-opacity:1'/></linearGradient><linearGradient id='violetred4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b2252;stop-opacity:1'/></linearGradient><linearGradient id='wheat' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f5deb3;stop-opacity:1'/></linearGradient><linearGradient id='wheat1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffe7ba;stop-opacity:1'/></linearGradient><linearGradient id='wheat2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eed8ae;stop-opacity:1'/></linearGradient><linearGradient id='wheat3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdba96;stop-opacity:1'/></linearGradient><linearGradient id='wheat4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b7e66;stop-opacity:1'/></linearGradient><linearGradient id='white' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffffff;stop-opacity:1'/></linearGradient><linearGradient id='whitesmoke' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#f5f5f5;stop-opacity:1'/></linearGradient><linearGradient id='yellow' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffff00;stop-opacity:1'/></linearGradient><linearGradient id='yellow1' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#ffff00;stop-opacity:1'/></linearGradient><linearGradient id='yellow2' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#eeee00;stop-opacity:1'/></linearGradient><linearGradient id='yellow3' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#cdcd00;stop-opacity:1'/></linearGradient><linearGradient id='yellow4' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#8b8b00;stop-opacity:1'/></linearGradient><linearGradient id='yellowgreen' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:#9acd32;stop-opacity:1'/></linearGradient><linearGradient id='lightgrey' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:rgb(220,220,220);stop-opacity:1'/></linearGradient><linearGradient id='none' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(255,255,255);stop-opacity:1'/><stop offset='100%' style='stop-color:rgb(255,255,255);stop-opacity:1'/></linearGradient><linearGradient id='black' x1='0%' x2='100%' y1='0%' y2='100%'><stop offset='0%' style='stop-color:rgb(150,150,150);stop-opacity:2'/><stop offset='100%' style='stop-color:rgb(0,0,0);stop-opacity:2'/></linearGradient></defs>
6
+ <g class='graph' id='graph0' transform='scale(1 1) rotate(0) translate(4 1076)'><title>G</title><g class='node' id='node1'><title>yuml_requestclient</title>
7
+ <polygon fill='lightgrey' filter='url(#shadow)' points='1456.25,-1047.5 1351.75,-1047.5 1351.75,-1004.5 1456.25,-1004.5 1456.25,-1047.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='1456.25,-1047.5 1351.75,-1047.5 1351.75,-1004.5 1456.25,-1004.5 1456.25,-1047.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
8
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-1022.3'>RequestClient</text>
9
+ </g><g class='node' id='node2'><title>yuml_graphhttpclient</title>
10
+ <polygon fill='skyblue' filter='url(#shadow)' points='1344.5,-769 1344.5,-889 1463.5,-889 1463.5,-769 1344.5,-769' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1344.5,-769 1344.5,-889 1463.5,-889 1463.5,-769 1344.5,-769' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
11
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-877.8'>GraphHttpClient</text>
12
+ <polyline fill='none' filter='url(#shadow)' points='1344.5,-874 1463.5,-874 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1344.5,-874 1463.5,-874 ' stroke='black' style='fill:url(#none);stroke:black;'/>
13
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-862.8'>_impl</text>
14
+ <polyline fill='none' filter='url(#shadow)' points='1344.5,-859 1463.5,-859 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1344.5,-859 1463.5,-859 ' stroke='black' style='fill:url(#none);stroke:black;'/>
15
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-847.8'>fetch()</text>
16
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-832.8'>fetchRaw()</text>
17
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-817.8'>get()</text>
18
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-802.8'>post()</text>
19
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-787.8'>patch()</text>
20
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1404' y='-772.8'>delete()</text>
21
+ </g><g class='edge' id='edge1'><title>yuml_requestclient-&gt;yuml_graphhttpclient</title>
22
+ <path d='M1404,-994.099C1404,-965.999 1404,-923.762 1404,-889.176' fill='none' stroke='black'/><path d='M1404,-994.099C1404,-965.999 1404,-923.762 1404,-889.176' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
23
+ <polygon fill='none' filter='url(#shadow)' points='1400.5,-994.132 1404,-1004.13 1407.5,-994.132 1400.5,-994.132' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='1400.5,-994.132 1404,-1004.13 1407.5,-994.132 1400.5,-994.132' stroke='black' style='fill:url(#none);stroke:black;'/>
24
+ </g><g class='node' id='node3'><title>yuml_error</title>
25
+ <polygon fill='lightgrey' filter='url(#shadow)' points='1727.25,-1047.5 1670.75,-1047.5 1670.75,-1004.5 1727.25,-1004.5 1727.25,-1047.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='1727.25,-1047.5 1670.75,-1047.5 1670.75,-1004.5 1727.25,-1004.5 1727.25,-1047.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
26
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1699' y='-1022.3'>Error</text>
27
+ </g><g class='node' id='node4'><title>yuml_nographclientavailableexception</title>
28
+ <polygon fill='skyblue' filter='url(#shadow)' points='1481.5,-806.5 1481.5,-851.5 1700.5,-851.5 1700.5,-806.5 1481.5,-806.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1481.5,-806.5 1481.5,-851.5 1700.5,-851.5 1700.5,-806.5 1481.5,-806.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
29
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1591' y='-840.3'>NoGraphClientAvailableException</text>
30
+ <polyline fill='none' filter='url(#shadow)' points='1481.5,-836.5 1700.5,-836.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1481.5,-836.5 1700.5,-836.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
31
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1591' y='-825.3'> </text>
32
+ <polyline fill='none' filter='url(#shadow)' points='1481.5,-821.5 1700.5,-821.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1481.5,-821.5 1700.5,-821.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
33
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1591' y='-810.3'> </text>
34
+ </g><g class='edge' id='edge2'><title>yuml_error-&gt;yuml_nographclientavailableexception</title>
35
+ <path d='M1682.5,-995.207C1660.57,-955.606 1622.33,-886.568 1602.97,-851.608' fill='none' stroke='black'/><path d='M1682.5,-995.207C1660.57,-955.606 1622.33,-886.568 1602.97,-851.608' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
36
+ <polygon fill='none' filter='url(#shadow)' points='1679.54,-997.079 1687.44,-1004.13 1685.66,-993.688 1679.54,-997.079' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='1679.54,-997.079 1687.44,-1004.13 1685.66,-993.688 1679.54,-997.079' stroke='black' style='fill:url(#none);stroke:black;'/>
37
+ </g><g class='node' id='node57'><title>yuml_graphbatchparseexception</title>
38
+ <polygon fill='skyblue' filter='url(#shadow)' points='1719,-806.5 1719,-851.5 1897,-851.5 1897,-806.5 1719,-806.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1719,-806.5 1719,-851.5 1897,-851.5 1897,-806.5 1719,-806.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
39
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1808' y='-840.3'>GraphBatchParseException</text>
40
+ <polyline fill='none' filter='url(#shadow)' points='1719,-836.5 1897,-836.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1719,-836.5 1897,-836.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
41
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1808' y='-825.3'> </text>
42
+ <polyline fill='none' filter='url(#shadow)' points='1719,-821.5 1897,-821.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1719,-821.5 1897,-821.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
43
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1808' y='-810.3'> </text>
44
+ </g><g class='edge' id='edge3'><title>yuml_error-&gt;yuml_graphbatchparseexception</title>
45
+ <path d='M1715.65,-995.207C1737.79,-955.606 1776.38,-886.568 1795.92,-851.608' fill='none' stroke='black'/><path d='M1715.65,-995.207C1737.79,-955.606 1776.38,-886.568 1795.92,-851.608' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
46
+ <polygon fill='none' filter='url(#shadow)' points='1712.49,-993.695 1710.66,-1004.13 1718.6,-997.11 1712.49,-993.695' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='1712.49,-993.695 1710.66,-1004.13 1718.6,-997.11 1712.49,-993.695' stroke='black' style='fill:url(#none);stroke:black;'/>
47
+ </g><g class='node' id='node5'><title>yuml_graphconfiguration</title>
48
+ <polygon fill='palegreen' filter='url(#shadow)' points='1746,-1003.5 1746,-1048.5 1884,-1048.5 1884,-1003.5 1746,-1003.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='1746,-1003.5 1746,-1048.5 1884,-1048.5 1884,-1003.5 1746,-1003.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
49
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1815' y='-1037.3'>GraphConfiguration</text>
50
+ <polyline fill='none' filter='url(#shadow)' points='1746,-1033.5 1884,-1033.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1746,-1033.5 1884,-1033.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
51
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1815' y='-1022.3'> </text>
52
+ <polyline fill='none' filter='url(#shadow)' points='1746,-1018.5 1884,-1018.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1746,-1018.5 1884,-1018.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
53
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1815' y='-1007.3'> </text>
54
+ </g><g class='node' id='node6'><title>yuml_graphconfigurationpart</title>
55
+ <polygon fill='palegreen' filter='url(#shadow)' points='1902,-1003.5 1902,-1048.5 2062,-1048.5 2062,-1003.5 1902,-1003.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='1902,-1003.5 1902,-1048.5 2062,-1048.5 2062,-1003.5 1902,-1003.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
56
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1982' y='-1037.3'>GraphConfigurationPart</text>
57
+ <polyline fill='none' filter='url(#shadow)' points='1902,-1033.5 2062,-1033.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1902,-1033.5 2062,-1033.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
58
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1982' y='-1022.3'>graph</text>
59
+ <polyline fill='none' filter='url(#shadow)' points='1902,-1018.5 2062,-1018.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1902,-1018.5 2062,-1018.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
60
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1982' y='-1007.3'> </text>
61
+ </g><g class='node' id='node7'><title>yuml_graphruntimeconfigimpl</title>
62
+ <polygon fill='skyblue' filter='url(#shadow)' points='2080.5,-996 2080.5,-1056 2253.5,-1056 2253.5,-996 2080.5,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2080.5,-996 2080.5,-1056 2253.5,-1056 2253.5,-996 2080.5,-996' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
63
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2167' y='-1044.8'>GraphRuntimeConfigImpl</text>
64
+ <polyline fill='none' filter='url(#shadow)' points='2080.5,-1041 2253.5,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2080.5,-1041 2253.5,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
65
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2167' y='-1029.8'>headers</text>
66
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2167' y='-1014.8'>fetchClientFactory</text>
67
+ <polyline fill='none' filter='url(#shadow)' points='2080.5,-1011 2253.5,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2080.5,-1011 2253.5,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
68
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2167' y='-999.8'> </text>
69
+ </g><g class='node' id='node8'><title>yuml_graphqueryableinstance</title>
70
+ <polygon fill='skyblue' filter='url(#shadow)' points='707,-580 707,-640 871,-640 871,-580 707,-580' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='707,-580 707,-640 871,-640 871,-580 707,-580' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
71
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-628.8'>GraphQueryableInstance</text>
72
+ <polyline fill='none' filter='url(#shadow)' points='707,-625 871,-625 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='707,-625 871,-625 ' stroke='black' style='fill:url(#none);stroke:black;'/>
73
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-613.8'> </text>
74
+ <polyline fill='none' filter='url(#shadow)' points='707,-610 871,-610 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='707,-610 871,-610 ' stroke='black' style='fill:url(#none);stroke:black;'/>
75
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-598.8'>select()</text>
76
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-583.8'>expand()</text>
77
+ </g><g class='node' id='node9'><title>yuml_user</title>
78
+ <polygon fill='skyblue' filter='url(#shadow)' points='122,-271.5 122,-316.5 176,-316.5 176,-271.5 122,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='122,-271.5 122,-316.5 176,-316.5 176,-271.5 122,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
79
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='149' y='-305.3'>User</text>
80
+ <polyline fill='none' filter='url(#shadow)' points='122,-301.5 176,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='122,-301.5 176,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
81
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='149' y='-290.3'> </text>
82
+ <polyline fill='none' filter='url(#shadow)' points='122,-286.5 176,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='122,-286.5 176,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
83
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='149' y='-275.3'> </text>
84
+ </g><g class='edge' id='edge4'><title>yuml_graphqueryableinstance-&gt;yuml_user</title>
85
+ <path d='M696.587,-596.794C545.575,-574.982 255.618,-524.69 185,-452 149.146,-415.094 146.234,-350.134 147.433,-316.513' fill='none' stroke='black'/><path d='M696.587,-596.794C545.575,-574.982 255.618,-524.69 185,-452 149.146,-415.094 146.234,-350.134 147.433,-316.513' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
86
+ <polygon fill='none' filter='url(#shadow)' points='696.377,-600.299 706.772,-598.252 697.369,-593.37 696.377,-600.299' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='696.377,-600.299 706.772,-598.252 697.369,-593.37 696.377,-600.299' stroke='black' style='fill:url(#none);stroke:black;'/>
87
+ </g><g class='node' id='node14'><title>yuml_team</title>
88
+ <polygon fill='skyblue' filter='url(#shadow)' points='194,-264 194,-324 268,-324 268,-264 194,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='194,-264 194,-324 268,-324 268,-264 194,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
89
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='231' y='-312.8'>Team</text>
90
+ <polyline fill='none' filter='url(#shadow)' points='194,-309 268,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='194,-309 268,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
91
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='231' y='-297.8'> </text>
92
+ <polyline fill='none' filter='url(#shadow)' points='194,-294 268,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='194,-294 268,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
93
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='231' y='-282.8'>update()</text>
94
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='231' y='-267.8'>get()</text>
95
+ </g><g class='edge' id='edge5'><title>yuml_graphqueryableinstance-&gt;yuml_team</title>
96
+ <path d='M696.692,-606.179C582.537,-597.653 389.563,-565.981 277,-452 242.872,-417.442 233.813,-359.001 231.559,-324.002' fill='none' stroke='black'/><path d='M696.692,-606.179C582.537,-597.653 389.563,-565.981 277,-452 242.872,-417.442 233.813,-359.001 231.559,-324.002' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
97
+ <polygon fill='none' filter='url(#shadow)' points='696.587,-609.68 706.808,-606.889 697.078,-602.697 696.587,-609.68' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='696.587,-609.68 706.808,-606.889 697.078,-602.697 696.587,-609.68' stroke='black' style='fill:url(#none);stroke:black;'/>
98
+ </g><g class='node' id='node20'><title>yuml_plan</title>
99
+ <polygon fill='skyblue' filter='url(#shadow)' points='286,-271.5 286,-316.5 340,-316.5 340,-271.5 286,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='286,-271.5 286,-316.5 340,-316.5 340,-271.5 286,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
100
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='313' y='-305.3'>Plan</text>
101
+ <polyline fill='none' filter='url(#shadow)' points='286,-301.5 340,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='286,-301.5 340,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
102
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='313' y='-290.3'> </text>
103
+ <polyline fill='none' filter='url(#shadow)' points='286,-286.5 340,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='286,-286.5 340,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
104
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='313' y='-275.3'> </text>
105
+ </g><g class='edge' id='edge6'><title>yuml_graphqueryableinstance-&gt;yuml_plan</title>
106
+ <path d='M696.468,-601.636C596.074,-588.572 438.221,-552.356 349,-452 314.998,-413.755 311.212,-349.961 311.818,-316.688' fill='none' stroke='black'/><path d='M696.468,-601.636C596.074,-588.572 438.221,-552.356 349,-452 314.998,-413.755 311.212,-349.961 311.818,-316.688' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
107
+ <polygon fill='none' filter='url(#shadow)' points='696.246,-605.136 706.603,-602.902 697.114,-598.19 696.246,-605.136' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='696.246,-605.136 706.603,-602.902 697.114,-598.19 696.246,-605.136' stroke='black' style='fill:url(#none);stroke:black;'/>
108
+ </g><g class='node' id='node22'><title>yuml_photo</title>
109
+ <polygon fill='skyblue' filter='url(#shadow)' points='358.5,-256.5 358.5,-331.5 453.5,-331.5 453.5,-256.5 358.5,-256.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='358.5,-256.5 358.5,-331.5 453.5,-331.5 453.5,-256.5 358.5,-256.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
110
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='406' y='-320.3'>Photo</text>
111
+ <polyline fill='none' filter='url(#shadow)' points='358.5,-316.5 453.5,-316.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='358.5,-316.5 453.5,-316.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
112
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='406' y='-305.3'> </text>
113
+ <polyline fill='none' filter='url(#shadow)' points='358.5,-301.5 453.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='358.5,-301.5 453.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
114
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='406' y='-290.3'>getBlob()</text>
115
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='406' y='-275.3'>getBuffer()</text>
116
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='406' y='-260.3'>setContent()</text>
117
+ </g><g class='edge' id='edge7'><title>yuml_graphqueryableinstance-&gt;yuml_photo</title>
118
+ <path d='M697.304,-585.892C624.363,-563.113 524.499,-521.431 462,-452 431.507,-418.124 417.338,-366.505 410.949,-331.797' fill='none' stroke='black'/><path d='M697.304,-585.892C624.363,-563.113 524.499,-521.431 462,-452 431.507,-418.124 417.338,-366.505 410.949,-331.797' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
119
+ <polygon fill='none' filter='url(#shadow)' points='696.374,-589.268 706.96,-588.847 698.422,-582.574 696.374,-589.268' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='696.374,-589.268 706.96,-588.847 698.422,-582.574 696.374,-589.268' stroke='black' style='fill:url(#none);stroke:black;'/>
120
+ </g><g class='node' id='node24'><title>yuml_section</title>
121
+ <polygon fill='skyblue' filter='url(#shadow)' points='471.5,-271.5 471.5,-316.5 540.5,-316.5 540.5,-271.5 471.5,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='471.5,-271.5 471.5,-316.5 540.5,-316.5 540.5,-271.5 471.5,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
122
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='506' y='-305.3'>Section</text>
123
+ <polyline fill='none' filter='url(#shadow)' points='471.5,-301.5 540.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='471.5,-301.5 540.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
124
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='506' y='-290.3'> </text>
125
+ <polyline fill='none' filter='url(#shadow)' points='471.5,-286.5 540.5,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='471.5,-286.5 540.5,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
126
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='506' y='-275.3'> </text>
127
+ </g><g class='edge' id='edge8'><title>yuml_graphqueryableinstance-&gt;yuml_section</title>
128
+ <path d='M710.347,-575.476C657.656,-549.177 590.722,-507.686 550,-452 519.673,-410.528 510.232,-348.945 507.305,-316.613' fill='none' stroke='black'/><path d='M710.347,-575.476C657.656,-549.177 590.722,-507.686 550,-452 519.673,-410.528 510.232,-348.945 507.305,-316.613' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
129
+ <polygon fill='none' filter='url(#shadow)' points='708.821,-578.626 719.341,-579.888 711.904,-572.342 708.821,-578.626' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='708.821,-578.626 719.341,-579.888 711.904,-572.342 708.821,-578.626' stroke='black' style='fill:url(#none);stroke:black;'/>
130
+ </g><g class='node' id='node26'><title>yuml_notebook</title>
131
+ <polygon fill='skyblue' filter='url(#shadow)' points='559,-271.5 559,-316.5 641,-316.5 641,-271.5 559,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='559,-271.5 559,-316.5 641,-316.5 641,-271.5 559,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
132
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='600' y='-305.3'>Notebook</text>
133
+ <polyline fill='none' filter='url(#shadow)' points='559,-301.5 641,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='559,-301.5 641,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
134
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='600' y='-290.3'>sections</text>
135
+ <polyline fill='none' filter='url(#shadow)' points='559,-286.5 641,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='559,-286.5 641,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
136
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='600' y='-275.3'> </text>
137
+ </g><g class='edge' id='edge9'><title>yuml_graphqueryableinstance-&gt;yuml_notebook</title>
138
+ <path d='M748.676,-572.621C717.834,-542.855 676.268,-498.255 650,-452 624.643,-407.35 610.263,-348.127 603.933,-316.719' fill='none' stroke='black'/><path d='M748.676,-572.621C717.834,-542.855 676.268,-498.255 650,-452 624.643,-407.35 610.263,-348.127 603.933,-316.719' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
139
+ <polygon fill='none' filter='url(#shadow)' points='746.617,-575.494 756.27,-579.861 751.447,-570.427 746.617,-575.494' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='746.617,-575.494 756.27,-579.861 751.447,-570.427 746.617,-575.494' stroke='black' style='fill:url(#none);stroke:black;'/>
140
+ </g><g class='node' id='node29'><title>yuml_onenote</title>
141
+ <polygon fill='skyblue' filter='url(#shadow)' points='20,-256.5 20,-331.5 104,-331.5 104,-256.5 20,-256.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='20,-256.5 20,-331.5 104,-331.5 104,-256.5 20,-256.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
142
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-320.3'>OneNote</text>
143
+ <polyline fill='none' filter='url(#shadow)' points='20,-316.5 104,-316.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20,-316.5 104,-316.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
144
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-305.3'>notebooks</text>
145
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-290.3'>sections</text>
146
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-275.3'>pages</text>
147
+ <polyline fill='none' filter='url(#shadow)' points='20,-271.5 104,-271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20,-271.5 104,-271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
148
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-260.3'> </text>
149
+ </g><g class='edge' id='edge10'><title>yuml_graphqueryableinstance-&gt;yuml_onenote</title>
150
+ <path d='M696.788,-598.821C532.355,-578.9 197.78,-529.794 113,-452 79.214,-420.998 67.7386,-367.42 63.8833,-331.597' fill='none' stroke='black'/><path d='M696.788,-598.821C532.355,-578.9 197.78,-529.794 113,-452 79.214,-420.998 67.7386,-367.42 63.8833,-331.597' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
151
+ <polygon fill='none' filter='url(#shadow)' points='696.543,-602.317 706.889,-600.034 697.378,-595.367 696.543,-602.317' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='696.543,-602.317 706.889,-600.034 697.378,-595.367 696.543,-602.317' stroke='black' style='fill:url(#none);stroke:black;'/>
152
+ </g><g class='node' id='node34'><title>yuml_member</title>
153
+ <polygon fill='skyblue' filter='url(#shadow)' points='659,-271.5 659,-316.5 735,-316.5 735,-271.5 659,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='659,-271.5 659,-316.5 735,-316.5 735,-271.5 659,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
154
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='697' y='-305.3'>Member</text>
155
+ <polyline fill='none' filter='url(#shadow)' points='659,-301.5 735,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='659,-301.5 735,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
156
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='697' y='-290.3'> </text>
157
+ <polyline fill='none' filter='url(#shadow)' points='659,-286.5 735,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='659,-286.5 735,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
158
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='697' y='-275.3'> </text>
159
+ </g><g class='edge' id='edge11'><title>yuml_graphqueryableinstance-&gt;yuml_member</title>
160
+ <path d='M777.574,-570.002C757.991,-503.166 718.648,-368.886 703.318,-316.565' fill='none' stroke='black'/><path d='M777.574,-570.002C757.991,-503.166 718.648,-368.886 703.318,-316.565' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
161
+ <polygon fill='none' filter='url(#shadow)' points='774.257,-571.129 780.427,-579.742 780.974,-569.161 774.257,-571.129' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='774.257,-571.129 780.427,-579.742 780.974,-569.161 774.257,-571.129' stroke='black' style='fill:url(#none);stroke:black;'/>
162
+ </g><g class='node' id='node35'><title>yuml_me</title>
163
+ <polygon fill='skyblue' filter='url(#shadow)' points='753.5,-271.5 753.5,-316.5 824.5,-316.5 824.5,-271.5 753.5,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='753.5,-271.5 753.5,-316.5 824.5,-316.5 824.5,-271.5 753.5,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
164
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-305.3'>Me</text>
165
+ <polyline fill='none' filter='url(#shadow)' points='753.5,-301.5 824.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='753.5,-301.5 824.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
166
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-290.3'>onenote</text>
167
+ <polyline fill='none' filter='url(#shadow)' points='753.5,-286.5 824.5,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='753.5,-286.5 824.5,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
168
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='789' y='-275.3'> </text>
169
+ </g><g class='edge' id='edge12'><title>yuml_graphqueryableinstance-&gt;yuml_me</title>
170
+ <path d='M789,-569.589C789,-502.615 789,-368.779 789,-316.565' fill='none' stroke='black'/><path d='M789,-569.589C789,-502.615 789,-368.779 789,-316.565' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
171
+ <polygon fill='none' filter='url(#shadow)' points='785.5,-569.742 789,-579.742 792.5,-569.742 785.5,-569.742' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='785.5,-569.742 789,-579.742 792.5,-569.742 785.5,-569.742' stroke='black' style='fill:url(#none);stroke:black;'/>
172
+ </g><g class='node' id='node36'><title>yuml_group</title>
173
+ <polygon fill='skyblue' filter='url(#shadow)' points='843,-136.5 843,-451.5 987,-451.5 987,-136.5 843,-136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='843,-136.5 843,-451.5 987,-451.5 987,-136.5 843,-136.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
174
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-440.3'>Group</text>
175
+ <polyline fill='none' filter='url(#shadow)' points='843,-436.5 987,-436.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='843,-436.5 987,-436.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
176
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-425.3'>calendar</text>
177
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-410.3'>events</text>
178
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-395.3'>owners</text>
179
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-380.3'>plans</text>
180
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-365.3'>members</text>
181
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-350.3'>conversations</text>
182
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-335.3'>acceptedSenders</text>
183
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-320.3'>rejectedSenders</text>
184
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-305.3'>photo</text>
185
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-290.3'>team</text>
186
+ <polyline fill='none' filter='url(#shadow)' points='843,-286.5 987,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='843,-286.5 987,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
187
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-275.3'>addFavorite()</text>
188
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-260.3'>createTeam()</text>
189
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-245.3'>getMemberGroups()</text>
190
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-230.3'>delete()</text>
191
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-215.3'>update()</text>
192
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-200.3'>removeFavorite()</text>
193
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-185.3'>resetUnseenCount()</text>
194
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-170.3'>subscribeByMail()</text>
195
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-155.3'>unsubscribeByMail()</text>
196
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='915' y='-140.3'>getCalendarView()</text>
197
+ </g><g class='edge' id='edge13'><title>yuml_graphqueryableinstance-&gt;yuml_group</title>
198
+ <path d='M804.478,-570.427C816.621,-540.166 834.386,-495.895 852.137,-451.66' fill='none' stroke='black'/><path d='M804.478,-570.427C816.621,-540.166 834.386,-495.895 852.137,-451.66' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
199
+ <polygon fill='none' filter='url(#shadow)' points='801.217,-569.157 800.741,-579.742 807.713,-571.764 801.217,-569.157' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='801.217,-569.157 800.741,-579.742 807.713,-571.764 801.217,-569.157' stroke='black' style='fill:url(#none);stroke:black;'/>
200
+ </g><g class='node' id='node43'><title>yuml_post</title>
201
+ <polygon fill='skyblue' filter='url(#shadow)' points='1005,-256.5 1005,-331.5 1099,-331.5 1099,-256.5 1005,-256.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1005,-256.5 1005,-331.5 1099,-331.5 1099,-256.5 1005,-256.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
202
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1052' y='-320.3'>Post</text>
203
+ <polyline fill='none' filter='url(#shadow)' points='1005,-316.5 1099,-316.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1005,-316.5 1099,-316.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
204
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1052' y='-305.3'>attachments</text>
205
+ <polyline fill='none' filter='url(#shadow)' points='1005,-301.5 1099,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1005,-301.5 1099,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
206
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1052' y='-290.3'>delete()</text>
207
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1052' y='-275.3'>forward()</text>
208
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1052' y='-260.3'>reply()</text>
209
+ </g><g class='edge' id='edge14'><title>yuml_graphqueryableinstance-&gt;yuml_post</title>
210
+ <path d='M851.854,-574.804C897.535,-547.082 957.811,-504.129 996,-452 1022.59,-415.699 1037.54,-365.571 1045.18,-331.807' fill='none' stroke='black'/><path d='M851.854,-574.804C897.535,-547.082 957.811,-504.129 996,-452 1022.59,-415.699 1037.54,-365.571 1045.18,-331.807' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
211
+ <polygon fill='none' filter='url(#shadow)' points='849.999,-571.835 843.214,-579.972 853.592,-577.843 849.999,-571.835' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='849.999,-571.835 843.214,-579.972 853.592,-577.843 849.999,-571.835' stroke='black' style='fill:url(#none);stroke:black;'/>
212
+ </g><g class='node' id='node44'><title>yuml_thread</title>
213
+ <polygon fill='skyblue' filter='url(#shadow)' points='1117,-264 1117,-324 1187,-324 1187,-264 1117,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1117,-264 1117,-324 1187,-324 1187,-264 1117,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
214
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1152' y='-312.8'>Thread</text>
215
+ <polyline fill='none' filter='url(#shadow)' points='1117,-309 1187,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1117,-309 1187,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
216
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1152' y='-297.8'>posts</text>
217
+ <polyline fill='none' filter='url(#shadow)' points='1117,-294 1187,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1117,-294 1187,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
218
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1152' y='-282.8'>reply()</text>
219
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1152' y='-267.8'>delete()</text>
220
+ </g><g class='edge' id='edge15'><title>yuml_graphqueryableinstance-&gt;yuml_thread</title>
221
+ <path d='M881.238,-585.953C953.012,-563.376 1049.88,-521.94 1108,-452 1138.66,-415.097 1148.01,-358.235 1150.83,-324.021' fill='none' stroke='black'/><path d='M881.238,-585.953C953.012,-563.376 1049.88,-521.94 1108,-452 1138.66,-415.097 1148.01,-358.235 1150.83,-324.021' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
222
+ <polygon fill='none' filter='url(#shadow)' points='879.813,-582.73 871.284,-589.015 881.871,-589.42 879.813,-582.73' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='879.813,-582.73 871.284,-589.015 881.871,-589.42 879.813,-582.73' stroke='black' style='fill:url(#none);stroke:black;'/>
223
+ </g><g class='node' id='node45'><title>yuml_conversation</title>
224
+ <polygon fill='skyblue' filter='url(#shadow)' points='1205.5,-264 1205.5,-324 1306.5,-324 1306.5,-264 1205.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1205.5,-264 1205.5,-324 1306.5,-324 1306.5,-264 1205.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
225
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1256' y='-312.8'>Conversation</text>
226
+ <polyline fill='none' filter='url(#shadow)' points='1205.5,-309 1306.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1205.5,-309 1306.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
227
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1256' y='-297.8'>threads</text>
228
+ <polyline fill='none' filter='url(#shadow)' points='1205.5,-294 1306.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1205.5,-294 1306.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
229
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1256' y='-282.8'>update()</text>
230
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1256' y='-267.8'>delete()</text>
231
+ </g><g class='edge' id='edge16'><title>yuml_graphqueryableinstance-&gt;yuml_conversation</title>
232
+ <path d='M881.271,-595.61C972.435,-577.812 1110.32,-537.948 1196,-452 1231.12,-416.766 1246.08,-358.823 1252.15,-324.049' fill='none' stroke='black'/><path d='M881.271,-595.61C972.435,-577.812 1110.32,-537.948 1196,-452 1231.12,-416.766 1246.08,-358.823 1252.15,-324.049' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
233
+ <polygon fill='none' filter='url(#shadow)' points='880.391,-592.214 871.221,-597.519 881.698,-599.091 880.391,-592.214' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='880.391,-592.214 871.221,-597.519 881.698,-599.091 880.391,-592.214' stroke='black' style='fill:url(#none);stroke:black;'/>
234
+ </g><g class='node' id='node50'><title>yuml_event</title>
235
+ <polygon fill='skyblue' filter='url(#shadow)' points='1325,-264 1325,-324 1399,-324 1399,-264 1325,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1325,-264 1325,-324 1399,-324 1399,-264 1325,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
236
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1362' y='-312.8'>Event</text>
237
+ <polyline fill='none' filter='url(#shadow)' points='1325,-309 1399,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1325,-309 1399,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
238
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1362' y='-297.8'> </text>
239
+ <polyline fill='none' filter='url(#shadow)' points='1325,-294 1399,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1325,-294 1399,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
240
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1362' y='-282.8'>update()</text>
241
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1362' y='-267.8'>delete()</text>
242
+ </g><g class='edge' id='edge17'><title>yuml_graphqueryableinstance-&gt;yuml_event</title>
243
+ <path d='M881.343,-606.999C998.135,-599.421 1198.07,-568.833 1315,-452 1349.42,-417.611 1358.83,-359.113 1361.28,-324.058' fill='none' stroke='black'/><path d='M881.343,-606.999C998.135,-599.421 1198.07,-568.833 1315,-452 1349.42,-417.611 1358.83,-359.113 1361.28,-324.058' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
244
+ <polygon fill='none' filter='url(#shadow)' points='881.117,-603.506 871.347,-607.604 881.541,-610.493 881.117,-603.506' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='881.117,-603.506 871.347,-607.604 881.541,-610.493 881.117,-603.506' stroke='black' style='fill:url(#none);stroke:black;'/>
245
+ </g><g class='node' id='node52'><title>yuml_calendar</title>
246
+ <polygon fill='skyblue' filter='url(#shadow)' points='1417.5,-271.5 1417.5,-316.5 1494.5,-316.5 1494.5,-271.5 1417.5,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1417.5,-271.5 1417.5,-316.5 1494.5,-316.5 1494.5,-271.5 1417.5,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
247
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1456' y='-305.3'>Calendar</text>
248
+ <polyline fill='none' filter='url(#shadow)' points='1417.5,-301.5 1494.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1417.5,-301.5 1494.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
249
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1456' y='-290.3'>events</text>
250
+ <polyline fill='none' filter='url(#shadow)' points='1417.5,-286.5 1494.5,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1417.5,-286.5 1494.5,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
251
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1456' y='-275.3'> </text>
252
+ </g><g class='edge' id='edge18'><title>yuml_graphqueryableinstance-&gt;yuml_calendar</title>
253
+ <path d='M881.616,-596.76C1035.08,-574.693 1332.68,-523.771 1408,-452 1445.97,-415.823 1454.15,-350.544 1455.76,-316.686' fill='none' stroke='black'/><path d='M881.616,-596.76C1035.08,-574.693 1332.68,-523.771 1408,-452 1445.97,-415.823 1454.15,-350.544 1455.76,-316.686' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
254
+ <polygon fill='none' filter='url(#shadow)' points='880.677,-593.358 871.271,-598.235 881.665,-600.288 880.677,-593.358' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='880.677,-593.358 871.271,-598.235 881.665,-600.288 880.677,-593.358' stroke='black' style='fill:url(#none);stroke:black;'/>
255
+ </g><g class='node' id='node58'><title>yuml_attachment</title>
256
+ <polygon fill='skyblue' filter='url(#shadow)' points='1513,-271.5 1513,-316.5 1605,-316.5 1605,-271.5 1513,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1513,-271.5 1513,-316.5 1605,-316.5 1605,-271.5 1513,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
257
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1559' y='-305.3'>Attachment</text>
258
+ <polyline fill='none' filter='url(#shadow)' points='1513,-301.5 1605,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1513,-301.5 1605,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
259
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1559' y='-290.3'> </text>
260
+ <polyline fill='none' filter='url(#shadow)' points='1513,-286.5 1605,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1513,-286.5 1605,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
261
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1559' y='-275.3'> </text>
262
+ </g><g class='edge' id='edge19'><title>yuml_graphqueryableinstance-&gt;yuml_attachment</title>
263
+ <path d='M881.319,-599.804C1052.75,-580.981 1411.21,-532.882 1503,-452 1543.06,-416.701 1554.46,-350.735 1557.71,-316.639' fill='none' stroke='black'/><path d='M881.319,-599.804C1052.75,-580.981 1411.21,-532.882 1503,-452 1543.06,-416.701 1554.46,-350.735 1557.71,-316.639' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
264
+ <polygon fill='none' filter='url(#shadow)' points='880.863,-596.333 871.301,-600.894 881.62,-603.291 880.863,-596.333' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='880.863,-596.333 871.301,-600.894 881.62,-603.291 880.863,-596.333' stroke='black' style='fill:url(#none);stroke:black;'/>
265
+ </g><g class='node' id='node10'><title>yuml_graphqueryablecollection</title>
266
+ <polygon fill='skyblue' filter='url(#shadow)' points='2244.5,-542.5 2244.5,-677.5 2419.5,-677.5 2419.5,-542.5 2244.5,-542.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2244.5,-542.5 2244.5,-677.5 2419.5,-677.5 2419.5,-542.5 2244.5,-542.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
267
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-666.3'>GraphQueryableCollection</text>
268
+ <polyline fill='none' filter='url(#shadow)' points='2244.5,-662.5 2419.5,-662.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2244.5,-662.5 2419.5,-662.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
269
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-651.3'>count</text>
270
+ <polyline fill='none' filter='url(#shadow)' points='2244.5,-647.5 2419.5,-647.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2244.5,-647.5 2419.5,-647.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
271
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-636.3'>filter()</text>
272
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-621.3'>select()</text>
273
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-606.3'>expand()</text>
274
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-591.3'>orderBy()</text>
275
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-576.3'>top()</text>
276
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-561.3'>skip()</text>
277
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-546.3'>skipToken()</text>
278
+ </g><g class='node' id='node11'><title>yuml_users</title>
279
+ <polygon fill='skyblue' filter='url(#shadow)' points='1623.5,-271.5 1623.5,-316.5 1704.5,-316.5 1704.5,-271.5 1623.5,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1623.5,-271.5 1623.5,-316.5 1704.5,-316.5 1704.5,-271.5 1623.5,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
280
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1664' y='-305.3'>Users</text>
281
+ <polyline fill='none' filter='url(#shadow)' points='1623.5,-301.5 1704.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1623.5,-301.5 1704.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
282
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1664' y='-290.3'> </text>
283
+ <polyline fill='none' filter='url(#shadow)' points='1623.5,-286.5 1704.5,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1623.5,-286.5 1704.5,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
284
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1664' y='-275.3'>getById()</text>
285
+ </g><g class='edge' id='edge20'><title>yuml_graphqueryablecollection-&gt;yuml_users</title>
286
+ <path d='M2234.44,-595.99C2079.67,-573.479 1787.72,-522.784 1713,-452 1674.86,-415.868 1666.23,-350.57 1664.4,-316.697' fill='none' stroke='black'/><path d='M2234.44,-595.99C2079.67,-573.479 1787.72,-522.784 1713,-452 1674.86,-415.868 1666.23,-350.57 1664.4,-316.697' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
287
+ <polygon fill='none' filter='url(#shadow)' points='2234.04,-599.468 2244.43,-597.432 2235.03,-592.54 2234.04,-599.468' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2234.04,-599.468 2244.43,-597.432 2235.03,-592.54 2234.04,-599.468' stroke='black' style='fill:url(#none);stroke:black;'/>
288
+ </g><g class='node' id='node21'><title>yuml_plans</title>
289
+ <polygon fill='skyblue' filter='url(#shadow)' points='1722.5,-271.5 1722.5,-316.5 1803.5,-316.5 1803.5,-271.5 1722.5,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1722.5,-271.5 1722.5,-316.5 1803.5,-316.5 1803.5,-271.5 1722.5,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
290
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1763' y='-305.3'>Plans</text>
291
+ <polyline fill='none' filter='url(#shadow)' points='1722.5,-301.5 1803.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1722.5,-301.5 1803.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
292
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1763' y='-290.3'> </text>
293
+ <polyline fill='none' filter='url(#shadow)' points='1722.5,-286.5 1803.5,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1722.5,-286.5 1803.5,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
294
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1763' y='-275.3'>getById()</text>
295
+ </g><g class='edge' id='edge21'><title>yuml_graphqueryablecollection-&gt;yuml_plans</title>
296
+ <path d='M2233.97,-605.761C2118.16,-596.659 1926.9,-564.249 1813,-452 1775.51,-415.054 1766.08,-350.111 1763.74,-316.504' fill='none' stroke='black'/><path d='M2233.97,-605.761C2118.16,-596.659 1926.9,-564.249 1813,-452 1775.51,-415.054 1766.08,-350.111 1763.74,-316.504' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
297
+ <polygon fill='none' filter='url(#shadow)' points='2234.01,-609.274 2244.24,-606.523 2234.53,-602.293 2234.01,-609.274' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2234.01,-609.274 2244.24,-606.523 2234.53,-602.293 2234.01,-609.274' stroke='black' style='fill:url(#none);stroke:black;'/>
298
+ </g><g class='node' id='node23'><title>yuml_pages</title>
299
+ <polygon fill='skyblue' filter='url(#shadow)' points='1822,-271.5 1822,-316.5 1882,-316.5 1882,-271.5 1822,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1822,-271.5 1822,-316.5 1882,-316.5 1882,-271.5 1822,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
300
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1852' y='-305.3'>Pages</text>
301
+ <polyline fill='none' filter='url(#shadow)' points='1822,-301.5 1882,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1822,-301.5 1882,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
302
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1852' y='-290.3'> </text>
303
+ <polyline fill='none' filter='url(#shadow)' points='1822,-286.5 1882,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1822,-286.5 1882,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
304
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1852' y='-275.3'> </text>
305
+ </g><g class='edge' id='edge22'><title>yuml_graphqueryablecollection-&gt;yuml_pages</title>
306
+ <path d='M2234.28,-600.676C2133.77,-586.824 1979.76,-549.967 1891,-452 1856.49,-413.912 1851.39,-350.051 1851.29,-316.727' fill='none' stroke='black'/><path d='M2234.28,-600.676C2133.77,-586.824 1979.76,-549.967 1891,-452 1856.49,-413.912 1851.39,-350.051 1851.29,-316.727' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
307
+ <polygon fill='none' filter='url(#shadow)' points='2234.06,-604.179 2244.44,-602.024 2234.98,-597.24 2234.06,-604.179' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2234.06,-604.179 2244.44,-602.024 2234.98,-597.24 2234.06,-604.179' stroke='black' style='fill:url(#none);stroke:black;'/>
308
+ </g><g class='node' id='node25'><title>yuml_sections</title>
309
+ <polygon fill='skyblue' filter='url(#shadow)' points='1900.5,-264 1900.5,-324 1981.5,-324 1981.5,-264 1900.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1900.5,-264 1900.5,-324 1981.5,-324 1981.5,-264 1900.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
310
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1941' y='-312.8'>Sections</text>
311
+ <polyline fill='none' filter='url(#shadow)' points='1900.5,-309 1981.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1900.5,-309 1981.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
312
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1941' y='-297.8'> </text>
313
+ <polyline fill='none' filter='url(#shadow)' points='1900.5,-294 1981.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1900.5,-294 1981.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
314
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1941' y='-282.8'>getById()</text>
315
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1941' y='-267.8'>add()</text>
316
+ </g><g class='edge' id='edge23'><title>yuml_graphqueryablecollection-&gt;yuml_sections</title>
317
+ <path d='M2234.73,-587.478C2158.08,-565.687 2053.83,-524.562 1990,-452 1958.03,-415.661 1946.92,-358.616 1943.05,-324.214' fill='none' stroke='black'/><path d='M2234.73,-587.478C2158.08,-565.687 2053.83,-524.562 1990,-452 1958.03,-415.661 1946.92,-358.616 1943.05,-324.214' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
318
+ <polygon fill='none' filter='url(#shadow)' points='2233.84,-590.862 2244.41,-590.169 2235.71,-584.118 2233.84,-590.862' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2233.84,-590.862 2244.41,-590.169 2235.71,-584.118 2233.84,-590.862' stroke='black' style='fill:url(#none);stroke:black;'/>
319
+ </g><g class='node' id='node27'><title>yuml_notebooks</title>
320
+ <polygon fill='skyblue' filter='url(#shadow)' points='1999.5,-264 1999.5,-324 2086.5,-324 2086.5,-264 1999.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1999.5,-264 1999.5,-324 2086.5,-324 2086.5,-264 1999.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
321
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2043' y='-312.8'>Notebooks</text>
322
+ <polyline fill='none' filter='url(#shadow)' points='1999.5,-309 2086.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1999.5,-309 2086.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
323
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2043' y='-297.8'> </text>
324
+ <polyline fill='none' filter='url(#shadow)' points='1999.5,-294 2086.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1999.5,-294 2086.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
325
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2043' y='-282.8'>getById()</text>
326
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2043' y='-267.8'>add()</text>
327
+ </g><g class='edge' id='edge24'><title>yuml_graphqueryablecollection-&gt;yuml_notebooks</title>
328
+ <path d='M2235.41,-564.398C2187.25,-537.824 2131.62,-499.891 2095,-452 2065.61,-413.566 2052.38,-357.709 2046.77,-324.016' fill='none' stroke='black'/><path d='M2235.41,-564.398C2187.25,-537.824 2131.62,-499.891 2095,-452 2065.61,-413.566 2052.38,-357.709 2046.77,-324.016' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
329
+ <polygon fill='none' filter='url(#shadow)' points='2233.85,-567.534 2244.31,-569.228 2237.19,-561.382 2233.85,-567.534' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2233.85,-567.534 2244.31,-569.228 2237.19,-561.382 2233.85,-567.534' stroke='black' style='fill:url(#none);stroke:black;'/>
330
+ </g><g class='node' id='node32'><title>yuml_members</title>
331
+ <polygon fill='skyblue' filter='url(#shadow)' points='2104.5,-264 2104.5,-324 2185.5,-324 2185.5,-264 2104.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2104.5,-264 2104.5,-324 2185.5,-324 2185.5,-264 2104.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
332
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-312.8'>Members</text>
333
+ <polyline fill='none' filter='url(#shadow)' points='2104.5,-309 2185.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2104.5,-309 2185.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
334
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-297.8'> </text>
335
+ <polyline fill='none' filter='url(#shadow)' points='2104.5,-294 2185.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2104.5,-294 2185.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
336
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-282.8'>add()</text>
337
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-267.8'>getById()</text>
338
+ </g><g class='edge' id='edge25'><title>yuml_graphqueryablecollection-&gt;yuml_members</title>
339
+ <path d='M2255.43,-534.806C2233.21,-510.123 2210.51,-481.39 2194,-452 2170.79,-410.675 2157.07,-356.929 2150.3,-324.247' fill='none' stroke='black'/><path d='M2255.43,-534.806C2233.21,-510.123 2210.51,-481.39 2194,-452 2170.79,-410.675 2157.07,-356.929 2150.3,-324.247' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
340
+ <polygon fill='none' filter='url(#shadow)' points='2252.97,-537.308 2262.3,-542.332 2258.14,-532.588 2252.97,-537.308' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2252.97,-537.308 2262.3,-542.332 2258.14,-532.588 2252.97,-537.308' stroke='black' style='fill:url(#none);stroke:black;'/>
341
+ </g><g class='node' id='node37'><title>yuml_groups</title>
342
+ <polygon fill='skyblue' filter='url(#shadow)' points='2203.5,-264 2203.5,-324 2284.5,-324 2284.5,-264 2203.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2203.5,-264 2203.5,-324 2284.5,-324 2284.5,-264 2203.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
343
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2244' y='-312.8'>Groups</text>
344
+ <polyline fill='none' filter='url(#shadow)' points='2203.5,-309 2284.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2203.5,-309 2284.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
345
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2244' y='-297.8'> </text>
346
+ <polyline fill='none' filter='url(#shadow)' points='2203.5,-294 2284.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2203.5,-294 2284.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
347
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2244' y='-282.8'>getById()</text>
348
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2244' y='-267.8'>add()</text>
349
+ </g><g class='edge' id='edge26'><title>yuml_graphqueryablecollection-&gt;yuml_groups</title>
350
+ <path d='M2310.62,-532.701C2291.79,-465.514 2265.37,-371.245 2252.17,-324.162' fill='none' stroke='black'/><path d='M2310.62,-532.701C2291.79,-465.514 2265.37,-371.245 2252.17,-324.162' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
351
+ <polygon fill='none' filter='url(#shadow)' points='2307.27,-533.724 2313.34,-542.409 2314.01,-531.835 2307.27,-533.724' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2307.27,-533.724 2313.34,-542.409 2314.01,-531.835 2307.27,-533.724' stroke='black' style='fill:url(#none);stroke:black;'/>
352
+ </g><g class='node' id='node39'><title>yuml_graphqueryablesearchablecollection</title>
353
+ <polygon fill='skyblue' filter='url(#shadow)' points='2303,-271.5 2303,-316.5 2537,-316.5 2537,-271.5 2303,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2303,-271.5 2303,-316.5 2537,-316.5 2537,-271.5 2303,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
354
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2420' y='-305.3'>GraphQueryableSearchableCollection</text>
355
+ <polyline fill='none' filter='url(#shadow)' points='2303,-301.5 2537,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2303,-301.5 2537,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
356
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2420' y='-290.3'> </text>
357
+ <polyline fill='none' filter='url(#shadow)' points='2303,-286.5 2537,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2303,-286.5 2537,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
358
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2420' y='-275.3'>search()</text>
359
+ </g><g class='edge' id='edge27'><title>yuml_graphqueryablecollection-&gt;yuml_graphqueryablesearchablecollection</title>
360
+ <path d='M2353.41,-532.607C2373.29,-461.665 2401.62,-360.591 2413.91,-316.714' fill='none' stroke='black'/><path d='M2353.41,-532.607C2373.29,-461.665 2401.62,-360.591 2413.91,-316.714' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
361
+ <polygon fill='none' filter='url(#shadow)' points='2349.99,-531.835 2350.66,-542.409 2356.73,-533.724 2349.99,-531.835' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2349.99,-531.835 2350.66,-542.409 2356.73,-533.724 2349.99,-531.835' stroke='black' style='fill:url(#none);stroke:black;'/>
362
+ </g><g class='node' id='node42'><title>yuml_senders</title>
363
+ <polygon fill='skyblue' filter='url(#shadow)' points='2555.5,-264 2555.5,-324 2634.5,-324 2634.5,-264 2555.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2555.5,-264 2555.5,-324 2634.5,-324 2634.5,-264 2555.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
364
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2595' y='-312.8'>Senders</text>
365
+ <polyline fill='none' filter='url(#shadow)' points='2555.5,-309 2634.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2555.5,-309 2634.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
366
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2595' y='-297.8'> </text>
367
+ <polyline fill='none' filter='url(#shadow)' points='2555.5,-294 2634.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2555.5,-294 2634.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
368
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2595' y='-282.8'>add()</text>
369
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2595' y='-267.8'>remove()</text>
370
+ </g><g class='edge' id='edge28'><title>yuml_graphqueryablecollection-&gt;yuml_senders</title>
371
+ <path d='M2428.12,-542.638C2480.8,-505.544 2537.18,-464.347 2546,-452 2573.88,-412.963 2586.27,-357.548 2591.49,-324.063' fill='none' stroke='black'/><path d='M2428.12,-542.638C2480.8,-505.544 2537.18,-464.347 2546,-452 2573.88,-412.963 2586.27,-357.548 2591.49,-324.063' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
372
+ <polygon fill='none' filter='url(#shadow)' points='2425.88,-539.938 2419.71,-548.551 2429.9,-545.665 2425.88,-539.938' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2425.88,-539.938 2419.71,-548.551 2429.9,-545.665 2425.88,-539.938' stroke='black' style='fill:url(#none);stroke:black;'/>
373
+ </g><g class='node' id='node46'><title>yuml_posts</title>
374
+ <polygon fill='skyblue' filter='url(#shadow)' points='2652.5,-264 2652.5,-324 2733.5,-324 2733.5,-264 2652.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2652.5,-264 2652.5,-324 2733.5,-324 2733.5,-264 2652.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
375
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2693' y='-312.8'>Posts</text>
376
+ <polyline fill='none' filter='url(#shadow)' points='2652.5,-309 2733.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2652.5,-309 2733.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
377
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2693' y='-297.8'> </text>
378
+ <polyline fill='none' filter='url(#shadow)' points='2652.5,-294 2733.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2652.5,-294 2733.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
379
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2693' y='-282.8'>getById()</text>
380
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2693' y='-267.8'>add()</text>
381
+ </g><g class='edge' id='edge29'><title>yuml_graphqueryablecollection-&gt;yuml_posts</title>
382
+ <path d='M2428.41,-542.324C2428.61,-542.215 2428.8,-542.108 2429,-542 2519.49,-492.416 2573.39,-528.16 2643,-452 2675.81,-416.105 2687.09,-358.649 2690.97,-324.097' fill='none' stroke='black'/><path d='M2428.41,-542.324C2428.61,-542.215 2428.8,-542.108 2429,-542 2519.49,-492.416 2573.39,-528.16 2643,-452 2675.81,-416.105 2687.09,-358.649 2690.97,-324.097' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
383
+ <polygon fill='none' filter='url(#shadow)' points='2426.49,-539.392 2419.52,-547.378 2429.95,-545.477 2426.49,-539.392' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2426.49,-539.392 2419.52,-547.378 2429.95,-545.477 2426.49,-539.392' stroke='black' style='fill:url(#none);stroke:black;'/>
384
+ </g><g class='node' id='node47'><title>yuml_threads</title>
385
+ <polygon fill='skyblue' filter='url(#shadow)' points='2751.5,-264 2751.5,-324 2832.5,-324 2832.5,-264 2751.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2751.5,-264 2751.5,-324 2832.5,-324 2832.5,-264 2751.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
386
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2792' y='-312.8'>Threads</text>
387
+ <polyline fill='none' filter='url(#shadow)' points='2751.5,-309 2832.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2751.5,-309 2832.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
388
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2792' y='-297.8'> </text>
389
+ <polyline fill='none' filter='url(#shadow)' points='2751.5,-294 2832.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2751.5,-294 2832.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
390
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2792' y='-282.8'>getById()</text>
391
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2792' y='-267.8'>add()</text>
392
+ </g><g class='edge' id='edge30'><title>yuml_graphqueryablecollection-&gt;yuml_threads</title>
393
+ <path d='M2428.71,-542.14C2428.8,-542.093 2428.9,-542.047 2429,-542 2559.82,-480.054 2638.21,-552.892 2742,-452 2777.08,-417.905 2787.6,-359.308 2790.72,-324.155' fill='none' stroke='black'/><path d='M2428.71,-542.14C2428.8,-542.093 2428.9,-542.047 2429,-542 2559.82,-480.054 2638.21,-552.892 2742,-452 2777.08,-417.905 2787.6,-359.308 2790.72,-324.155' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
394
+ <polygon fill='none' filter='url(#shadow)' points='2426.91,-539.123 2419.55,-546.741 2430.06,-545.377 2426.91,-539.123' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2426.91,-539.123 2419.55,-546.741 2430.06,-545.377 2426.91,-539.123' stroke='black' style='fill:url(#none);stroke:black;'/>
395
+ </g><g class='node' id='node48'><title>yuml_conversations</title>
396
+ <polygon fill='skyblue' filter='url(#shadow)' points='2851,-264 2851,-324 2957,-324 2957,-264 2851,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2851,-264 2851,-324 2957,-324 2957,-264 2851,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
397
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2904' y='-312.8'>Conversations</text>
398
+ <polyline fill='none' filter='url(#shadow)' points='2851,-309 2957,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2851,-309 2957,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
399
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2904' y='-297.8'> </text>
400
+ <polyline fill='none' filter='url(#shadow)' points='2851,-294 2957,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2851,-294 2957,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
401
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2904' y='-282.8'>add()</text>
402
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2904' y='-267.8'>getById()</text>
403
+ </g><g class='edge' id='edge31'><title>yuml_graphqueryablecollection-&gt;yuml_conversations</title>
404
+ <path d='M2428.71,-542.126C2428.81,-542.084 2428.9,-542.042 2429,-542 2600.91,-467.329 2697.9,-573.05 2841,-452 2879.57,-419.375 2894.75,-359.717 2900.56,-324.08' fill='none' stroke='black'/><path d='M2428.71,-542.126C2428.81,-542.084 2428.9,-542.042 2429,-542 2600.91,-467.329 2697.9,-573.05 2841,-452 2879.57,-419.375 2894.75,-359.717 2900.56,-324.08' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
405
+ <polygon fill='none' filter='url(#shadow)' points='2427.29,-538.927 2419.71,-546.332 2430.25,-545.269 2427.29,-538.927' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2427.29,-538.927 2419.71,-546.332 2430.25,-545.269 2427.29,-538.927' stroke='black' style='fill:url(#none);stroke:black;'/>
406
+ </g><g class='node' id='node51'><title>yuml_events</title>
407
+ <polygon fill='skyblue' filter='url(#shadow)' points='2975.5,-264 2975.5,-324 3056.5,-324 3056.5,-264 2975.5,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2975.5,-264 2975.5,-324 3056.5,-324 3056.5,-264 2975.5,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
408
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3016' y='-312.8'>Events</text>
409
+ <polyline fill='none' filter='url(#shadow)' points='2975.5,-309 3056.5,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2975.5,-309 3056.5,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
410
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3016' y='-297.8'> </text>
411
+ <polyline fill='none' filter='url(#shadow)' points='2975.5,-294 3056.5,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2975.5,-294 3056.5,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
412
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3016' y='-282.8'>getById()</text>
413
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3016' y='-267.8'>add()</text>
414
+ </g><g class='edge' id='edge32'><title>yuml_graphqueryablecollection-&gt;yuml_events</title>
415
+ <path d='M2428.71,-542.119C2428.8,-542.079 2428.9,-542.04 2429,-542 2652.84,-451.188 2782.05,-609.736 2965,-452 3002.33,-419.812 3012.52,-360.004 3015.19,-324.221' fill='none' stroke='black'/><path d='M2428.71,-542.119C2428.8,-542.079 2428.9,-542.04 2429,-542 2652.84,-451.188 2782.05,-609.736 2965,-452 3002.33,-419.812 3012.52,-360.004 3015.19,-324.221' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
416
+ <polygon fill='none' filter='url(#shadow)' points='2427.36,-538.889 2419.63,-546.133 2430.19,-545.291 2427.36,-538.889' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2427.36,-538.889 2419.63,-546.133 2430.19,-545.291 2427.36,-538.889' stroke='black' style='fill:url(#none);stroke:black;'/>
417
+ </g><g class='node' id='node53'><title>yuml_calendars</title>
418
+ <polygon fill='skyblue' filter='url(#shadow)' points='3074.5,-271.5 3074.5,-316.5 3157.5,-316.5 3157.5,-271.5 3074.5,-271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3074.5,-271.5 3074.5,-316.5 3157.5,-316.5 3157.5,-271.5 3074.5,-271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
419
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3116' y='-305.3'>Calendars</text>
420
+ <polyline fill='none' filter='url(#shadow)' points='3074.5,-301.5 3157.5,-301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3074.5,-301.5 3157.5,-301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
421
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3116' y='-290.3'> </text>
422
+ <polyline fill='none' filter='url(#shadow)' points='3074.5,-286.5 3157.5,-286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3074.5,-286.5 3157.5,-286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
423
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3116' y='-275.3'> </text>
424
+ </g><g class='edge' id='edge33'><title>yuml_graphqueryablecollection-&gt;yuml_calendars</title>
425
+ <path d='M2428.71,-542.116C2428.8,-542.077 2428.9,-542.038 2429,-542 2694.9,-438.094 2846.4,-635.616 3065,-452 3105.6,-417.899 3114.15,-351.094 3115.78,-316.661' fill='none' stroke='black'/><path d='M2428.71,-542.116C2428.8,-542.077 2428.9,-542.038 2429,-542 2694.9,-438.094 2846.4,-635.616 3065,-452 3105.6,-417.899 3114.15,-351.094 3115.78,-316.661' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
426
+ <polygon fill='none' filter='url(#shadow)' points='2427.4,-538.869 2419.58,-546.027 2430.15,-545.302 2427.4,-538.869' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2427.4,-538.869 2419.58,-546.027 2430.15,-545.302 2427.4,-538.869' stroke='black' style='fill:url(#none);stroke:black;'/>
427
+ </g><g class='node' id='node59'><title>yuml_attachments</title>
428
+ <polygon fill='skyblue' filter='url(#shadow)' points='3176,-264 3176,-324 3274,-324 3274,-264 3176,-264' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3176,-264 3176,-324 3274,-324 3274,-264 3176,-264' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
429
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3225' y='-312.8'>Attachments</text>
430
+ <polyline fill='none' filter='url(#shadow)' points='3176,-309 3274,-309 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3176,-309 3274,-309 ' stroke='black' style='fill:url(#none);stroke:black;'/>
431
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3225' y='-297.8'> </text>
432
+ <polyline fill='none' filter='url(#shadow)' points='3176,-294 3274,-294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3176,-294 3274,-294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
433
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3225' y='-282.8'>getById()</text>
434
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3225' y='-267.8'>addFile()</text>
435
+ </g><g class='edge' id='edge34'><title>yuml_graphqueryablecollection-&gt;yuml_attachments</title>
436
+ <path d='M2428.7,-542.113C2428.8,-542.075 2428.9,-542.037 2429,-542 2737.49,-424.829 2906.62,-655.992 3166,-452 3205.48,-420.95 3218.54,-360.46 3222.87,-324.303' fill='none' stroke='black'/><path d='M2428.7,-542.113C2428.8,-542.075 2428.9,-542.037 2429,-542 2737.49,-424.829 2906.62,-655.992 3166,-452 3205.48,-420.95 3218.54,-360.46 3222.87,-324.303' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
437
+ <polygon fill='none' filter='url(#shadow)' points='2427.42,-538.854 2419.55,-545.948 2430.13,-545.31 2427.42,-538.854' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2427.42,-538.854 2419.55,-545.948 2430.13,-545.31 2427.42,-538.854' stroke='black' style='fill:url(#none);stroke:black;'/>
438
+ </g><g class='node' id='node12'><title>yuml_teamproperties</title>
439
+ <polygon fill='palegreen' filter='url(#shadow)' points='2410,-981 2410,-1071 2540,-1071 2540,-981 2410,-981' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='2410,-981 2410,-1071 2540,-1071 2540,-981 2410,-981' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
440
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2475' y='-1059.8'>TeamProperties</text>
441
+ <polyline fill='none' filter='url(#shadow)' points='2410,-1056 2540,-1056 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2410,-1056 2540,-1056 ' stroke='black' style='fill:url(#none);stroke:black;'/>
442
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2475' y='-1044.8'>memberSettings</text>
443
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2475' y='-1029.8'>guestSettings</text>
444
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2475' y='-1014.8'>messagingSettings</text>
445
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2475' y='-999.8'>funSettings</text>
446
+ <polyline fill='none' filter='url(#shadow)' points='2410,-996 2540,-996 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2410,-996 2540,-996 ' stroke='black' style='fill:url(#none);stroke:black;'/>
447
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2475' y='-984.8'> </text>
448
+ </g><g class='node' id='node13'><title>yuml_graphendpoints</title>
449
+ <polygon fill='skyblue' filter='url(#shadow)' points='2558.5,-996 2558.5,-1056 2675.5,-1056 2675.5,-996 2558.5,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2558.5,-996 2558.5,-1056 2675.5,-1056 2675.5,-996 2558.5,-996' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
450
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2617' y='-1044.8'>GraphEndpoints</text>
451
+ <polyline fill='none' filter='url(#shadow)' points='2558.5,-1041 2675.5,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2558.5,-1041 2675.5,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
452
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2617' y='-1029.8'>Beta</text>
453
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2617' y='-1014.8'>V1</text>
454
+ <polyline fill='none' filter='url(#shadow)' points='2558.5,-1011 2675.5,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2558.5,-1011 2675.5,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
455
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2617' y='-999.8'>ensure()</text>
456
+ </g><g class='node' id='node15'><title>yuml_teamcreateresult</title>
457
+ <polygon fill='palegreen' filter='url(#shadow)' points='2694,-988.5 2694,-1063.5 2824,-1063.5 2824,-988.5 2694,-988.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='2694,-988.5 2694,-1063.5 2824,-1063.5 2824,-988.5 2694,-988.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
458
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2759' y='-1052.3'>TeamCreateResult</text>
459
+ <polyline fill='none' filter='url(#shadow)' points='2694,-1048.5 2824,-1048.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2694,-1048.5 2824,-1048.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
460
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2759' y='-1037.3'>data</text>
461
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2759' y='-1022.3'>group</text>
462
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2759' y='-1007.3'>team</text>
463
+ <polyline fill='none' filter='url(#shadow)' points='2694,-1003.5 2824,-1003.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2694,-1003.5 2824,-1003.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
464
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2759' y='-992.3'> </text>
465
+ </g><g class='node' id='node16'><title>yuml_teamupdateresult</title>
466
+ <polygon fill='palegreen' filter='url(#shadow)' points='2842,-996 2842,-1056 2976,-1056 2976,-996 2842,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='2842,-996 2842,-1056 2976,-1056 2976,-996 2842,-996' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
467
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2909' y='-1044.8'>TeamUpdateResult</text>
468
+ <polyline fill='none' filter='url(#shadow)' points='2842,-1041 2976,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2842,-1041 2976,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
469
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2909' y='-1029.8'>data</text>
470
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2909' y='-1014.8'>team</text>
471
+ <polyline fill='none' filter='url(#shadow)' points='2842,-1011 2976,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2842,-1011 2976,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
472
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2909' y='-999.8'> </text>
473
+ </g><g class='node' id='node17'><title>yuml_teams</title>
474
+ <polygon fill='skyblue' filter='url(#shadow)' points='2994,-1003.5 2994,-1048.5 3064,-1048.5 3064,-1003.5 2994,-1003.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2994,-1003.5 2994,-1048.5 3064,-1048.5 3064,-1003.5 2994,-1003.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
475
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3029' y='-1037.3'>Teams</text>
476
+ <polyline fill='none' filter='url(#shadow)' points='2994,-1033.5 3064,-1033.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2994,-1033.5 3064,-1033.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
477
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3029' y='-1022.3'> </text>
478
+ <polyline fill='none' filter='url(#shadow)' points='2994,-1018.5 3064,-1018.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2994,-1018.5 3064,-1018.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
479
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3029' y='-1007.3'>create()</text>
480
+ </g><g class='node' id='node18'><title>yuml_graphqueryable</title>
481
+ <polygon fill='skyblue' filter='url(#shadow)' points='2265,-769 2265,-889 2399,-889 2399,-769 2265,-769' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2265,-769 2265,-889 2399,-889 2399,-769 2265,-769' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
482
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-877.8'>GraphQueryable</text>
483
+ <polyline fill='none' filter='url(#shadow)' points='2265,-874 2399,-874 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2265,-874 2399,-874 ' stroke='black' style='fill:url(#none);stroke:black;'/>
484
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-862.8'> </text>
485
+ <polyline fill='none' filter='url(#shadow)' points='2265,-859 2399,-859 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2265,-859 2399,-859 ' stroke='black' style='fill:url(#none);stroke:black;'/>
486
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-847.8'>as()</text>
487
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-832.8'>toUrlAndQuery()</text>
488
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-817.8'>getParent()</text>
489
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-802.8'>clone()</text>
490
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-787.8'>setEndpoint()</text>
491
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-772.8'>toRequestContext()</text>
492
+ </g><g class='edge' id='edge36'><title>yuml_graphqueryable-&gt;yuml_graphqueryableinstance</title>
493
+ <path d='M2254.52,-817.104C1992.42,-780.243 1140.35,-660.412 871.238,-622.566' fill='none' stroke='black'/><path d='M2254.52,-817.104C1992.42,-780.243 1140.35,-660.412 871.238,-622.566' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
494
+ <polygon fill='none' filter='url(#shadow)' points='2254.32,-820.609 2264.71,-818.536 2255.29,-813.678 2254.32,-820.609' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2254.32,-820.609 2264.71,-818.536 2255.29,-813.678 2254.32,-820.609' stroke='black' style='fill:url(#none);stroke:black;'/>
495
+ </g><g class='edge' id='edge37'><title>yuml_graphqueryable-&gt;yuml_graphqueryablecollection</title>
496
+ <path d='M2332,-758.845C2332,-732.865 2332,-703.404 2332,-677.655' fill='none' stroke='black'/><path d='M2332,-758.845C2332,-732.865 2332,-703.404 2332,-677.655' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
497
+ <polygon fill='none' filter='url(#shadow)' points='2328.5,-758.99 2332,-768.99 2335.5,-758.99 2328.5,-758.99' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2328.5,-758.99 2332,-768.99 2335.5,-758.99 2328.5,-758.99' stroke='black' style='fill:url(#none);stroke:black;'/>
498
+ </g><g class='node' id='node19'><title>yuml_graphrest</title>
499
+ <polygon fill='skyblue' filter='url(#shadow)' points='2438,-565 2438,-655 2524,-655 2524,-565 2438,-565' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2438,-565 2438,-655 2524,-655 2524,-565 2438,-565' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
500
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2481' y='-643.8'>GraphRest</text>
501
+ <polyline fill='none' filter='url(#shadow)' points='2438,-640 2524,-640 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2438,-640 2524,-640 ' stroke='black' style='fill:url(#none);stroke:black;'/>
502
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2481' y='-628.8'>groups</text>
503
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2481' y='-613.8'>teams</text>
504
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2481' y='-598.8'>me</text>
505
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2481' y='-583.8'>users</text>
506
+ <polyline fill='none' filter='url(#shadow)' points='2438,-580 2524,-580 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2438,-580 2524,-580 ' stroke='black' style='fill:url(#none);stroke:black;'/>
507
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2481' y='-568.8'>setup()</text>
508
+ </g><g class='edge' id='edge35'><title>yuml_graphqueryable-&gt;yuml_graphrest</title>
509
+ <path d='M2378.4,-760.42C2401.95,-726.126 2429.89,-685.442 2450.66,-655.192' fill='none' stroke='black'/><path d='M2378.4,-760.42C2401.95,-726.126 2429.89,-685.442 2450.66,-655.192' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
510
+ <polygon fill='none' filter='url(#shadow)' points='2375.29,-758.765 2372.52,-768.99 2381.06,-762.728 2375.29,-758.765' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2375.29,-758.765 2372.52,-768.99 2381.06,-762.728 2375.29,-758.765' stroke='black' style='fill:url(#none);stroke:black;'/>
511
+ </g><g class='node' id='node28'><title>yuml_onenotemethods</title>
512
+ <polygon fill='palegreen' filter='url(#shadow)' points='-0.5,-572.5 -0.5,-647.5 124.5,-647.5 124.5,-572.5 -0.5,-572.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='-0.5,-572.5 -0.5,-647.5 124.5,-647.5 124.5,-572.5 -0.5,-572.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
513
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-636.3'>OneNoteMethods</text>
514
+ <polyline fill='none' filter='url(#shadow)' points='-0.5,-632.5 124.5,-632.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='-0.5,-632.5 124.5,-632.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
515
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-621.3'>notebooks</text>
516
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-606.3'>sections</text>
517
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-591.3'>pages</text>
518
+ <polyline fill='none' filter='url(#shadow)' points='-0.5,-587.5 124.5,-587.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='-0.5,-587.5 124.5,-587.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
519
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='62' y='-576.3'> </text>
520
+ </g><g class='edge' id='edge38'><title>yuml_onenotemethods-&gt;yuml_onenote</title>
521
+ <path d='M62,-562.342C62,-499.57 62,-389.203 62,-331.886' fill='none' stroke='black'/><path d='M62,-562.342C62,-499.57 62,-389.203 62,-331.886' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
522
+ <polygon fill='none' filter='url(#shadow)' points='58.5001,-562.366 62,-572.366 65.5001,-562.366 58.5001,-562.366' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='58.5001,-562.366 62,-572.366 65.5001,-562.366 58.5001,-562.366' stroke='black' style='fill:url(#none);stroke:black;'/>
523
+ </g><g class='node' id='node30'><title>yuml_sectionaddresult</title>
524
+ <polygon fill='palegreen' filter='url(#shadow)' points='3082.5,-996 3082.5,-1056 3209.5,-1056 3209.5,-996 3082.5,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='3082.5,-996 3082.5,-1056 3209.5,-1056 3209.5,-996 3082.5,-996' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
525
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3146' y='-1044.8'>SectionAddResult</text>
526
+ <polyline fill='none' filter='url(#shadow)' points='3082.5,-1041 3209.5,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3082.5,-1041 3209.5,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
527
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3146' y='-1029.8'>data</text>
528
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3146' y='-1014.8'>section</text>
529
+ <polyline fill='none' filter='url(#shadow)' points='3082.5,-1011 3209.5,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3082.5,-1011 3209.5,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
530
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3146' y='-999.8'> </text>
531
+ </g><g class='node' id='node31'><title>yuml_notebookaddresult</title>
532
+ <polygon fill='palegreen' filter='url(#shadow)' points='3228,-996 3228,-1056 3368,-1056 3368,-996 3228,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='3228,-996 3228,-1056 3368,-1056 3368,-996 3228,-996' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
533
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3298' y='-1044.8'>NotebookAddResult</text>
534
+ <polyline fill='none' filter='url(#shadow)' points='3228,-1041 3368,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3228,-1041 3368,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
535
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3298' y='-1029.8'>data</text>
536
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3298' y='-1014.8'>notebook</text>
537
+ <polyline fill='none' filter='url(#shadow)' points='3228,-1011 3368,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3228,-1011 3368,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
538
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3298' y='-999.8'> </text>
539
+ </g><g class='node' id='node33'><title>yuml_owners</title>
540
+ <polygon fill='skyblue' filter='url(#shadow)' points='2109.5,-0.5 2109.5,-45.5 2180.5,-45.5 2180.5,-0.5 2109.5,-0.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2109.5,-0.5 2109.5,-45.5 2180.5,-45.5 2180.5,-0.5 2109.5,-0.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
541
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-34.3'>Owners</text>
542
+ <polyline fill='none' filter='url(#shadow)' points='2109.5,-30.5 2180.5,-30.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2109.5,-30.5 2180.5,-30.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
543
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-19.3'> </text>
544
+ <polyline fill='none' filter='url(#shadow)' points='2109.5,-15.5 2180.5,-15.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2109.5,-15.5 2180.5,-15.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
545
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2145' y='-4.3'> </text>
546
+ </g><g class='edge' id='edge39'><title>yuml_members-&gt;yuml_owners</title>
547
+ <path d='M2145,-253.797C2145,-196.267 2145,-90.9058 2145,-45.6224' fill='none' stroke='black'/><path d='M2145,-253.797C2145,-196.267 2145,-90.9058 2145,-45.6224' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
548
+ <polygon fill='none' filter='url(#shadow)' points='2141.5,-253.957 2145,-263.957 2148.5,-253.957 2141.5,-253.957' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2141.5,-253.957 2145,-263.957 2148.5,-253.957 2141.5,-253.957' stroke='black' style='fill:url(#none);stroke:black;'/>
549
+ </g><g class='node' id='node38'><title>yuml_groupaddresult</title>
550
+ <polygon fill='palegreen' filter='url(#shadow)' points='3386.5,-996 3386.5,-1056 3507.5,-1056 3507.5,-996 3386.5,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='3386.5,-996 3386.5,-1056 3507.5,-1056 3507.5,-996 3386.5,-996' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
551
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3447' y='-1044.8'>GroupAddResult</text>
552
+ <polyline fill='none' filter='url(#shadow)' points='3386.5,-1041 3507.5,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3386.5,-1041 3507.5,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
553
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3447' y='-1029.8'>group</text>
554
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3447' y='-1014.8'>data</text>
555
+ <polyline fill='none' filter='url(#shadow)' points='3386.5,-1011 3507.5,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3386.5,-1011 3507.5,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
556
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3447' y='-999.8'> </text>
557
+ </g><g class='node' id='node40'><title>yuml_odataqueryable</title>
558
+ <polygon fill='lightgrey' filter='url(#shadow)' points='2391.5,-1047.5 2272.5,-1047.5 2272.5,-1004.5 2391.5,-1004.5 2391.5,-1047.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='2391.5,-1047.5 2272.5,-1047.5 2272.5,-1004.5 2391.5,-1004.5 2391.5,-1047.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
559
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2332' y='-1022.3'>ODataQueryable</text>
560
+ </g><g class='edge' id='edge40'><title>yuml_odataqueryable-&gt;yuml_graphqueryable</title>
561
+ <path d='M2332,-994.099C2332,-965.999 2332,-923.762 2332,-889.176' fill='none' stroke='black'/><path d='M2332,-994.099C2332,-965.999 2332,-923.762 2332,-889.176' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
562
+ <polygon fill='none' filter='url(#shadow)' points='2328.5,-994.132 2332,-1004.13 2335.5,-994.132 2328.5,-994.132' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2328.5,-994.132 2332,-1004.13 2335.5,-994.132 2328.5,-994.132' stroke='black' style='fill:url(#none);stroke:black;'/>
563
+ </g><g class='node' id='node41'><title>yuml_graphqueryableconstructor</title>
564
+ <polygon fill='palegreen' filter='url(#shadow)' points='3526,-1003.5 3526,-1048.5 3708,-1048.5 3708,-1003.5 3526,-1003.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='3526,-1003.5 3526,-1048.5 3708,-1048.5 3708,-1003.5 3526,-1003.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
565
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3617' y='-1037.3'>GraphQueryableConstructor</text>
566
+ <polyline fill='none' filter='url(#shadow)' points='3526,-1033.5 3708,-1033.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3526,-1033.5 3708,-1033.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
567
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3617' y='-1022.3'> </text>
568
+ <polyline fill='none' filter='url(#shadow)' points='3526,-1018.5 3708,-1018.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3526,-1018.5 3708,-1018.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
569
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3617' y='-1007.3'> </text>
570
+ </g><g class='node' id='node49'><title>yuml_postforwardinfo</title>
571
+ <polygon fill='palegreen' filter='url(#shadow)' points='3726,-996 3726,-1056 3846,-1056 3846,-996 3726,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='3726,-996 3726,-1056 3846,-1056 3846,-996 3726,-996' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
572
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3786' y='-1044.8'>PostForwardInfo</text>
573
+ <polyline fill='none' filter='url(#shadow)' points='3726,-1041 3846,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3726,-1041 3846,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
574
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3786' y='-1029.8'>comment</text>
575
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3786' y='-1014.8'>toRecipients</text>
576
+ <polyline fill='none' filter='url(#shadow)' points='3726,-1011 3846,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3726,-1011 3846,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
577
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3786' y='-999.8'> </text>
578
+ </g><g class='node' id='node54'><title>yuml_eventaddresult</title>
579
+ <polygon fill='palegreen' filter='url(#shadow)' points='3864,-996 3864,-1056 3982,-1056 3982,-996 3864,-996' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='3864,-996 3864,-1056 3982,-1056 3982,-996 3864,-996' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
580
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3923' y='-1044.8'>EventAddResult</text>
581
+ <polyline fill='none' filter='url(#shadow)' points='3864,-1041 3982,-1041 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3864,-1041 3982,-1041 ' stroke='black' style='fill:url(#none);stroke:black;'/>
582
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3923' y='-1029.8'>data</text>
583
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3923' y='-1014.8'>event</text>
584
+ <polyline fill='none' filter='url(#shadow)' points='3864,-1011 3982,-1011 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3864,-1011 3982,-1011 ' stroke='black' style='fill:url(#none);stroke:black;'/>
585
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3923' y='-999.8'> </text>
586
+ </g><g class='node' id='node55'><title>yuml_odatabatch</title>
587
+ <polygon fill='lightgrey' filter='url(#shadow)' points='4095.25,-1047.5 4000.75,-1047.5 4000.75,-1004.5 4095.25,-1004.5 4095.25,-1047.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='4095.25,-1047.5 4000.75,-1047.5 4000.75,-1004.5 4095.25,-1004.5 4095.25,-1047.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
588
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4048' y='-1022.3'>ODataBatch</text>
589
+ </g><g class='node' id='node56'><title>yuml_graphbatch</title>
590
+ <polygon fill='skyblue' filter='url(#shadow)' points='3985.5,-791.5 3985.5,-866.5 4110.5,-866.5 4110.5,-791.5 3985.5,-791.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3985.5,-791.5 3985.5,-866.5 4110.5,-866.5 4110.5,-791.5 3985.5,-791.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
591
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4048' y='-855.3'>GraphBatch</text>
592
+ <polyline fill='none' filter='url(#shadow)' points='3985.5,-851.5 4110.5,-851.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3985.5,-851.5 4110.5,-851.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
593
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4048' y='-840.3'>batchUrl</text>
594
+ <polyline fill='none' filter='url(#shadow)' points='3985.5,-836.5 4110.5,-836.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3985.5,-836.5 4110.5,-836.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
595
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4048' y='-825.3'>executeImpl()</text>
596
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4048' y='-810.3'>formatRequests()</text>
597
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4048' y='-795.3'>_parseResponse()</text>
598
+ </g><g class='edge' id='edge41'><title>yuml_odatabatch-&gt;yuml_graphbatch</title>
599
+ <path d='M4048,-994.122C4048,-959.503 4048,-903.405 4048,-866.606' fill='none' stroke='black'/><path d='M4048,-994.122C4048,-959.503 4048,-903.405 4048,-866.606' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
600
+ <polygon fill='none' filter='url(#shadow)' points='4044.5,-994.132 4048,-1004.13 4051.5,-994.132 4044.5,-994.132' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='4044.5,-994.132 4048,-1004.13 4051.5,-994.132 4044.5,-994.132' stroke='black' style='fill:url(#none);stroke:black;'/>
601
+ </g></g>
602
+ </svg>