@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,2833 @@
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='3558pt' xmlns:svg='http://www.w3.org/2000/svg' viewBox='0.00 0.00 26802.00 3558.00' width='26802pt' 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 3554)'><title>G</title><g class='node' id='node1'><title>yuml_requestclient</title>
7
+ <polygon fill='lightgrey' filter='url(#shadow)' points='2121.25,-3210.5 2016.75,-3210.5 2016.75,-3167.5 2121.25,-3167.5 2121.25,-3210.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='2121.25,-3210.5 2016.75,-3210.5 2016.75,-3167.5 2121.25,-3167.5 2121.25,-3210.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='2069' y='-3185.3'>RequestClient</text>
9
+ </g><g class='node' id='node2'><title>yuml_sphttpclient</title>
10
+ <polygon fill='skyblue' filter='url(#shadow)' points='2018.5,-2587.5 2018.5,-2722.5 2119.5,-2722.5 2119.5,-2587.5 2018.5,-2587.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2018.5,-2587.5 2018.5,-2722.5 2119.5,-2722.5 2119.5,-2587.5 2018.5,-2587.5' 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='2069' y='-2711.3'>SPHttpClient</text>
12
+ <polyline fill='none' filter='url(#shadow)' points='2018.5,-2707.5 2119.5,-2707.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2018.5,-2707.5 2119.5,-2707.5 ' 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='2069' y='-2696.3'>_digestCache</text>
14
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2681.3'>_impl</text>
15
+ <polyline fill='none' filter='url(#shadow)' points='2018.5,-2677.5 2119.5,-2677.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2018.5,-2677.5 2119.5,-2677.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
16
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2666.3'>fetch()</text>
17
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2651.3'>fetchRaw()</text>
18
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2636.3'>get()</text>
19
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2621.3'>post()</text>
20
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2606.3'>patch()</text>
21
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2069' y='-2591.3'>delete()</text>
22
+ </g><g class='edge' id='edge1'><title>yuml_requestclient-&gt;yuml_sphttpclient</title>
23
+ <path d='M2069,-3157.33C2069,-3073.43 2069,-2838.67 2069,-2722.64' fill='none' stroke='black'/><path d='M2069,-3157.33C2069,-3073.43 2069,-2838.67 2069,-2722.64' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
24
+ <polygon fill='none' filter='url(#shadow)' points='2065.5,-3157.47 2069,-3167.47 2072.5,-3157.47 2065.5,-3157.47' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2065.5,-3157.47 2069,-3167.47 2072.5,-3157.47 2065.5,-3157.47' stroke='black' style='fill:url(#none);stroke:black;'/>
25
+ </g><g class='node' id='node3'><title>yuml_digestcache</title>
26
+ <polygon fill='skyblue' filter='url(#shadow)' points='2444,-3151.5 2444,-3226.5 2542,-3226.5 2542,-3151.5 2444,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2444,-3151.5 2444,-3226.5 2542,-3226.5 2542,-3151.5 2444,-3151.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
27
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2493' y='-3215.3'>DigestCache</text>
28
+ <polyline fill='none' filter='url(#shadow)' points='2444,-3211.5 2542,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2444,-3211.5 2542,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
29
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2493' y='-3200.3'>_httpClient</text>
30
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2493' y='-3185.3'>_digests</text>
31
+ <polyline fill='none' filter='url(#shadow)' points='2444,-3181.5 2542,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2444,-3181.5 2542,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
32
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2493' y='-3170.3'>getDigest()</text>
33
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2493' y='-3155.3'>clear()</text>
34
+ </g><g class='node' id='node4'><title>yuml_cacheddigest</title>
35
+ <polygon fill='skyblue' filter='url(#shadow)' points='4430,-3159 4430,-3219 4534,-3219 4534,-3159 4430,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4430,-3159 4430,-3219 4534,-3219 4534,-3159 4430,-3159' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
36
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4482' y='-3207.8'>CachedDigest</text>
37
+ <polyline fill='none' filter='url(#shadow)' points='4430,-3204 4534,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4430,-3204 4534,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
38
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4482' y='-3192.8'>expiration</text>
39
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4482' y='-3177.8'>value</text>
40
+ <polyline fill='none' filter='url(#shadow)' points='4430,-3174 4534,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4430,-3174 4534,-3174 ' 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='4482' y='-3162.8'> </text>
42
+ </g><g class='node' id='node5'><title>yuml_spconfiguration</title>
43
+ <polygon fill='palegreen' filter='url(#shadow)' points='5487.5,-3166.5 5487.5,-3211.5 5606.5,-3211.5 5606.5,-3166.5 5487.5,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='5487.5,-3166.5 5487.5,-3211.5 5606.5,-3211.5 5606.5,-3166.5 5487.5,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
44
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5547' y='-3200.3'>SPConfiguration</text>
45
+ <polyline fill='none' filter='url(#shadow)' points='5487.5,-3196.5 5606.5,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5487.5,-3196.5 5606.5,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
46
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5547' y='-3185.3'> </text>
47
+ <polyline fill='none' filter='url(#shadow)' points='5487.5,-3181.5 5606.5,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5487.5,-3181.5 5606.5,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
48
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5547' y='-3170.3'> </text>
49
+ </g><g class='node' id='node6'><title>yuml_spconfigurationpart</title>
50
+ <polygon fill='palegreen' filter='url(#shadow)' points='6091.5,-3166.5 6091.5,-3211.5 6232.5,-3211.5 6232.5,-3166.5 6091.5,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='6091.5,-3166.5 6091.5,-3211.5 6232.5,-3211.5 6232.5,-3166.5 6091.5,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
51
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6162' y='-3200.3'>SPConfigurationPart</text>
52
+ <polyline fill='none' filter='url(#shadow)' points='6091.5,-3196.5 6232.5,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6091.5,-3196.5 6232.5,-3196.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='6162' y='-3185.3'>sp</text>
54
+ <polyline fill='none' filter='url(#shadow)' points='6091.5,-3181.5 6232.5,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6091.5,-3181.5 6232.5,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
55
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6162' y='-3170.3'> </text>
56
+ </g><g class='node' id='node7'><title>yuml_spruntimeconfigimpl</title>
57
+ <polygon fill='skyblue' filter='url(#shadow)' points='6484.5,-3151.5 6484.5,-3226.5 6639.5,-3226.5 6639.5,-3151.5 6484.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6484.5,-3151.5 6484.5,-3226.5 6639.5,-3226.5 6639.5,-3151.5 6484.5,-3151.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
58
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6562' y='-3215.3'>SPRuntimeConfigImpl</text>
59
+ <polyline fill='none' filter='url(#shadow)' points='6484.5,-3211.5 6639.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6484.5,-3211.5 6639.5,-3211.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='6562' y='-3200.3'>headers</text>
61
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6562' y='-3185.3'>baseUrl</text>
62
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6562' y='-3170.3'>fetchClientFactory</text>
63
+ <polyline fill='none' filter='url(#shadow)' points='6484.5,-3166.5 6639.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6484.5,-3166.5 6639.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
64
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6562' y='-3155.3'> </text>
65
+ </g><g class='node' id='node8'><title>yuml_sharepointqueryableshareableweb</title>
66
+ <polygon fill='skyblue' filter='url(#shadow)' points='2891,-1392 2891,-1482 3115,-1482 3115,-1392 2891,-1392' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2891,-1392 2891,-1482 3115,-1482 3115,-1392 2891,-1392' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
67
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1470.8'>SharePointQueryableShareableWeb</text>
68
+ <polyline fill='none' filter='url(#shadow)' points='2891,-1467 3115,-1467 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2891,-1467 3115,-1467 ' stroke='black' style='fill:url(#none);stroke:black;'/>
69
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1455.8'> </text>
70
+ <polyline fill='none' filter='url(#shadow)' points='2891,-1452 3115,-1452 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2891,-1452 3115,-1452 ' stroke='black' style='fill:url(#none);stroke:black;'/>
71
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1440.8'>shareWith()</text>
72
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1425.8'>shareObject()</text>
73
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1410.8'>shareObjectRaw()</text>
74
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1395.8'>unshareObject()</text>
75
+ </g><g class='node' id='node9'><title>yuml_web</title>
76
+ <polygon fill='skyblue' filter='url(#shadow)' points='2888,-393 2888,-1143 3118,-1143 3118,-393 2888,-393' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2888,-393 2888,-1143 3118,-1143 3118,-393 2888,-393' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
77
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1131.8'>Web</text>
78
+ <polyline fill='none' filter='url(#shadow)' points='2888,-1128 3118,-1128 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2888,-1128 3118,-1128 ' stroke='black' style='fill:url(#none);stroke:black;'/>
79
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1116.8'>webs</text>
80
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1101.8'>allProperties</text>
81
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1086.8'>webinfos</text>
82
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1071.8'>contentTypes</text>
83
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1056.8'>lists</text>
84
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1041.8'>fields</text>
85
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1026.8'>features</text>
86
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-1011.8'>availablefields</text>
87
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-996.8'>navigation</text>
88
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-981.8'>siteUsers</text>
89
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-966.8'>siteGroups</text>
90
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-951.8'>siteUserInfoList</text>
91
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-936.8'>regionalSettings</text>
92
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-921.8'>currentUser</text>
93
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-906.8'>folders</text>
94
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-891.8'>userCustomActions</text>
95
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-876.8'>roleDefinitions</text>
96
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-861.8'>relatedItems</text>
97
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-846.8'>rootFolder</text>
98
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-831.8'>associatedOwnerGroup</text>
99
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-816.8'>associatedMemberGroup</text>
100
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-801.8'>associatedVisitorGroup</text>
101
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-786.8'>customListTemplate</text>
102
+ <polyline fill='none' filter='url(#shadow)' points='2888,-783 3118,-783 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2888,-783 3118,-783 ' stroke='black' style='fill:url(#none);stroke:black;'/>
103
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-771.8'>fromUrl()</text>
104
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-756.8'>getParentWeb()</text>
105
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-741.8'>getSubwebsFilteredForCurrentUser()</text>
106
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-726.8'>createBatch()</text>
107
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-711.8'>getFolderByServerRelativeUrl()</text>
108
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-696.8'>getFolderByServerRelativePath()</text>
109
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-681.8'>getFileByServerRelativeUrl()</text>
110
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-666.8'>getFileByServerRelativePath()</text>
111
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-651.8'>getList()</text>
112
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-636.8'>update()</text>
113
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-621.8'>delete()</text>
114
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-606.8'>applyTheme()</text>
115
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-591.8'>applyWebTemplate()</text>
116
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-576.8'>ensureUser()</text>
117
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-561.8'>availableWebTemplates()</text>
118
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-546.8'>getCatalog()</text>
119
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-531.8'>getChanges()</text>
120
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-516.8'>getUserById()</text>
121
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-501.8'>mapToIcon()</text>
122
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-486.8'>getStorageEntity()</text>
123
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-471.8'>setStorageEntity()</text>
124
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-456.8'>removeStorageEntity()</text>
125
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-441.8'>getAppCatalog()</text>
126
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-426.8'>getClientSideWebParts()</text>
127
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-411.8'>addClientSidePage()</text>
128
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3003' y='-396.8'>addClientSidePageByPath()</text>
129
+ </g><g class='edge' id='edge2'><title>yuml_sharepointqueryableshareableweb-&gt;yuml_web</title>
130
+ <path d='M3003,-1381.83C3003,-1327.06 3003,-1237.25 3003,-1143.06' fill='none' stroke='black'/><path d='M3003,-1381.83C3003,-1327.06 3003,-1237.25 3003,-1143.06' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
131
+ <polygon fill='none' filter='url(#shadow)' points='2999.5,-1381.98 3003,-1391.98 3006.5,-1381.98 2999.5,-1381.98' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2999.5,-1381.98 3003,-1391.98 3006.5,-1381.98 2999.5,-1381.98' stroke='black' style='fill:url(#none);stroke:black;'/>
132
+ </g><g class='node' id='node10'><title>yuml_sharepointqueryablecollection</title>
133
+ <polygon fill='skyblue' filter='url(#shadow)' points='6432,-2294 6432,-2414 6632,-2414 6632,-2294 6432,-2294' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6432,-2294 6432,-2414 6632,-2414 6632,-2294 6432,-2294' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
134
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2402.8'>SharePointQueryableCollection</text>
135
+ <polyline fill='none' filter='url(#shadow)' points='6432,-2399 6632,-2399 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6432,-2399 6632,-2399 ' 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='6532' y='-2387.8'> </text>
137
+ <polyline fill='none' filter='url(#shadow)' points='6432,-2384 6632,-2384 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6432,-2384 6632,-2384 ' stroke='black' style='fill:url(#none);stroke:black;'/>
138
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2372.8'>filter()</text>
139
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2357.8'>select()</text>
140
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2342.8'>expand()</text>
141
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2327.8'>orderBy()</text>
142
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2312.8'>skip()</text>
143
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6532' y='-2297.8'>top()</text>
144
+ </g><g class='node' id='node11'><title>yuml_webinfos</title>
145
+ <polygon fill='skyblue' filter='url(#shadow)' points='8314.5,-1910.5 8314.5,-1955.5 8397.5,-1955.5 8397.5,-1910.5 8314.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='8314.5,-1910.5 8314.5,-1955.5 8397.5,-1955.5 8397.5,-1910.5 8314.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
146
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8356' y='-1944.3'>WebInfos</text>
147
+ <polyline fill='none' filter='url(#shadow)' points='8314.5,-1940.5 8397.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8314.5,-1940.5 8397.5,-1940.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='8356' y='-1929.3'> </text>
149
+ <polyline fill='none' filter='url(#shadow)' points='8314.5,-1925.5 8397.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8314.5,-1925.5 8397.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
150
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8356' y='-1914.3'> </text>
151
+ </g><g class='edge' id='edge3'><title>yuml_sharepointqueryablecollection-&gt;yuml_webinfos</title>
152
+ <path d='M6573.1,-2285.82C6590.93,-2262.71 6613.95,-2239.32 6641,-2226 6807.09,-2144.17 8162.05,-2253.68 8305,-2136 8359.31,-2091.29 8360.54,-1997.91 8357.99,-1955.63' fill='none' stroke='black'/><path d='M6573.1,-2285.82C6590.93,-2262.71 6613.95,-2239.32 6641,-2226 6807.09,-2144.17 8162.05,-2253.68 8305,-2136 8359.31,-2091.29 8360.54,-1997.91 8357.99,-1955.63' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
153
+ <polygon fill='none' filter='url(#shadow)' points='6570.2,-2283.86 6567.01,-2293.96 6575.8,-2288.05 6570.2,-2283.86' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.2,-2283.86 6567.01,-2293.96 6575.8,-2288.05 6570.2,-2283.86' stroke='black' style='fill:url(#none);stroke:black;'/>
154
+ </g><g class='node' id='node12'><title>yuml_webs</title>
155
+ <polygon fill='skyblue' filter='url(#shadow)' points='8416,-1910.5 8416,-1955.5 8476,-1955.5 8476,-1910.5 8416,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='8416,-1910.5 8416,-1955.5 8476,-1955.5 8476,-1910.5 8416,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
156
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8446' y='-1944.3'>Webs</text>
157
+ <polyline fill='none' filter='url(#shadow)' points='8416,-1940.5 8476,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8416,-1940.5 8476,-1940.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='8446' y='-1929.3'> </text>
159
+ <polyline fill='none' filter='url(#shadow)' points='8416,-1925.5 8476,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8416,-1925.5 8476,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
160
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8446' y='-1914.3'>add()</text>
161
+ </g><g class='edge' id='edge4'><title>yuml_sharepointqueryablecollection-&gt;yuml_webs</title>
162
+ <path d='M6573.08,-2285.77C6590.9,-2262.66 6613.93,-2239.28 6641,-2226 6817.28,-2139.49 8257.48,-2264.46 8406,-2136 8458.46,-2090.63 8454.38,-1998.02 8449.33,-1955.82' fill='none' stroke='black'/><path d='M6573.08,-2285.77C6590.9,-2262.66 6613.93,-2239.28 6641,-2226 6817.28,-2139.49 8257.48,-2264.46 8406,-2136 8458.46,-2090.63 8454.38,-1998.02 8449.33,-1955.82' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
163
+ <polygon fill='none' filter='url(#shadow)' points='6570.17,-2283.81 6566.99,-2293.92 6575.78,-2288 6570.17,-2283.81' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.17,-2283.81 6566.99,-2293.92 6575.78,-2288 6570.17,-2283.81' stroke='black' style='fill:url(#none);stroke:black;'/>
164
+ </g><g class='node' id='node20'><title>yuml_webpartdefinitions</title>
165
+ <polygon fill='skyblue' filter='url(#shadow)' points='8494.5,-1903 8494.5,-1963 8631.5,-1963 8631.5,-1903 8494.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='8494.5,-1903 8494.5,-1963 8631.5,-1963 8631.5,-1903 8494.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
166
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8563' y='-1951.8'>WebPartDefinitions</text>
167
+ <polyline fill='none' filter='url(#shadow)' points='8494.5,-1948 8631.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8494.5,-1948 8631.5,-1948 ' 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='8563' y='-1936.8'> </text>
169
+ <polyline fill='none' filter='url(#shadow)' points='8494.5,-1933 8631.5,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8494.5,-1933 8631.5,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
170
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8563' y='-1921.8'>getById()</text>
171
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8563' y='-1906.8'>getByControlId()</text>
172
+ </g><g class='edge' id='edge5'><title>yuml_sharepointqueryablecollection-&gt;yuml_webpartdefinitions</title>
173
+ <path d='M6573.06,-2285.74C6590.88,-2262.63 6613.92,-2239.25 6641,-2226 6825.15,-2135.87 8317.54,-2255.69 8484,-2136 8540.25,-2095.55 8556.45,-2008.89 8561.12,-1963.35' fill='none' stroke='black'/><path d='M6573.06,-2285.74C6590.88,-2262.63 6613.92,-2239.25 6641,-2226 6825.15,-2135.87 8317.54,-2255.69 8484,-2136 8540.25,-2095.55 8556.45,-2008.89 8561.12,-1963.35' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
174
+ <polygon fill='none' filter='url(#shadow)' points='6570.16,-2283.78 6566.98,-2293.89 6575.77,-2287.97 6570.16,-2283.78' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.16,-2283.78 6566.98,-2293.89 6575.77,-2287.97 6570.16,-2283.78' stroke='black' style='fill:url(#none);stroke:black;'/>
175
+ </g><g class='node' id='node23'><title>yuml_viewfields</title>
176
+ <polygon fill='skyblue' filter='url(#shadow)' points='4464,-1880.5 4464,-1985.5 4586,-1985.5 4586,-1880.5 4464,-1880.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4464,-1880.5 4464,-1985.5 4586,-1985.5 4586,-1880.5 4464,-1880.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
177
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1974.3'>ViewFields</text>
178
+ <polyline fill='none' filter='url(#shadow)' points='4464,-1970.5 4586,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4464,-1970.5 4586,-1970.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
179
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1959.3'> </text>
180
+ <polyline fill='none' filter='url(#shadow)' points='4464,-1955.5 4586,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4464,-1955.5 4586,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
181
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1944.3'>getSchemaXml()</text>
182
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1929.3'>add()</text>
183
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1914.3'>move()</text>
184
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1899.3'>removeAll()</text>
185
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4525' y='-1884.3'>remove()</text>
186
+ </g><g class='edge' id='edge6'><title>yuml_sharepointqueryablecollection-&gt;yuml_viewfields</title>
187
+ <path d='M6421.55,-2347.45C6032.1,-2326.94 4738.48,-2250.7 4595,-2136 4549.77,-2099.85 4533.67,-2032.74 4528,-1985.84' fill='none' stroke='black'/><path d='M6421.55,-2347.45C6032.1,-2326.94 4738.48,-2250.7 4595,-2136 4549.77,-2099.85 4533.67,-2032.74 4528,-1985.84' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
188
+ <polygon fill='none' filter='url(#shadow)' points='6421.53,-2350.95 6431.7,-2347.98 6421.9,-2343.96 6421.53,-2350.95' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.53,-2350.95 6431.7,-2347.98 6421.9,-2343.96 6421.53,-2350.95' stroke='black' style='fill:url(#none);stroke:black;'/>
189
+ </g><g class='node' id='node25'><title>yuml_views</title>
190
+ <polygon fill='skyblue' filter='url(#shadow)' points='4604.5,-1895.5 4604.5,-1970.5 4699.5,-1970.5 4699.5,-1895.5 4604.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4604.5,-1895.5 4604.5,-1970.5 4699.5,-1970.5 4699.5,-1895.5 4604.5,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
191
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4652' y='-1959.3'>Views</text>
192
+ <polyline fill='none' filter='url(#shadow)' points='4604.5,-1955.5 4699.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4604.5,-1955.5 4699.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
193
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4652' y='-1944.3'> </text>
194
+ <polyline fill='none' filter='url(#shadow)' points='4604.5,-1940.5 4699.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4604.5,-1940.5 4699.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
195
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4652' y='-1929.3'>getById()</text>
196
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4652' y='-1914.3'>getByTitle()</text>
197
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4652' y='-1899.3'>add()</text>
198
+ </g><g class='edge' id='edge7'><title>yuml_sharepointqueryablecollection-&gt;yuml_views</title>
199
+ <path d='M6421.73,-2346.97C6047.01,-2325.52 4838.64,-2248.15 4708,-2136 4660.09,-2094.87 4651.4,-2016.71 4650.77,-1970.6' fill='none' stroke='black'/><path d='M6421.73,-2346.97C6047.01,-2325.52 4838.64,-2248.15 4708,-2136 4660.09,-2094.87 4651.4,-2016.71 4650.77,-1970.6' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
200
+ <polygon fill='none' filter='url(#shadow)' points='6421.58,-2350.47 6431.77,-2347.54 6421.98,-2343.48 6421.58,-2350.47' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.58,-2350.47 6431.77,-2347.54 6421.98,-2343.48 6421.58,-2350.47' stroke='black' style='fill:url(#none);stroke:black;'/>
201
+ </g><g class='node' id='node33'><title>yuml_usercustomactions</title>
202
+ <polygon fill='skyblue' filter='url(#shadow)' points='4717.5,-1895.5 4717.5,-1970.5 4856.5,-1970.5 4856.5,-1895.5 4717.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4717.5,-1895.5 4717.5,-1970.5 4856.5,-1970.5 4856.5,-1895.5 4717.5,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
203
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4787' y='-1959.3'>UserCustomActions</text>
204
+ <polyline fill='none' filter='url(#shadow)' points='4717.5,-1955.5 4856.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4717.5,-1955.5 4856.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
205
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4787' y='-1944.3'> </text>
206
+ <polyline fill='none' filter='url(#shadow)' points='4717.5,-1940.5 4856.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4717.5,-1940.5 4856.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
207
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4787' y='-1929.3'>getById()</text>
208
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4787' y='-1914.3'>add()</text>
209
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4787' y='-1899.3'>clear()</text>
210
+ </g><g class='edge' id='edge8'><title>yuml_sharepointqueryablecollection-&gt;yuml_usercustomactions</title>
211
+ <path d='M6421.65,-2352.84C6089.87,-2350.24 5109.24,-2326.25 4866,-2136 4814.54,-2095.75 4796.54,-2017.27 4790.29,-1970.87' fill='none' stroke='black'/><path d='M6421.65,-2352.84C6089.87,-2350.24 5109.24,-2326.25 4866,-2136 4814.54,-2095.75 4796.54,-2017.27 4790.29,-1970.87' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
212
+ <polygon fill='none' filter='url(#shadow)' points='6421.73,-2356.34 6431.75,-2352.92 6421.78,-2349.34 6421.73,-2356.34' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.73,-2356.34 6431.75,-2352.92 6421.78,-2349.34 6421.73,-2356.34' stroke='black' style='fill:url(#none);stroke:black;'/>
213
+ </g><g class='node' id='node81'><title>yuml_subscriptions</title>
214
+ <polygon fill='skyblue' filter='url(#shadow)' points='4875,-1903 4875,-1963 4977,-1963 4977,-1903 4875,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4875,-1903 4875,-1963 4977,-1963 4977,-1903 4875,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
215
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4926' y='-1951.8'>Subscriptions</text>
216
+ <polyline fill='none' filter='url(#shadow)' points='4875,-1948 4977,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4875,-1948 4977,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
217
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4926' y='-1936.8'> </text>
218
+ <polyline fill='none' filter='url(#shadow)' points='4875,-1933 4977,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4875,-1933 4977,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
219
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4926' y='-1921.8'>getById()</text>
220
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4926' y='-1906.8'>add()</text>
221
+ </g><g class='edge' id='edge9'><title>yuml_sharepointqueryablecollection-&gt;yuml_subscriptions</title>
222
+ <path d='M6421.78,-2352.49C6105.17,-2348.79 5201.84,-2321.8 4986,-2136 4935.26,-2092.32 4926.4,-2007.87 4925.48,-1963.25' fill='none' stroke='black'/><path d='M6421.78,-2352.49C6105.17,-2348.79 5201.84,-2321.8 4986,-2136 4935.26,-2092.32 4926.4,-2007.87 4925.48,-1963.25' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
223
+ <polygon fill='none' filter='url(#shadow)' points='6421.85,-2355.99 6431.89,-2352.6 6421.93,-2348.99 6421.85,-2355.99' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.85,-2355.99 6431.89,-2352.6 6421.93,-2348.99 6421.85,-2355.99' stroke='black' style='fill:url(#none);stroke:black;'/>
224
+ </g><g class='node' id='node93'><title>yuml_siteusers</title>
225
+ <polygon fill='skyblue' filter='url(#shadow)' points='4995,-1873 4995,-1993 5155,-1993 5155,-1873 4995,-1873' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4995,-1873 4995,-1993 5155,-1993 5155,-1873 4995,-1873' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
226
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1981.8'>SiteUsers</text>
227
+ <polyline fill='none' filter='url(#shadow)' points='4995,-1978 5155,-1978 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4995,-1978 5155,-1978 ' stroke='black' style='fill:url(#none);stroke:black;'/>
228
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1966.8'> </text>
229
+ <polyline fill='none' filter='url(#shadow)' points='4995,-1963 5155,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4995,-1963 5155,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
230
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1951.8'>getByEmail()</text>
231
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1936.8'>getById()</text>
232
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1921.8'>getByLoginName()</text>
233
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1906.8'>removeById()</text>
234
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1891.8'>removeByLoginName()</text>
235
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5075' y='-1876.8'>add()</text>
236
+ </g><g class='edge' id='edge10'><title>yuml_sharepointqueryablecollection-&gt;yuml_siteusers</title>
237
+ <path d='M6421.91,-2348.86C6132.85,-2335.97 5361.01,-2287.81 5164,-2136 5119.07,-2101.38 5096.35,-2039.28 5085.17,-1993.04' fill='none' stroke='black'/><path d='M6421.91,-2348.86C6132.85,-2335.97 5361.01,-2287.81 5164,-2136 5119.07,-2101.38 5096.35,-2039.28 5085.17,-1993.04' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
238
+ <polygon fill='none' filter='url(#shadow)' points='6421.84,-2352.36 6431.99,-2349.31 6422.15,-2345.37 6421.84,-2352.36' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.84,-2352.36 6431.99,-2349.31 6422.15,-2345.37 6421.84,-2352.36' stroke='black' style='fill:url(#none);stroke:black;'/>
239
+ </g><g class='node' id='node97'><title>yuml_sitegroups</title>
240
+ <polygon fill='skyblue' filter='url(#shadow)' points='5173,-1880.5 5173,-1985.5 5333,-1985.5 5333,-1880.5 5173,-1880.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='5173,-1880.5 5173,-1985.5 5333,-1985.5 5333,-1880.5 5173,-1880.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
241
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1974.3'>SiteGroups</text>
242
+ <polyline fill='none' filter='url(#shadow)' points='5173,-1970.5 5333,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5173,-1970.5 5333,-1970.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
243
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1959.3'> </text>
244
+ <polyline fill='none' filter='url(#shadow)' points='5173,-1955.5 5333,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5173,-1955.5 5333,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
245
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1944.3'>add()</text>
246
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1929.3'>getByName()</text>
247
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1914.3'>getById()</text>
248
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1899.3'>removeById()</text>
249
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5253' y='-1884.3'>removeByLoginName()</text>
250
+ </g><g class='edge' id='edge11'><title>yuml_sharepointqueryablecollection-&gt;yuml_sitegroups</title>
251
+ <path d='M6421.29,-2345.9C6159.01,-2327.07 5509.26,-2267.99 5342,-2136 5295.22,-2099.08 5272.43,-2032.49 5261.75,-1985.88' fill='none' stroke='black'/><path d='M6421.29,-2345.9C6159.01,-2327.07 5509.26,-2267.99 5342,-2136 5295.22,-2099.08 5272.43,-2032.49 5261.75,-1985.88' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
252
+ <polygon fill='none' filter='url(#shadow)' points='6421.36,-2349.42 6431.59,-2346.64 6421.86,-2342.44 6421.36,-2349.42' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.36,-2349.42 6431.59,-2346.64 6421.86,-2342.44 6421.36,-2349.42' stroke='black' style='fill:url(#none);stroke:black;'/>
253
+ </g><g class='node' id='node128'><title>yuml_roledefinitionbindings</title>
254
+ <polygon fill='skyblue' filter='url(#shadow)' points='5351,-1910.5 5351,-1955.5 5509,-1955.5 5509,-1910.5 5351,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='5351,-1910.5 5351,-1955.5 5509,-1955.5 5509,-1910.5 5351,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
255
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5430' y='-1944.3'>RoleDefinitionBindings</text>
256
+ <polyline fill='none' filter='url(#shadow)' points='5351,-1940.5 5509,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5351,-1940.5 5509,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
257
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5430' y='-1929.3'> </text>
258
+ <polyline fill='none' filter='url(#shadow)' points='5351,-1925.5 5509,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5351,-1925.5 5509,-1925.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='5430' y='-1914.3'> </text>
260
+ </g><g class='edge' id='edge12'><title>yuml_sharepointqueryablecollection-&gt;yuml_roledefinitionbindings</title>
261
+ <path d='M6421.61,-2342.18C6188.28,-2317.31 5655.1,-2249.37 5517,-2136 5459.74,-2089 5439.3,-1997.23 5432.76,-1955.54' fill='none' stroke='black'/><path d='M6421.61,-2342.18C6188.28,-2317.31 5655.1,-2249.37 5517,-2136 5459.74,-2089 5439.3,-1997.23 5432.76,-1955.54' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
262
+ <polygon fill='none' filter='url(#shadow)' points='6421.5,-2345.68 6431.81,-2343.26 6422.24,-2338.72 6421.5,-2345.68' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.5,-2345.68 6431.81,-2343.26 6422.24,-2338.72 6421.5,-2345.68' stroke='black' style='fill:url(#none);stroke:black;'/>
263
+ </g><g class='node' id='node130'><title>yuml_roledefinitions</title>
264
+ <polygon fill='skyblue' filter='url(#shadow)' points='5526.5,-1888 5526.5,-1978 5641.5,-1978 5641.5,-1888 5526.5,-1888' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='5526.5,-1888 5526.5,-1978 5641.5,-1978 5641.5,-1888 5526.5,-1888' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
265
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5584' y='-1966.8'>RoleDefinitions</text>
266
+ <polyline fill='none' filter='url(#shadow)' points='5526.5,-1963 5641.5,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5526.5,-1963 5641.5,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
267
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5584' y='-1951.8'> </text>
268
+ <polyline fill='none' filter='url(#shadow)' points='5526.5,-1948 5641.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5526.5,-1948 5641.5,-1948 ' 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='5584' y='-1936.8'>getById()</text>
270
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5584' y='-1921.8'>getByName()</text>
271
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5584' y='-1906.8'>getByType()</text>
272
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5584' y='-1891.8'>add()</text>
273
+ </g><g class='edge' id='edge13'><title>yuml_sharepointqueryablecollection-&gt;yuml_roledefinitions</title>
274
+ <path d='M6421.82,-2339.32C6211.15,-2311.07 5762.16,-2240.09 5650,-2136 5605.92,-2095.09 5591.22,-2024.38 5586.35,-1978.41' fill='none' stroke='black'/><path d='M6421.82,-2339.32C6211.15,-2311.07 5762.16,-2240.09 5650,-2136 5605.92,-2095.09 5591.22,-2024.38 5586.35,-1978.41' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
275
+ <polygon fill='none' filter='url(#shadow)' points='6421.6,-2342.82 6431.98,-2340.68 6422.53,-2335.88 6421.6,-2342.82' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.6,-2342.82 6431.98,-2340.68 6422.53,-2335.88 6421.6,-2342.82' stroke='black' style='fill:url(#none);stroke:black;'/>
276
+ </g><g class='node' id='node132'><title>yuml_roleassignments</title>
277
+ <polygon fill='skyblue' filter='url(#shadow)' points='5659.5,-1895.5 5659.5,-1970.5 5784.5,-1970.5 5784.5,-1895.5 5659.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='5659.5,-1895.5 5659.5,-1970.5 5784.5,-1970.5 5784.5,-1895.5 5659.5,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
278
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5722' y='-1959.3'>RoleAssignments</text>
279
+ <polyline fill='none' filter='url(#shadow)' points='5659.5,-1955.5 5784.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5659.5,-1955.5 5784.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
280
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5722' y='-1944.3'> </text>
281
+ <polyline fill='none' filter='url(#shadow)' points='5659.5,-1940.5 5784.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5659.5,-1940.5 5784.5,-1940.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='5722' y='-1929.3'>add()</text>
283
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5722' y='-1914.3'>remove()</text>
284
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='5722' y='-1899.3'>getById()</text>
285
+ </g><g class='edge' id='edge14'><title>yuml_sharepointqueryablecollection-&gt;yuml_roleassignments</title>
286
+ <path d='M6421.56,-2350.79C6262.17,-2341.67 5967.64,-2301.72 5793,-2136 5746.62,-2091.99 5730.51,-2015.93 5724.94,-1970.76' fill='none' stroke='black'/><path d='M6421.56,-2350.79C6262.17,-2341.67 5967.64,-2301.72 5793,-2136 5746.62,-2091.99 5730.51,-2015.93 5724.94,-1970.76' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
287
+ <polygon fill='none' filter='url(#shadow)' points='6421.69,-2354.3 6431.87,-2351.35 6422.07,-2347.31 6421.69,-2354.3' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.69,-2354.3 6431.87,-2351.35 6422.07,-2347.31 6421.69,-2354.3' stroke='black' style='fill:url(#none);stroke:black;'/>
288
+ </g><g class='node' id='node139'><title>yuml_timezones</title>
289
+ <polygon fill='skyblue' filter='url(#shadow)' points='5802.5,-1910.5 5802.5,-1955.5 5893.5,-1955.5 5893.5,-1910.5 5802.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='5802.5,-1910.5 5802.5,-1955.5 5893.5,-1955.5 5893.5,-1910.5 5802.5,-1910.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='5848' y='-1944.3'>TimeZones</text>
291
+ <polyline fill='none' filter='url(#shadow)' points='5802.5,-1940.5 5893.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5802.5,-1940.5 5893.5,-1940.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='5848' y='-1929.3'> </text>
293
+ <polyline fill='none' filter='url(#shadow)' points='5802.5,-1925.5 5893.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5802.5,-1925.5 5893.5,-1925.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='5848' y='-1914.3'>getById()</text>
295
+ </g><g class='edge' id='edge15'><title>yuml_sharepointqueryablecollection-&gt;yuml_timezones</title>
296
+ <path d='M6421.47,-2345.59C6280.94,-2330.15 6040.16,-2282.58 5903,-2136 5855.2,-2084.91 5848.19,-1996.44 5847.65,-1955.69' fill='none' stroke='black'/><path d='M6421.47,-2345.59C6280.94,-2330.15 6040.16,-2282.58 5903,-2136 5855.2,-2084.91 5848.19,-1996.44 5847.65,-1955.69' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
297
+ <polygon fill='none' filter='url(#shadow)' points='6421.51,-2349.11 6431.82,-2346.69 6422.25,-2342.15 6421.51,-2349.11' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.51,-2349.11 6431.82,-2346.69 6422.25,-2342.15 6421.51,-2349.11' stroke='black' style='fill:url(#none);stroke:black;'/>
298
+ </g><g class='node' id='node141'><title>yuml_installedlanguages</title>
299
+ <polygon fill='skyblue' filter='url(#shadow)' points='5912,-1910.5 5912,-1955.5 6046,-1955.5 6046,-1910.5 5912,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='5912,-1910.5 5912,-1955.5 6046,-1955.5 6046,-1910.5 5912,-1910.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='5979' y='-1944.3'>InstalledLanguages</text>
301
+ <polyline fill='none' filter='url(#shadow)' points='5912,-1940.5 6046,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5912,-1940.5 6046,-1940.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='5979' y='-1929.3'> </text>
303
+ <polyline fill='none' filter='url(#shadow)' points='5912,-1925.5 6046,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='5912,-1925.5 6046,-1925.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='5979' y='-1914.3'> </text>
305
+ </g><g class='edge' id='edge16'><title>yuml_sharepointqueryablecollection-&gt;yuml_installedlanguages</title>
306
+ <path d='M6422.05,-2328.94C6314.93,-2300.16 6154.12,-2242.01 6055,-2136 6005.86,-2083.45 5987.68,-1996.1 5981.66,-1955.71' fill='none' stroke='black'/><path d='M6422.05,-2328.94C6314.93,-2300.16 6154.12,-2242.01 6055,-2136 6005.86,-2083.45 5987.68,-1996.1 5981.66,-1955.71' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
307
+ <polygon fill='none' filter='url(#shadow)' points='6421.36,-2332.37 6431.92,-2331.55 6423.15,-2325.61 6421.36,-2332.37' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.36,-2332.37 6431.92,-2331.55 6423.15,-2325.61 6421.36,-2332.37' stroke='black' style='fill:url(#none);stroke:black;'/>
308
+ </g><g class='node' id='node147'><title>yuml_navigationnodes</title>
309
+ <polygon fill='skyblue' filter='url(#shadow)' points='6064.5,-1895.5 6064.5,-1970.5 6187.5,-1970.5 6187.5,-1895.5 6064.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6064.5,-1895.5 6064.5,-1970.5 6187.5,-1970.5 6187.5,-1895.5 6064.5,-1895.5' 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='6126' y='-1959.3'>NavigationNodes</text>
311
+ <polyline fill='none' filter='url(#shadow)' points='6064.5,-1955.5 6187.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6064.5,-1955.5 6187.5,-1955.5 ' 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='6126' y='-1944.3'> </text>
313
+ <polyline fill='none' filter='url(#shadow)' points='6064.5,-1940.5 6187.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6064.5,-1940.5 6187.5,-1940.5 ' 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='6126' y='-1929.3'>getById()</text>
315
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6126' y='-1914.3'>add()</text>
316
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6126' y='-1899.3'>moveAfter()</text>
317
+ </g><g class='edge' id='edge17'><title>yuml_sharepointqueryablecollection-&gt;yuml_navigationnodes</title>
318
+ <path d='M6422.7,-2305.54C6349.65,-2268.8 6256.4,-2211.45 6197,-2136 6158.02,-2086.5 6139.53,-2013.99 6131.49,-1970.65' fill='none' stroke='black'/><path d='M6422.7,-2305.54C6349.65,-2268.8 6256.4,-2211.45 6197,-2136 6158.02,-2086.5 6139.53,-2013.99 6131.49,-1970.65' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
319
+ <polygon fill='none' filter='url(#shadow)' points='6421.45,-2308.82 6431.96,-2310.14 6424.56,-2302.55 6421.45,-2308.82' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6421.45,-2308.82 6431.96,-2310.14 6424.56,-2302.55 6421.45,-2308.82' stroke='black' style='fill:url(#none);stroke:black;'/>
320
+ </g><g class='node' id='node150'><title>yuml_lists</title>
321
+ <polygon fill='skyblue' filter='url(#shadow)' points='6206,-1873 6206,-1993 6376,-1993 6376,-1873 6206,-1873' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6206,-1873 6206,-1993 6376,-1993 6376,-1873 6206,-1873' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
322
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1981.8'>Lists</text>
323
+ <polyline fill='none' filter='url(#shadow)' points='6206,-1978 6376,-1978 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6206,-1978 6376,-1978 ' stroke='black' style='fill:url(#none);stroke:black;'/>
324
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1966.8'> </text>
325
+ <polyline fill='none' filter='url(#shadow)' points='6206,-1963 6376,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6206,-1963 6376,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
326
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1951.8'>getByTitle()</text>
327
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1936.8'>getById()</text>
328
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1921.8'>add()</text>
329
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1906.8'>ensure()</text>
330
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1891.8'>ensureSiteAssetsLibrary()</text>
331
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6291' y='-1876.8'>ensureSitePagesLibrary()</text>
332
+ </g><g class='edge' id='edge18'><title>yuml_sharepointqueryablecollection-&gt;yuml_lists</title>
333
+ <path d='M6482.27,-2285.65C6452.33,-2243.68 6414.44,-2187.96 6385,-2136 6358.59,-2089.39 6333.24,-2034.09 6315.54,-1993.14' fill='none' stroke='black'/><path d='M6482.27,-2285.65C6452.33,-2243.68 6414.44,-2187.96 6385,-2136 6358.59,-2089.39 6333.24,-2034.09 6315.54,-1993.14' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
334
+ <polygon fill='none' filter='url(#shadow)' points='6479.48,-2287.76 6488.15,-2293.85 6485.17,-2283.69 6479.48,-2287.76' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6479.48,-2287.76 6488.15,-2293.85 6485.17,-2283.69 6479.48,-2287.76' stroke='black' style='fill:url(#none);stroke:black;'/>
335
+ </g><g class='node' id='node155'><title>yuml_itemversions</title>
336
+ <polygon fill='skyblue' filter='url(#shadow)' points='6394,-1910.5 6394,-1955.5 6496,-1955.5 6496,-1910.5 6394,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6394,-1910.5 6394,-1955.5 6496,-1955.5 6496,-1910.5 6394,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
337
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6445' y='-1944.3'>ItemVersions</text>
338
+ <polyline fill='none' filter='url(#shadow)' points='6394,-1940.5 6496,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6394,-1940.5 6496,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
339
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6445' y='-1929.3'> </text>
340
+ <polyline fill='none' filter='url(#shadow)' points='6394,-1925.5 6496,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6394,-1925.5 6496,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
341
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6445' y='-1914.3'>getById()</text>
342
+ </g><g class='edge' id='edge19'><title>yuml_sharepointqueryablecollection-&gt;yuml_itemversions</title>
343
+ <path d='M6517.64,-2283.85C6497.5,-2186.85 6461.93,-2015.53 6449.47,-1955.5' fill='none' stroke='black'/><path d='M6517.64,-2283.85C6497.5,-2186.85 6461.93,-2015.53 6449.47,-1955.5' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
344
+ <polygon fill='none' filter='url(#shadow)' points='6514.26,-2284.78 6519.72,-2293.86 6521.11,-2283.35 6514.26,-2284.78' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6514.26,-2284.78 6519.72,-2293.86 6521.11,-2283.35 6514.26,-2284.78' stroke='black' style='fill:url(#none);stroke:black;'/>
345
+ </g><g class='node' id='node157'><title>yuml_items</title>
346
+ <polygon fill='skyblue' filter='url(#shadow)' points='6513.5,-1865.5 6513.5,-2000.5 6726.5,-2000.5 6726.5,-1865.5 6513.5,-1865.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6513.5,-1865.5 6513.5,-2000.5 6726.5,-2000.5 6726.5,-1865.5 6513.5,-1865.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
347
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1989.3'>Items</text>
348
+ <polyline fill='none' filter='url(#shadow)' points='6513.5,-1985.5 6726.5,-1985.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6513.5,-1985.5 6726.5,-1985.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
349
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1974.3'> </text>
350
+ <polyline fill='none' filter='url(#shadow)' points='6513.5,-1970.5 6726.5,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6513.5,-1970.5 6726.5,-1970.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
351
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1959.3'>getById()</text>
352
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1944.3'>getItemByStringId()</text>
353
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1929.3'>skip()</text>
354
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1914.3'>getPaged()</text>
355
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1899.3'>getAll()</text>
356
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1884.3'>add()</text>
357
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6620' y='-1869.3'>ensureListItemEntityTypeName()</text>
358
+ </g><g class='edge' id='edge20'><title>yuml_sharepointqueryablecollection-&gt;yuml_items</title>
359
+ <path d='M6546.48,-2284.07C6562.95,-2205.62 6589.68,-2078.35 6605.97,-2000.8' fill='none' stroke='black'/><path d='M6546.48,-2284.07C6562.95,-2205.62 6589.68,-2078.35 6605.97,-2000.8' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
360
+ <polygon fill='none' filter='url(#shadow)' points='6543.05,-2283.35 6544.42,-2293.86 6549.9,-2284.79 6543.05,-2283.35' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6543.05,-2283.35 6544.42,-2293.86 6549.9,-2284.79 6543.05,-2283.35' stroke='black' style='fill:url(#none);stroke:black;'/>
361
+ </g><g class='node' id='node163'><title>yuml_forms</title>
362
+ <polygon fill='skyblue' filter='url(#shadow)' points='6744.5,-1910.5 6744.5,-1955.5 6825.5,-1955.5 6825.5,-1910.5 6744.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6744.5,-1910.5 6744.5,-1955.5 6825.5,-1955.5 6825.5,-1910.5 6744.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
363
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6785' y='-1944.3'>Forms</text>
364
+ <polyline fill='none' filter='url(#shadow)' points='6744.5,-1940.5 6825.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6744.5,-1940.5 6825.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
365
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6785' y='-1929.3'> </text>
366
+ <polyline fill='none' filter='url(#shadow)' points='6744.5,-1925.5 6825.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6744.5,-1925.5 6825.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
367
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6785' y='-1914.3'>getById()</text>
368
+ </g><g class='edge' id='edge21'><title>yuml_sharepointqueryablecollection-&gt;yuml_forms</title>
369
+ <path d='M6587.35,-2286.03C6604.19,-2266.34 6623.01,-2245 6641,-2226 6680.77,-2184 6706.02,-2186.05 6735,-2136 6769.4,-2076.6 6780.28,-1994.1 6783.6,-1955.51' fill='none' stroke='black'/><path d='M6587.35,-2286.03C6604.19,-2266.34 6623.01,-2245 6641,-2226 6680.77,-2184 6706.02,-2186.05 6735,-2136 6769.4,-2076.6 6780.28,-1994.1 6783.6,-1955.51' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
370
+ <polygon fill='none' filter='url(#shadow)' points='6584.57,-2283.9 6580.75,-2293.78 6589.9,-2288.44 6584.57,-2283.9' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6584.57,-2283.9 6580.75,-2293.78 6589.9,-2288.44 6584.57,-2283.9' stroke='black' style='fill:url(#none);stroke:black;'/>
371
+ </g><g class='node' id='node165'><title>yuml_folders</title>
372
+ <polygon fill='skyblue' filter='url(#shadow)' points='6843.5,-1903 6843.5,-1963 6946.5,-1963 6946.5,-1903 6843.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6843.5,-1903 6843.5,-1963 6946.5,-1963 6946.5,-1903 6843.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
373
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6895' y='-1951.8'>Folders</text>
374
+ <polyline fill='none' filter='url(#shadow)' points='6843.5,-1948 6946.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6843.5,-1948 6946.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
375
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6895' y='-1936.8'> </text>
376
+ <polyline fill='none' filter='url(#shadow)' points='6843.5,-1933 6946.5,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6843.5,-1933 6946.5,-1933 ' 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='6895' y='-1921.8'>getByName()</text>
378
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6895' y='-1906.8'>add()</text>
379
+ </g><g class='edge' id='edge22'><title>yuml_sharepointqueryablecollection-&gt;yuml_folders</title>
380
+ <path d='M6580.6,-2285.78C6597.99,-2264.82 6618.83,-2242.82 6641,-2226 6716.41,-2168.8 6772.03,-2207.54 6834,-2136 6877.29,-2086.02 6889.86,-2006.1 6893.51,-1963.3' fill='none' stroke='black'/><path d='M6580.6,-2285.78C6597.99,-2264.82 6618.83,-2242.82 6641,-2226 6716.41,-2168.8 6772.03,-2207.54 6834,-2136 6877.29,-2086.02 6889.86,-2006.1 6893.51,-1963.3' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
381
+ <polygon fill='none' filter='url(#shadow)' points='6577.71,-2283.79 6574.1,-2293.75 6583.13,-2288.21 6577.71,-2283.79' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6577.71,-2283.79 6574.1,-2293.75 6583.13,-2288.21 6577.71,-2283.79' stroke='black' style='fill:url(#none);stroke:black;'/>
382
+ </g><g class='node' id='node169'><title>yuml_versions</title>
383
+ <polygon fill='skyblue' filter='url(#shadow)' points='6964.5,-1865.5 6964.5,-2000.5 7087.5,-2000.5 7087.5,-1865.5 6964.5,-1865.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6964.5,-1865.5 6964.5,-2000.5 7087.5,-2000.5 7087.5,-1865.5 6964.5,-1865.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
384
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1989.3'>Versions</text>
385
+ <polyline fill='none' filter='url(#shadow)' points='6964.5,-1985.5 7087.5,-1985.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6964.5,-1985.5 7087.5,-1985.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
386
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1974.3'> </text>
387
+ <polyline fill='none' filter='url(#shadow)' points='6964.5,-1970.5 7087.5,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6964.5,-1970.5 7087.5,-1970.5 ' 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='7026' y='-1959.3'>getById()</text>
389
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1944.3'>deleteAll()</text>
390
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1929.3'>deleteById()</text>
391
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1914.3'>recycleByID()</text>
392
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1899.3'>deleteByLabel()</text>
393
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1884.3'>recycleByLabel()</text>
394
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7026' y='-1869.3'>restoreByLabel()</text>
395
+ </g><g class='edge' id='edge23'><title>yuml_sharepointqueryablecollection-&gt;yuml_versions</title>
396
+ <path d='M6577.46,-2285.72C6595.06,-2263.98 6616.82,-2241.51 6641,-2226 6763.2,-2147.62 6849.37,-2235.59 6955,-2136 6992.32,-2100.81 7010.04,-2044.86 7018.44,-2000.76' fill='none' stroke='black'/><path d='M6577.46,-2285.72C6595.06,-2263.98 6616.82,-2241.51 6641,-2226 6763.2,-2147.62 6849.37,-2235.59 6955,-2136 6992.32,-2100.81 7010.04,-2044.86 7018.44,-2000.76' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
397
+ <polygon fill='none' filter='url(#shadow)' points='6574.62,-2283.67 6571.17,-2293.68 6580.11,-2288.01 6574.62,-2283.67' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6574.62,-2283.67 6571.17,-2293.68 6580.11,-2288.01 6574.62,-2283.67' stroke='black' style='fill:url(#none);stroke:black;'/>
398
+ </g><g class='node' id='node171'><title>yuml_files</title>
399
+ <polygon fill='skyblue' filter='url(#shadow)' points='7106,-1888 7106,-1978 7236,-1978 7236,-1888 7106,-1888' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7106,-1888 7106,-1978 7236,-1978 7236,-1888 7106,-1888' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
400
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7171' y='-1966.8'>Files</text>
401
+ <polyline fill='none' filter='url(#shadow)' points='7106,-1963 7236,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7106,-1963 7236,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
402
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7171' y='-1951.8'> </text>
403
+ <polyline fill='none' filter='url(#shadow)' points='7106,-1948 7236,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7106,-1948 7236,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
404
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7171' y='-1936.8'>getByName()</text>
405
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7171' y='-1921.8'>add()</text>
406
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7171' y='-1906.8'>addChunked()</text>
407
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7171' y='-1891.8'>addTemplateFile()</text>
408
+ </g><g class='edge' id='edge24'><title>yuml_sharepointqueryablecollection-&gt;yuml_files</title>
409
+ <path d='M6575.81,-2285.74C6593.5,-2263.52 6615.75,-2240.74 6641,-2226 6819.03,-2122.07 6939.04,-2269.63 7096,-2136 7142.71,-2096.23 7160.36,-2024.51 7167,-1978.11' fill='none' stroke='black'/><path d='M6575.81,-2285.74C6593.5,-2263.52 6615.75,-2240.74 6641,-2226 6819.03,-2122.07 6939.04,-2269.63 7096,-2136 7142.71,-2096.23 7160.36,-2024.51 7167,-1978.11' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
410
+ <polygon fill='none' filter='url(#shadow)' points='6572.85,-2283.84 6569.49,-2293.88 6578.39,-2288.12 6572.85,-2283.84' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6572.85,-2283.84 6569.49,-2293.88 6578.39,-2288.12 6572.85,-2283.84' stroke='black' style='fill:url(#none);stroke:black;'/>
411
+ </g><g class='node' id='node175'><title>yuml_fields</title>
412
+ <polygon fill='skyblue' filter='url(#shadow)' points='7254.5,-1790.5 7254.5,-2075.5 7439.5,-2075.5 7439.5,-1790.5 7254.5,-1790.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7254.5,-1790.5 7254.5,-2075.5 7439.5,-2075.5 7439.5,-1790.5 7254.5,-1790.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
413
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-2064.3'>Fields</text>
414
+ <polyline fill='none' filter='url(#shadow)' points='7254.5,-2060.5 7439.5,-2060.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7254.5,-2060.5 7439.5,-2060.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
415
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-2049.3'> </text>
416
+ <polyline fill='none' filter='url(#shadow)' points='7254.5,-2045.5 7439.5,-2045.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7254.5,-2045.5 7439.5,-2045.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
417
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-2034.3'>getByTitle()</text>
418
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-2019.3'>getByInternalNameOrTitle()</text>
419
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-2004.3'>getById()</text>
420
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1989.3'>createFieldAsXml()</text>
421
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1974.3'>add()</text>
422
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1959.3'>addText()</text>
423
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1944.3'>addCalculated()</text>
424
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1929.3'>addDateTime()</text>
425
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1914.3'>addNumber()</text>
426
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1899.3'>addCurrency()</text>
427
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1884.3'>addMultilineText()</text>
428
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1869.3'>addUrl()</text>
429
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1854.3'>addUser()</text>
430
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1839.3'>addLookup()</text>
431
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1824.3'>addChoice()</text>
432
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1809.3'>addMultiChoice()</text>
433
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7347' y='-1794.3'>addBoolean()</text>
434
+ </g><g class='edge' id='edge25'><title>yuml_sharepointqueryablecollection-&gt;yuml_fields</title>
435
+ <path d='M6574.73,-2285.96C6592.5,-2263.39 6615.06,-2240.33 6641,-2226 6878.57,-2094.76 7024.99,-2294.92 7245,-2136 7266.66,-2120.36 7284,-2098.77 7297.8,-2075.51' fill='none' stroke='black'/><path d='M6574.73,-2285.96C6592.5,-2263.39 6615.06,-2240.33 6641,-2226 6878.57,-2094.76 7024.99,-2294.92 7245,-2136 7266.66,-2120.36 7284,-2098.77 7297.8,-2075.51' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
436
+ <polygon fill='none' filter='url(#shadow)' points='6571.94,-2283.84 6568.64,-2293.91 6577.5,-2288.09 6571.94,-2283.84' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6571.94,-2283.84 6568.64,-2293.91 6577.5,-2288.09 6571.94,-2283.84' stroke='black' style='fill:url(#none);stroke:black;'/>
437
+ </g><g class='node' id='node179'><title>yuml_features</title>
438
+ <polygon fill='skyblue' filter='url(#shadow)' points='7457.5,-1895.5 7457.5,-1970.5 7538.5,-1970.5 7538.5,-1895.5 7457.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7457.5,-1895.5 7457.5,-1970.5 7538.5,-1970.5 7538.5,-1895.5 7457.5,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
439
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7498' y='-1959.3'>Features</text>
440
+ <polyline fill='none' filter='url(#shadow)' points='7457.5,-1955.5 7538.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7457.5,-1955.5 7538.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
441
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7498' y='-1944.3'> </text>
442
+ <polyline fill='none' filter='url(#shadow)' points='7457.5,-1940.5 7538.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7457.5,-1940.5 7538.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
443
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7498' y='-1929.3'>getById()</text>
444
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7498' y='-1914.3'>add()</text>
445
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7498' y='-1899.3'>remove()</text>
446
+ </g><g class='edge' id='edge26'><title>yuml_sharepointqueryablecollection-&gt;yuml_features</title>
447
+ <path d='M6574.21,-2285.74C6591.98,-2263.02 6614.69,-2239.91 6641,-2226 6800.53,-2141.67 7312.29,-2254.93 7448,-2136 7495.14,-2094.69 7501.35,-2016.59 7500.46,-1970.54' fill='none' stroke='black'/><path d='M6574.21,-2285.74C6591.98,-2263.02 6614.69,-2239.91 6641,-2226 6800.53,-2141.67 7312.29,-2254.93 7448,-2136 7495.14,-2094.69 7501.35,-2016.59 7500.46,-1970.54' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
448
+ <polygon fill='none' filter='url(#shadow)' points='6571.39,-2283.66 6568.13,-2293.74 6576.97,-2287.89 6571.39,-2283.66' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6571.39,-2283.66 6568.13,-2293.74 6576.97,-2287.89 6571.39,-2283.66' stroke='black' style='fill:url(#none);stroke:black;'/>
449
+ </g><g class='node' id='node186'><title>yuml_fieldlinks</title>
450
+ <polygon fill='skyblue' filter='url(#shadow)' points='7556.5,-1910.5 7556.5,-1955.5 7643.5,-1955.5 7643.5,-1910.5 7556.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7556.5,-1910.5 7556.5,-1955.5 7643.5,-1955.5 7643.5,-1910.5 7556.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
451
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7600' y='-1944.3'>FieldLinks</text>
452
+ <polyline fill='none' filter='url(#shadow)' points='7556.5,-1940.5 7643.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7556.5,-1940.5 7643.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
453
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7600' y='-1929.3'> </text>
454
+ <polyline fill='none' filter='url(#shadow)' points='7556.5,-1925.5 7643.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7556.5,-1925.5 7643.5,-1925.5 ' 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='7600' y='-1914.3'>getById()</text>
456
+ </g><g class='edge' id='edge27'><title>yuml_sharepointqueryablecollection-&gt;yuml_fieldlinks</title>
457
+ <path d='M6573.89,-2285.86C6591.69,-2263.03 6614.49,-2239.81 6641,-2226 6820.44,-2132.52 7393.12,-2267.36 7547,-2136 7600.5,-2090.33 7603.35,-1997.88 7601.59,-1955.77' fill='none' stroke='black'/><path d='M6573.89,-2285.86C6591.69,-2263.03 6614.49,-2239.81 6641,-2226 6820.44,-2132.52 7393.12,-2267.36 7547,-2136 7600.5,-2090.33 7603.35,-1997.88 7601.59,-1955.77' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
458
+ <polygon fill='none' filter='url(#shadow)' points='6571.04,-2283.82 6567.8,-2293.91 6576.63,-2288.04 6571.04,-2283.82' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6571.04,-2283.82 6567.8,-2293.91 6576.63,-2288.04 6571.04,-2283.82' stroke='black' style='fill:url(#none);stroke:black;'/>
459
+ </g><g class='node' id='node188'><title>yuml_contenttypes</title>
460
+ <polygon fill='skyblue' filter='url(#shadow)' points='7662,-1895.5 7662,-1970.5 7842,-1970.5 7842,-1895.5 7662,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7662,-1895.5 7662,-1970.5 7842,-1970.5 7842,-1895.5 7662,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
461
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7752' y='-1959.3'>ContentTypes</text>
462
+ <polyline fill='none' filter='url(#shadow)' points='7662,-1955.5 7842,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7662,-1955.5 7842,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
463
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7752' y='-1944.3'> </text>
464
+ <polyline fill='none' filter='url(#shadow)' points='7662,-1940.5 7842,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7662,-1940.5 7842,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
465
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7752' y='-1929.3'>getById()</text>
466
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7752' y='-1914.3'>addAvailableContentType()</text>
467
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7752' y='-1899.3'>add()</text>
468
+ </g><g class='edge' id='edge28'><title>yuml_sharepointqueryablecollection-&gt;yuml_contenttypes</title>
469
+ <path d='M6573.81,-2285.72C6591.6,-2262.87 6614.42,-2239.67 6641,-2226 6841.57,-2122.81 7465.84,-2263.35 7652,-2136 7708.36,-2097.45 7734.35,-2017.6 7745.18,-1970.66' fill='none' stroke='black'/><path d='M6573.81,-2285.72C6591.6,-2262.87 6614.42,-2239.67 6641,-2226 6841.57,-2122.81 7465.84,-2263.35 7652,-2136 7708.36,-2097.45 7734.35,-2017.6 7745.18,-1970.66' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
470
+ <polygon fill='none' filter='url(#shadow)' points='6570.97,-2283.68 6567.73,-2293.77 6576.55,-2287.9 6570.97,-2283.68' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.97,-2283.68 6567.73,-2293.77 6576.55,-2287.9 6570.97,-2283.68' stroke='black' style='fill:url(#none);stroke:black;'/>
471
+ </g><g class='node' id='node190'><title>yuml_replies</title>
472
+ <polygon fill='skyblue' filter='url(#shadow)' points='7860.5,-1910.5 7860.5,-1955.5 7929.5,-1955.5 7929.5,-1910.5 7860.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7860.5,-1910.5 7860.5,-1955.5 7929.5,-1955.5 7929.5,-1910.5 7860.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
473
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7895' y='-1944.3'>Replies</text>
474
+ <polyline fill='none' filter='url(#shadow)' points='7860.5,-1940.5 7929.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7860.5,-1940.5 7929.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
475
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7895' y='-1929.3'> </text>
476
+ <polyline fill='none' filter='url(#shadow)' points='7860.5,-1925.5 7929.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7860.5,-1925.5 7929.5,-1925.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='7895' y='-1914.3'>add()</text>
478
+ </g><g class='edge' id='edge29'><title>yuml_sharepointqueryablecollection-&gt;yuml_replies</title>
479
+ <path d='M6573.48,-2285.81C6591.29,-2262.84 6614.21,-2239.54 6641,-2226 6881.65,-2104.4 7647.45,-2312.83 7851,-2136 7903.56,-2090.33 7901.73,-1997.88 7897.76,-1955.77' fill='none' stroke='black'/><path d='M6573.48,-2285.81C6591.29,-2262.84 6614.21,-2239.54 6641,-2226 6881.65,-2104.4 7647.45,-2312.83 7851,-2136 7903.56,-2090.33 7901.73,-1997.88 7897.76,-1955.77' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
480
+ <polygon fill='none' filter='url(#shadow)' points='6570.6,-2283.81 6567.39,-2293.9 6576.2,-2288.01 6570.6,-2283.81' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.6,-2283.81 6567.39,-2293.9 6576.2,-2288.01 6570.6,-2283.81' stroke='black' style='fill:url(#none);stroke:black;'/>
481
+ </g><g class='node' id='node192'><title>yuml_comments</title>
482
+ <polygon fill='skyblue' filter='url(#shadow)' points='7947.5,-1895.5 7947.5,-1970.5 8036.5,-1970.5 8036.5,-1895.5 7947.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7947.5,-1895.5 7947.5,-1970.5 8036.5,-1970.5 8036.5,-1895.5 7947.5,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
483
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7992' y='-1959.3'>Comments</text>
484
+ <polyline fill='none' filter='url(#shadow)' points='7947.5,-1955.5 8036.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7947.5,-1955.5 8036.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
485
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7992' y='-1944.3'> </text>
486
+ <polyline fill='none' filter='url(#shadow)' points='7947.5,-1940.5 8036.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7947.5,-1940.5 8036.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
487
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7992' y='-1929.3'>getById()</text>
488
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7992' y='-1914.3'>add()</text>
489
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7992' y='-1899.3'>clear()</text>
490
+ </g><g class='edge' id='edge30'><title>yuml_sharepointqueryablecollection-&gt;yuml_comments</title>
491
+ <path d='M6573.44,-2285.74C6591.25,-2262.76 6614.17,-2239.47 6641,-2226 6899.19,-2096.34 7715.07,-2319.78 7938,-2136 7986.74,-2095.82 7994.17,-2016.94 7993.93,-1970.53' fill='none' stroke='black'/><path d='M6573.44,-2285.74C6591.25,-2262.76 6614.17,-2239.47 6641,-2226 6899.19,-2096.34 7715.07,-2319.78 7938,-2136 7986.74,-2095.82 7994.17,-2016.94 7993.93,-1970.53' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
492
+ <polygon fill='none' filter='url(#shadow)' points='6570.56,-2283.74 6567.36,-2293.84 6576.16,-2287.94 6570.56,-2283.74' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.56,-2283.74 6567.36,-2293.84 6576.16,-2287.94 6570.56,-2283.74' stroke='black' style='fill:url(#none);stroke:black;'/>
493
+ </g><g class='node' id='node212'><title>yuml_attachmentfiles</title>
494
+ <polygon fill='skyblue' filter='url(#shadow)' points='8054.5,-1888 8054.5,-1978 8173.5,-1978 8173.5,-1888 8054.5,-1888' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='8054.5,-1888 8054.5,-1978 8173.5,-1978 8173.5,-1888 8054.5,-1888' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
495
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8114' y='-1966.8'>AttachmentFiles</text>
496
+ <polyline fill='none' filter='url(#shadow)' points='8054.5,-1963 8173.5,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8054.5,-1963 8173.5,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
497
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8114' y='-1951.8'> </text>
498
+ <polyline fill='none' filter='url(#shadow)' points='8054.5,-1948 8173.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8054.5,-1948 8173.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
499
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8114' y='-1936.8'>getByName()</text>
500
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8114' y='-1921.8'>add()</text>
501
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8114' y='-1906.8'>addMultiple()</text>
502
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8114' y='-1891.8'>deleteMultiple()</text>
503
+ </g><g class='edge' id='edge31'><title>yuml_sharepointqueryablecollection-&gt;yuml_attachmentfiles</title>
504
+ <path d='M6573.4,-2285.66C6591.2,-2262.67 6614.14,-2239.4 6641,-2226 6920.76,-2086.43 7796.65,-2325.91 8045,-2136 8093.57,-2098.86 8108.2,-2025.68 8112.46,-1978.35' fill='none' stroke='black'/><path d='M6573.4,-2285.66C6591.2,-2262.67 6614.14,-2239.4 6641,-2226 6920.76,-2086.43 7796.65,-2325.91 8045,-2136 8093.57,-2098.86 8108.2,-2025.68 8112.46,-1978.35' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
505
+ <polygon fill='none' filter='url(#shadow)' points='6570.52,-2283.67 6567.32,-2293.77 6576.12,-2287.87 6570.52,-2283.67' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.52,-2283.67 6567.32,-2293.77 6576.12,-2287.87 6570.52,-2283.67' stroke='black' style='fill:url(#none);stroke:black;'/>
506
+ </g><g class='node' id='node216'><title>yuml_appcatalog</title>
507
+ <polygon fill='skyblue' filter='url(#shadow)' points='8192,-1903 8192,-1963 8296,-1963 8296,-1903 8192,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='8192,-1903 8192,-1963 8296,-1963 8296,-1903 8192,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
508
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8244' y='-1951.8'>AppCatalog</text>
509
+ <polyline fill='none' filter='url(#shadow)' points='8192,-1948 8296,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8192,-1948 8296,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
510
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8244' y='-1936.8'> </text>
511
+ <polyline fill='none' filter='url(#shadow)' points='8192,-1933 8296,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8192,-1933 8296,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
512
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8244' y='-1921.8'>getAppById()</text>
513
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8244' y='-1906.8'>add()</text>
514
+ </g><g class='edge' id='edge32'><title>yuml_sharepointqueryablecollection-&gt;yuml_appcatalog</title>
515
+ <path d='M6573.36,-2285.58C6591.16,-2262.58 6614.1,-2239.33 6641,-2226 6948.38,-2073.73 7912.21,-2347.85 8182,-2136 8235.09,-2094.31 8243.89,-2008.2 8244.64,-1963.06' fill='none' stroke='black'/><path d='M6573.36,-2285.58C6591.16,-2262.58 6614.1,-2239.33 6641,-2226 6948.38,-2073.73 7912.21,-2347.85 8182,-2136 8235.09,-2094.31 8243.89,-2008.2 8244.64,-1963.06' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
516
+ <polygon fill='none' filter='url(#shadow)' points='6570.48,-2283.59 6567.28,-2293.69 6576.08,-2287.79 6570.48,-2283.59' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6570.48,-2283.59 6567.28,-2293.69 6576.08,-2287.79 6570.48,-2283.59' stroke='black' style='fill:url(#none);stroke:black;'/>
517
+ </g><g class='node' id='node13'><title>yuml_webensureuserresult</title>
518
+ <polygon fill='palegreen' filter='url(#shadow)' points='6913,-3159 6913,-3219 7065,-3219 7065,-3159 6913,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='6913,-3159 6913,-3219 7065,-3219 7065,-3159 6913,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
519
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6989' y='-3207.8'>WebEnsureUserResult</text>
520
+ <polyline fill='none' filter='url(#shadow)' points='6913,-3204 7065,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6913,-3204 7065,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
521
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6989' y='-3192.8'>data</text>
522
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6989' y='-3177.8'>user</text>
523
+ <polyline fill='none' filter='url(#shadow)' points='6913,-3174 7065,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6913,-3174 7065,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
524
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6989' y='-3162.8'> </text>
525
+ </g><g class='node' id='node14'><title>yuml_getcatalogresult</title>
526
+ <polygon fill='palegreen' filter='url(#shadow)' points='7083.5,-3159 7083.5,-3219 7208.5,-3219 7208.5,-3159 7083.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7083.5,-3159 7083.5,-3219 7208.5,-3219 7208.5,-3159 7083.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
527
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7146' y='-3207.8'>GetCatalogResult</text>
528
+ <polyline fill='none' filter='url(#shadow)' points='7083.5,-3204 7208.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7083.5,-3204 7208.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
529
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7146' y='-3192.8'>data</text>
530
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7146' y='-3177.8'>list</text>
531
+ <polyline fill='none' filter='url(#shadow)' points='7083.5,-3174 7208.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7083.5,-3174 7208.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
532
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7146' y='-3162.8'> </text>
533
+ </g><g class='node' id='node15'><title>yuml_webupdateresult</title>
534
+ <polygon fill='palegreen' filter='url(#shadow)' points='7227,-3159 7227,-3219 7355,-3219 7355,-3159 7227,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7227,-3159 7227,-3219 7355,-3219 7355,-3159 7227,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
535
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7291' y='-3207.8'>WebUpdateResult</text>
536
+ <polyline fill='none' filter='url(#shadow)' points='7227,-3204 7355,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7227,-3204 7355,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
537
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7291' y='-3192.8'>data</text>
538
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7291' y='-3177.8'>web</text>
539
+ <polyline fill='none' filter='url(#shadow)' points='7227,-3174 7355,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7227,-3174 7355,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
540
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7291' y='-3162.8'> </text>
541
+ </g><g class='node' id='node16'><title>yuml_webaddresult</title>
542
+ <polygon fill='palegreen' filter='url(#shadow)' points='7373.5,-3159 7373.5,-3219 7486.5,-3219 7486.5,-3159 7373.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7373.5,-3159 7373.5,-3219 7486.5,-3219 7486.5,-3159 7373.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
543
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7430' y='-3207.8'>WebAddResult</text>
544
+ <polyline fill='none' filter='url(#shadow)' points='7373.5,-3204 7486.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7373.5,-3204 7486.5,-3204 ' 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='7430' y='-3192.8'>data</text>
546
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7430' y='-3177.8'>web</text>
547
+ <polyline fill='none' filter='url(#shadow)' points='7373.5,-3174 7486.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7373.5,-3174 7486.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
548
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7430' y='-3162.8'> </text>
549
+ </g><g class='node' id='node17'><title>yuml_sharepointqueryableinstance</title>
550
+ <polygon fill='skyblue' filter='url(#shadow)' points='2364.5,-2324 2364.5,-2384 2553.5,-2384 2553.5,-2324 2364.5,-2324' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2364.5,-2324 2364.5,-2384 2553.5,-2384 2553.5,-2324 2364.5,-2324' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
551
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2459' y='-2372.8'>SharePointQueryableInstance</text>
552
+ <polyline fill='none' filter='url(#shadow)' points='2364.5,-2369 2553.5,-2369 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2364.5,-2369 2553.5,-2369 ' 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='2459' y='-2357.8'> </text>
554
+ <polyline fill='none' filter='url(#shadow)' points='2364.5,-2354 2553.5,-2354 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2364.5,-2354 2553.5,-2354 ' stroke='black' style='fill:url(#none);stroke:black;'/>
555
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2459' y='-2342.8'>select()</text>
556
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2459' y='-2327.8'>expand()</text>
557
+ </g><g class='node' id='node18'><title>yuml_webpart</title>
558
+ <polygon fill='skyblue' filter='url(#shadow)' points='3380.5,-1910.5 3380.5,-1955.5 3457.5,-1955.5 3457.5,-1910.5 3380.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3380.5,-1910.5 3380.5,-1955.5 3457.5,-1955.5 3457.5,-1910.5 3380.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
559
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3419' y='-1944.3'>WebPart</text>
560
+ <polyline fill='none' filter='url(#shadow)' points='3380.5,-1940.5 3457.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3380.5,-1940.5 3457.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
561
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3419' y='-1929.3'> </text>
562
+ <polyline fill='none' filter='url(#shadow)' points='3380.5,-1925.5 3457.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3380.5,-1925.5 3457.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
563
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3419' y='-1914.3'> </text>
564
+ </g><g class='edge' id='edge33'><title>yuml_sharepointqueryableinstance-&gt;yuml_webpart</title>
565
+ <path d='M2563.54,-2341.85C2778.1,-2316.84 3257.59,-2249.44 3371,-2136 3420.19,-2086.8 3422.49,-1996.97 3420.65,-1955.74' fill='none' stroke='black'/><path d='M2563.54,-2341.85C2778.1,-2316.84 3257.59,-2249.44 3371,-2136 3420.19,-2086.8 3422.49,-1996.97 3420.65,-1955.74' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
566
+ <polygon fill='none' filter='url(#shadow)' points='2563.06,-2338.38 2553.53,-2343.01 2563.86,-2345.33 2563.06,-2338.38' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.06,-2338.38 2553.53,-2343.01 2563.86,-2345.33 2563.06,-2338.38' stroke='black' style='fill:url(#none);stroke:black;'/>
567
+ </g><g class='node' id='node19'><title>yuml_webpartdefinition</title>
568
+ <polygon fill='skyblue' filter='url(#shadow)' points='3476,-1880.5 3476,-1985.5 3608,-1985.5 3608,-1880.5 3476,-1880.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3476,-1880.5 3476,-1985.5 3608,-1985.5 3608,-1880.5 3476,-1880.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
569
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1974.3'>WebPartDefinition</text>
570
+ <polyline fill='none' filter='url(#shadow)' points='3476,-1970.5 3608,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3476,-1970.5 3608,-1970.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
571
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1959.3'>webpart</text>
572
+ <polyline fill='none' filter='url(#shadow)' points='3476,-1955.5 3608,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3476,-1955.5 3608,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
573
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1944.3'>saveChanges()</text>
574
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1929.3'>moveTo()</text>
575
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1914.3'>close()</text>
576
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1899.3'>open()</text>
577
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3542' y='-1884.3'>delete()</text>
578
+ </g><g class='edge' id='edge34'><title>yuml_sharepointqueryableinstance-&gt;yuml_webpartdefinition</title>
579
+ <path d='M2563.79,-2343.08C2793.31,-2319.39 3330.71,-2252.66 3466,-2136 3509.98,-2098.07 3528.57,-2032.02 3536.38,-1985.81' fill='none' stroke='black'/><path d='M2563.79,-2343.08C2793.31,-2319.39 3330.71,-2252.66 3466,-2136 3509.98,-2098.07 3528.57,-2032.02 3536.38,-1985.81' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
580
+ <polygon fill='none' filter='url(#shadow)' points='2563.35,-2339.61 2553.76,-2344.11 2564.07,-2346.57 2563.35,-2339.61' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.35,-2339.61 2553.76,-2344.11 2564.07,-2346.57 2563.35,-2339.61' stroke='black' style='fill:url(#none);stroke:black;'/>
581
+ </g><g class='node' id='node24'><title>yuml_view</title>
582
+ <polygon fill='skyblue' filter='url(#shadow)' points='3626,-1895.5 3626,-1970.5 3742,-1970.5 3742,-1895.5 3626,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3626,-1895.5 3626,-1970.5 3742,-1970.5 3742,-1895.5 3626,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
583
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3684' y='-1959.3'>View</text>
584
+ <polyline fill='none' filter='url(#shadow)' points='3626,-1955.5 3742,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3626,-1955.5 3742,-1955.5 ' 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='3684' y='-1944.3'>fields</text>
586
+ <polyline fill='none' filter='url(#shadow)' points='3626,-1940.5 3742,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3626,-1940.5 3742,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
587
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3684' y='-1929.3'>update()</text>
588
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3684' y='-1914.3'>delete()</text>
589
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3684' y='-1899.3'>renderAsHtml()</text>
590
+ </g><g class='edge' id='edge35'><title>yuml_sharepointqueryableinstance-&gt;yuml_view</title>
591
+ <path d='M2563.85,-2346.74C2818.44,-2329.49 3459.94,-2273.17 3617,-2136 3665.14,-2093.95 3678.82,-2016.49 3682.62,-1970.67' fill='none' stroke='black'/><path d='M2563.85,-2346.74C2818.44,-2329.49 3459.94,-2273.17 3617,-2136 3665.14,-2093.95 3678.82,-2016.49 3682.62,-1970.67' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
592
+ <polygon fill='none' filter='url(#shadow)' points='2563.59,-2343.25 2553.85,-2347.41 2564.06,-2350.23 2563.59,-2343.25' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.59,-2343.25 2553.85,-2347.41 2564.06,-2350.23 2563.59,-2343.25' stroke='black' style='fill:url(#none);stroke:black;'/>
593
+ </g><g class='node' id='node31'><title>yuml_userprofilequery</title>
594
+ <polygon fill='skyblue' filter='url(#shadow)' points='3760.5,-1730.5 3760.5,-2135.5 3971.5,-2135.5 3971.5,-1730.5 3760.5,-1730.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3760.5,-1730.5 3760.5,-2135.5 3971.5,-2135.5 3971.5,-1730.5 3760.5,-1730.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
595
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2124.3'>UserProfileQuery</text>
596
+ <polyline fill='none' filter='url(#shadow)' points='3760.5,-2120.5 3971.5,-2120.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3760.5,-2120.5 3971.5,-2120.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
597
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2109.3'>clientPeoplePickerQuery</text>
598
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2094.3'>profileLoader</text>
599
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2079.3'>editProfileLink</text>
600
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2064.3'>isMyPeopleListPublic</text>
601
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2049.3'>myFollowers</text>
602
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2034.3'>myProperties</text>
603
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2019.3'>trendingTags</text>
604
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-2004.3'>ownerUserProfile</text>
605
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1989.3'>userProfile</text>
606
+ <polyline fill='none' filter='url(#shadow)' points='3760.5,-1985.5 3971.5,-1985.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3760.5,-1985.5 3971.5,-1985.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
607
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1974.3'>amIFollowedBy()</text>
608
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1959.3'>amIFollowing()</text>
609
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1944.3'>getFollowedTags()</text>
610
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1929.3'>getFollowersFor()</text>
611
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1914.3'>getPeopleFollowedBy()</text>
612
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1899.3'>getPropertiesFor()</text>
613
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1884.3'>getUserProfilePropertyFor()</text>
614
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1869.3'>hideSuggestion()</text>
615
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1854.3'>isFollowing()</text>
616
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1839.3'>setMyProfilePic()</text>
617
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1824.3'>setSingleValueProfileProperty()</text>
618
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1809.3'>setMultiValuedProfileProperty()</text>
619
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1794.3'>createPersonalSiteEnqueueBulk()</text>
620
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1779.3'>createPersonalSite()</text>
621
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1764.3'>shareAllSocialData()</text>
622
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1749.3'>clientPeoplePickerResolveUser()</text>
623
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3866' y='-1734.3'>clientPeoplePickerSearchUser()</text>
624
+ </g><g class='edge' id='edge36'><title>yuml_sharepointqueryableinstance-&gt;yuml_userprofilequery</title>
625
+ <path d='M2564.14,-2346.79C2836.57,-2328.95 3557.54,-2269.95 3750,-2136 3753.49,-2133.57 3756.88,-2131.01 3760.19,-2128.32' fill='none' stroke='black'/><path d='M2564.14,-2346.79C2836.57,-2328.95 3557.54,-2269.95 3750,-2136 3753.49,-2133.57 3756.88,-2131.01 3760.19,-2128.32' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
626
+ <polygon fill='none' filter='url(#shadow)' points='2563.61,-2343.32 2553.86,-2347.46 2564.06,-2350.31 2563.61,-2343.32' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.61,-2343.32 2553.86,-2347.46 2564.06,-2350.31 2563.61,-2343.32' stroke='black' style='fill:url(#none);stroke:black;'/>
627
+ </g><g class='node' id='node32'><title>yuml_usercustomaction</title>
628
+ <polygon fill='skyblue' filter='url(#shadow)' points='3990,-1903 3990,-1963 4124,-1963 4124,-1903 3990,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3990,-1903 3990,-1963 4124,-1963 4124,-1903 3990,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
629
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4057' y='-1951.8'>UserCustomAction</text>
630
+ <polyline fill='none' filter='url(#shadow)' points='3990,-1948 4124,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3990,-1948 4124,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
631
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4057' y='-1936.8'> </text>
632
+ <polyline fill='none' filter='url(#shadow)' points='3990,-1933 4124,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3990,-1933 4124,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
633
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4057' y='-1921.8'>update()</text>
634
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4057' y='-1906.8'>delete()</text>
635
+ </g><g class='edge' id='edge37'><title>yuml_sharepointqueryableinstance-&gt;yuml_usercustomaction</title>
636
+ <path d='M2563.99,-2351.51C2871.18,-2345.11 3760.37,-2311.49 3980,-2136 4033.8,-2093.01 4050.04,-2007.86 4054.92,-1963.08' fill='none' stroke='black'/><path d='M2563.99,-2351.51C2871.18,-2345.11 3760.37,-2311.49 3980,-2136 4033.8,-2093.01 4050.04,-2007.86 4054.92,-1963.08' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
637
+ <polygon fill='none' filter='url(#shadow)' points='2563.68,-2348.01 2553.75,-2351.71 2563.82,-2355.01 2563.68,-2348.01' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.68,-2348.01 2553.75,-2351.71 2563.82,-2355.01 2563.68,-2348.01' stroke='black' style='fill:url(#none);stroke:black;'/>
638
+ </g><g class='node' id='node80'><title>yuml_subscription</title>
639
+ <polygon fill='skyblue' filter='url(#shadow)' points='4142.5,-1903 4142.5,-1963 4239.5,-1963 4239.5,-1903 4142.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4142.5,-1903 4142.5,-1963 4239.5,-1963 4239.5,-1903 4142.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
640
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4191' y='-1951.8'>Subscription</text>
641
+ <polyline fill='none' filter='url(#shadow)' points='4142.5,-1948 4239.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4142.5,-1948 4239.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
642
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4191' y='-1936.8'> </text>
643
+ <polyline fill='none' filter='url(#shadow)' points='4142.5,-1933 4239.5,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4142.5,-1933 4239.5,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
644
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4191' y='-1921.8'>update()</text>
645
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4191' y='-1906.8'>delete()</text>
646
+ </g><g class='edge' id='edge38'><title>yuml_sharepointqueryableinstance-&gt;yuml_subscription</title>
647
+ <path d='M2564.22,-2353.91C2893.46,-2354.59 3896.18,-2339.57 4133,-2136 4183.63,-2092.47 4191.52,-2007.95 4191.89,-1963.29' fill='none' stroke='black'/><path d='M2564.22,-2353.91C2893.46,-2354.59 3896.18,-2339.57 4133,-2136 4183.63,-2092.47 4191.52,-2007.95 4191.89,-1963.29' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
648
+ <polygon fill='none' filter='url(#shadow)' points='2563.74,-2350.41 2553.73,-2353.88 2563.72,-2357.41 2563.74,-2350.41' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.74,-2350.41 2553.73,-2353.88 2563.72,-2357.41 2563.74,-2350.41' stroke='black' style='fill:url(#none);stroke:black;'/>
649
+ </g><g class='node' id='node85'><title>yuml_mysocialquery</title>
650
+ <polygon fill='skyblue' filter='url(#shadow)' points='22.5,-1888 22.5,-1978 141.5,-1978 141.5,-1888 22.5,-1888' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='22.5,-1888 22.5,-1978 141.5,-1978 141.5,-1888 22.5,-1888' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
651
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-1966.8'>MySocialQuery</text>
652
+ <polyline fill='none' filter='url(#shadow)' points='22.5,-1963 141.5,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22.5,-1963 141.5,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
653
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-1951.8'> </text>
654
+ <polyline fill='none' filter='url(#shadow)' points='22.5,-1948 141.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22.5,-1948 141.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
655
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-1936.8'>followed()</text>
656
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-1921.8'>followedCount()</text>
657
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-1906.8'>followers()</text>
658
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-1891.8'>suggestions()</text>
659
+ </g><g class='edge' id='edge39'><title>yuml_sharepointqueryableinstance-&gt;yuml_mysocialquery</title>
660
+ <path d='M2439.62,-2314.97C2422.02,-2284.91 2393.02,-2244.96 2355,-2226 2135.68,-2116.59 347.409,-2282.61 151,-2136 101.85,-2099.31 87.4116,-2025.64 83.3454,-1978.13' fill='none' stroke='black'/><path d='M2439.62,-2314.97C2422.02,-2284.91 2393.02,-2244.96 2355,-2226 2135.68,-2116.59 347.409,-2282.61 151,-2136 101.85,-2099.31 87.4116,-2025.64 83.3454,-1978.13' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
661
+ <polygon fill='none' filter='url(#shadow)' points='2436.74,-2316.97 2444.72,-2323.95 2442.83,-2313.52 2436.74,-2316.97' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.74,-2316.97 2444.72,-2323.95 2442.83,-2313.52 2436.74,-2316.97' stroke='black' style='fill:url(#none);stroke:black;'/>
662
+ </g><g class='node' id='node87'><title>yuml_socialquery</title>
663
+ <polygon fill='skyblue' filter='url(#shadow)' points='160,-1873 160,-1993 390,-1993 390,-1873 160,-1873' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='160,-1873 160,-1993 390,-1993 390,-1873 160,-1873' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
664
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1981.8'>SocialQuery</text>
665
+ <polyline fill='none' filter='url(#shadow)' points='160,-1978 390,-1978 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='160,-1978 390,-1978 ' stroke='black' style='fill:url(#none);stroke:black;'/>
666
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1966.8'>my</text>
667
+ <polyline fill='none' filter='url(#shadow)' points='160,-1963 390,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='160,-1963 390,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
668
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1951.8'>getFollowedSitesUri()</text>
669
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1936.8'>getFollowedDocumentsUri()</text>
670
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1921.8'>follow()</text>
671
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1906.8'>isFollowed()</text>
672
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1891.8'>stopFollowing()</text>
673
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-1876.8'>createSocialActorInfoRequestBody()</text>
674
+ </g><g class='edge' id='edge40'><title>yuml_sharepointqueryableinstance-&gt;yuml_socialquery</title>
675
+ <path d='M2439.6,-2315.02C2421.98,-2284.99 2392.97,-2245.06 2355,-2226 1966.13,-2030.76 773.744,-2357.14 399,-2136 345.841,-2104.63 312.406,-2040.67 293.831,-1993.08' fill='none' stroke='black'/><path d='M2439.6,-2315.02C2421.98,-2284.99 2392.97,-2245.06 2355,-2226 1966.13,-2030.76 773.744,-2357.14 399,-2136 345.841,-2104.63 312.406,-2040.67 293.831,-1993.08' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
676
+ <polygon fill='none' filter='url(#shadow)' points='2436.71,-2317.02 2444.7,-2323.99 2442.8,-2313.56 2436.71,-2317.02' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.71,-2317.02 2444.7,-2323.99 2442.8,-2313.56 2436.71,-2317.02' stroke='black' style='fill:url(#none);stroke:black;'/>
677
+ </g><g class='node' id='node91'><title>yuml_currentuser</title>
678
+ <polygon fill='skyblue' filter='url(#shadow)' points='4257.5,-1910.5 4257.5,-1955.5 4352.5,-1955.5 4352.5,-1910.5 4257.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4257.5,-1910.5 4257.5,-1955.5 4352.5,-1955.5 4352.5,-1910.5 4257.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
679
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4305' y='-1944.3'>CurrentUser</text>
680
+ <polyline fill='none' filter='url(#shadow)' points='4257.5,-1940.5 4352.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4257.5,-1940.5 4352.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
681
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4305' y='-1929.3'> </text>
682
+ <polyline fill='none' filter='url(#shadow)' points='4257.5,-1925.5 4352.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4257.5,-1925.5 4352.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
683
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4305' y='-1914.3'> </text>
684
+ </g><g class='edge' id='edge41'><title>yuml_sharepointqueryableinstance-&gt;yuml_currentuser</title>
685
+ <path d='M2563.65,-2347.01C2927.05,-2325.31 4119.29,-2246.24 4248,-2136 4301.69,-2090.02 4306.74,-1997.72 4306.04,-1955.71' fill='none' stroke='black'/><path d='M2563.65,-2347.01C2927.05,-2325.31 4119.29,-2246.24 4248,-2136 4301.69,-2090.02 4306.74,-1997.72 4306.04,-1955.71' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
686
+ <polygon fill='none' filter='url(#shadow)' points='2563.43,-2343.52 2553.66,-2347.61 2563.85,-2350.5 2563.43,-2343.52' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.43,-2343.52 2553.66,-2347.61 2563.85,-2350.5 2563.43,-2343.52' stroke='black' style='fill:url(#none);stroke:black;'/>
687
+ </g><g class='node' id='node92'><title>yuml_siteuser</title>
688
+ <polygon fill='skyblue' filter='url(#shadow)' points='4370.5,-1903 4370.5,-1963 4445.5,-1963 4445.5,-1903 4370.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='4370.5,-1903 4370.5,-1963 4445.5,-1963 4445.5,-1903 4370.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
689
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4408' y='-1951.8'>SiteUser</text>
690
+ <polyline fill='none' filter='url(#shadow)' points='4370.5,-1948 4445.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4370.5,-1948 4445.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
691
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4408' y='-1936.8'>groups</text>
692
+ <polyline fill='none' filter='url(#shadow)' points='4370.5,-1933 4445.5,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='4370.5,-1933 4445.5,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
693
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4408' y='-1921.8'>update()</text>
694
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='4408' y='-1906.8'>delete()</text>
695
+ </g><g class='edge' id='edge42'><title>yuml_sharepointqueryableinstance-&gt;yuml_siteuser</title>
696
+ <path d='M2563.92,-2348.01C2942.91,-2329.06 4225.84,-2256.44 4361,-2136 4410.19,-2092.16 4413.07,-2007.78 4410.71,-1963.21' fill='none' stroke='black'/><path d='M2563.92,-2348.01C2942.91,-2329.06 4225.84,-2256.44 4361,-2136 4410.19,-2092.16 4413.07,-2007.78 4410.71,-1963.21' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
697
+ <polygon fill='none' filter='url(#shadow)' points='2563.6,-2344.52 2553.79,-2348.52 2563.95,-2351.52 2563.6,-2344.52' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.6,-2344.52 2553.79,-2348.52 2563.95,-2351.52 2563.6,-2344.52' stroke='black' style='fill:url(#none);stroke:black;'/>
698
+ </g><g class='node' id='node96'><title>yuml_sitegroup</title>
699
+ <polygon fill='skyblue' filter='url(#shadow)' points='408,-1910.5 408,-1955.5 492,-1955.5 492,-1910.5 408,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='408,-1910.5 408,-1955.5 492,-1955.5 492,-1910.5 408,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
700
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='450' y='-1944.3'>SiteGroup</text>
701
+ <polyline fill='none' filter='url(#shadow)' points='408,-1940.5 492,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='408,-1940.5 492,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
702
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='450' y='-1929.3'>users</text>
703
+ <polyline fill='none' filter='url(#shadow)' points='408,-1925.5 492,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='408,-1925.5 492,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
704
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='450' y='-1914.3'>update()</text>
705
+ </g><g class='edge' id='edge43'><title>yuml_sharepointqueryableinstance-&gt;yuml_sitegroup</title>
706
+ <path d='M2439.42,-2314.77C2421.79,-2284.79 2392.83,-2245.05 2355,-2226 2170.8,-2133.23 660.588,-2266.64 501,-2136 446.564,-2091.44 445.406,-1997.99 447.991,-1955.66' fill='none' stroke='black'/><path d='M2439.42,-2314.77C2421.79,-2284.79 2392.83,-2245.05 2355,-2226 2170.8,-2133.23 660.588,-2266.64 501,-2136 446.564,-2091.44 445.406,-1997.99 447.991,-1955.66' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
707
+ <polygon fill='none' filter='url(#shadow)' points='2436.54,-2316.77 2444.53,-2323.73 2442.62,-2313.31 2436.54,-2316.77' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.54,-2316.77 2444.53,-2323.73 2442.62,-2313.31 2436.54,-2316.77' stroke='black' style='fill:url(#none);stroke:black;'/>
708
+ </g><g class='node' id='node101'><title>yuml_site</title>
709
+ <polygon fill='skyblue' filter='url(#shadow)' points='510.5,-1858 510.5,-2008 683.5,-2008 683.5,-1858 510.5,-1858' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='510.5,-1858 510.5,-2008 683.5,-2008 683.5,-1858 510.5,-1858' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
710
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1996.8'>Site</text>
711
+ <polyline fill='none' filter='url(#shadow)' points='510.5,-1993 683.5,-1993 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='510.5,-1993 683.5,-1993 ' stroke='black' style='fill:url(#none);stroke:black;'/>
712
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1981.8'>rootWeb</text>
713
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1966.8'>features</text>
714
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1951.8'>userCustomActions</text>
715
+ <polyline fill='none' filter='url(#shadow)' points='510.5,-1948 683.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='510.5,-1948 683.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
716
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1936.8'>getRootWeb()</text>
717
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1921.8'>getContextInfo()</text>
718
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1906.8'>getDocumentLibraries()</text>
719
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1891.8'>getWebUrlFromPageUrl()</text>
720
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1876.8'>createBatch()</text>
721
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='597' y='-1861.8'>openWebById()</text>
722
+ </g><g class='edge' id='edge44'><title>yuml_sharepointqueryableinstance-&gt;yuml_site</title>
723
+ <path d='M2439.4,-2314.83C2421.74,-2284.88 2392.77,-2245.16 2355,-2226 2025.13,-2058.7 1000.22,-2341.97 693,-2136 649.784,-2107.03 625.507,-2053.04 612.183,-2008.16' fill='none' stroke='black'/><path d='M2439.4,-2314.83C2421.74,-2284.88 2392.77,-2245.16 2355,-2226 2025.13,-2058.7 1000.22,-2341.97 693,-2136 649.784,-2107.03 625.507,-2053.04 612.183,-2008.16' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
724
+ <polygon fill='none' filter='url(#shadow)' points='2436.51,-2316.83 2444.51,-2323.77 2442.59,-2313.35 2436.51,-2316.83' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.51,-2316.83 2444.51,-2323.77 2442.59,-2313.35 2436.51,-2316.83' stroke='black' style='fill:url(#none);stroke:black;'/>
725
+ </g><g class='node' id='node103'><title>yuml_filefoldershared</title>
726
+ <polygon fill='skyblue' filter='url(#shadow)' points='702,-1858 702,-2008 882,-2008 882,-1858 702,-1858' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='702,-1858 702,-2008 882,-2008 882,-1858 702,-1858' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
727
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1996.8'>FileFolderShared</text>
728
+ <polyline fill='none' filter='url(#shadow)' points='702,-1993 882,-1993 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='702,-1993 882,-1993 ' stroke='black' style='fill:url(#none);stroke:black;'/>
729
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1981.8'> </text>
730
+ <polyline fill='none' filter='url(#shadow)' points='702,-1978 882,-1978 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='702,-1978 882,-1978 ' stroke='black' style='fill:url(#none);stroke:black;'/>
731
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1966.8'>getShareLink()</text>
732
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1951.8'>checkSharingPermissions()</text>
733
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1936.8'>getSharingInformation()</text>
734
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1921.8'>getObjectSharingSettings()</text>
735
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1906.8'>unshare()</text>
736
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1891.8'>deleteSharingLinkByKind()</text>
737
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1876.8'>unshareLink()</text>
738
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='792' y='-1861.8'>getShareable()</text>
739
+ </g><g class='edge' id='edge45'><title>yuml_sharepointqueryableinstance-&gt;yuml_filefoldershared</title>
740
+ <path d='M2439.36,-2314.9C2421.68,-2284.99 2392.7,-2245.3 2355,-2226 2064.84,-2077.51 1162.16,-2316.87 891,-2136 847.463,-2106.96 822.379,-2052.98 808.359,-2008.12' fill='none' stroke='black'/><path d='M2439.36,-2314.9C2421.68,-2284.99 2392.7,-2245.3 2355,-2226 2064.84,-2077.51 1162.16,-2316.87 891,-2136 847.463,-2106.96 822.379,-2052.98 808.359,-2008.12' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
741
+ <polygon fill='none' filter='url(#shadow)' points='2436.47,-2316.9 2444.48,-2323.83 2442.54,-2313.42 2436.47,-2316.9' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.47,-2316.9 2444.48,-2323.83 2442.54,-2313.42 2436.47,-2316.9' stroke='black' style='fill:url(#none);stroke:black;'/>
742
+ </g><g class='node' id='node106'><title>yuml_sharepointqueryablesecurable</title>
743
+ <polygon fill='skyblue' filter='url(#shadow)' points='3126,-1858 3126,-2008 3362,-2008 3362,-1858 3126,-1858' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3126,-1858 3126,-2008 3362,-2008 3362,-1858 3126,-1858' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
744
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1996.8'>SharePointQueryableSecurable</text>
745
+ <polyline fill='none' filter='url(#shadow)' points='3126,-1993 3362,-1993 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3126,-1993 3362,-1993 ' stroke='black' style='fill:url(#none);stroke:black;'/>
746
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1981.8'>roleAssignments</text>
747
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1966.8'>firstUniqueAncestorSecurableObject</text>
748
+ <polyline fill='none' filter='url(#shadow)' points='3126,-1963 3362,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3126,-1963 3362,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
749
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1951.8'>getUserEffectivePermissions()</text>
750
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1936.8'>getCurrentUserEffectivePermissions()</text>
751
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1921.8'>breakRoleInheritance()</text>
752
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1906.8'>resetRoleInheritance()</text>
753
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1891.8'>userHasPermissions()</text>
754
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1876.8'>currentUserHasPermissions()</text>
755
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1861.8'>hasPermissions()</text>
756
+ </g><g class='edge' id='edge46'><title>yuml_sharepointqueryableinstance-&gt;yuml_sharepointqueryablesecurable</title>
757
+ <path d='M2563.77,-2340.58C2702.74,-2319.53 2949.8,-2265.66 3116,-2136 3158.72,-2102.67 3191.15,-2050.83 3212.67,-2008.01' fill='none' stroke='black'/><path d='M2563.77,-2340.58C2702.74,-2319.53 2949.8,-2265.66 3116,-2136 3158.72,-2102.67 3191.15,-2050.83 3212.67,-2008.01' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
758
+ <polygon fill='none' filter='url(#shadow)' points='2562.92,-2337.17 2553.54,-2342.1 2563.95,-2344.09 2562.92,-2337.17' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2562.92,-2337.17 2553.54,-2342.1 2563.95,-2344.09 2562.92,-2337.17' stroke='black' style='fill:url(#none);stroke:black;'/>
759
+ </g><g class='node' id='node111'><title>yuml_searchsuggest</title>
760
+ <polygon fill='skyblue' filter='url(#shadow)' points='900.5,-1903 900.5,-1963 1077.5,-1963 1077.5,-1903 900.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='900.5,-1903 900.5,-1963 1077.5,-1963 1077.5,-1903 900.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
761
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='989' y='-1951.8'>SearchSuggest</text>
762
+ <polyline fill='none' filter='url(#shadow)' points='900.5,-1948 1077.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='900.5,-1948 1077.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
763
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='989' y='-1936.8'> </text>
764
+ <polyline fill='none' filter='url(#shadow)' points='900.5,-1933 1077.5,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='900.5,-1933 1077.5,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
765
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='989' y='-1921.8'>execute()</text>
766
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='989' y='-1906.8'>mapQueryToQueryString()</text>
767
+ </g><g class='edge' id='edge47'><title>yuml_sharepointqueryableinstance-&gt;yuml_searchsuggest</title>
768
+ <path d='M2439.31,-2314.99C2421.61,-2285.14 2392.61,-2245.47 2355,-2226 2104.14,-2096.12 1320.94,-2294.33 1087,-2136 1027.44,-2095.69 1002.83,-2008.56 993.726,-1963.04' fill='none' stroke='black'/><path d='M2439.31,-2314.99C2421.61,-2285.14 2392.61,-2245.47 2355,-2226 2104.14,-2096.12 1320.94,-2294.33 1087,-2136 1027.44,-2095.69 1002.83,-2008.56 993.726,-1963.04' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
769
+ <polygon fill='none' filter='url(#shadow)' points='2436.42,-2316.99 2444.44,-2323.91 2442.49,-2313.5 2436.42,-2316.99' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.42,-2316.99 2444.44,-2323.91 2442.49,-2313.5 2436.42,-2316.99' stroke='black' style='fill:url(#none);stroke:black;'/>
770
+ </g><g class='node' id='node115'><title>yuml_search</title>
771
+ <polygon fill='skyblue' filter='url(#shadow)' points='1096,-1903 1096,-1963 1188,-1963 1188,-1903 1096,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1096,-1903 1096,-1963 1188,-1963 1188,-1903 1096,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
772
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1142' y='-1951.8'>Search</text>
773
+ <polyline fill='none' filter='url(#shadow)' points='1096,-1948 1188,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1096,-1948 1188,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
774
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1142' y='-1936.8'> </text>
775
+ <polyline fill='none' filter='url(#shadow)' points='1096,-1933 1188,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1096,-1933 1188,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
776
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1142' y='-1921.8'>execute()</text>
777
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1142' y='-1906.8'>fixupProp()</text>
778
+ </g><g class='edge' id='edge48'><title>yuml_sharepointqueryableinstance-&gt;yuml_search</title>
779
+ <path d='M2439.28,-2315.06C2421.55,-2285.25 2392.55,-2245.6 2355,-2226 2126.19,-2106.56 1395.86,-2300.55 1197,-2136 1145.62,-2093.48 1139.64,-2008.13 1140.37,-1963.2' fill='none' stroke='black'/><path d='M2439.28,-2315.06C2421.55,-2285.25 2392.55,-2245.6 2355,-2226 2126.19,-2106.56 1395.86,-2300.55 1197,-2136 1145.62,-2093.48 1139.64,-2008.13 1140.37,-1963.2' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
780
+ <polygon fill='none' filter='url(#shadow)' points='2436.38,-2317.05 2444.41,-2323.96 2442.45,-2313.55 2436.38,-2317.05' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.38,-2317.05 2444.41,-2323.96 2442.45,-2313.55 2436.38,-2317.05' stroke='black' style='fill:url(#none);stroke:black;'/>
781
+ </g><g class='node' id='node129'><title>yuml_roledefinition</title>
782
+ <polygon fill='skyblue' filter='url(#shadow)' points='1206,-1903 1206,-1963 1316,-1963 1316,-1903 1206,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1206,-1903 1206,-1963 1316,-1963 1316,-1903 1206,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
783
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1261' y='-1951.8'>RoleDefinition</text>
784
+ <polyline fill='none' filter='url(#shadow)' points='1206,-1948 1316,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1206,-1948 1316,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
785
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1261' y='-1936.8'> </text>
786
+ <polyline fill='none' filter='url(#shadow)' points='1206,-1933 1316,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1206,-1933 1316,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
787
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1261' y='-1921.8'>update()</text>
788
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1261' y='-1906.8'>delete()</text>
789
+ </g><g class='edge' id='edge49'><title>yuml_sharepointqueryableinstance-&gt;yuml_roledefinition</title>
790
+ <path d='M2439.06,-2314.88C2421.3,-2285.16 2392.34,-2245.72 2355,-2226 2151.83,-2118.7 1504.3,-2279.68 1325,-2136 1272.32,-2093.79 1262.28,-2008.3 1260.82,-1963.27' fill='none' stroke='black'/><path d='M2439.06,-2314.88C2421.3,-2285.16 2392.34,-2245.72 2355,-2226 2151.83,-2118.7 1504.3,-2279.68 1325,-2136 1272.32,-2093.79 1262.28,-2008.3 1260.82,-1963.27' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
791
+ <polygon fill='none' filter='url(#shadow)' points='2436.17,-2316.87 2444.22,-2323.76 2442.22,-2313.36 2436.17,-2316.87' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.17,-2316.87 2444.22,-2323.76 2442.22,-2313.36 2436.17,-2316.87' stroke='black' style='fill:url(#none);stroke:black;'/>
792
+ </g><g class='node' id='node131'><title>yuml_roleassignment</title>
793
+ <polygon fill='skyblue' filter='url(#shadow)' points='1334.5,-1903 1334.5,-1963 1453.5,-1963 1453.5,-1903 1334.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1334.5,-1903 1334.5,-1963 1453.5,-1963 1453.5,-1903 1334.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
794
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1394' y='-1951.8'>RoleAssignment</text>
795
+ <polyline fill='none' filter='url(#shadow)' points='1334.5,-1948 1453.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1334.5,-1948 1453.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
796
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1394' y='-1936.8'>groups</text>
797
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1394' y='-1921.8'>bindings</text>
798
+ <polyline fill='none' filter='url(#shadow)' points='1334.5,-1918 1453.5,-1918 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1334.5,-1918 1453.5,-1918 ' stroke='black' style='fill:url(#none);stroke:black;'/>
799
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1394' y='-1906.8'>delete()</text>
800
+ </g><g class='edge' id='edge50'><title>yuml_sharepointqueryableinstance-&gt;yuml_roleassignment</title>
801
+ <path d='M2438.99,-2315.01C2421.18,-2285.37 2392.21,-2245.97 2355,-2226 2179.26,-2131.69 1617.93,-2260.36 1462,-2136 1408.92,-2093.66 1396.99,-2008.23 1394.5,-1963.24' fill='none' stroke='black'/><path d='M2438.99,-2315.01C2421.18,-2285.37 2392.21,-2245.97 2355,-2226 2179.26,-2131.69 1617.93,-2260.36 1462,-2136 1408.92,-2093.66 1396.99,-2008.23 1394.5,-1963.24' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
802
+ <polygon fill='none' filter='url(#shadow)' points='2436.1,-2316.99 2444.16,-2323.87 2442.14,-2313.47 2436.1,-2316.99' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2436.1,-2316.99 2444.16,-2323.87 2442.14,-2313.47 2436.1,-2316.99' stroke='black' style='fill:url(#none);stroke:black;'/>
803
+ </g><g class='node' id='node140'><title>yuml_timezone</title>
804
+ <polygon fill='skyblue' filter='url(#shadow)' points='1471.5,-1903 1471.5,-1963 1606.5,-1963 1606.5,-1903 1471.5,-1903' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1471.5,-1903 1471.5,-1963 1606.5,-1963 1606.5,-1903 1471.5,-1903' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
805
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1539' y='-1951.8'>TimeZone</text>
806
+ <polyline fill='none' filter='url(#shadow)' points='1471.5,-1948 1606.5,-1948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1471.5,-1948 1606.5,-1948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
807
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1539' y='-1936.8'> </text>
808
+ <polyline fill='none' filter='url(#shadow)' points='1471.5,-1933 1606.5,-1933 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1471.5,-1933 1606.5,-1933 ' stroke='black' style='fill:url(#none);stroke:black;'/>
809
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1539' y='-1921.8'>utcToLocalTime()</text>
810
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1539' y='-1906.8'>localTimeToUTC()</text>
811
+ </g><g class='edge' id='edge51'><title>yuml_sharepointqueryableinstance-&gt;yuml_timezone</title>
812
+ <path d='M2438.72,-2314.95C2420.83,-2285.45 2391.89,-2246.29 2355,-2226 2064.7,-2066.34 1875.51,-2340.7 1615,-2136 1560.94,-2093.52 1545.33,-2008.15 1540.83,-1963.21' fill='none' stroke='black'/><path d='M2438.72,-2314.95C2420.83,-2285.45 2391.89,-2246.29 2355,-2226 2064.7,-2066.34 1875.51,-2340.7 1615,-2136 1560.94,-2093.52 1545.33,-2008.15 1540.83,-1963.21' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
813
+ <polygon fill='none' filter='url(#shadow)' points='2435.82,-2316.92 2443.91,-2323.76 2441.85,-2313.37 2435.82,-2316.92' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2435.82,-2316.92 2443.91,-2323.76 2441.85,-2313.37 2435.82,-2316.92' stroke='black' style='fill:url(#none);stroke:black;'/>
814
+ </g><g class='node' id='node142'><title>yuml_regionalsettings</title>
815
+ <polygon fill='skyblue' filter='url(#shadow)' points='1624.5,-1888 1624.5,-1978 1791.5,-1978 1791.5,-1888 1624.5,-1888' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1624.5,-1888 1624.5,-1978 1791.5,-1978 1791.5,-1888 1624.5,-1888' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
816
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1708' y='-1966.8'>RegionalSettings</text>
817
+ <polyline fill='none' filter='url(#shadow)' points='1624.5,-1963 1791.5,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1624.5,-1963 1791.5,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
818
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1708' y='-1951.8'>installedLanguages</text>
819
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1708' y='-1936.8'>globalInstalledLanguages</text>
820
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1708' y='-1921.8'>timeZone</text>
821
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1708' y='-1906.8'>timeZones</text>
822
+ <polyline fill='none' filter='url(#shadow)' points='1624.5,-1903 1791.5,-1903 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1624.5,-1903 1791.5,-1903 ' stroke='black' style='fill:url(#none);stroke:black;'/>
823
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1708' y='-1891.8'> </text>
824
+ </g><g class='edge' id='edge52'><title>yuml_sharepointqueryableinstance-&gt;yuml_regionalsettings</title>
825
+ <path d='M2438.33,-2315.07C2420.3,-2285.83 2391.36,-2246.96 2355,-2226 2138.88,-2101.44 1999.55,-2287 1801,-2136 1750.45,-2097.56 1726.46,-2025.11 1715.78,-1978.24' fill='none' stroke='black'/><path d='M2438.33,-2315.07C2420.3,-2285.83 2391.36,-2246.96 2355,-2226 2138.88,-2101.44 1999.55,-2287 1801,-2136 1750.45,-2097.56 1726.46,-2025.11 1715.78,-1978.24' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
826
+ <polygon fill='none' filter='url(#shadow)' points='2435.43,-2317.03 2443.57,-2323.81 2441.43,-2313.43 2435.43,-2317.03' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2435.43,-2317.03 2443.57,-2323.81 2441.43,-2313.43 2435.43,-2317.03' stroke='black' style='fill:url(#none);stroke:black;'/>
827
+ </g><g class='node' id='node146'><title>yuml_navigationnode</title>
828
+ <polygon fill='skyblue' filter='url(#shadow)' points='1810,-1910.5 1810,-1955.5 1928,-1955.5 1928,-1910.5 1810,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1810,-1910.5 1810,-1955.5 1928,-1955.5 1928,-1910.5 1810,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
829
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1869' y='-1944.3'>NavigationNode</text>
830
+ <polyline fill='none' filter='url(#shadow)' points='1810,-1940.5 1928,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1810,-1940.5 1928,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
831
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1869' y='-1929.3'>children</text>
832
+ <polyline fill='none' filter='url(#shadow)' points='1810,-1925.5 1928,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1810,-1925.5 1928,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
833
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1869' y='-1914.3'>delete()</text>
834
+ </g><g class='edge' id='edge53'><title>yuml_sharepointqueryableinstance-&gt;yuml_navigationnode</title>
835
+ <path d='M2437.87,-2315.3C2419.66,-2286.37 2390.7,-2247.81 2355,-2226 2192.83,-2126.94 2078.73,-2262.6 1937,-2136 1883.6,-2088.3 1872.08,-1997.3 1869.63,-1955.71' fill='none' stroke='black'/><path d='M2437.87,-2315.3C2419.66,-2286.37 2390.7,-2247.81 2355,-2226 2192.83,-2126.94 2078.73,-2262.6 1937,-2136 1883.6,-2088.3 1872.08,-1997.3 1869.63,-1955.71' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
836
+ <polygon fill='none' filter='url(#shadow)' points='2434.95,-2317.25 2443.17,-2323.94 2440.92,-2313.59 2434.95,-2317.25' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2434.95,-2317.25 2443.17,-2323.94 2440.92,-2313.59 2434.95,-2317.25' stroke='black' style='fill:url(#none);stroke:black;'/>
837
+ </g><g class='node' id='node154'><title>yuml_itemversion</title>
838
+ <polygon fill='skyblue' filter='url(#shadow)' points='1946.5,-1910.5 1946.5,-1955.5 2043.5,-1955.5 2043.5,-1910.5 1946.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='1946.5,-1910.5 1946.5,-1955.5 2043.5,-1955.5 2043.5,-1910.5 1946.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
839
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1995' y='-1944.3'>ItemVersion</text>
840
+ <polyline fill='none' filter='url(#shadow)' points='1946.5,-1940.5 2043.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1946.5,-1940.5 2043.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
841
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1995' y='-1929.3'> </text>
842
+ <polyline fill='none' filter='url(#shadow)' points='1946.5,-1925.5 2043.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='1946.5,-1925.5 2043.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
843
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='1995' y='-1914.3'>delete()</text>
844
+ </g><g class='edge' id='edge54'><title>yuml_sharepointqueryableinstance-&gt;yuml_itemversion</title>
845
+ <path d='M2436.88,-2315.24C2418.39,-2286.82 2389.52,-2248.95 2355,-2226 2238.01,-2148.23 2150.65,-2236.01 2052,-2136 2002.61,-2085.93 1995.3,-1996.55 1994.68,-1955.58' fill='none' stroke='black'/><path d='M2436.88,-2315.24C2418.39,-2286.82 2389.52,-2248.95 2355,-2226 2238.01,-2148.23 2150.65,-2236.01 2052,-2136 2002.61,-2085.93 1995.3,-1996.55 1994.68,-1955.58' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
846
+ <polygon fill='none' filter='url(#shadow)' points='2433.96,-2317.18 2442.28,-2323.74 2439.87,-2313.42 2433.96,-2317.18' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2433.96,-2317.18 2442.28,-2323.74 2439.87,-2313.42 2433.96,-2317.18' stroke='black' style='fill:url(#none);stroke:black;'/>
847
+ </g><g class='node' id='node162'><title>yuml_form</title>
848
+ <polygon fill='skyblue' filter='url(#shadow)' points='2061.5,-1910.5 2061.5,-1955.5 2120.5,-1955.5 2120.5,-1910.5 2061.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2061.5,-1910.5 2061.5,-1955.5 2120.5,-1955.5 2120.5,-1910.5 2061.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
849
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2091' y='-1944.3'>Form</text>
850
+ <polyline fill='none' filter='url(#shadow)' points='2061.5,-1940.5 2120.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2061.5,-1940.5 2120.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
851
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2091' y='-1929.3'> </text>
852
+ <polyline fill='none' filter='url(#shadow)' points='2061.5,-1925.5 2120.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2061.5,-1925.5 2120.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
853
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2091' y='-1914.3'> </text>
854
+ </g><g class='edge' id='edge55'><title>yuml_sharepointqueryableinstance-&gt;yuml_form</title>
855
+ <path d='M2435.68,-2315.22C2416.85,-2287.35 2388.1,-2250.22 2355,-2226 2267.75,-2162.15 2197.73,-2219.46 2129,-2136 2085.45,-2083.11 2085.85,-1995.93 2088.77,-1955.65' fill='none' stroke='black'/><path d='M2435.68,-2315.22C2416.85,-2287.35 2388.1,-2250.22 2355,-2226 2267.75,-2162.15 2197.73,-2219.46 2129,-2136 2085.45,-2083.11 2085.85,-1995.93 2088.77,-1955.65' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
856
+ <polygon fill='none' filter='url(#shadow)' points='2433,-2317.51 2441.44,-2323.91 2438.84,-2313.64 2433,-2317.51' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2433,-2317.51 2441.44,-2323.91 2438.84,-2313.64 2433,-2317.51' stroke='black' style='fill:url(#none);stroke:black;'/>
857
+ </g><g class='node' id='node168'><title>yuml_version</title>
858
+ <polygon fill='skyblue' filter='url(#shadow)' points='2138.5,-1910.5 2138.5,-1955.5 2209.5,-1955.5 2209.5,-1910.5 2138.5,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2138.5,-1910.5 2138.5,-1955.5 2209.5,-1955.5 2209.5,-1910.5 2138.5,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
859
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2174' y='-1944.3'>Version</text>
860
+ <polyline fill='none' filter='url(#shadow)' points='2138.5,-1940.5 2209.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2138.5,-1940.5 2209.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
861
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2174' y='-1929.3'> </text>
862
+ <polyline fill='none' filter='url(#shadow)' points='2138.5,-1925.5 2209.5,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2138.5,-1925.5 2209.5,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
863
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2174' y='-1914.3'>delete()</text>
864
+ </g><g class='edge' id='edge56'><title>yuml_sharepointqueryableinstance-&gt;yuml_version</title>
865
+ <path d='M2433.06,-2315.54C2413.47,-2288.79 2384.91,-2252.93 2355,-2226 2300.86,-2177.26 2259.26,-2196.04 2218,-2136 2179.18,-2079.5 2173.79,-1994.86 2173.56,-1955.53' fill='none' stroke='black'/><path d='M2433.06,-2315.54C2413.47,-2288.79 2384.91,-2252.93 2355,-2226 2300.86,-2177.26 2259.26,-2196.04 2218,-2136 2179.18,-2079.5 2173.79,-1994.86 2173.56,-1955.53' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
866
+ <polygon fill='none' filter='url(#shadow)' points='2430.4,-2317.83 2439.1,-2323.88 2436.07,-2313.73 2430.4,-2317.83' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2430.4,-2317.83 2439.1,-2323.88 2436.07,-2313.73 2430.4,-2317.83' stroke='black' style='fill:url(#none);stroke:black;'/>
867
+ </g><g class='node' id='node174'><title>yuml_field</title>
868
+ <polygon fill='skyblue' filter='url(#shadow)' points='2227.5,-1880.5 2227.5,-1985.5 2394.5,-1985.5 2394.5,-1880.5 2227.5,-1880.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2227.5,-1880.5 2227.5,-1985.5 2394.5,-1985.5 2394.5,-1880.5 2227.5,-1880.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
869
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1974.3'>Field</text>
870
+ <polyline fill='none' filter='url(#shadow)' points='2227.5,-1970.5 2394.5,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2227.5,-1970.5 2394.5,-1970.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
871
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1959.3'> </text>
872
+ <polyline fill='none' filter='url(#shadow)' points='2227.5,-1955.5 2394.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2227.5,-1955.5 2394.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
873
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1944.3'>update()</text>
874
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1929.3'>delete()</text>
875
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1914.3'>setShowInDisplayForm()</text>
876
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1899.3'>setShowInEditForm()</text>
877
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2311' y='-1884.3'>setShowInNewForm()</text>
878
+ </g><g class='edge' id='edge57'><title>yuml_sharepointqueryableinstance-&gt;yuml_field</title>
879
+ <path d='M2445.31,-2314.24C2418.55,-2238.5 2359.33,-2070.83 2329.27,-1985.72' fill='none' stroke='black'/><path d='M2445.31,-2314.24C2418.55,-2238.5 2359.33,-2070.83 2329.27,-1985.72' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
880
+ <polygon fill='none' filter='url(#shadow)' points='2442.08,-2315.61 2448.71,-2323.87 2448.68,-2313.27 2442.08,-2315.61' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2442.08,-2315.61 2448.71,-2323.87 2448.68,-2313.27 2442.08,-2315.61' stroke='black' style='fill:url(#none);stroke:black;'/>
881
+ </g><g class='node' id='node178'><title>yuml_feature</title>
882
+ <polygon fill='skyblue' filter='url(#shadow)' points='2413,-1910.5 2413,-1955.5 2505,-1955.5 2505,-1910.5 2413,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2413,-1910.5 2413,-1955.5 2505,-1955.5 2505,-1910.5 2413,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
883
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2459' y='-1944.3'>Feature</text>
884
+ <polyline fill='none' filter='url(#shadow)' points='2413,-1940.5 2505,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2413,-1940.5 2505,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
885
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2459' y='-1929.3'> </text>
886
+ <polyline fill='none' filter='url(#shadow)' points='2413,-1925.5 2505,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2413,-1925.5 2505,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
887
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2459' y='-1914.3'>deactivate()</text>
888
+ </g><g class='edge' id='edge58'><title>yuml_sharepointqueryableinstance-&gt;yuml_feature</title>
889
+ <path d='M2459,-2313.68C2459,-2227.14 2459,-2022.58 2459,-1955.62' fill='none' stroke='black'/><path d='M2459,-2313.68C2459,-2227.14 2459,-2022.58 2459,-1955.62' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
890
+ <polygon fill='none' filter='url(#shadow)' points='2455.5,-2313.87 2459,-2323.87 2462.5,-2313.87 2455.5,-2313.87' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2455.5,-2313.87 2459,-2323.87 2462.5,-2313.87 2455.5,-2313.87' stroke='black' style='fill:url(#none);stroke:black;'/>
891
+ </g><g class='node' id='node185'><title>yuml_fieldlink</title>
892
+ <polygon fill='skyblue' filter='url(#shadow)' points='2523,-1910.5 2523,-1955.5 2605,-1955.5 2605,-1910.5 2523,-1910.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2523,-1910.5 2523,-1955.5 2605,-1955.5 2605,-1910.5 2523,-1910.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
893
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2564' y='-1944.3'>FieldLink</text>
894
+ <polyline fill='none' filter='url(#shadow)' points='2523,-1940.5 2605,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2523,-1940.5 2605,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
895
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2564' y='-1929.3'> </text>
896
+ <polyline fill='none' filter='url(#shadow)' points='2523,-1925.5 2605,-1925.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2523,-1925.5 2605,-1925.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
897
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2564' y='-1914.3'> </text>
898
+ </g><g class='edge' id='edge59'><title>yuml_sharepointqueryableinstance-&gt;yuml_fieldlink</title>
899
+ <path d='M2468.95,-2314.01C2480.02,-2270.59 2498.39,-2198.3 2514,-2136 2530.46,-2070.29 2549.63,-1992.47 2558.71,-1955.53' fill='none' stroke='black'/><path d='M2468.95,-2314.01C2480.02,-2270.59 2498.39,-2198.3 2514,-2136 2530.46,-2070.29 2549.63,-1992.47 2558.71,-1955.53' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
900
+ <polygon fill='none' filter='url(#shadow)' points='2465.51,-2313.33 2466.44,-2323.88 2472.3,-2315.06 2465.51,-2313.33' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2465.51,-2313.33 2466.44,-2323.88 2472.3,-2315.06 2465.51,-2313.33' stroke='black' style='fill:url(#none);stroke:black;'/>
901
+ </g><g class='node' id='node187'><title>yuml_contenttype</title>
902
+ <polygon fill='skyblue' filter='url(#shadow)' points='2623,-1888 2623,-1978 2773,-1978 2773,-1888 2623,-1888' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2623,-1888 2623,-1978 2773,-1978 2773,-1888 2623,-1888' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
903
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2698' y='-1966.8'>ContentType</text>
904
+ <polyline fill='none' filter='url(#shadow)' points='2623,-1963 2773,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2623,-1963 2773,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
905
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2698' y='-1951.8'>fieldLinks</text>
906
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2698' y='-1936.8'>fields</text>
907
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2698' y='-1921.8'>parent</text>
908
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2698' y='-1906.8'>workflowAssociations</text>
909
+ <polyline fill='none' filter='url(#shadow)' points='2623,-1903 2773,-1903 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2623,-1903 2773,-1903 ' stroke='black' style='fill:url(#none);stroke:black;'/>
910
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2698' y='-1891.8'>delete()</text>
911
+ </g><g class='edge' id='edge60'><title>yuml_sharepointqueryableinstance-&gt;yuml_contenttype</title>
912
+ <path d='M2489.48,-2315.9C2522.93,-2274.02 2576.79,-2202.96 2614,-2136 2642.87,-2084.04 2667.83,-2020.12 2682.88,-1978.28' fill='none' stroke='black'/><path d='M2489.48,-2315.9C2522.93,-2274.02 2576.79,-2202.96 2614,-2136 2642.87,-2084.04 2667.83,-2020.12 2682.88,-1978.28' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
913
+ <polygon fill='none' filter='url(#shadow)' points='2486.61,-2313.89 2483.08,-2323.88 2492.07,-2318.28 2486.61,-2313.89' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2486.61,-2313.89 2483.08,-2323.88 2492.07,-2318.28 2486.61,-2313.89' stroke='black' style='fill:url(#none);stroke:black;'/>
914
+ </g><g class='node' id='node191'><title>yuml_comment</title>
915
+ <polygon fill='skyblue' filter='url(#shadow)' points='2791.5,-1895.5 2791.5,-1970.5 2874.5,-1970.5 2874.5,-1895.5 2791.5,-1895.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2791.5,-1895.5 2791.5,-1970.5 2874.5,-1970.5 2874.5,-1895.5 2791.5,-1895.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
916
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2833' y='-1959.3'>Comment</text>
917
+ <polyline fill='none' filter='url(#shadow)' points='2791.5,-1955.5 2874.5,-1955.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2791.5,-1955.5 2874.5,-1955.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
918
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2833' y='-1944.3'>replies</text>
919
+ <polyline fill='none' filter='url(#shadow)' points='2791.5,-1940.5 2874.5,-1940.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2791.5,-1940.5 2874.5,-1940.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
920
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2833' y='-1929.3'>like()</text>
921
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2833' y='-1914.3'>unlike()</text>
922
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2833' y='-1899.3'>delete()</text>
923
+ </g><g class='edge' id='edge61'><title>yuml_sharepointqueryableinstance-&gt;yuml_comment</title>
924
+ <path d='M2538.78,-2319.55C2612.62,-2284.51 2719.93,-2222.47 2781,-2136 2816.3,-2086.01 2827.66,-2013.99 2831.3,-1970.81' fill='none' stroke='black'/><path d='M2538.78,-2319.55C2612.62,-2284.51 2719.93,-2222.47 2781,-2136 2816.3,-2086.01 2827.66,-2013.99 2831.3,-1970.81' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
925
+ <polygon fill='none' filter='url(#shadow)' points='2537.07,-2316.49 2529.5,-2323.9 2540.04,-2322.83 2537.07,-2316.49' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2537.07,-2316.49 2529.5,-2323.9 2540.04,-2322.83 2537.07,-2316.49' stroke='black' style='fill:url(#none);stroke:black;'/>
926
+ </g><g class='node' id='node211'><title>yuml_attachmentfile</title>
927
+ <polygon fill='skyblue' filter='url(#shadow)' points='2892.5,-1865.5 2892.5,-2000.5 3005.5,-2000.5 3005.5,-1865.5 2892.5,-1865.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2892.5,-1865.5 2892.5,-2000.5 3005.5,-2000.5 3005.5,-1865.5 2892.5,-1865.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
928
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1989.3'>AttachmentFile</text>
929
+ <polyline fill='none' filter='url(#shadow)' points='2892.5,-1985.5 3005.5,-1985.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2892.5,-1985.5 3005.5,-1985.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
930
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1974.3'> </text>
931
+ <polyline fill='none' filter='url(#shadow)' points='2892.5,-1970.5 3005.5,-1970.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2892.5,-1970.5 3005.5,-1970.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
932
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1959.3'>getText()</text>
933
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1944.3'>getBlob()</text>
934
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1929.3'>getBuffer()</text>
935
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1914.3'>getJSON()</text>
936
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1899.3'>setContent()</text>
937
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1884.3'>delete()</text>
938
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2949' y='-1869.3'>getParsed()</text>
939
+ </g><g class='edge' id='edge62'><title>yuml_sharepointqueryableinstance-&gt;yuml_attachmentfile</title>
940
+ <path d='M2563.5,-2324.67C2659.43,-2293.51 2799.03,-2234.34 2883,-2136 2915.46,-2097.98 2932.05,-2043.62 2940.48,-2000.86' fill='none' stroke='black'/><path d='M2563.5,-2324.67C2659.43,-2293.51 2799.03,-2234.34 2883,-2136 2915.46,-2097.98 2932.05,-2043.62 2940.48,-2000.86' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
941
+ <polygon fill='none' filter='url(#shadow)' points='2562.23,-2321.4 2553.78,-2327.78 2564.37,-2328.06 2562.23,-2321.4' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2562.23,-2321.4 2553.78,-2327.78 2564.37,-2328.06 2562.23,-2321.4' stroke='black' style='fill:url(#none);stroke:black;'/>
942
+ </g><g class='node' id='node215'><title>yuml_app</title>
943
+ <polygon fill='skyblue' filter='url(#shadow)' points='3024,-1873 3024,-1993 3108,-1993 3108,-1873 3024,-1873' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3024,-1873 3024,-1993 3108,-1993 3108,-1873 3024,-1873' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
944
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1981.8'>App</text>
945
+ <polyline fill='none' filter='url(#shadow)' points='3024,-1978 3108,-1978 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3024,-1978 3108,-1978 ' stroke='black' style='fill:url(#none);stroke:black;'/>
946
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1966.8'> </text>
947
+ <polyline fill='none' filter='url(#shadow)' points='3024,-1963 3108,-1963 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3024,-1963 3108,-1963 ' stroke='black' style='fill:url(#none);stroke:black;'/>
948
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1951.8'>deploy()</text>
949
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1936.8'>retract()</text>
950
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1921.8'>install()</text>
951
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1906.8'>uninstall()</text>
952
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1891.8'>upgrade()</text>
953
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3066' y='-1876.8'>remove()</text>
954
+ </g><g class='edge' id='edge63'><title>yuml_sharepointqueryableinstance-&gt;yuml_app</title>
955
+ <path d='M2563.67,-2340.82C2689.07,-2320.6 2896.85,-2268.22 3014,-2136 3048.7,-2096.83 3060.8,-2037.52 3064.75,-1993.29' fill='none' stroke='black'/><path d='M2563.67,-2340.82C2689.07,-2320.6 2896.85,-2268.22 3014,-2136 3048.7,-2096.83 3060.8,-2037.52 3064.75,-1993.29' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
956
+ <polygon fill='none' filter='url(#shadow)' points='2563.01,-2337.39 2553.67,-2342.4 2564.09,-2344.3 2563.01,-2337.39' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2563.01,-2337.39 2553.67,-2342.4 2564.09,-2344.3 2563.01,-2337.39' stroke='black' style='fill:url(#none);stroke:black;'/>
957
+ </g><g class='node' id='node21'><title>yuml_sharepointqueryable</title>
958
+ <polygon fill='skyblue' filter='url(#shadow)' points='6763,-2602.5 6763,-2707.5 6907,-2707.5 6907,-2602.5 6763,-2602.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6763,-2602.5 6763,-2707.5 6907,-2707.5 6907,-2602.5 6763,-2602.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
959
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2696.3'>SharePointQueryable</text>
960
+ <polyline fill='none' filter='url(#shadow)' points='6763,-2692.5 6907,-2692.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6763,-2692.5 6907,-2692.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
961
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2681.3'> </text>
962
+ <polyline fill='none' filter='url(#shadow)' points='6763,-2677.5 6907,-2677.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6763,-2677.5 6907,-2677.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
963
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2666.3'>as()</text>
964
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2651.3'>toUrlAndQuery()</text>
965
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2636.3'>getParent()</text>
966
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2621.3'>clone()</text>
967
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-2606.3'>toRequestContext()</text>
968
+ </g><g class='edge' id='edge68'><title>yuml_sharepointqueryable-&gt;yuml_sharepointqueryablecollection</title>
969
+ <path d='M6764.41,-2595.47C6726.66,-2563.18 6680.05,-2521.69 6641,-2482 6620.01,-2460.67 6598.26,-2435.94 6579.77,-2414.01' fill='none' stroke='black'/><path d='M6764.41,-2595.47C6726.66,-2563.18 6680.05,-2521.69 6641,-2482 6620.01,-2460.67 6598.26,-2435.94 6579.77,-2414.01' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
970
+ <polygon fill='none' filter='url(#shadow)' points='6762.44,-2598.39 6772.32,-2602.21 6766.98,-2593.06 6762.44,-2598.39' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6762.44,-2598.39 6772.32,-2602.21 6766.98,-2593.06 6762.44,-2598.39' stroke='black' style='fill:url(#none);stroke:black;'/>
971
+ </g><g class='edge' id='edge67'><title>yuml_sharepointqueryable-&gt;yuml_sharepointqueryableinstance</title>
972
+ <path d='M6752.58,-2648.37C6208.26,-2611.18 3134.44,-2401.15 2553.67,-2361.47' fill='none' stroke='black'/><path d='M6752.58,-2648.37C6208.26,-2611.18 3134.44,-2401.15 2553.67,-2361.47' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
973
+ <polygon fill='none' filter='url(#shadow)' points='6752.48,-2651.87 6762.7,-2649.06 6752.96,-2644.89 6752.48,-2651.87' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6752.48,-2651.87 6762.7,-2649.06 6752.96,-2644.89 6752.48,-2651.87' stroke='black' style='fill:url(#none);stroke:black;'/>
974
+ </g><g class='node' id='node22'><title>yuml_limitedwebpartmanager</title>
975
+ <polygon fill='skyblue' filter='url(#shadow)' points='6650.5,-2324 6650.5,-2384 6819.5,-2384 6819.5,-2324 6650.5,-2324' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6650.5,-2324 6650.5,-2384 6819.5,-2384 6819.5,-2324 6650.5,-2324' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
976
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6735' y='-2372.8'>LimitedWebPartManager</text>
977
+ <polyline fill='none' filter='url(#shadow)' points='6650.5,-2369 6819.5,-2369 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6650.5,-2369 6819.5,-2369 ' stroke='black' style='fill:url(#none);stroke:black;'/>
978
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6735' y='-2357.8'>webparts</text>
979
+ <polyline fill='none' filter='url(#shadow)' points='6650.5,-2354 6819.5,-2354 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6650.5,-2354 6819.5,-2354 ' stroke='black' style='fill:url(#none);stroke:black;'/>
980
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6735' y='-2342.8'>export()</text>
981
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6735' y='-2327.8'>import()</text>
982
+ </g><g class='edge' id='edge64'><title>yuml_sharepointqueryable-&gt;yuml_limitedwebpartmanager</title>
983
+ <path d='M6814.51,-2592.74C6793.26,-2529.19 6760.92,-2432.5 6744.82,-2384.36' fill='none' stroke='black'/><path d='M6814.51,-2592.74C6793.26,-2529.19 6760.92,-2432.5 6744.82,-2384.36' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
984
+ <polygon fill='none' filter='url(#shadow)' points='6811.2,-2593.89 6817.7,-2602.26 6817.84,-2591.67 6811.2,-2593.89' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6811.2,-2593.89 6817.7,-2602.26 6817.84,-2591.67 6811.2,-2593.89' stroke='black' style='fill:url(#none);stroke:black;'/>
985
+ </g><g class='node' id='node29'><title>yuml_utilitymethod</title>
986
+ <polygon fill='skyblue' filter='url(#shadow)' points='2137.5,-2271.5 2137.5,-2436.5 2346.5,-2436.5 2346.5,-2271.5 2137.5,-2271.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='2137.5,-2271.5 2137.5,-2436.5 2346.5,-2436.5 2346.5,-2271.5 2137.5,-2271.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
987
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2425.3'>UtilityMethod</text>
988
+ <polyline fill='none' filter='url(#shadow)' points='2137.5,-2421.5 2346.5,-2421.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2137.5,-2421.5 2346.5,-2421.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
989
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2410.3'> </text>
990
+ <polyline fill='none' filter='url(#shadow)' points='2137.5,-2406.5 2346.5,-2406.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2137.5,-2406.5 2346.5,-2406.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
991
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2395.3'>getBaseUrl()</text>
992
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2380.3'>excute()</text>
993
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2365.3'>sendEmail()</text>
994
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2350.3'>getCurrentUserEmailAddresses()</text>
995
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2335.3'>resolvePrincipal()</text>
996
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2320.3'>searchPrincipals()</text>
997
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2305.3'>createEmailBodyForInvitation()</text>
998
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2290.3'>expandGroupsToPrincipals()</text>
999
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2275.3'>createWikiPage()</text>
1000
+ </g><g class='edge' id='edge65'><title>yuml_sharepointqueryable-&gt;yuml_utilitymethod</title>
1001
+ <path d='M6752.67,-2652.67C6159.95,-2642.88 2561.65,-2579.54 2355,-2482 2332.98,-2471.61 2313.42,-2454.72 2297.02,-2436.61' fill='none' stroke='black'/><path d='M6752.67,-2652.67C6159.95,-2642.88 2561.65,-2579.54 2355,-2482 2332.98,-2471.61 2313.42,-2454.72 2297.02,-2436.61' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1002
+ <polygon fill='none' filter='url(#shadow)' points='6752.78,-2656.17 6762.83,-2652.84 6752.89,-2649.17 6752.78,-2656.17' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6752.78,-2656.17 6762.83,-2652.84 6752.89,-2649.17 6752.78,-2656.17' stroke='black' style='fill:url(#none);stroke:black;'/>
1003
+ </g><g class='node' id='node108'><title>yuml_sharepointqueryableshareable</title>
1004
+ <polygon fill='skyblue' filter='url(#shadow)' points='6837.5,-2241.5 6837.5,-2466.5 7034.5,-2466.5 7034.5,-2241.5 6837.5,-2241.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='6837.5,-2241.5 6837.5,-2466.5 7034.5,-2466.5 7034.5,-2241.5 6837.5,-2241.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1005
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2455.3'>SharePointQueryableShareable</text>
1006
+ <polyline fill='none' filter='url(#shadow)' points='6837.5,-2451.5 7034.5,-2451.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6837.5,-2451.5 7034.5,-2451.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1007
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2440.3'> </text>
1008
+ <polyline fill='none' filter='url(#shadow)' points='6837.5,-2436.5 7034.5,-2436.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='6837.5,-2436.5 7034.5,-2436.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1009
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2425.3'>getShareLink()</text>
1010
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2410.3'>shareWith()</text>
1011
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2395.3'>shareObject()</text>
1012
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2380.3'>unshareObjectWeb()</text>
1013
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2365.3'>checkPermissions()</text>
1014
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2350.3'>getSharingInformation()</text>
1015
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2335.3'>getObjectSharingSettings()</text>
1016
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2320.3'>unshareObject()</text>
1017
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2305.3'>deleteLinkByKind()</text>
1018
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2290.3'>unshareLink()</text>
1019
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2275.3'>getRoleValue()</text>
1020
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2260.3'>getShareObjectWeb()</text>
1021
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6936' y='-2245.3'>sendShareObjectRequest()</text>
1022
+ </g><g class='edge' id='edge66'><title>yuml_sharepointqueryable-&gt;yuml_sharepointqueryableshareable</title>
1023
+ <path d='M6855.83,-2592.34C6868.06,-2556.14 6883.89,-2509.28 6898.24,-2466.78' fill='none' stroke='black'/><path d='M6855.83,-2592.34C6868.06,-2556.14 6883.89,-2509.28 6898.24,-2466.78' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1024
+ <polygon fill='none' filter='url(#shadow)' points='6852.36,-2591.67 6852.48,-2602.26 6858.99,-2593.91 6852.36,-2591.67' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6852.36,-2591.67 6852.48,-2602.26 6858.99,-2593.91 6852.36,-2591.67' stroke='black' style='fill:url(#none);stroke:black;'/>
1025
+ </g><g class='node' id='node137'><title>yuml_relateditemmanagerimpl</title>
1026
+ <polygon fill='skyblue' filter='url(#shadow)' points='7195.5,-2286.5 7195.5,-2421.5 7370.5,-2421.5 7370.5,-2286.5 7195.5,-2286.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7195.5,-2286.5 7195.5,-2421.5 7370.5,-2421.5 7370.5,-2286.5 7195.5,-2286.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1027
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2410.3'>RelatedItemManagerImpl</text>
1028
+ <polyline fill='none' filter='url(#shadow)' points='7195.5,-2406.5 7370.5,-2406.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7195.5,-2406.5 7370.5,-2406.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1029
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2395.3'> </text>
1030
+ <polyline fill='none' filter='url(#shadow)' points='7195.5,-2391.5 7370.5,-2391.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7195.5,-2391.5 7370.5,-2391.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1031
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2380.3'>FromUrl()</text>
1032
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2365.3'>getRelatedItems()</text>
1033
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2350.3'>getPageOneRelatedItems()</text>
1034
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2335.3'>addSingleLink()</text>
1035
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2320.3'>addSingleLinkToUrl()</text>
1036
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2305.3'>addSingleLinkFromUrl()</text>
1037
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2290.3'>deleteSingleLink()</text>
1038
+ </g><g class='edge' id='edge69'><title>yuml_sharepointqueryable-&gt;yuml_relateditemmanagerimpl</title>
1039
+ <path d='M6916.61,-2626.42C6991.96,-2598.22 7104.24,-2549.08 7186,-2482 7206.7,-2465.02 7225.57,-2442.79 7241.06,-2421.69' fill='none' stroke='black'/><path d='M6916.61,-2626.42C6991.96,-2598.22 7104.24,-2549.08 7186,-2482 7206.7,-2465.02 7225.57,-2442.79 7241.06,-2421.69' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1040
+ <polygon fill='none' filter='url(#shadow)' points='6915.31,-2623.16 6907.15,-2629.92 6917.74,-2629.73 6915.31,-2623.16' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6915.31,-2623.16 6907.15,-2629.92 6917.74,-2629.73 6915.31,-2623.16' stroke='black' style='fill:url(#none);stroke:black;'/>
1041
+ </g><g class='node' id='node144'><title>yuml_navigationservice</title>
1042
+ <polygon fill='skyblue' filter='url(#shadow)' points='7389,-2324 7389,-2384 7527,-2384 7527,-2324 7389,-2324' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7389,-2324 7389,-2384 7527,-2384 7527,-2324 7389,-2324' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1043
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2372.8'>NavigationService</text>
1044
+ <polyline fill='none' filter='url(#shadow)' points='7389,-2369 7527,-2369 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7389,-2369 7527,-2369 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1045
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2357.8'> </text>
1046
+ <polyline fill='none' filter='url(#shadow)' points='7389,-2354 7527,-2354 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7389,-2354 7527,-2354 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1047
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2342.8'>getMenuState()</text>
1048
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2327.8'>getMenuNodeKey()</text>
1049
+ </g><g class='edge' id='edge70'><title>yuml_sharepointqueryable-&gt;yuml_navigationservice</title>
1050
+ <path d='M6916.95,-2635.48C7050.11,-2604.19 7305.97,-2538.71 7379,-2482 7411.92,-2456.44 7434.61,-2413.01 7446.96,-2384.16' fill='none' stroke='black'/><path d='M6916.95,-2635.48C7050.11,-2604.19 7305.97,-2538.71 7379,-2482 7411.92,-2456.44 7434.61,-2413.01 7446.96,-2384.16' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1051
+ <polygon fill='none' filter='url(#shadow)' points='6916.13,-2632.08 6907.19,-2637.76 6917.72,-2638.89 6916.13,-2632.08' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6916.13,-2632.08 6907.19,-2637.76 6917.72,-2638.89 6916.13,-2632.08' stroke='black' style='fill:url(#none);stroke:black;'/>
1052
+ </g><g class='node' id='node145'><title>yuml_navigation</title>
1053
+ <polygon fill='skyblue' filter='url(#shadow)' points='7052.5,-2324 7052.5,-2384 7177.5,-2384 7177.5,-2324 7052.5,-2324' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='7052.5,-2324 7052.5,-2384 7177.5,-2384 7177.5,-2324 7052.5,-2324' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1054
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7115' y='-2372.8'>Navigation</text>
1055
+ <polyline fill='none' filter='url(#shadow)' points='7052.5,-2369 7177.5,-2369 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7052.5,-2369 7177.5,-2369 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1056
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7115' y='-2357.8'>quicklaunch</text>
1057
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7115' y='-2342.8'>topNavigationBar</text>
1058
+ <polyline fill='none' filter='url(#shadow)' points='7052.5,-2339 7177.5,-2339 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7052.5,-2339 7177.5,-2339 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1059
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7115' y='-2327.8'> </text>
1060
+ </g><g class='edge' id='edge71'><title>yuml_sharepointqueryable-&gt;yuml_navigation</title>
1061
+ <path d='M6915.29,-2598.58C6956.65,-2567.47 7006.02,-2526.1 7043,-2482 7068.41,-2451.7 7089.58,-2411.17 7102.25,-2384.13' fill='none' stroke='black'/><path d='M6915.29,-2598.58C6956.65,-2567.47 7006.02,-2526.1 7043,-2482 7068.41,-2451.7 7089.58,-2411.17 7102.25,-2384.13' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1062
+ <polygon fill='none' filter='url(#shadow)' points='6913.06,-2595.88 6907.13,-2604.67 6917.24,-2601.49 6913.06,-2595.88' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6913.06,-2595.88 6907.13,-2604.67 6917.24,-2601.49 6913.06,-2595.88' stroke='black' style='fill:url(#none);stroke:black;'/>
1063
+ </g><g class='node' id='node26'><title>yuml_viewupdateresult</title>
1064
+ <polygon fill='palegreen' filter='url(#shadow)' points='7504.5,-3159 7504.5,-3219 7635.5,-3219 7635.5,-3159 7504.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7504.5,-3159 7504.5,-3219 7635.5,-3219 7635.5,-3159 7504.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1065
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7570' y='-3207.8'>ViewUpdateResult</text>
1066
+ <polyline fill='none' filter='url(#shadow)' points='7504.5,-3204 7635.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7504.5,-3204 7635.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1067
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7570' y='-3192.8'>view</text>
1068
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7570' y='-3177.8'>data</text>
1069
+ <polyline fill='none' filter='url(#shadow)' points='7504.5,-3174 7635.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7504.5,-3174 7635.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1070
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7570' y='-3162.8'> </text>
1071
+ </g><g class='node' id='node27'><title>yuml_viewaddresult</title>
1072
+ <polygon fill='palegreen' filter='url(#shadow)' points='7654,-3159 7654,-3219 7770,-3219 7770,-3159 7654,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7654,-3159 7654,-3219 7770,-3219 7770,-3159 7654,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1073
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7712' y='-3207.8'>ViewAddResult</text>
1074
+ <polyline fill='none' filter='url(#shadow)' points='7654,-3204 7770,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7654,-3204 7770,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1075
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7712' y='-3192.8'>view</text>
1076
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7712' y='-3177.8'>data</text>
1077
+ <polyline fill='none' filter='url(#shadow)' points='7654,-3174 7770,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7654,-3174 7770,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1078
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7712' y='-3162.8'> </text>
1079
+ </g><g class='node' id='node28'><title>yuml_utilitymethods</title>
1080
+ <polygon fill='palegreen' filter='url(#shadow)' points='2137.5,-2572.5 2137.5,-2737.5 2346.5,-2737.5 2346.5,-2572.5 2137.5,-2572.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='2137.5,-2572.5 2137.5,-2737.5 2346.5,-2737.5 2346.5,-2572.5 2137.5,-2572.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1081
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2726.3'>UtilityMethods</text>
1082
+ <polyline fill='none' filter='url(#shadow)' points='2137.5,-2722.5 2346.5,-2722.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2137.5,-2722.5 2346.5,-2722.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1083
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2711.3'> </text>
1084
+ <polyline fill='none' filter='url(#shadow)' points='2137.5,-2707.5 2346.5,-2707.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='2137.5,-2707.5 2346.5,-2707.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1085
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2696.3'>usingCaching()</text>
1086
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2681.3'>inBatch()</text>
1087
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2666.3'>sendEmail()</text>
1088
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2651.3'>getCurrentUserEmailAddresses()</text>
1089
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2636.3'>resolvePrincipal()</text>
1090
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2621.3'>searchPrincipals()</text>
1091
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2606.3'>createEmailBodyForInvitation()</text>
1092
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2591.3'>expandGroupsToPrincipals()</text>
1093
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='2242' y='-2576.3'>createWikiPage()</text>
1094
+ </g><g class='edge' id='edge72'><title>yuml_utilitymethods-&gt;yuml_utilitymethod</title>
1095
+ <path d='M2242,-2562.25C2242,-2522.14 2242,-2475.48 2242,-2436.6' fill='none' stroke='black'/><path d='M2242,-2562.25C2242,-2522.14 2242,-2475.48 2242,-2436.6' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1096
+ <polygon fill='none' filter='url(#shadow)' points='2238.5,-2562.3 2242,-2572.3 2245.5,-2562.3 2238.5,-2562.3' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='2238.5,-2562.3 2242,-2572.3 2245.5,-2562.3 2238.5,-2562.3' stroke='black' style='fill:url(#none);stroke:black;'/>
1097
+ </g><g class='node' id='node30'><title>yuml_createwikipageresult</title>
1098
+ <polygon fill='palegreen' filter='url(#shadow)' points='7788,-3159 7788,-3219 7940,-3219 7940,-3159 7788,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7788,-3159 7788,-3219 7940,-3219 7940,-3159 7788,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1099
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7864' y='-3207.8'>CreateWikiPageResult</text>
1100
+ <polyline fill='none' filter='url(#shadow)' points='7788,-3204 7940,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7788,-3204 7940,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1101
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7864' y='-3192.8'>data</text>
1102
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7864' y='-3177.8'>file</text>
1103
+ <polyline fill='none' filter='url(#shadow)' points='7788,-3174 7940,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7788,-3174 7940,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1104
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7864' y='-3162.8'> </text>
1105
+ </g><g class='node' id='node34'><title>yuml_usercustomactionupdateresult</title>
1106
+ <polygon fill='palegreen' filter='url(#shadow)' points='7958.5,-3159 7958.5,-3219 8165.5,-3219 8165.5,-3159 7958.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7958.5,-3159 7958.5,-3219 8165.5,-3219 8165.5,-3159 7958.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1107
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8062' y='-3207.8'>UserCustomActionUpdateResult</text>
1108
+ <polyline fill='none' filter='url(#shadow)' points='7958.5,-3204 8165.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7958.5,-3204 8165.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1109
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8062' y='-3192.8'>data</text>
1110
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8062' y='-3177.8'>action</text>
1111
+ <polyline fill='none' filter='url(#shadow)' points='7958.5,-3174 8165.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7958.5,-3174 8165.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1112
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8062' y='-3162.8'> </text>
1113
+ </g><g class='node' id='node35'><title>yuml_usercustomactionaddresult</title>
1114
+ <polygon fill='palegreen' filter='url(#shadow)' points='8183.5,-3159 8183.5,-3219 8374.5,-3219 8374.5,-3159 8183.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='8183.5,-3159 8183.5,-3219 8374.5,-3219 8374.5,-3159 8183.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1115
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8279' y='-3207.8'>UserCustomActionAddResult</text>
1116
+ <polyline fill='none' filter='url(#shadow)' points='8183.5,-3204 8374.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8183.5,-3204 8374.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1117
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8279' y='-3192.8'>data</text>
1118
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8279' y='-3177.8'>action</text>
1119
+ <polyline fill='none' filter='url(#shadow)' points='8183.5,-3174 8374.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8183.5,-3174 8374.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1120
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8279' y='-3162.8'> </text>
1121
+ </g><g class='node' id='node36'><title>yuml_likedata</title>
1122
+ <polygon fill='palegreen' filter='url(#shadow)' points='8393,-3136.5 8393,-3241.5 8491,-3241.5 8491,-3136.5 8393,-3136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='8393,-3136.5 8393,-3241.5 8491,-3241.5 8491,-3136.5 8393,-3136.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1123
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3230.3'>LikeData</text>
1124
+ <polyline fill='none' filter='url(#shadow)' points='8393,-3226.5 8491,-3226.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8393,-3226.5 8491,-3226.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1125
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3215.3'>name</text>
1126
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3200.3'>loginName</text>
1127
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3185.3'>id</text>
1128
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3170.3'>email</text>
1129
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3155.3'>creationDate</text>
1130
+ <polyline fill='none' filter='url(#shadow)' points='8393,-3151.5 8491,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8393,-3151.5 8491,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1131
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8442' y='-3140.3'> </text>
1132
+ </g><g class='node' id='node37'><title>yuml_storageentity</title>
1133
+ <polygon fill='palegreen' filter='url(#shadow)' points='8509.5,-3151.5 8509.5,-3226.5 8612.5,-3226.5 8612.5,-3151.5 8509.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='8509.5,-3151.5 8509.5,-3226.5 8612.5,-3226.5 8612.5,-3151.5 8509.5,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1134
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8561' y='-3215.3'>StorageEntity</text>
1135
+ <polyline fill='none' filter='url(#shadow)' points='8509.5,-3211.5 8612.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8509.5,-3211.5 8612.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1136
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8561' y='-3200.3'>Value</text>
1137
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8561' y='-3185.3'>Comment</text>
1138
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8561' y='-3170.3'>Description</text>
1139
+ <polyline fill='none' filter='url(#shadow)' points='8509.5,-3166.5 8612.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8509.5,-3166.5 8612.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1140
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8561' y='-3155.3'> </text>
1141
+ </g><g class='node' id='node38'><title>yuml_peoplepickerentitydata</title>
1142
+ <polygon fill='palegreen' filter='url(#shadow)' points='8631,-3091.5 8631,-3286.5 8789,-3286.5 8789,-3091.5 8631,-3091.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='8631,-3091.5 8631,-3286.5 8789,-3286.5 8789,-3091.5 8631,-3091.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1143
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3275.3'>PeoplePickerEntityData</text>
1144
+ <polyline fill='none' filter='url(#shadow)' points='8631,-3271.5 8789,-3271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8631,-3271.5 8789,-3271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1145
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3260.3'>AccountName</text>
1146
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3245.3'>Department</text>
1147
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3230.3'>Email</text>
1148
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3215.3'>IsAltSecIdPresent</text>
1149
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3200.3'>MobilePhone</text>
1150
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3185.3'>ObjectId</text>
1151
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3170.3'>OtherMails</text>
1152
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3155.3'>PrincipalType</text>
1153
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3140.3'>SPGroupID</text>
1154
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3125.3'>SPUserID</text>
1155
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3110.3'>Title</text>
1156
+ <polyline fill='none' filter='url(#shadow)' points='8631,-3106.5 8789,-3106.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8631,-3106.5 8789,-3106.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1157
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8710' y='-3095.3'> </text>
1158
+ </g><g class='node' id='node39'><title>yuml_peoplepickerentity</title>
1159
+ <polygon fill='palegreen' filter='url(#shadow)' points='8807,-3106.5 8807,-3271.5 8957,-3271.5 8957,-3106.5 8807,-3106.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='8807,-3106.5 8807,-3271.5 8957,-3271.5 8957,-3106.5 8807,-3106.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1160
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3260.3'>PeoplePickerEntity</text>
1161
+ <polyline fill='none' filter='url(#shadow)' points='8807,-3256.5 8957,-3256.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8807,-3256.5 8957,-3256.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1162
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3245.3'>Description</text>
1163
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3230.3'>DisplayText</text>
1164
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3215.3'>EntityData</text>
1165
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3200.3'>EntityType</text>
1166
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3185.3'>IsResolved</text>
1167
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3170.3'>Key</text>
1168
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3155.3'>MultipleMatches</text>
1169
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3140.3'>ProviderDisplayName</text>
1170
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3125.3'>ProviderName</text>
1171
+ <polyline fill='none' filter='url(#shadow)' points='8807,-3121.5 8957,-3121.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8807,-3121.5 8957,-3121.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1172
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='8882' y='-3110.3'> </text>
1173
+ </g><g class='node' id='node40'><title>yuml_peoplepickerquerysettings</title>
1174
+ <polygon fill='palegreen' filter='url(#shadow)' points='8975.5,-3166.5 8975.5,-3211.5 9184.5,-3211.5 9184.5,-3166.5 8975.5,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='8975.5,-3166.5 8975.5,-3211.5 9184.5,-3211.5 9184.5,-3166.5 8975.5,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1175
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9080' y='-3200.3'>PeoplePickerQuerySettings</text>
1176
+ <polyline fill='none' filter='url(#shadow)' points='8975.5,-3196.5 9184.5,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8975.5,-3196.5 9184.5,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1177
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9080' y='-3185.3'>ExcludeAllUsersOnTenantClaim</text>
1178
+ <polyline fill='none' filter='url(#shadow)' points='8975.5,-3181.5 9184.5,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='8975.5,-3181.5 9184.5,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1179
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9080' y='-3170.3'> </text>
1180
+ </g><g class='node' id='node41'><title>yuml_clientpeoplepickerqueryparameters</title>
1181
+ <polygon fill='palegreen' filter='url(#shadow)' points='9202.5,-3061.5 9202.5,-3316.5 9429.5,-3316.5 9429.5,-3061.5 9202.5,-3061.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='9202.5,-3061.5 9202.5,-3316.5 9429.5,-3316.5 9429.5,-3061.5 9202.5,-3061.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1182
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3305.3'>ClientPeoplePickerQueryParameters</text>
1183
+ <polyline fill='none' filter='url(#shadow)' points='9202.5,-3301.5 9429.5,-3301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9202.5,-3301.5 9429.5,-3301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1184
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3290.3'>AllowEmailAddresses</text>
1185
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3275.3'>AllowMultipleEntities</text>
1186
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3260.3'>AllowOnlyEmailAddresses</text>
1187
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3245.3'>AllUrlZones</text>
1188
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3230.3'>EnabledClaimProviders</text>
1189
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3215.3'>ForceClaims</text>
1190
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3200.3'>MaximumEntitySuggestions</text>
1191
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3185.3'>PrincipalSource</text>
1192
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3170.3'>PrincipalType</text>
1193
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3155.3'>QuerySettings</text>
1194
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3140.3'>QueryString</text>
1195
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3125.3'>SharePointGroupID</text>
1196
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3110.3'>UrlZone</text>
1197
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3095.3'>UrlZoneSpecified</text>
1198
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3080.3'>WebApplicationID</text>
1199
+ <polyline fill='none' filter='url(#shadow)' points='9202.5,-3076.5 9429.5,-3076.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9202.5,-3076.5 9429.5,-3076.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1200
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9316' y='-3065.3'> </text>
1201
+ </g><g class='node' id='node42'><title>yuml_fieldcreationproperties</title>
1202
+ <polygon fill='palegreen' filter='url(#shadow)' points='9448,-3091.5 9448,-3286.5 9606,-3286.5 9606,-3091.5 9448,-3091.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='9448,-3091.5 9448,-3286.5 9606,-3286.5 9606,-3091.5 9448,-3091.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1203
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3275.3'>FieldCreationProperties</text>
1204
+ <polyline fill='none' filter='url(#shadow)' points='9448,-3271.5 9606,-3271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9448,-3271.5 9606,-3271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1205
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3260.3'>DefaultFormula</text>
1206
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3245.3'>Description</text>
1207
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3230.3'>EnforceUniqueValues</text>
1208
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3215.3'>FieldTypeKind</text>
1209
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3200.3'>Group</text>
1210
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3185.3'>Hidden</text>
1211
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3170.3'>Indexed</text>
1212
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3155.3'>Required</text>
1213
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3140.3'>Title</text>
1214
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3125.3'>ValidationFormula</text>
1215
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3110.3'>ValidationMessage</text>
1216
+ <polyline fill='none' filter='url(#shadow)' points='9448,-3106.5 9606,-3106.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9448,-3106.5 9606,-3106.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1217
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9527' y='-3095.3'> </text>
1218
+ </g><g class='node' id='node43'><title>yuml_menunodecollection</title>
1219
+ <polygon fill='palegreen' filter='url(#shadow)' points='9624,-3114 9624,-3264 9770,-3264 9770,-3114 9624,-3114' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='9624,-3114 9624,-3264 9770,-3264 9770,-3114 9624,-3114' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1220
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3252.8'>MenuNodeCollection</text>
1221
+ <polyline fill='none' filter='url(#shadow)' points='9624,-3249 9770,-3249 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9624,-3249 9770,-3249 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1222
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3237.8'>FriendlyUrlPrefix</text>
1223
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3222.8'>Nodes</text>
1224
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3207.8'>SimpleUrl</text>
1225
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3192.8'>SPSitePrefix</text>
1226
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3177.8'>SPWebPrefix</text>
1227
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3162.8'>StartingNodeKey</text>
1228
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3147.8'>StartingNodeTitle</text>
1229
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3132.8'>Version</text>
1230
+ <polyline fill='none' filter='url(#shadow)' points='9624,-3129 9770,-3129 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9624,-3129 9770,-3129 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1231
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9697' y='-3117.8'> </text>
1232
+ </g><g class='node' id='node44'><title>yuml_menunode</title>
1233
+ <polygon fill='palegreen' filter='url(#shadow)' points='9788,-3106.5 9788,-3271.5 9928,-3271.5 9928,-3106.5 9788,-3106.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='9788,-3106.5 9788,-3271.5 9928,-3271.5 9928,-3106.5 9788,-3106.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1234
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3260.3'>MenuNode</text>
1235
+ <polyline fill='none' filter='url(#shadow)' points='9788,-3256.5 9928,-3256.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9788,-3256.5 9928,-3256.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1236
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3245.3'>CustomProperties</text>
1237
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3230.3'>FriendlyUrlSegment</text>
1238
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3215.3'>IsDeleted</text>
1239
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3200.3'>IsHidden</text>
1240
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3185.3'>Key</text>
1241
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3170.3'>Nodes</text>
1242
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3155.3'>NodeType</text>
1243
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3140.3'>SimpleUrl</text>
1244
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3125.3'>Title</text>
1245
+ <polyline fill='none' filter='url(#shadow)' points='9788,-3121.5 9928,-3121.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9788,-3121.5 9928,-3121.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1246
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='9858' y='-3110.3'> </text>
1247
+ </g><g class='node' id='node45'><title>yuml_renderlistdataparameters</title>
1248
+ <polygon fill='palegreen' filter='url(#shadow)' points='9946,-3091.5 9946,-3286.5 10228,-3286.5 10228,-3091.5 9946,-3091.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='9946,-3091.5 9946,-3286.5 10228,-3286.5 10228,-3091.5 9946,-3091.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1249
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3275.3'>RenderListDataParameters</text>
1250
+ <polyline fill='none' filter='url(#shadow)' points='9946,-3271.5 10228,-3271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9946,-3271.5 10228,-3271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1251
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3260.3'>AllowMultipleValueFilterForTaxonomyFields</text>
1252
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3245.3'>DatesInUtc</text>
1253
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3230.3'>ExpandGroups</text>
1254
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3215.3'>FirstGroupOnly</text>
1255
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3200.3'>FolderServerRelativeUrl</text>
1256
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3185.3'>ImageFieldsToTryRewriteToCdnUrls</text>
1257
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3170.3'>OverrideViewXml</text>
1258
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3155.3'>Paging</text>
1259
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3140.3'>RenderOptions</text>
1260
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3125.3'>ReplaceGroup</text>
1261
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3110.3'>ViewXml</text>
1262
+ <polyline fill='none' filter='url(#shadow)' points='9946,-3106.5 10228,-3106.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='9946,-3106.5 10228,-3106.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1263
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10087' y='-3095.3'> </text>
1264
+ </g><g class='node' id='node46'><title>yuml_wikipagecreationinformation</title>
1265
+ <polygon fill='palegreen' filter='url(#shadow)' points='10246,-3159 10246,-3219 10440,-3219 10440,-3159 10246,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='10246,-3159 10246,-3219 10440,-3219 10440,-3159 10246,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1266
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10343' y='-3207.8'>WikiPageCreationInformation</text>
1267
+ <polyline fill='none' filter='url(#shadow)' points='10246,-3204 10440,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10246,-3204 10440,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1268
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10343' y='-3192.8'>ServerRelativeUrl</text>
1269
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10343' y='-3177.8'>WikiHtmlContent</text>
1270
+ <polyline fill='none' filter='url(#shadow)' points='10246,-3174 10440,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10246,-3174 10440,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1271
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10343' y='-3162.8'> </text>
1272
+ </g><g class='node' id='node47'><title>yuml_emailproperties</title>
1273
+ <polygon fill='palegreen' filter='url(#shadow)' points='10458.5,-3121.5 10458.5,-3256.5 10589.5,-3256.5 10589.5,-3121.5 10458.5,-3121.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='10458.5,-3121.5 10458.5,-3256.5 10589.5,-3256.5 10589.5,-3121.5 10458.5,-3121.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1274
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3245.3'>EmailProperties</text>
1275
+ <polyline fill='none' filter='url(#shadow)' points='10458.5,-3241.5 10589.5,-3241.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10458.5,-3241.5 10589.5,-3241.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1276
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3230.3'>To</text>
1277
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3215.3'>CC</text>
1278
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3200.3'>BCC</text>
1279
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3185.3'>Subject</text>
1280
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3170.3'>Body</text>
1281
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3155.3'>AdditionalHeaders</text>
1282
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3140.3'>From</text>
1283
+ <polyline fill='none' filter='url(#shadow)' points='10458.5,-3136.5 10589.5,-3136.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10458.5,-3136.5 10589.5,-3136.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1284
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10524' y='-3125.3'> </text>
1285
+ </g><g class='node' id='node48'><title>yuml_sharinginformation</title>
1286
+ <polygon fill='palegreen' filter='url(#shadow)' points='10607.5,-3039 10607.5,-3339 10868.5,-3339 10868.5,-3039 10607.5,-3039' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='10607.5,-3039 10607.5,-3339 10868.5,-3339 10868.5,-3039 10607.5,-3039' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1287
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3327.8'>SharingInformation</text>
1288
+ <polyline fill='none' filter='url(#shadow)' points='10607.5,-3324 10868.5,-3324 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10607.5,-3324 10868.5,-3324 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1289
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3312.8'>canAddExternalPrincipal</text>
1290
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3297.8'>canAddInternalPrincipal</text>
1291
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3282.8'>canSendEmail</text>
1292
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3267.8'>canUseSimplifiedRoles</text>
1293
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3252.8'>hasUniquePermissions</text>
1294
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3237.8'>currentRole</text>
1295
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3222.8'>requiresAccessApproval</text>
1296
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3207.8'>hasPendingAccessRequests</text>
1297
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3192.8'>pendingAccessRequestsLink</text>
1298
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3177.8'>sharedObjectType</text>
1299
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3162.8'>directUrl</text>
1300
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3147.8'>webUrl</text>
1301
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3132.8'>defaultLinkKind</text>
1302
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3117.8'>domainRestrictionMode</text>
1303
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3102.8'>RestrictedDomains</text>
1304
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3087.8'>anonymousLinkExpirationRestrictionDays</text>
1305
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3072.8'>permissionsInformation</text>
1306
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3057.8'>pickerSettings</text>
1307
+ <polyline fill='none' filter='url(#shadow)' points='10607.5,-3054 10868.5,-3054 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10607.5,-3054 10868.5,-3054 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1308
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='10738' y='-3042.8'> </text>
1309
+ </g><g class='node' id='node49'><title>yuml_objectsharingsettings</title>
1310
+ <polygon fill='palegreen' filter='url(#shadow)' points='10887,-2896.5 10887,-3481.5 11205,-3481.5 11205,-2896.5 10887,-2896.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='10887,-2896.5 10887,-3481.5 11205,-3481.5 11205,-2896.5 10887,-2896.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1311
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3470.3'>ObjectSharingSettings</text>
1312
+ <polyline fill='none' filter='url(#shadow)' points='10887,-3466.5 11205,-3466.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10887,-3466.5 11205,-3466.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1313
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3455.3'>WebUrl</text>
1314
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3440.3'>ListId</text>
1315
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3425.3'>ItemId</text>
1316
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3410.3'>ItemName</text>
1317
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3395.3'>ItemUrl</text>
1318
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3380.3'>ObjectSharingInformation</text>
1319
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3365.3'>AccessRequestMode</text>
1320
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3350.3'>PermissionsOnlyMode</text>
1321
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3335.3'>InheritingWebLink</text>
1322
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3320.3'>ShareByEmailEnabled</text>
1323
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3305.3'>IsGuestUser</text>
1324
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3290.3'>HasEditRole</text>
1325
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3275.3'>HasReadRole</text>
1326
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3260.3'>IsPictureLibrary</text>
1327
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3245.3'>CanShareFolder</text>
1328
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3230.3'>CanSendEmail</text>
1329
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3215.3'>DefaultShareLinkType</text>
1330
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3200.3'>SupportsAclPropagation</text>
1331
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3185.3'>CanCurrentUserShareInternally</text>
1332
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3170.3'>CanCurrentUserShareExternally</text>
1333
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3155.3'>CanCurrentUserRetrieveReadonlyLink</text>
1334
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3140.3'>CanCurrentUserManageReadonlyLink</text>
1335
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3125.3'>CanCurrentUserRetrieveReadWriteLink</text>
1336
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3110.3'>CanCurrentUserManageReadWriteLink</text>
1337
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3095.3'>CanCurrentUserRetrieveOrganizationReadonlyLink</text>
1338
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3080.3'>CanCurrentUserManageOrganizationReadonlyLink</text>
1339
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3065.3'>CanCurrentUserRetrieveOrganizationReadWriteLink</text>
1340
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3050.3'>CanCurrentUserManageOrganizationReadWriteLink</text>
1341
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3035.3'>CanSendLink</text>
1342
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3020.3'>ShowExternalSharingWarning</text>
1343
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-3005.3'>SharingPermissions</text>
1344
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2990.3'>SimplifiedRoles</text>
1345
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2975.3'>GroupsList</text>
1346
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2960.3'>Roles</text>
1347
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2945.3'>SharePointSettings</text>
1348
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2930.3'>IsUserSiteAdmin</text>
1349
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2915.3'>RequiredAnonymousLinkExpirationInDays</text>
1350
+ <polyline fill='none' filter='url(#shadow)' points='10887,-2911.5 11205,-2911.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='10887,-2911.5 11205,-2911.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1351
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11046' y='-2900.3'> </text>
1352
+ </g><g class='node' id='node50'><title>yuml_sharinginformationrequest</title>
1353
+ <polygon fill='palegreen' filter='url(#shadow)' points='11223.5,-3159 11223.5,-3219 11402.5,-3219 11402.5,-3159 11223.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='11223.5,-3159 11223.5,-3219 11402.5,-3219 11402.5,-3159 11223.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1354
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11313' y='-3207.8'>SharingInformationRequest</text>
1355
+ <polyline fill='none' filter='url(#shadow)' points='11223.5,-3204 11402.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11223.5,-3204 11402.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1356
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11313' y='-3192.8'>maxPrincipalsToReturn</text>
1357
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11313' y='-3177.8'>clientSupportedFeatures</text>
1358
+ <polyline fill='none' filter='url(#shadow)' points='11223.5,-3174 11402.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11223.5,-3174 11402.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1359
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11313' y='-3162.8'> </text>
1360
+ </g><g class='node' id='node51'><title>yuml_sharingentitypermission</title>
1361
+ <polygon fill='palegreen' filter='url(#shadow)' points='11421,-3144 11421,-3234 11585,-3234 11585,-3144 11421,-3144' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='11421,-3144 11421,-3234 11585,-3234 11585,-3144 11421,-3144' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1362
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11503' y='-3222.8'>SharingEntityPermission</text>
1363
+ <polyline fill='none' filter='url(#shadow)' points='11421,-3219 11585,-3219 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11421,-3219 11585,-3219 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1364
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11503' y='-3207.8'>inputEntity</text>
1365
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11503' y='-3192.8'>resolvedEntity</text>
1366
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11503' y='-3177.8'>hasAccess</text>
1367
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11503' y='-3162.8'>role</text>
1368
+ <polyline fill='none' filter='url(#shadow)' points='11421,-3159 11585,-3159 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11421,-3159 11585,-3159 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1369
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11503' y='-3147.8'> </text>
1370
+ </g><g class='node' id='node52'><title>yuml_sharingrecipient</title>
1371
+ <polygon fill='palegreen' filter='url(#shadow)' points='11603,-3159 11603,-3219 11725,-3219 11725,-3159 11603,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='11603,-3159 11603,-3219 11725,-3219 11725,-3159 11603,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1372
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11664' y='-3207.8'>SharingRecipient</text>
1373
+ <polyline fill='none' filter='url(#shadow)' points='11603,-3204 11725,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11603,-3204 11725,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1374
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11664' y='-3192.8'>email</text>
1375
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11664' y='-3177.8'>alias</text>
1376
+ <polyline fill='none' filter='url(#shadow)' points='11603,-3174 11725,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11603,-3174 11725,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1377
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11664' y='-3162.8'> </text>
1378
+ </g><g class='node' id='node53'><title>yuml_spinvitationcreationresult</title>
1379
+ <polygon fill='palegreen' filter='url(#shadow)' points='11743.5,-3151.5 11743.5,-3226.5 11920.5,-3226.5 11920.5,-3151.5 11743.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='11743.5,-3151.5 11743.5,-3226.5 11920.5,-3226.5 11920.5,-3151.5 11743.5,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1380
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11832' y='-3215.3'>SPInvitationCreationResult</text>
1381
+ <polyline fill='none' filter='url(#shadow)' points='11743.5,-3211.5 11920.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11743.5,-3211.5 11920.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1382
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11832' y='-3200.3'>Succeeded</text>
1383
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11832' y='-3185.3'>Email</text>
1384
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11832' y='-3170.3'>InvitationLink</text>
1385
+ <polyline fill='none' filter='url(#shadow)' points='11743.5,-3166.5 11920.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11743.5,-3166.5 11920.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1386
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='11832' y='-3155.3'> </text>
1387
+ </g><g class='node' id='node54'><title>yuml_usersharingresult</title>
1388
+ <polygon fill='palegreen' filter='url(#shadow)' points='11938.5,-3106.5 11938.5,-3271.5 12069.5,-3271.5 12069.5,-3106.5 11938.5,-3106.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='11938.5,-3106.5 11938.5,-3271.5 12069.5,-3271.5 12069.5,-3106.5 11938.5,-3106.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1389
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3260.3'>UserSharingResult</text>
1390
+ <polyline fill='none' filter='url(#shadow)' points='11938.5,-3256.5 12069.5,-3256.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11938.5,-3256.5 12069.5,-3256.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1391
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3245.3'>IsUserKnown</text>
1392
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3230.3'>Status</text>
1393
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3215.3'>Message</text>
1394
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3200.3'>User</text>
1395
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3185.3'>DisplayName</text>
1396
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3170.3'>Email</text>
1397
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3155.3'>CurrentRole</text>
1398
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3140.3'>AllowedRoles</text>
1399
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3125.3'>InvitationLink</text>
1400
+ <polyline fill='none' filter='url(#shadow)' points='11938.5,-3121.5 12069.5,-3121.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='11938.5,-3121.5 12069.5,-3121.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1401
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12004' y='-3110.3'> </text>
1402
+ </g><g class='node' id='node55'><title>yuml_sharingresult</title>
1403
+ <polygon fill='palegreen' filter='url(#shadow)' points='12088,-3084 12088,-3294 12272,-3294 12272,-3084 12088,-3084' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='12088,-3084 12088,-3294 12272,-3294 12272,-3084 12088,-3084' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1404
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3282.8'>SharingResult</text>
1405
+ <polyline fill='none' filter='url(#shadow)' points='12088,-3279 12272,-3279 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12088,-3279 12272,-3279 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1406
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3267.8'>PermissionsPageRelativeUrl</text>
1407
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3252.8'>UsersWithAccessRequests</text>
1408
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3237.8'>StatusCode</text>
1409
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3222.8'>ErrorMessage</text>
1410
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3207.8'>UniquelyPermissionedUsers</text>
1411
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3192.8'>GroupsSharedWith</text>
1412
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3177.8'>GroupUsersAddedTo</text>
1413
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3162.8'>UsersAddedToGroup</text>
1414
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3147.8'>InvitedUsers</text>
1415
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3132.8'>Name</text>
1416
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3117.8'>Url</text>
1417
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3102.8'>IconUrl</text>
1418
+ <polyline fill='none' filter='url(#shadow)' points='12088,-3099 12272,-3099 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12088,-3099 12272,-3099 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1419
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12180' y='-3087.8'> </text>
1420
+ </g><g class='node' id='node56'><title>yuml_sharinglinkinfo</title>
1421
+ <polygon fill='palegreen' filter='url(#shadow)' points='12290.5,-3076.5 12290.5,-3301.5 12463.5,-3301.5 12463.5,-3076.5 12290.5,-3076.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='12290.5,-3076.5 12290.5,-3301.5 12463.5,-3301.5 12463.5,-3076.5 12290.5,-3076.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1422
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3290.3'>SharingLinkInfo</text>
1423
+ <polyline fill='none' filter='url(#shadow)' points='12290.5,-3286.5 12463.5,-3286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12290.5,-3286.5 12463.5,-3286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1424
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3275.3'>AllowsAnonymousAccess</text>
1425
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3260.3'>Created</text>
1426
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3245.3'>CreatedBy</text>
1427
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3230.3'>Expiration</text>
1428
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3215.3'>IsActive</text>
1429
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3200.3'>IsEditLink</text>
1430
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3185.3'>IsFormsLink</text>
1431
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3170.3'>IsUnhealthy</text>
1432
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3155.3'>LastModified</text>
1433
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3140.3'>LastModifiedBy</text>
1434
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3125.3'>LinkKind</text>
1435
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3110.3'>ShareId</text>
1436
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3095.3'>Url</text>
1437
+ <polyline fill='none' filter='url(#shadow)' points='12290.5,-3091.5 12463.5,-3091.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12290.5,-3091.5 12463.5,-3091.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1438
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12377' y='-3080.3'> </text>
1439
+ </g><g class='node' id='node57'><title>yuml_sharelinkresponse</title>
1440
+ <polygon fill='palegreen' filter='url(#shadow)' points='12481.5,-3166.5 12481.5,-3211.5 12618.5,-3211.5 12618.5,-3166.5 12481.5,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='12481.5,-3166.5 12481.5,-3211.5 12618.5,-3211.5 12618.5,-3166.5 12481.5,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1441
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12550' y='-3200.3'>ShareLinkResponse</text>
1442
+ <polyline fill='none' filter='url(#shadow)' points='12481.5,-3196.5 12618.5,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12481.5,-3196.5 12618.5,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1443
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12550' y='-3185.3'>sharingLinkInfo</text>
1444
+ <polyline fill='none' filter='url(#shadow)' points='12481.5,-3181.5 12618.5,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12481.5,-3181.5 12618.5,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1445
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12550' y='-3170.3'> </text>
1446
+ </g><g class='node' id='node58'><title>yuml_sharelinkrequest</title>
1447
+ <polygon fill='palegreen' filter='url(#shadow)' points='12637,-3144 12637,-3234 12765,-3234 12765,-3144 12637,-3144' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='12637,-3144 12637,-3234 12765,-3234 12765,-3144 12637,-3144' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1448
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12701' y='-3222.8'>ShareLinkRequest</text>
1449
+ <polyline fill='none' filter='url(#shadow)' points='12637,-3219 12765,-3219 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12637,-3219 12765,-3219 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1450
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12701' y='-3207.8'>peoplePickerInput</text>
1451
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12701' y='-3192.8'>createLink</text>
1452
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12701' y='-3177.8'>emailData</text>
1453
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12701' y='-3162.8'>settings</text>
1454
+ <polyline fill='none' filter='url(#shadow)' points='12637,-3159 12765,-3159 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12637,-3159 12765,-3159 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1455
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12701' y='-3147.8'> </text>
1456
+ </g><g class='node' id='node59'><title>yuml_sharelinksettings</title>
1457
+ <polygon fill='palegreen' filter='url(#shadow)' points='12783,-3136.5 12783,-3241.5 12947,-3241.5 12947,-3136.5 12783,-3136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='12783,-3136.5 12783,-3241.5 12947,-3241.5 12947,-3136.5 12783,-3136.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1458
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3230.3'>ShareLinkSettings</text>
1459
+ <polyline fill='none' filter='url(#shadow)' points='12783,-3226.5 12947,-3226.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12783,-3226.5 12947,-3226.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1460
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3215.3'>shareId</text>
1461
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3200.3'>linkKind</text>
1462
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3185.3'>expiration</text>
1463
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3170.3'>role</text>
1464
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3155.3'>allowAnonymousAccess</text>
1465
+ <polyline fill='none' filter='url(#shadow)' points='12783,-3151.5 12947,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12783,-3151.5 12947,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1466
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='12865' y='-3140.3'> </text>
1467
+ </g><g class='node' id='node60'><title>yuml_sharingemaildata</title>
1468
+ <polygon fill='palegreen' filter='url(#shadow)' points='12965.5,-3159 12965.5,-3219 13094.5,-3219 13094.5,-3159 12965.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='12965.5,-3159 12965.5,-3219 13094.5,-3219 13094.5,-3159 12965.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1469
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13030' y='-3207.8'>SharingEmailData</text>
1470
+ <polyline fill='none' filter='url(#shadow)' points='12965.5,-3204 13094.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12965.5,-3204 13094.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1471
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13030' y='-3192.8'>subject</text>
1472
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13030' y='-3177.8'>body</text>
1473
+ <polyline fill='none' filter='url(#shadow)' points='12965.5,-3174 13094.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='12965.5,-3174 13094.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1474
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13030' y='-3162.8'> </text>
1475
+ </g><g class='node' id='node61'><title>yuml_shareobjectoptions</title>
1476
+ <polygon fill='palegreen' filter='url(#shadow)' points='13112.5,-3114 13112.5,-3264 13317.5,-3264 13317.5,-3114 13112.5,-3114' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='13112.5,-3114 13112.5,-3264 13317.5,-3264 13317.5,-3114 13112.5,-3114' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1477
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3252.8'>ShareObjectOptions</text>
1478
+ <polyline fill='none' filter='url(#shadow)' points='13112.5,-3249 13317.5,-3249 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13112.5,-3249 13317.5,-3249 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1479
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3237.8'>url</text>
1480
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3222.8'>loginNames</text>
1481
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3207.8'>role</text>
1482
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3192.8'>emailData</text>
1483
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3177.8'>group</text>
1484
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3162.8'>propagateAcl</text>
1485
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3147.8'>includeAnonymousLinkInEmail</text>
1486
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3132.8'>useSimplifiedRoles</text>
1487
+ <polyline fill='none' filter='url(#shadow)' points='13112.5,-3129 13317.5,-3129 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13112.5,-3129 13317.5,-3129 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1488
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13215' y='-3117.8'> </text>
1489
+ </g><g class='node' id='node62'><title>yuml_listformdata</title>
1490
+ <polygon fill='palegreen' filter='url(#shadow)' points='13335.5,-3016.5 13335.5,-3361.5 13508.5,-3361.5 13508.5,-3016.5 13335.5,-3016.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='13335.5,-3016.5 13335.5,-3361.5 13508.5,-3361.5 13508.5,-3016.5 13335.5,-3016.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1491
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3350.3'>ListFormData</text>
1492
+ <polyline fill='none' filter='url(#shadow)' points='13335.5,-3346.5 13508.5,-3346.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13335.5,-3346.5 13508.5,-3346.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1493
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3335.3'>ContentType</text>
1494
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3320.3'>Title</text>
1495
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3305.3'>Author</text>
1496
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3290.3'>Editor</text>
1497
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3275.3'>Created</text>
1498
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3260.3'>Modified</text>
1499
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3245.3'>Attachments</text>
1500
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3230.3'>ListSchema</text>
1501
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3215.3'>FormControlMode</text>
1502
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3200.3'>FieldControlModes</text>
1503
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3185.3'>WebAttributes</text>
1504
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3170.3'>ItemAttributes</text>
1505
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3155.3'>ListAttributes</text>
1506
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3140.3'>CSRCustomLayout</text>
1507
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3125.3'>PostBackRequired</text>
1508
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3110.3'>PreviousPostBackHandled</text>
1509
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3095.3'>UploadMode</text>
1510
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3080.3'>SubmitButtonID</text>
1511
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3065.3'>ItemContentTypeName</text>
1512
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3050.3'>ItemContentTypeId</text>
1513
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3035.3'>JSLinks</text>
1514
+ <polyline fill='none' filter='url(#shadow)' points='13335.5,-3031.5 13508.5,-3031.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13335.5,-3031.5 13508.5,-3031.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1515
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13422' y='-3020.3'> </text>
1516
+ </g><g class='node' id='node63'><title>yuml_renderlistdata</title>
1517
+ <polygon fill='palegreen' filter='url(#shadow)' points='13526.5,-3121.5 13526.5,-3256.5 13681.5,-3256.5 13681.5,-3121.5 13526.5,-3121.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='13526.5,-3121.5 13526.5,-3256.5 13681.5,-3256.5 13681.5,-3121.5 13526.5,-3121.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1518
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3245.3'>RenderListData</text>
1519
+ <polyline fill='none' filter='url(#shadow)' points='13526.5,-3241.5 13681.5,-3241.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13526.5,-3241.5 13681.5,-3241.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1520
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3230.3'>Row</text>
1521
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3215.3'>FirstRow</text>
1522
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3200.3'>FolderPermissions</text>
1523
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3185.3'>LastRow</text>
1524
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3170.3'>FilterLink</text>
1525
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3155.3'>ForceNoHierarchy</text>
1526
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3140.3'>HierarchyHasIndention</text>
1527
+ <polyline fill='none' filter='url(#shadow)' points='13526.5,-3136.5 13681.5,-3136.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13526.5,-3136.5 13681.5,-3136.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1528
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13604' y='-3125.3'> </text>
1529
+ </g><g class='node' id='node64'><title>yuml_contextinfo</title>
1530
+ <polygon fill='palegreen' filter='url(#shadow)' points='13699.5,-3129 13699.5,-3249 13884.5,-3249 13884.5,-3129 13699.5,-3129' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='13699.5,-3129 13699.5,-3249 13884.5,-3249 13884.5,-3129 13699.5,-3129' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1531
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3237.8'>ContextInfo</text>
1532
+ <polyline fill='none' filter='url(#shadow)' points='13699.5,-3234 13884.5,-3234 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13699.5,-3234 13884.5,-3234 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1533
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3222.8'>FormDigestTimeoutSeconds</text>
1534
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3207.8'>FormDigestValue</text>
1535
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3192.8'>LibraryVersion</text>
1536
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3177.8'>SiteFullUrl</text>
1537
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3162.8'>SupportedSchemaVersions</text>
1538
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3147.8'>WebFullUrl</text>
1539
+ <polyline fill='none' filter='url(#shadow)' points='13699.5,-3144 13884.5,-3144 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13699.5,-3144 13884.5,-3144 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1540
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13792' y='-3132.8'> </text>
1541
+ </g><g class='node' id='node65'><title>yuml_documentlibraryinformation</title>
1542
+ <polygon fill='palegreen' filter='url(#shadow)' points='13902.5,-3136.5 13902.5,-3241.5 14093.5,-3241.5 14093.5,-3136.5 13902.5,-3136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='13902.5,-3136.5 13902.5,-3241.5 14093.5,-3241.5 14093.5,-3136.5 13902.5,-3136.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1543
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3230.3'>DocumentLibraryInformation</text>
1544
+ <polyline fill='none' filter='url(#shadow)' points='13902.5,-3226.5 14093.5,-3226.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13902.5,-3226.5 14093.5,-3226.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1545
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3215.3'>AbsoluteUrl</text>
1546
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3200.3'>Modified</text>
1547
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3185.3'>ModifiedFriendlyDisplay</text>
1548
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3170.3'>ServerRelativeUrl</text>
1549
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3155.3'>Title</text>
1550
+ <polyline fill='none' filter='url(#shadow)' points='13902.5,-3151.5 14093.5,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='13902.5,-3151.5 14093.5,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1551
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='13998' y='-3140.3'> </text>
1552
+ </g><g class='node' id='node66'><title>yuml_principalinfo</title>
1553
+ <polygon fill='palegreen' filter='url(#shadow)' points='14111.5,-3106.5 14111.5,-3271.5 14216.5,-3271.5 14216.5,-3106.5 14111.5,-3106.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='14111.5,-3106.5 14111.5,-3271.5 14216.5,-3271.5 14216.5,-3106.5 14111.5,-3106.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1554
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3260.3'>PrincipalInfo</text>
1555
+ <polyline fill='none' filter='url(#shadow)' points='14111.5,-3256.5 14216.5,-3256.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14111.5,-3256.5 14216.5,-3256.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1556
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3245.3'>Department</text>
1557
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3230.3'>DisplayName</text>
1558
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3215.3'>Email</text>
1559
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3200.3'>JobTitle</text>
1560
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3185.3'>LoginName</text>
1561
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3170.3'>Mobile</text>
1562
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3155.3'>PrincipalId</text>
1563
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3140.3'>PrincipalType</text>
1564
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3125.3'>SIPAddress</text>
1565
+ <polyline fill='none' filter='url(#shadow)' points='14111.5,-3121.5 14216.5,-3121.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14111.5,-3121.5 14216.5,-3121.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1566
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14164' y='-3110.3'> </text>
1567
+ </g><g class='node' id='node67'><title>yuml_useridinfo</title>
1568
+ <polygon fill='palegreen' filter='url(#shadow)' points='14234.5,-3159 14234.5,-3219 14339.5,-3219 14339.5,-3159 14234.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='14234.5,-3159 14234.5,-3219 14339.5,-3219 14339.5,-3159 14234.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1569
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14287' y='-3207.8'>UserIdInfo</text>
1570
+ <polyline fill='none' filter='url(#shadow)' points='14234.5,-3204 14339.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14234.5,-3204 14339.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1571
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14287' y='-3192.8'>NameId</text>
1572
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14287' y='-3177.8'>NameIdIssuer</text>
1573
+ <polyline fill='none' filter='url(#shadow)' points='14234.5,-3174 14339.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14234.5,-3174 14339.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1574
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14287' y='-3162.8'> </text>
1575
+ </g><g class='node' id='node68'><title>yuml_hashtagcollection</title>
1576
+ <polygon fill='palegreen' filter='url(#shadow)' points='14358,-3166.5 14358,-3211.5 14492,-3211.5 14492,-3166.5 14358,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='14358,-3166.5 14358,-3211.5 14492,-3211.5 14492,-3166.5 14358,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1577
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14425' y='-3200.3'>HashTagCollection</text>
1578
+ <polyline fill='none' filter='url(#shadow)' points='14358,-3196.5 14492,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14358,-3196.5 14492,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1579
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14425' y='-3185.3'>Items</text>
1580
+ <polyline fill='none' filter='url(#shadow)' points='14358,-3181.5 14492,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14358,-3181.5 14492,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1581
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14425' y='-3170.3'> </text>
1582
+ </g><g class='node' id='node69'><title>yuml_hashtag</title>
1583
+ <polygon fill='palegreen' filter='url(#shadow)' points='14510.5,-3159 14510.5,-3219 14593.5,-3219 14593.5,-3159 14510.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='14510.5,-3159 14510.5,-3219 14593.5,-3219 14593.5,-3159 14510.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1584
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14552' y='-3207.8'>HashTag</text>
1585
+ <polyline fill='none' filter='url(#shadow)' points='14510.5,-3204 14593.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14510.5,-3204 14593.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1586
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14552' y='-3192.8'>Name</text>
1587
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14552' y='-3177.8'>UseCount</text>
1588
+ <polyline fill='none' filter='url(#shadow)' points='14510.5,-3174 14593.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14510.5,-3174 14593.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1589
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14552' y='-3162.8'> </text>
1590
+ </g><g class='node' id='node70'><title>yuml_userprofile</title>
1591
+ <polygon fill='palegreen' filter='url(#shadow)' points='14611.5,-3069 14611.5,-3309 14808.5,-3309 14808.5,-3069 14611.5,-3069' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='14611.5,-3069 14611.5,-3309 14808.5,-3309 14808.5,-3069 14611.5,-3069' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1592
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3297.8'>UserProfile</text>
1593
+ <polyline fill='none' filter='url(#shadow)' points='14611.5,-3294 14808.5,-3294 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14611.5,-3294 14808.5,-3294 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1594
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3282.8'>FollowedContent</text>
1595
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3267.8'>AccountName</text>
1596
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3252.8'>DisplayName</text>
1597
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3237.8'>O15FirstRunExperience</text>
1598
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3222.8'>PersonalSite</text>
1599
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3207.8'>PersonalSiteCapabilities</text>
1600
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3192.8'>PersonalSiteFirstCreationError</text>
1601
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3177.8'>PersonalSiteFirstCreationTime</text>
1602
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3162.8'>PersonalSiteInstantiationState</text>
1603
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3147.8'>PersonalSiteLastCreationTime</text>
1604
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3132.8'>PersonalSiteNumberOfRetries</text>
1605
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3117.8'>PictureImportEnabled</text>
1606
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3102.8'>PublicUrl</text>
1607
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3087.8'>UrlToCreatePersonalSite</text>
1608
+ <polyline fill='none' filter='url(#shadow)' points='14611.5,-3084 14808.5,-3084 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14611.5,-3084 14808.5,-3084 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1609
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14710' y='-3072.8'> </text>
1610
+ </g><g class='node' id='node71'><title>yuml_followedcontent</title>
1611
+ <polygon fill='palegreen' filter='url(#shadow)' points='14827,-3159 14827,-3219 14987,-3219 14987,-3159 14827,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='14827,-3159 14827,-3219 14987,-3219 14987,-3159 14827,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1612
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14907' y='-3207.8'>FollowedContent</text>
1613
+ <polyline fill='none' filter='url(#shadow)' points='14827,-3204 14987,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14827,-3204 14987,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1614
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14907' y='-3192.8'>FollowedDocumentsUrl</text>
1615
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14907' y='-3177.8'>FollowedSitesUrl</text>
1616
+ <polyline fill='none' filter='url(#shadow)' points='14827,-3174 14987,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='14827,-3174 14987,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1617
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='14907' y='-3162.8'> </text>
1618
+ </g><g class='node' id='node72'><title>yuml_basepermissions</title>
1619
+ <polygon fill='palegreen' filter='url(#shadow)' points='15005.5,-3159 15005.5,-3219 15126.5,-3219 15126.5,-3159 15005.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='15005.5,-3159 15005.5,-3219 15126.5,-3219 15126.5,-3159 15005.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1620
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15066' y='-3207.8'>BasePermissions</text>
1621
+ <polyline fill='none' filter='url(#shadow)' points='15005.5,-3204 15126.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15005.5,-3204 15126.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1622
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15066' y='-3192.8'>Low</text>
1623
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15066' y='-3177.8'>High</text>
1624
+ <polyline fill='none' filter='url(#shadow)' points='15005.5,-3174 15126.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15005.5,-3174 15126.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1625
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15066' y='-3162.8'> </text>
1626
+ </g><g class='node' id='node73'><title>yuml_xmlschemafieldcreationinformation</title>
1627
+ <polygon fill='palegreen' filter='url(#shadow)' points='15145,-3159 15145,-3219 15381,-3219 15381,-3159 15145,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='15145,-3159 15145,-3219 15381,-3219 15381,-3159 15145,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1628
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15263' y='-3207.8'>XmlSchemaFieldCreationInformation</text>
1629
+ <polyline fill='none' filter='url(#shadow)' points='15145,-3204 15381,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15145,-3204 15381,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1630
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15263' y='-3192.8'>Options</text>
1631
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15263' y='-3177.8'>SchemaXml</text>
1632
+ <polyline fill='none' filter='url(#shadow)' points='15145,-3174 15381,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15145,-3174 15381,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1633
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15263' y='-3162.8'> </text>
1634
+ </g><g class='node' id='node74'><title>yuml_listitemformupdatevalue</title>
1635
+ <polygon fill='palegreen' filter='url(#shadow)' points='15399,-3144 15399,-3234 15575,-3234 15575,-3144 15399,-3144' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='15399,-3144 15399,-3234 15575,-3234 15575,-3144 15399,-3144' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1636
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15487' y='-3222.8'>ListItemFormUpdateValue</text>
1637
+ <polyline fill='none' filter='url(#shadow)' points='15399,-3219 15575,-3219 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15399,-3219 15575,-3219 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1638
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15487' y='-3207.8'>ErrorMessage</text>
1639
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15487' y='-3192.8'>FieldName</text>
1640
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15487' y='-3177.8'>FieldValue</text>
1641
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15487' y='-3162.8'>HasException</text>
1642
+ <polyline fill='none' filter='url(#shadow)' points='15399,-3159 15575,-3159 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15399,-3159 15575,-3159 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1643
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15487' y='-3147.8'> </text>
1644
+ </g><g class='node' id='node75'><title>yuml_changelogitemquery</title>
1645
+ <polygon fill='palegreen' filter='url(#shadow)' points='15593,-3121.5 15593,-3256.5 15743,-3256.5 15743,-3121.5 15593,-3121.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='15593,-3121.5 15593,-3256.5 15743,-3256.5 15743,-3121.5 15593,-3121.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1646
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3245.3'>ChangeLogitemQuery</text>
1647
+ <polyline fill='none' filter='url(#shadow)' points='15593,-3241.5 15743,-3241.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15593,-3241.5 15743,-3241.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1648
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3230.3'>ChangeToken</text>
1649
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3215.3'>Contains</text>
1650
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3200.3'>Query</text>
1651
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3185.3'>QueryOptions</text>
1652
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3170.3'>RowLimit</text>
1653
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3155.3'>ViewFields</text>
1654
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3140.3'>ViewName</text>
1655
+ <polyline fill='none' filter='url(#shadow)' points='15593,-3136.5 15743,-3136.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15593,-3136.5 15743,-3136.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1656
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15668' y='-3125.3'> </text>
1657
+ </g><g class='node' id='node76'><title>yuml_listitemcollectionposition</title>
1658
+ <polygon fill='palegreen' filter='url(#shadow)' points='15761,-3166.5 15761,-3211.5 15937,-3211.5 15937,-3166.5 15761,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='15761,-3166.5 15761,-3211.5 15937,-3211.5 15937,-3166.5 15761,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1659
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15849' y='-3200.3'>ListItemCollectionPosition</text>
1660
+ <polyline fill='none' filter='url(#shadow)' points='15761,-3196.5 15937,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15761,-3196.5 15937,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1661
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15849' y='-3185.3'>PagingInfo</text>
1662
+ <polyline fill='none' filter='url(#shadow)' points='15761,-3181.5 15937,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15761,-3181.5 15937,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1663
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='15849' y='-3170.3'> </text>
1664
+ </g><g class='node' id='node77'><title>yuml_camlquery</title>
1665
+ <polygon fill='palegreen' filter='url(#shadow)' points='15955,-3144 15955,-3234 16131,-3234 16131,-3144 15955,-3144' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='15955,-3144 15955,-3234 16131,-3234 16131,-3144 15955,-3144' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1666
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16043' y='-3222.8'>CamlQuery</text>
1667
+ <polyline fill='none' filter='url(#shadow)' points='15955,-3219 16131,-3219 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15955,-3219 16131,-3219 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1668
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16043' y='-3207.8'>DatesInUtc</text>
1669
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16043' y='-3192.8'>FolderServerRelativeUrl</text>
1670
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16043' y='-3177.8'>ListItemCollectionPosition</text>
1671
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16043' y='-3162.8'>ViewXml</text>
1672
+ <polyline fill='none' filter='url(#shadow)' points='15955,-3159 16131,-3159 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='15955,-3159 16131,-3159 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1673
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16043' y='-3147.8'> </text>
1674
+ </g><g class='node' id='node78'><title>yuml_changequery</title>
1675
+ <polygon fill='palegreen' filter='url(#shadow)' points='16149,-2949 16149,-3429 16317,-3429 16317,-2949 16149,-2949' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='16149,-2949 16149,-3429 16317,-3429 16317,-2949 16149,-2949' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1676
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3417.8'>ChangeQuery</text>
1677
+ <polyline fill='none' filter='url(#shadow)' points='16149,-3414 16317,-3414 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16149,-3414 16317,-3414 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1678
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3402.8'>Add</text>
1679
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3387.8'>Alert</text>
1680
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3372.8'>ChangeTokenEnd</text>
1681
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3357.8'>ChangeTokenStart</text>
1682
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3342.8'>ContentType</text>
1683
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3327.8'>DeleteObject</text>
1684
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3312.8'>Field</text>
1685
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3297.8'>File</text>
1686
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3282.8'>Folder</text>
1687
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3267.8'>Group</text>
1688
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3252.8'>GroupMembershipAdd</text>
1689
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3237.8'>GroupMembershipDelete</text>
1690
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3222.8'>Item</text>
1691
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3207.8'>List</text>
1692
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3192.8'>Move</text>
1693
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3177.8'>Navigation</text>
1694
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3162.8'>Rename</text>
1695
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3147.8'>Restore</text>
1696
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3132.8'>RoleAssignmentAdd</text>
1697
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3117.8'>RoleAssignmentDelete</text>
1698
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3102.8'>RoleDefinitionAdd</text>
1699
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3087.8'>RoleDefinitionDelete</text>
1700
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3072.8'>RoleDefinitionUpdate</text>
1701
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3057.8'>SecurityPolicy</text>
1702
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3042.8'>Site</text>
1703
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3027.8'>SystemUpdate</text>
1704
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-3012.8'>Update</text>
1705
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-2997.8'>User</text>
1706
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-2982.8'>View</text>
1707
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-2967.8'>Web</text>
1708
+ <polyline fill='none' filter='url(#shadow)' points='16149,-2964 16317,-2964 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16149,-2964 16317,-2964 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1709
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16233' y='-2952.8'> </text>
1710
+ </g><g class='node' id='node79'><title>yuml_changetoken</title>
1711
+ <polygon fill='palegreen' filter='url(#shadow)' points='16335,-3166.5 16335,-3211.5 16439,-3211.5 16439,-3166.5 16335,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='16335,-3166.5 16335,-3211.5 16439,-3211.5 16439,-3166.5 16335,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1712
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16387' y='-3200.3'>ChangeToken</text>
1713
+ <polyline fill='none' filter='url(#shadow)' points='16335,-3196.5 16439,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16335,-3196.5 16439,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1714
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16387' y='-3185.3'>StringValue</text>
1715
+ <polyline fill='none' filter='url(#shadow)' points='16335,-3181.5 16439,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16335,-3181.5 16439,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1716
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16387' y='-3170.3'> </text>
1717
+ </g><g class='node' id='node82'><title>yuml_subscriptionupdateresult</title>
1718
+ <polygon fill='palegreen' filter='url(#shadow)' points='16457,-3159 16457,-3219 16627,-3219 16627,-3159 16457,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='16457,-3159 16457,-3219 16627,-3219 16627,-3159 16457,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1719
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16542' y='-3207.8'>SubscriptionUpdateResult</text>
1720
+ <polyline fill='none' filter='url(#shadow)' points='16457,-3204 16627,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16457,-3204 16627,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1721
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16542' y='-3192.8'>subscription</text>
1722
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16542' y='-3177.8'>data</text>
1723
+ <polyline fill='none' filter='url(#shadow)' points='16457,-3174 16627,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16457,-3174 16627,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1724
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16542' y='-3162.8'> </text>
1725
+ </g><g class='node' id='node83'><title>yuml_subscriptionaddresult</title>
1726
+ <polygon fill='palegreen' filter='url(#shadow)' points='16645.5,-3159 16645.5,-3219 16800.5,-3219 16800.5,-3159 16645.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='16645.5,-3159 16645.5,-3219 16800.5,-3219 16800.5,-3159 16645.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1727
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16723' y='-3207.8'>SubscriptionAddResult</text>
1728
+ <polyline fill='none' filter='url(#shadow)' points='16645.5,-3204 16800.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16645.5,-3204 16800.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1729
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16723' y='-3192.8'>subscription</text>
1730
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16723' y='-3177.8'>data</text>
1731
+ <polyline fill='none' filter='url(#shadow)' points='16645.5,-3174 16800.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16645.5,-3174 16800.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1732
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16723' y='-3162.8'> </text>
1733
+ </g><g class='node' id='node84'><title>yuml_mysocialquerymethods</title>
1734
+ <polygon fill='palegreen' filter='url(#shadow)' points='0,-2301.5 0,-2406.5 164,-2406.5 164,-2301.5 0,-2301.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='0,-2301.5 0,-2406.5 164,-2406.5 164,-2301.5 0,-2301.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1735
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2395.3'>MySocialQueryMethods</text>
1736
+ <polyline fill='none' filter='url(#shadow)' points='0,-2391.5 164,-2391.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='0,-2391.5 164,-2391.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1737
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2380.3'> </text>
1738
+ <polyline fill='none' filter='url(#shadow)' points='0,-2376.5 164,-2376.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='0,-2376.5 164,-2376.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1739
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2365.3'>get()</text>
1740
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2350.3'>followed()</text>
1741
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2335.3'>followedCount()</text>
1742
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2320.3'>followers()</text>
1743
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='82' y='-2305.3'>suggestions()</text>
1744
+ </g><g class='edge' id='edge73'><title>yuml_mysocialquerymethods-&gt;yuml_mysocialquery</title>
1745
+ <path d='M82,-2291.1C82,-2205.47 82,-2052.98 82,-1978.05' fill='none' stroke='black'/><path d='M82,-2291.1C82,-2205.47 82,-2052.98 82,-1978.05' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1746
+ <polygon fill='none' filter='url(#shadow)' points='78.5001,-2291.2 82,-2301.2 85.5001,-2291.2 78.5001,-2291.2' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='78.5001,-2291.2 82,-2301.2 85.5001,-2291.2 78.5001,-2291.2' stroke='black' style='fill:url(#none);stroke:black;'/>
1747
+ </g><g class='node' id='node86'><title>yuml_socialmethods</title>
1748
+ <polygon fill='palegreen' filter='url(#shadow)' points='182.5,-2301.5 182.5,-2406.5 367.5,-2406.5 367.5,-2301.5 182.5,-2301.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='182.5,-2301.5 182.5,-2406.5 367.5,-2406.5 367.5,-2301.5 182.5,-2301.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1749
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2395.3'>SocialMethods</text>
1750
+ <polyline fill='none' filter='url(#shadow)' points='182.5,-2391.5 367.5,-2391.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='182.5,-2391.5 367.5,-2391.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1751
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2380.3'>my</text>
1752
+ <polyline fill='none' filter='url(#shadow)' points='182.5,-2376.5 367.5,-2376.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='182.5,-2376.5 367.5,-2376.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1753
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2365.3'>getFollowedSitesUri()</text>
1754
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2350.3'>getFollowedDocumentsUri()</text>
1755
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2335.3'>follow()</text>
1756
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2320.3'>isFollowed()</text>
1757
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='275' y='-2305.3'>stopFollowing()</text>
1758
+ </g><g class='edge' id='edge74'><title>yuml_socialmethods-&gt;yuml_socialquery</title>
1759
+ <path d='M275,-2290.75C275,-2210.46 275,-2071.81 275,-1993.09' fill='none' stroke='black'/><path d='M275,-2290.75C275,-2210.46 275,-2071.81 275,-1993.09' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1760
+ <polygon fill='none' filter='url(#shadow)' points='271.5,-2291.2 275,-2301.2 278.5,-2291.2 271.5,-2291.2' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='271.5,-2291.2 275,-2301.2 278.5,-2291.2 271.5,-2291.2' stroke='black' style='fill:url(#none);stroke:black;'/>
1761
+ </g><g class='node' id='node88'><title>yuml_mysocialdata</title>
1762
+ <polygon fill='palegreen' filter='url(#shadow)' points='16818.5,-3151.5 16818.5,-3226.5 16997.5,-3226.5 16997.5,-3151.5 16818.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='16818.5,-3151.5 16818.5,-3226.5 16997.5,-3226.5 16997.5,-3151.5 16818.5,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1763
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16908' y='-3215.3'>MySocialData</text>
1764
+ <polyline fill='none' filter='url(#shadow)' points='16818.5,-3211.5 16997.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16818.5,-3211.5 16997.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1765
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16908' y='-3200.3'>SocialActor</text>
1766
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16908' y='-3185.3'>MyFollowedDocumentsUri</text>
1767
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16908' y='-3170.3'>MyFollowedSitesUri</text>
1768
+ <polyline fill='none' filter='url(#shadow)' points='16818.5,-3166.5 16997.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='16818.5,-3166.5 16997.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1769
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='16908' y='-3155.3'> </text>
1770
+ </g><g class='node' id='node89'><title>yuml_socialactor</title>
1771
+ <polygon fill='palegreen' filter='url(#shadow)' points='17016,-3046.5 17016,-3331.5 17156,-3331.5 17156,-3046.5 17016,-3046.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17016,-3046.5 17016,-3331.5 17156,-3331.5 17156,-3046.5 17016,-3046.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1772
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3320.3'>SocialActor</text>
1773
+ <polyline fill='none' filter='url(#shadow)' points='17016,-3316.5 17156,-3316.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17016,-3316.5 17156,-3316.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1774
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3305.3'>ActorType</text>
1775
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3290.3'>Id</text>
1776
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3275.3'>Uri</text>
1777
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3260.3'>Name</text>
1778
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3245.3'>IsFollowed</text>
1779
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3230.3'>Status</text>
1780
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3215.3'>CanFollow</text>
1781
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3200.3'>ImageUri</text>
1782
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3185.3'>AccountName</text>
1783
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3170.3'>EmailAddress</text>
1784
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3155.3'>Title</text>
1785
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3140.3'>StatusText</text>
1786
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3125.3'>PersonalSiteUri</text>
1787
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3110.3'>FollowedContentUri</text>
1788
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3095.3'>ContentUri</text>
1789
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3080.3'>LibraryUri</text>
1790
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3065.3'>TagGuid</text>
1791
+ <polyline fill='none' filter='url(#shadow)' points='17016,-3061.5 17156,-3061.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17016,-3061.5 17156,-3061.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1792
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17086' y='-3050.3'> </text>
1793
+ </g><g class='node' id='node90'><title>yuml_socialactorinfo</title>
1794
+ <polygon fill='palegreen' filter='url(#shadow)' points='17174,-3136.5 17174,-3241.5 17290,-3241.5 17290,-3136.5 17174,-3136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17174,-3136.5 17174,-3241.5 17290,-3241.5 17290,-3136.5 17174,-3136.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1795
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3230.3'>SocialActorInfo</text>
1796
+ <polyline fill='none' filter='url(#shadow)' points='17174,-3226.5 17290,-3226.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17174,-3226.5 17290,-3226.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1797
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3215.3'>AccountName</text>
1798
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3200.3'>ActorType</text>
1799
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3185.3'>ContentUri</text>
1800
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3170.3'>Id</text>
1801
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3155.3'>TagGuid</text>
1802
+ <polyline fill='none' filter='url(#shadow)' points='17174,-3151.5 17290,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17174,-3151.5 17290,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1803
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17232' y='-3140.3'> </text>
1804
+ </g><g class='node' id='node94'><title>yuml_siteuserprops</title>
1805
+ <polygon fill='palegreen' filter='url(#shadow)' points='17308.5,-3114 17308.5,-3264 17483.5,-3264 17483.5,-3114 17308.5,-3114' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17308.5,-3114 17308.5,-3264 17483.5,-3264 17483.5,-3114 17308.5,-3114' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1806
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3252.8'>SiteUserProps</text>
1807
+ <polyline fill='none' filter='url(#shadow)' points='17308.5,-3249 17483.5,-3249 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17308.5,-3249 17483.5,-3249 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1808
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3237.8'>Email</text>
1809
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3222.8'>Id</text>
1810
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3207.8'>IsHiddenInUI</text>
1811
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3192.8'>IsShareByEmailGuestUser</text>
1812
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3177.8'>IsSiteAdmin</text>
1813
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3162.8'>LoginName</text>
1814
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3147.8'>PrincipalType</text>
1815
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3132.8'>Title</text>
1816
+ <polyline fill='none' filter='url(#shadow)' points='17308.5,-3129 17483.5,-3129 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17308.5,-3129 17483.5,-3129 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1817
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17396' y='-3117.8'> </text>
1818
+ </g><g class='node' id='node95'><title>yuml_userupdateresult</title>
1819
+ <polygon fill='palegreen' filter='url(#shadow)' points='17502,-3159 17502,-3219 17630,-3219 17630,-3159 17502,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17502,-3159 17502,-3219 17630,-3219 17630,-3159 17502,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1820
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17566' y='-3207.8'>UserUpdateResult</text>
1821
+ <polyline fill='none' filter='url(#shadow)' points='17502,-3204 17630,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17502,-3204 17630,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1822
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17566' y='-3192.8'>user</text>
1823
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17566' y='-3177.8'>data</text>
1824
+ <polyline fill='none' filter='url(#shadow)' points='17502,-3174 17630,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17502,-3174 17630,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1825
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17566' y='-3162.8'> </text>
1826
+ </g><g class='node' id='node98'><title>yuml_sitegroupaddresult</title>
1827
+ <polygon fill='palegreen' filter='url(#shadow)' points='17648,-3159 17648,-3219 17790,-3219 17790,-3159 17648,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17648,-3159 17648,-3219 17790,-3219 17790,-3159 17648,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1828
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17719' y='-3207.8'>SiteGroupAddResult</text>
1829
+ <polyline fill='none' filter='url(#shadow)' points='17648,-3204 17790,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17648,-3204 17790,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1830
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17719' y='-3192.8'>group</text>
1831
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17719' y='-3177.8'>data</text>
1832
+ <polyline fill='none' filter='url(#shadow)' points='17648,-3174 17790,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17648,-3174 17790,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1833
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17719' y='-3162.8'> </text>
1834
+ </g><g class='node' id='node99'><title>yuml_groupaddresult</title>
1835
+ <polygon fill='palegreen' filter='url(#shadow)' points='17808.5,-3159 17808.5,-3219 17929.5,-3219 17929.5,-3159 17808.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17808.5,-3159 17808.5,-3219 17929.5,-3219 17929.5,-3159 17808.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1836
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17869' y='-3207.8'>GroupAddResult</text>
1837
+ <polyline fill='none' filter='url(#shadow)' points='17808.5,-3204 17929.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17808.5,-3204 17929.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1838
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17869' y='-3192.8'>group</text>
1839
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17869' y='-3177.8'>data</text>
1840
+ <polyline fill='none' filter='url(#shadow)' points='17808.5,-3174 17929.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17808.5,-3174 17929.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1841
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='17869' y='-3162.8'> </text>
1842
+ </g><g class='node' id='node100'><title>yuml_groupupdateresult</title>
1843
+ <polygon fill='palegreen' filter='url(#shadow)' points='17947.5,-3159 17947.5,-3219 18084.5,-3219 18084.5,-3159 17947.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='17947.5,-3159 17947.5,-3219 18084.5,-3219 18084.5,-3159 17947.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1844
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18016' y='-3207.8'>GroupUpdateResult</text>
1845
+ <polyline fill='none' filter='url(#shadow)' points='17947.5,-3204 18084.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17947.5,-3204 18084.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1846
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18016' y='-3192.8'>group</text>
1847
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18016' y='-3177.8'>data</text>
1848
+ <polyline fill='none' filter='url(#shadow)' points='17947.5,-3174 18084.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='17947.5,-3174 18084.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1849
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18016' y='-3162.8'> </text>
1850
+ </g><g class='node' id='node102'><title>yuml_openwebbyidresult</title>
1851
+ <polygon fill='palegreen' filter='url(#shadow)' points='18103,-3159 18103,-3219 18249,-3219 18249,-3159 18103,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='18103,-3159 18103,-3219 18249,-3219 18249,-3159 18103,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
1852
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18176' y='-3207.8'>OpenWebByIdResult</text>
1853
+ <polyline fill='none' filter='url(#shadow)' points='18103,-3204 18249,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18103,-3204 18249,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1854
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18176' y='-3192.8'>data</text>
1855
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18176' y='-3177.8'>web</text>
1856
+ <polyline fill='none' filter='url(#shadow)' points='18103,-3174 18249,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18103,-3174 18249,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1857
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18176' y='-3162.8'> </text>
1858
+ </g><g class='node' id='node104'><title>yuml_sharepointqueryableshareablefolder</title>
1859
+ <polygon fill='skyblue' filter='url(#shadow)' points='553.5,-1414.5 553.5,-1459.5 786.5,-1459.5 786.5,-1414.5 553.5,-1414.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='553.5,-1414.5 553.5,-1459.5 786.5,-1459.5 786.5,-1414.5 553.5,-1414.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1860
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-1448.3'>SharePointQueryableShareableFolder</text>
1861
+ <polyline fill='none' filter='url(#shadow)' points='553.5,-1444.5 786.5,-1444.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='553.5,-1444.5 786.5,-1444.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1862
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-1433.3'> </text>
1863
+ <polyline fill='none' filter='url(#shadow)' points='553.5,-1429.5 786.5,-1429.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='553.5,-1429.5 786.5,-1429.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1864
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-1418.3'>shareWith()</text>
1865
+ </g><g class='edge' id='edge75'><title>yuml_filefoldershared-&gt;yuml_sharepointqueryableshareablefolder</title>
1866
+ <path d='M771.204,-1847.79C742.362,-1731.01 691.901,-1526.68 675.394,-1459.84' fill='none' stroke='black'/><path d='M771.204,-1847.79C742.362,-1731.01 691.901,-1526.68 675.394,-1459.84' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1867
+ <polygon fill='none' filter='url(#shadow)' points='767.874,-1848.91 773.669,-1857.78 774.67,-1847.23 767.874,-1848.91' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='767.874,-1848.91 773.669,-1857.78 774.67,-1847.23 767.874,-1848.91' stroke='black' style='fill:url(#none);stroke:black;'/>
1868
+ </g><g class='node' id='node105'><title>yuml_sharepointqueryableshareablefile</title>
1869
+ <polygon fill='skyblue' filter='url(#shadow)' points='805,-1414.5 805,-1459.5 1023,-1459.5 1023,-1414.5 805,-1414.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='805,-1414.5 805,-1459.5 1023,-1459.5 1023,-1414.5 805,-1414.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1870
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-1448.3'>SharePointQueryableShareableFile</text>
1871
+ <polyline fill='none' filter='url(#shadow)' points='805,-1444.5 1023,-1444.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='805,-1444.5 1023,-1444.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1872
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-1433.3'> </text>
1873
+ <polyline fill='none' filter='url(#shadow)' points='805,-1429.5 1023,-1429.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='805,-1429.5 1023,-1429.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1874
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-1418.3'>shareWith()</text>
1875
+ </g><g class='edge' id='edge76'><title>yuml_filefoldershared-&gt;yuml_sharepointqueryableshareablefile</title>
1876
+ <path d='M812.796,-1847.79C841.638,-1731.01 892.099,-1526.68 908.606,-1459.84' fill='none' stroke='black'/><path d='M812.796,-1847.79C841.638,-1731.01 892.099,-1526.68 908.606,-1459.84' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1877
+ <polygon fill='none' filter='url(#shadow)' points='809.33,-1847.23 810.331,-1857.78 816.126,-1848.91 809.33,-1847.23' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='809.33,-1847.23 810.331,-1857.78 816.126,-1848.91 809.33,-1847.23' stroke='black' style='fill:url(#none);stroke:black;'/>
1878
+ </g><g class='node' id='node164'><title>yuml_folder</title>
1879
+ <polygon fill='skyblue' filter='url(#shadow)' points='586.5,-663 586.5,-873 753.5,-873 753.5,-663 586.5,-663' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='586.5,-663 586.5,-873 753.5,-873 753.5,-663 586.5,-663' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1880
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-861.8'>Folder</text>
1881
+ <polyline fill='none' filter='url(#shadow)' points='586.5,-858 753.5,-858 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='586.5,-858 753.5,-858 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1882
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-846.8'>contentTypeOrder</text>
1883
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-831.8'>files</text>
1884
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-816.8'>folders</text>
1885
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-801.8'>listItemAllFields</text>
1886
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-786.8'>parentFolder</text>
1887
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-771.8'>properties</text>
1888
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-756.8'>serverRelativeUrl</text>
1889
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-741.8'>uniqueContentTypeOrder</text>
1890
+ <polyline fill='none' filter='url(#shadow)' points='586.5,-738 753.5,-738 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='586.5,-738 753.5,-738 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1891
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-726.8'>update()</text>
1892
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-711.8'>delete()</text>
1893
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-696.8'>recycle()</text>
1894
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-681.8'>getItem()</text>
1895
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='670' y='-666.8'>moveTo()</text>
1896
+ </g><g class='edge' id='edge77'><title>yuml_sharepointqueryableshareablefolder-&gt;yuml_folder</title>
1897
+ <path d='M670,-1404.11C670,-1309.54 670,-1027.64 670,-873.138' fill='none' stroke='black'/><path d='M670,-1404.11C670,-1309.54 670,-1027.64 670,-873.138' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1898
+ <polygon fill='none' filter='url(#shadow)' points='666.5,-1404.19 670,-1414.19 673.5,-1404.19 666.5,-1404.19' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='666.5,-1404.19 670,-1414.19 673.5,-1404.19 666.5,-1404.19' stroke='black' style='fill:url(#none);stroke:black;'/>
1899
+ </g><g class='node' id='node170'><title>yuml_file</title>
1900
+ <polygon fill='skyblue' filter='url(#shadow)' points='817,-573 817,-963 1011,-963 1011,-573 817,-573' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='817,-573 817,-963 1011,-963 1011,-573 817,-573' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1901
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-951.8'>File</text>
1902
+ <polyline fill='none' filter='url(#shadow)' points='817,-948 1011,-948 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='817,-948 1011,-948 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1903
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-936.8'>listItemAllFields</text>
1904
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-921.8'>versions</text>
1905
+ <polyline fill='none' filter='url(#shadow)' points='817,-918 1011,-918 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='817,-918 1011,-918 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1906
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-906.8'>approve()</text>
1907
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-891.8'>cancelUpload()</text>
1908
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-876.8'>checkin()</text>
1909
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-861.8'>checkout()</text>
1910
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-846.8'>copyTo()</text>
1911
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-831.8'>delete()</text>
1912
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-816.8'>deny()</text>
1913
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-801.8'>getLimitedWebPartManager()</text>
1914
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-786.8'>moveTo()</text>
1915
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-771.8'>publish()</text>
1916
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-756.8'>recycle()</text>
1917
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-741.8'>undoCheckout()</text>
1918
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-726.8'>unpublish()</text>
1919
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-711.8'>getText()</text>
1920
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-696.8'>getBlob()</text>
1921
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-681.8'>getBuffer()</text>
1922
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-666.8'>getJSON()</text>
1923
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-651.8'>setContent()</text>
1924
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-636.8'>getItem()</text>
1925
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-621.8'>setContentChunked()</text>
1926
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-606.8'>startUpload()</text>
1927
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-591.8'>continueUpload()</text>
1928
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-576.8'>finishUpload()</text>
1929
+ </g><g class='edge' id='edge78'><title>yuml_sharepointqueryableshareablefile-&gt;yuml_file</title>
1930
+ <path d='M914,-1404.01C914,-1325.76 914,-1119.67 914,-963.319' fill='none' stroke='black'/><path d='M914,-1404.01C914,-1325.76 914,-1119.67 914,-963.319' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1931
+ <polygon fill='none' filter='url(#shadow)' points='910.5,-1404.19 914,-1414.19 917.5,-1404.19 910.5,-1404.19' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='910.5,-1404.19 914,-1414.19 917.5,-1404.19 910.5,-1404.19' stroke='black' style='fill:url(#none);stroke:black;'/>
1932
+ </g><g class='edge' id='edge80'><title>yuml_sharepointqueryablesecurable-&gt;yuml_sharepointqueryableshareableweb</title>
1933
+ <path d='M3203.37,-1848.73C3151.82,-1743.06 3064.79,-1564.65 3024.57,-1482.21' fill='none' stroke='black'/><path d='M3203.37,-1848.73C3151.82,-1743.06 3064.79,-1564.65 3024.57,-1482.21' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1934
+ <polygon fill='none' filter='url(#shadow)' points='3200.26,-1850.32 3207.79,-1857.78 3206.55,-1847.25 3200.26,-1850.32' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='3200.26,-1850.32 3207.79,-1857.78 3206.55,-1847.25 3200.26,-1850.32' stroke='black' style='fill:url(#none);stroke:black;'/>
1935
+ </g><g class='node' id='node107'><title>yuml_sharepointqueryableshareableitem</title>
1936
+ <polygon fill='skyblue' filter='url(#shadow)' points='3132.5,-1362 3132.5,-1512 3355.5,-1512 3355.5,-1362 3132.5,-1362' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3132.5,-1362 3132.5,-1512 3355.5,-1512 3355.5,-1362 3132.5,-1362' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1937
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1500.8'>SharePointQueryableShareableItem</text>
1938
+ <polyline fill='none' filter='url(#shadow)' points='3132.5,-1497 3355.5,-1497 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3132.5,-1497 3355.5,-1497 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1939
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1485.8'> </text>
1940
+ <polyline fill='none' filter='url(#shadow)' points='3132.5,-1482 3355.5,-1482 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3132.5,-1482 3355.5,-1482 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1941
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1470.8'>getShareLink()</text>
1942
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1455.8'>shareWith()</text>
1943
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1440.8'>checkSharingPermissions()</text>
1944
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1425.8'>getSharingInformation()</text>
1945
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1410.8'>getObjectSharingSettings()</text>
1946
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1395.8'>unshare()</text>
1947
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1380.8'>deleteSharingLinkByKind()</text>
1948
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-1365.8'>unshareLink()</text>
1949
+ </g><g class='edge' id='edge79'><title>yuml_sharepointqueryablesecurable-&gt;yuml_sharepointqueryableshareableitem</title>
1950
+ <path d='M3244,-1847.71C3244,-1753.49 3244,-1602.36 3244,-1512.38' fill='none' stroke='black'/><path d='M3244,-1847.71C3244,-1753.49 3244,-1602.36 3244,-1512.38' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1951
+ <polygon fill='none' filter='url(#shadow)' points='3240.5,-1847.78 3244,-1857.78 3247.5,-1847.78 3240.5,-1847.78' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='3240.5,-1847.78 3244,-1857.78 3247.5,-1847.78 3240.5,-1847.78' stroke='black' style='fill:url(#none);stroke:black;'/>
1952
+ </g><g class='node' id='node149'><title>yuml_list</title>
1953
+ <polygon fill='skyblue' filter='url(#shadow)' points='3374,-1234.5 3374,-1639.5 3618,-1639.5 3618,-1234.5 3374,-1234.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3374,-1234.5 3374,-1639.5 3618,-1639.5 3618,-1234.5 3374,-1234.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1954
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1628.3'>List</text>
1955
+ <polyline fill='none' filter='url(#shadow)' points='3374,-1624.5 3618,-1624.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3374,-1624.5 3618,-1624.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1956
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1613.3'>contentTypes</text>
1957
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1598.3'>items</text>
1958
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1583.3'>views</text>
1959
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1568.3'>fields</text>
1960
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1553.3'>forms</text>
1961
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1538.3'>defaultView</text>
1962
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1523.3'>userCustomActions</text>
1963
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1508.3'>effectiveBasePermissions</text>
1964
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1493.3'>eventReceivers</text>
1965
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1478.3'>relatedFields</text>
1966
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1463.3'>informationRightsManagementSettings</text>
1967
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1448.3'>subscriptions</text>
1968
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1433.3'>rootFolder</text>
1969
+ <polyline fill='none' filter='url(#shadow)' points='3374,-1429.5 3618,-1429.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3374,-1429.5 3618,-1429.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1970
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1418.3'>getView()</text>
1971
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1403.3'>update()</text>
1972
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1388.3'>delete()</text>
1973
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1373.3'>getChanges()</text>
1974
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1358.3'>getItemsByCAMLQuery()</text>
1975
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1343.3'>getListItemChangesSinceToken()</text>
1976
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1328.3'>recycle()</text>
1977
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1313.3'>renderListData()</text>
1978
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1298.3'>renderListDataAsStream()</text>
1979
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1283.3'>renderListFormData()</text>
1980
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1268.3'>reserveListItemId()</text>
1981
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1253.3'>getListItemEntityTypeFullName()</text>
1982
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3496' y='-1238.3'>addValidateUpdateItemUsingPath()</text>
1983
+ </g><g class='edge' id='edge81'><title>yuml_sharepointqueryablesecurable-&gt;yuml_list</title>
1984
+ <path d='M3286.46,-1848.77C3315.67,-1791.5 3355.79,-1712.85 3393.11,-1639.69' fill='none' stroke='black'/><path d='M3286.46,-1848.77C3315.67,-1791.5 3355.79,-1712.85 3393.11,-1639.69' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
1985
+ <polygon fill='none' filter='url(#shadow)' points='3283.29,-1847.28 3281.86,-1857.78 3289.53,-1850.46 3283.29,-1847.28' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='3283.29,-1847.28 3281.86,-1857.78 3289.53,-1850.46 3283.29,-1847.28' stroke='black' style='fill:url(#none);stroke:black;'/>
1986
+ </g><g class='node' id='node156'><title>yuml_item</title>
1987
+ <polygon fill='skyblue' filter='url(#shadow)' points='3137.5,-610.5 3137.5,-925.5 3350.5,-925.5 3350.5,-610.5 3137.5,-610.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='3137.5,-610.5 3137.5,-925.5 3350.5,-925.5 3350.5,-610.5 3137.5,-610.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
1988
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-914.3'>Item</text>
1989
+ <polyline fill='none' filter='url(#shadow)' points='3137.5,-910.5 3350.5,-910.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3137.5,-910.5 3350.5,-910.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
1990
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-899.3'>attachmentFiles</text>
1991
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-884.3'>contentType</text>
1992
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-869.3'>comments</text>
1993
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-854.3'>effectiveBasePermissions</text>
1994
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-839.3'>effectiveBasePermissionsForUI</text>
1995
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-824.3'>fieldValuesAsHTML</text>
1996
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-809.3'>fieldValuesAsText</text>
1997
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-794.3'>fieldValuesForEdit</text>
1998
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-779.3'>folder</text>
1999
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-764.3'>file</text>
2000
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-749.3'>versions</text>
2001
+ <polyline fill='none' filter='url(#shadow)' points='3137.5,-745.5 3350.5,-745.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='3137.5,-745.5 3350.5,-745.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2002
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-734.3'>update()</text>
2003
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-719.3'>getLikedBy()</text>
2004
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-704.3'>like()</text>
2005
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-689.3'>unlike()</text>
2006
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-674.3'>delete()</text>
2007
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-659.3'>recycle()</text>
2008
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-644.3'>getWopiFrameUrl()</text>
2009
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-629.3'>validateUpdateListItem()</text>
2010
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='3244' y='-614.3'>ensureListItemEntityTypeName()</text>
2011
+ </g><g class='edge' id='edge82'><title>yuml_sharepointqueryableshareableitem-&gt;yuml_item</title>
2012
+ <path d='M3244,-1351.66C3244,-1244.84 3244,-1058.67 3244,-925.503' fill='none' stroke='black'/><path d='M3244,-1351.66C3244,-1244.84 3244,-1058.67 3244,-925.503' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2013
+ <polygon fill='none' filter='url(#shadow)' points='3240.5,-1351.75 3244,-1361.75 3247.5,-1351.75 3240.5,-1351.75' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='3240.5,-1351.75 3244,-1361.75 3247.5,-1351.75 3240.5,-1351.75' stroke='black' style='fill:url(#none);stroke:black;'/>
2014
+ </g><g class='node' id='node109'><title>yuml_odataqueryable</title>
2015
+ <polygon fill='lightgrey' filter='url(#shadow)' points='6894.5,-3210.5 6775.5,-3210.5 6775.5,-3167.5 6894.5,-3167.5 6894.5,-3210.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='6894.5,-3210.5 6775.5,-3210.5 6775.5,-3167.5 6894.5,-3167.5 6894.5,-3210.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
2016
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='6835' y='-3185.3'>ODataQueryable</text>
2017
+ </g><g class='edge' id='edge83'><title>yuml_odataqueryable-&gt;yuml_sharepointqueryable</title>
2018
+ <path d='M6835,-3157.39C6835,-3069.78 6835,-2817.31 6835,-2707.75' fill='none' stroke='black'/><path d='M6835,-3157.39C6835,-3069.78 6835,-2817.31 6835,-2707.75' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2019
+ <polygon fill='none' filter='url(#shadow)' points='6831.5,-3157.47 6835,-3167.47 6838.5,-3157.47 6831.5,-3157.47' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='6831.5,-3157.47 6835,-3167.47 6838.5,-3157.47 6831.5,-3157.47' stroke='black' style='fill:url(#none);stroke:black;'/>
2020
+ </g><g class='node' id='node110'><title>yuml_sharepointqueryableconstructor</title>
2021
+ <polygon fill='palegreen' filter='url(#shadow)' points='18267,-3166.5 18267,-3211.5 18475,-3211.5 18475,-3166.5 18267,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='18267,-3166.5 18267,-3211.5 18475,-3211.5 18475,-3166.5 18267,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2022
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18371' y='-3200.3'>SharePointQueryableConstructor</text>
2023
+ <polyline fill='none' filter='url(#shadow)' points='18267,-3196.5 18475,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18267,-3196.5 18475,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2024
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18371' y='-3185.3'> </text>
2025
+ <polyline fill='none' filter='url(#shadow)' points='18267,-3181.5 18475,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18267,-3181.5 18475,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2026
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18371' y='-3170.3'> </text>
2027
+ </g><g class='node' id='node112'><title>yuml_personalresultsuggestion</title>
2028
+ <polygon fill='palegreen' filter='url(#shadow)' points='18493,-3136.5 18493,-3241.5 18663,-3241.5 18663,-3136.5 18493,-3136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='18493,-3136.5 18493,-3241.5 18663,-3241.5 18663,-3136.5 18493,-3136.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2029
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3230.3'>PersonalResultSuggestion</text>
2030
+ <polyline fill='none' filter='url(#shadow)' points='18493,-3226.5 18663,-3226.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18493,-3226.5 18663,-3226.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2031
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3215.3'>HighlightedTitle</text>
2032
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3200.3'>IsBestBet</text>
2033
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3185.3'>Title</text>
2034
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3170.3'>TypeId</text>
2035
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3155.3'>Url</text>
2036
+ <polyline fill='none' filter='url(#shadow)' points='18493,-3151.5 18663,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18493,-3151.5 18663,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2037
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18578' y='-3140.3'> </text>
2038
+ </g><g class='node' id='node113'><title>yuml_searchsuggestquery</title>
2039
+ <polygon fill='palegreen' filter='url(#shadow)' points='18681,-3091.5 18681,-3286.5 18823,-3286.5 18823,-3091.5 18681,-3091.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='18681,-3091.5 18681,-3286.5 18823,-3286.5 18823,-3091.5 18681,-3091.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2040
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3275.3'>SearchSuggestQuery</text>
2041
+ <polyline fill='none' filter='url(#shadow)' points='18681,-3271.5 18823,-3271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18681,-3271.5 18823,-3271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2042
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3260.3'>querytext</text>
2043
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3245.3'>count</text>
2044
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3230.3'>personalCount</text>
2045
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3215.3'>preQuery</text>
2046
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3200.3'>hitHighlighting</text>
2047
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3185.3'>capitalize</text>
2048
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3170.3'>culture</text>
2049
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3155.3'>stemming</text>
2050
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3140.3'>includePeople</text>
2051
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3125.3'>queryRules</text>
2052
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3110.3'>prefixMatch</text>
2053
+ <polyline fill='none' filter='url(#shadow)' points='18681,-3106.5 18823,-3106.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18681,-3106.5 18823,-3106.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2054
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18752' y='-3095.3'> </text>
2055
+ </g><g class='node' id='node114'><title>yuml_searchsuggestresult</title>
2056
+ <polygon fill='skyblue' filter='url(#shadow)' points='18841.5,-3151.5 18841.5,-3226.5 18984.5,-3226.5 18984.5,-3151.5 18841.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='18841.5,-3151.5 18841.5,-3226.5 18984.5,-3226.5 18984.5,-3151.5 18841.5,-3151.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2057
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18913' y='-3215.3'>SearchSuggestResult</text>
2058
+ <polyline fill='none' filter='url(#shadow)' points='18841.5,-3211.5 18984.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18841.5,-3211.5 18984.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2059
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18913' y='-3200.3'>PeopleNames</text>
2060
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18913' y='-3185.3'>PersonalResults</text>
2061
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18913' y='-3170.3'>Queries</text>
2062
+ <polyline fill='none' filter='url(#shadow)' points='18841.5,-3166.5 18984.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='18841.5,-3166.5 18984.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2063
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='18913' y='-3155.3'> </text>
2064
+ </g><g class='node' id='node116'><title>yuml_reorderingrule</title>
2065
+ <polygon fill='palegreen' filter='url(#shadow)' points='19002.5,-3151.5 19002.5,-3226.5 19117.5,-3226.5 19117.5,-3151.5 19002.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19002.5,-3151.5 19002.5,-3226.5 19117.5,-3226.5 19117.5,-3151.5 19002.5,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2066
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19060' y='-3215.3'>ReorderingRule</text>
2067
+ <polyline fill='none' filter='url(#shadow)' points='19002.5,-3211.5 19117.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19002.5,-3211.5 19117.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2068
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19060' y='-3200.3'>MatchValue</text>
2069
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19060' y='-3185.3'>Boost</text>
2070
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19060' y='-3170.3'>MatchType</text>
2071
+ <polyline fill='none' filter='url(#shadow)' points='19002.5,-3166.5 19117.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19002.5,-3166.5 19117.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2072
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19060' y='-3155.3'> </text>
2073
+ </g><g class='node' id='node117'><title>yuml_searchpropertyvalue</title>
2074
+ <polygon fill='palegreen' filter='url(#shadow)' points='19136,-3136.5 19136,-3241.5 19336,-3241.5 19336,-3136.5 19136,-3136.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19136,-3136.5 19136,-3241.5 19336,-3241.5 19336,-3136.5 19136,-3136.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2075
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3230.3'>SearchPropertyValue</text>
2076
+ <polyline fill='none' filter='url(#shadow)' points='19136,-3226.5 19336,-3226.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19136,-3226.5 19336,-3226.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2077
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3215.3'>StrVal</text>
2078
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3200.3'>BoolVal</text>
2079
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3185.3'>Intval</text>
2080
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3170.3'>StrArray</text>
2081
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3155.3'>QueryPropertyValueTypeIndex</text>
2082
+ <polyline fill='none' filter='url(#shadow)' points='19136,-3151.5 19336,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19136,-3151.5 19336,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2083
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19236' y='-3140.3'> </text>
2084
+ </g><g class='node' id='node118'><title>yuml_searchproperty</title>
2085
+ <polygon fill='palegreen' filter='url(#shadow)' points='19354,-3159 19354,-3219 19466,-3219 19466,-3159 19354,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19354,-3159 19354,-3219 19466,-3219 19466,-3159 19354,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2086
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19410' y='-3207.8'>SearchProperty</text>
2087
+ <polyline fill='none' filter='url(#shadow)' points='19354,-3204 19466,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19354,-3204 19466,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2088
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19410' y='-3192.8'>Name</text>
2089
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19410' y='-3177.8'>Value</text>
2090
+ <polyline fill='none' filter='url(#shadow)' points='19354,-3174 19466,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19354,-3174 19466,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2091
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19410' y='-3162.8'> </text>
2092
+ </g><g class='node' id='node119'><title>yuml_sort</title>
2093
+ <polygon fill='palegreen' filter='url(#shadow)' points='19484,-3159 19484,-3219 19564,-3219 19564,-3159 19484,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19484,-3159 19484,-3219 19564,-3219 19564,-3159 19484,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2094
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19524' y='-3207.8'>Sort</text>
2095
+ <polyline fill='none' filter='url(#shadow)' points='19484,-3204 19564,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19484,-3204 19564,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2096
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19524' y='-3192.8'>Property</text>
2097
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19524' y='-3177.8'>Direction</text>
2098
+ <polyline fill='none' filter='url(#shadow)' points='19484,-3174 19564,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19484,-3174 19564,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2099
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19524' y='-3162.8'> </text>
2100
+ </g><g class='node' id='node120'><title>yuml_resulttable</title>
2101
+ <polygon fill='palegreen' filter='url(#shadow)' points='19582.5,-3091.5 19582.5,-3286.5 19779.5,-3286.5 19779.5,-3091.5 19582.5,-3091.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19582.5,-3091.5 19582.5,-3286.5 19779.5,-3286.5 19779.5,-3091.5 19582.5,-3091.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2102
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3275.3'>ResultTable</text>
2103
+ <polyline fill='none' filter='url(#shadow)' points='19582.5,-3271.5 19779.5,-3271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19582.5,-3271.5 19779.5,-3271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2104
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3260.3'>GroupTemplateId</text>
2105
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3245.3'>ItemTemplateId</text>
2106
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3230.3'>Properties</text>
2107
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3215.3'>Table</text>
2108
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3200.3'>Refiners</text>
2109
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3185.3'>ResultTitle</text>
2110
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3170.3'>ResultTitleUrl</text>
2111
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3155.3'>RowCount</text>
2112
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3140.3'>TableType</text>
2113
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3125.3'>TotalRows</text>
2114
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3110.3'>TotalRowsIncludingDuplicates</text>
2115
+ <polyline fill='none' filter='url(#shadow)' points='19582.5,-3106.5 19779.5,-3106.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19582.5,-3106.5 19779.5,-3106.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2116
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19681' y='-3095.3'> </text>
2117
+ </g><g class='node' id='node121'><title>yuml_resulttablecollection</title>
2118
+ <polygon fill='palegreen' filter='url(#shadow)' points='19798,-3121.5 19798,-3256.5 19948,-3256.5 19948,-3121.5 19798,-3121.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19798,-3121.5 19798,-3256.5 19948,-3256.5 19948,-3121.5 19798,-3121.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2119
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3245.3'>ResultTableCollection</text>
2120
+ <polyline fill='none' filter='url(#shadow)' points='19798,-3241.5 19948,-3241.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19798,-3241.5 19948,-3241.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2121
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3230.3'>QueryErrors</text>
2122
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3215.3'>QueryId</text>
2123
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3200.3'>QueryRuleId</text>
2124
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3185.3'>CustomResults</text>
2125
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3170.3'>RefinementResults</text>
2126
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3155.3'>RelevantResults</text>
2127
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3140.3'>SpecialTermResults</text>
2128
+ <polyline fill='none' filter='url(#shadow)' points='19798,-3136.5 19948,-3136.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19798,-3136.5 19948,-3136.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2129
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='19873' y='-3125.3'> </text>
2130
+ </g><g class='node' id='node122'><title>yuml_searchresponse</title>
2131
+ <polygon fill='palegreen' filter='url(#shadow)' points='19965.5,-3129 19965.5,-3249 20124.5,-3249 20124.5,-3129 19965.5,-3129' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='19965.5,-3129 19965.5,-3249 20124.5,-3249 20124.5,-3129 19965.5,-3129' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2132
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3237.8'>SearchResponse</text>
2133
+ <polyline fill='none' filter='url(#shadow)' points='19965.5,-3234 20124.5,-3234 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19965.5,-3234 20124.5,-3234 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2134
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3222.8'>ElapsedTime</text>
2135
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3207.8'>Properties</text>
2136
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3192.8'>PrimaryQueryResult</text>
2137
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3177.8'>SecondaryQueryResults</text>
2138
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3162.8'>SpellingSuggestion</text>
2139
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3147.8'>TriggeredRules</text>
2140
+ <polyline fill='none' filter='url(#shadow)' points='19965.5,-3144 20124.5,-3144 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='19965.5,-3144 20124.5,-3144 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2141
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20045' y='-3132.8'> </text>
2142
+ </g><g class='node' id='node123'><title>yuml_searchresult</title>
2143
+ <polygon fill='palegreen' filter='url(#shadow)' points='20142,-2866.5 20142,-3511.5 20336,-3511.5 20336,-2866.5 20142,-2866.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='20142,-2866.5 20142,-3511.5 20336,-3511.5 20336,-2866.5 20142,-2866.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2144
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3500.3'>SearchResult</text>
2145
+ <polyline fill='none' filter='url(#shadow)' points='20142,-3496.5 20336,-3496.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20142,-3496.5 20336,-3496.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2146
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3485.3'>Rank</text>
2147
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3470.3'>DocId</text>
2148
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3455.3'>WorkId</text>
2149
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3440.3'>Title</text>
2150
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3425.3'>Author</text>
2151
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3410.3'>Size</text>
2152
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3395.3'>Path</text>
2153
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3380.3'>Description</text>
2154
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3365.3'>Write</text>
2155
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3350.3'>LastModifiedTime</text>
2156
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3335.3'>CollapsingStatus</text>
2157
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3320.3'>HitHighlightedSummary</text>
2158
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3305.3'>HitHighlightedProperties</text>
2159
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3290.3'>contentclass</text>
2160
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3275.3'>PictureThumbnailURL</text>
2161
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3260.3'>ServerRedirectedURL</text>
2162
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3245.3'>ServerRedirectedEmbedURL</text>
2163
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3230.3'>ServerRedirectedPreviewURL</text>
2164
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3215.3'>FileExtension</text>
2165
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3200.3'>ContentTypeId</text>
2166
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3185.3'>ParentLink</text>
2167
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3170.3'>ViewsLifeTime</text>
2168
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3155.3'>ViewsRecent</text>
2169
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3140.3'>SectionNames</text>
2170
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3125.3'>SectionIndexes</text>
2171
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3110.3'>SiteLogo</text>
2172
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3095.3'>SiteDescription</text>
2173
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3080.3'>importance</text>
2174
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3065.3'>SiteName</text>
2175
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3050.3'>IsDocument</text>
2176
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3035.3'>FileType</text>
2177
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3020.3'>IsContainer</text>
2178
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-3005.3'>WebTemplate</text>
2179
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2990.3'>SPWebUrl</text>
2180
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2975.3'>UniqueId</text>
2181
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2960.3'>ProgId</text>
2182
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2945.3'>OriginalPath</text>
2183
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2930.3'>RenderTemplateId</text>
2184
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2915.3'>PartitionId</text>
2185
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2900.3'>UrlZone</text>
2186
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2885.3'>Culture</text>
2187
+ <polyline fill='none' filter='url(#shadow)' points='20142,-2881.5 20336,-2881.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20142,-2881.5 20336,-2881.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2188
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20239' y='-2870.3'> </text>
2189
+ </g><g class='node' id='node124'><title>yuml_searchquery</title>
2190
+ <polygon fill='palegreen' filter='url(#shadow)' points='20354,-2866.5 20354,-3511.5 20602,-3511.5 20602,-2866.5 20354,-2866.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='20354,-2866.5 20354,-3511.5 20602,-3511.5 20602,-2866.5 20354,-2866.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2191
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3500.3'>SearchQuery</text>
2192
+ <polyline fill='none' filter='url(#shadow)' points='20354,-3496.5 20602,-3496.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20354,-3496.5 20602,-3496.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2193
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3485.3'>Querytext</text>
2194
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3470.3'>QueryTemplate</text>
2195
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3455.3'>EnableInterleaving</text>
2196
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3440.3'>EnableStemming</text>
2197
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3425.3'>TrimDuplicates</text>
2198
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3410.3'>EnableNicknames</text>
2199
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3395.3'>EnableFQL</text>
2200
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3380.3'>EnablePhonetic</text>
2201
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3365.3'>BypassResultTypes</text>
2202
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3350.3'>ProcessBestBets</text>
2203
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3335.3'>EnableQueryRules</text>
2204
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3320.3'>EnableSorting</text>
2205
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3305.3'>GenerateBlockRankLog</text>
2206
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3290.3'>SourceId</text>
2207
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3275.3'>RankingModelId</text>
2208
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3260.3'>StartRow</text>
2209
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3245.3'>RowLimit</text>
2210
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3230.3'>RowsPerPage</text>
2211
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3215.3'>SelectProperties</text>
2212
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3200.3'>Culture</text>
2213
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3185.3'>RefinementFilters</text>
2214
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3170.3'>Refiners</text>
2215
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3155.3'>HiddenConstraints</text>
2216
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3140.3'>SortList</text>
2217
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3125.3'>Timeout</text>
2218
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3110.3'>HitHighlightedProperties</text>
2219
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3095.3'>ClientType</text>
2220
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3080.3'>PersonalizationData</text>
2221
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3065.3'>ResultsUrl</text>
2222
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3050.3'>QueryTag</text>
2223
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3035.3'>Properties</text>
2224
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3020.3'>ProcessPersonalFavorites</text>
2225
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-3005.3'>QueryTemplatePropertiesUrl</text>
2226
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2990.3'>ReorderingRules</text>
2227
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2975.3'>HitHighlightedMultivaluePropertyLimit</text>
2228
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2960.3'>EnableOrderingHitHighlightedProperty</text>
2229
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2945.3'>CollapseSpecification</text>
2230
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2930.3'>UIlanguage</text>
2231
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2915.3'>DesiredSnippetLength</text>
2232
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2900.3'>MaxSnippetLength</text>
2233
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2885.3'>SummaryLength</text>
2234
+ <polyline fill='none' filter='url(#shadow)' points='20354,-2881.5 20602,-2881.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20354,-2881.5 20602,-2881.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2235
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20478' y='-2870.3'> </text>
2236
+ </g><g class='node' id='node125'><title>yuml_searchbuiltinsourceid</title>
2237
+ <polygon fill='skyblue' filter='url(#shadow)' points='20620.5,-3061.5 20620.5,-3316.5 20853.5,-3316.5 20853.5,-3061.5 20620.5,-3061.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='20620.5,-3061.5 20620.5,-3316.5 20853.5,-3316.5 20853.5,-3061.5 20620.5,-3061.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2238
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3305.3'>SearchBuiltInSourceId</text>
2239
+ <polyline fill='none' filter='url(#shadow)' points='20620.5,-3301.5 20853.5,-3301.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20620.5,-3301.5 20853.5,-3301.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2240
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3290.3'>Documents</text>
2241
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3275.3'>ItemsMatchingContentType</text>
2242
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3260.3'>ItemsMatchingTag</text>
2243
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3245.3'>ItemsRelatedToCurrentUser</text>
2244
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3230.3'>ItemsWithSameKeywordAsThisItem</text>
2245
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3215.3'>LocalPeopleResults</text>
2246
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3200.3'>LocalReportsAndDataResults</text>
2247
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3185.3'>LocalSharePointResults</text>
2248
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3170.3'>LocalVideoResults</text>
2249
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3155.3'>Pages</text>
2250
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3140.3'>Pictures</text>
2251
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3125.3'>Popular</text>
2252
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3110.3'>RecentlyChangedItems</text>
2253
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3095.3'>RecommendedItems</text>
2254
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3080.3'>Wiki</text>
2255
+ <polyline fill='none' filter='url(#shadow)' points='20620.5,-3076.5 20853.5,-3076.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20620.5,-3076.5 20853.5,-3076.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2256
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20737' y='-3065.3'> </text>
2257
+ </g><g class='node' id='node126'><title>yuml_searchresults</title>
2258
+ <polygon fill='skyblue' filter='url(#shadow)' points='20871.5,-3091.5 20871.5,-3286.5 21068.5,-3286.5 21068.5,-3091.5 20871.5,-3091.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='20871.5,-3091.5 20871.5,-3286.5 21068.5,-3286.5 21068.5,-3091.5 20871.5,-3091.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2259
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3275.3'>SearchResults</text>
2260
+ <polyline fill='none' filter='url(#shadow)' points='20871.5,-3271.5 21068.5,-3271.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20871.5,-3271.5 21068.5,-3271.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2261
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3260.3'>_url</text>
2262
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3245.3'>_query</text>
2263
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3230.3'>_raw</text>
2264
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3215.3'>_primary</text>
2265
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3200.3'>ElapsedTime</text>
2266
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3185.3'>RowCount</text>
2267
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3170.3'>TotalRows</text>
2268
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3155.3'>TotalRowsIncludingDuplicates</text>
2269
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3140.3'>RawSearchResults</text>
2270
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3125.3'>PrimarySearchResults</text>
2271
+ <polyline fill='none' filter='url(#shadow)' points='20871.5,-3121.5 21068.5,-3121.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='20871.5,-3121.5 21068.5,-3121.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2272
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3110.3'>getPage()</text>
2273
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='20970' y='-3095.3'>formatSearchResults()</text>
2274
+ </g><g class='node' id='node127'><title>yuml_searchquerybuilder</title>
2275
+ <polygon fill='skyblue' filter='url(#shadow)' points='21087,-2829 21087,-3549 21341,-3549 21341,-2829 21087,-2829' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='21087,-2829 21087,-3549 21341,-3549 21341,-2829 21087,-2829' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2276
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3537.8'>SearchQueryBuilder</text>
2277
+ <polyline fill='none' filter='url(#shadow)' points='21087,-3534 21341,-3534 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21087,-3534 21341,-3534 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2278
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3522.8'>_query</text>
2279
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3507.8'>enableInterleaving</text>
2280
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3492.8'>enableStemming</text>
2281
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3477.8'>trimDuplicates</text>
2282
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3462.8'>enableNicknames</text>
2283
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3447.8'>enableFql</text>
2284
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3432.8'>enablePhonetic</text>
2285
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3417.8'>bypassResultTypes</text>
2286
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3402.8'>processBestBets</text>
2287
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3387.8'>enableQueryRules</text>
2288
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3372.8'>enableSorting</text>
2289
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3357.8'>generateBlockRankLog</text>
2290
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3342.8'>processPersonalFavorites</text>
2291
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3327.8'>enableOrderingHitHighlightedProperty</text>
2292
+ <polyline fill='none' filter='url(#shadow)' points='21087,-3324 21341,-3324 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21087,-3324 21341,-3324 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2293
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3312.8'>create()</text>
2294
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3297.8'>text()</text>
2295
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3282.8'>template()</text>
2296
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3267.8'>sourceId()</text>
2297
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3252.8'>trimDuplicatesIncludeId()</text>
2298
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3237.8'>rankingModelId()</text>
2299
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3222.8'>startRow()</text>
2300
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3207.8'>rowLimit()</text>
2301
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3192.8'>rowsPerPage()</text>
2302
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3177.8'>selectProperties()</text>
2303
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3162.8'>culture()</text>
2304
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3147.8'>timeZoneId()</text>
2305
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3132.8'>refinementFilters()</text>
2306
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3117.8'>refiners()</text>
2307
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3102.8'>hiddenConstraints()</text>
2308
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3087.8'>sortList()</text>
2309
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3072.8'>timeout()</text>
2310
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3057.8'>hithighlightedProperties()</text>
2311
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3042.8'>clientType()</text>
2312
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3027.8'>personalizationData()</text>
2313
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-3012.8'>resultsURL()</text>
2314
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2997.8'>queryTag()</text>
2315
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2982.8'>properties()</text>
2316
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2967.8'>queryTemplatePropertiesUrl()</text>
2317
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2952.8'>reorderingRules()</text>
2318
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2937.8'>hitHighlightedMultivaluePropertyLimit()</text>
2319
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2922.8'>collapseSpecification()</text>
2320
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2907.8'>uiLanguage()</text>
2321
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2892.8'>desiredSnippetLength()</text>
2322
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2877.8'>maxSnippetLength()</text>
2323
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2862.8'>summaryLength()</text>
2324
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2847.8'>toSearchQuery()</text>
2325
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21214' y='-2832.8'>extendQuery()</text>
2326
+ </g><g class='node' id='node133'><title>yuml_roledefinitionaddresult</title>
2327
+ <polygon fill='palegreen' filter='url(#shadow)' points='21359.5,-3159 21359.5,-3219 21526.5,-3219 21526.5,-3159 21359.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='21359.5,-3159 21359.5,-3219 21526.5,-3219 21526.5,-3159 21359.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2328
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21443' y='-3207.8'>RoleDefinitionAddResult</text>
2329
+ <polyline fill='none' filter='url(#shadow)' points='21359.5,-3204 21526.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21359.5,-3204 21526.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2330
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21443' y='-3192.8'>definition</text>
2331
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21443' y='-3177.8'>data</text>
2332
+ <polyline fill='none' filter='url(#shadow)' points='21359.5,-3174 21526.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21359.5,-3174 21526.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2333
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21443' y='-3162.8'> </text>
2334
+ </g><g class='node' id='node134'><title>yuml_roledefinitionupdateresult</title>
2335
+ <polygon fill='palegreen' filter='url(#shadow)' points='21544.5,-3159 21544.5,-3219 21727.5,-3219 21727.5,-3159 21544.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='21544.5,-3159 21544.5,-3219 21727.5,-3219 21727.5,-3159 21544.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2336
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21636' y='-3207.8'>RoleDefinitionUpdateResult</text>
2337
+ <polyline fill='none' filter='url(#shadow)' points='21544.5,-3204 21727.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21544.5,-3204 21727.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2338
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21636' y='-3192.8'>definition</text>
2339
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21636' y='-3177.8'>data</text>
2340
+ <polyline fill='none' filter='url(#shadow)' points='21544.5,-3174 21727.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21544.5,-3174 21727.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2341
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21636' y='-3162.8'> </text>
2342
+ </g><g class='node' id='node135'><title>yuml_sprest</title>
2343
+ <polygon fill='skyblue' filter='url(#shadow)' points='21745.5,-3076.5 21745.5,-3301.5 21860.5,-3301.5 21860.5,-3076.5 21745.5,-3076.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='21745.5,-3076.5 21745.5,-3301.5 21860.5,-3301.5 21860.5,-3076.5 21745.5,-3076.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2344
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3290.3'>SPRest</text>
2345
+ <polyline fill='none' filter='url(#shadow)' points='21745.5,-3286.5 21860.5,-3286.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21745.5,-3286.5 21860.5,-3286.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2346
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3275.3'>_options</text>
2347
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3260.3'>_baseUrl</text>
2348
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3245.3'>site</text>
2349
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3230.3'>web</text>
2350
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3215.3'>profiles</text>
2351
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3200.3'>social</text>
2352
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3185.3'>navigation</text>
2353
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3170.3'>utility</text>
2354
+ <polyline fill='none' filter='url(#shadow)' points='21745.5,-3166.5 21860.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21745.5,-3166.5 21860.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2355
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3155.3'>configure()</text>
2356
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3140.3'>setup()</text>
2357
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3125.3'>searchSuggest()</text>
2358
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3110.3'>search()</text>
2359
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3095.3'>createBatch()</text>
2360
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21803' y='-3080.3'>create()</text>
2361
+ </g><g class='node' id='node136'><title>yuml_relateditemmanger</title>
2362
+ <polygon fill='palegreen' filter='url(#shadow)' points='7195.5,-2595 7195.5,-2715 7370.5,-2715 7370.5,-2595 7195.5,-2595' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7195.5,-2595 7195.5,-2715 7370.5,-2715 7370.5,-2595 7195.5,-2595' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2363
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2703.8'>RelatedItemManger</text>
2364
+ <polyline fill='none' filter='url(#shadow)' points='7195.5,-2700 7370.5,-2700 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7195.5,-2700 7370.5,-2700 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2365
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2688.8'> </text>
2366
+ <polyline fill='none' filter='url(#shadow)' points='7195.5,-2685 7370.5,-2685 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7195.5,-2685 7370.5,-2685 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2367
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2673.8'>getRelatedItems()</text>
2368
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2658.8'>getPageOneRelatedItems()</text>
2369
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2643.8'>addSingleLink()</text>
2370
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2628.8'>addSingleLinkToUrl()</text>
2371
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2613.8'>addSingleLinkFromUrl()</text>
2372
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7283' y='-2598.8'>deleteSingleLink()</text>
2373
+ </g><g class='edge' id='edge84'><title>yuml_relateditemmanger-&gt;yuml_relateditemmanagerimpl</title>
2374
+ <path d='M7283,-2584.7C7283,-2535.56 7283,-2470 7283,-2421.5' fill='none' stroke='black'/><path d='M7283,-2584.7C7283,-2535.56 7283,-2470 7283,-2421.5' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2375
+ <polygon fill='none' filter='url(#shadow)' points='7279.5,-2584.93 7283,-2594.93 7286.5,-2584.93 7279.5,-2584.93' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='7279.5,-2584.93 7283,-2594.93 7286.5,-2584.93 7279.5,-2584.93' stroke='black' style='fill:url(#none);stroke:black;'/>
2376
+ </g><g class='node' id='node138'><title>yuml_relateditem</title>
2377
+ <polygon fill='palegreen' filter='url(#shadow)' points='21878.5,-3129 21878.5,-3249 21973.5,-3249 21973.5,-3129 21878.5,-3129' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='21878.5,-3129 21878.5,-3249 21973.5,-3249 21973.5,-3129 21878.5,-3129' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2378
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3237.8'>RelatedItem</text>
2379
+ <polyline fill='none' filter='url(#shadow)' points='21878.5,-3234 21973.5,-3234 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21878.5,-3234 21973.5,-3234 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2380
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3222.8'>ListId</text>
2381
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3207.8'>ItemId</text>
2382
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3192.8'>Url</text>
2383
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3177.8'>Title</text>
2384
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3162.8'>WebId</text>
2385
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3147.8'>IconUrl</text>
2386
+ <polyline fill='none' filter='url(#shadow)' points='21878.5,-3144 21973.5,-3144 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21878.5,-3144 21973.5,-3144 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2387
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='21926' y='-3132.8'> </text>
2388
+ </g><g class='node' id='node143'><title>yuml_inavigationservice</title>
2389
+ <polygon fill='palegreen' filter='url(#shadow)' points='7389,-2625 7389,-2685 7527,-2685 7527,-2625 7389,-2625' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='7389,-2625 7389,-2685 7527,-2685 7527,-2625 7389,-2625' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2390
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2673.8'>INavigationService</text>
2391
+ <polyline fill='none' filter='url(#shadow)' points='7389,-2670 7527,-2670 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7389,-2670 7527,-2670 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2392
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2658.8'> </text>
2393
+ <polyline fill='none' filter='url(#shadow)' points='7389,-2655 7527,-2655 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='7389,-2655 7527,-2655 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2394
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2643.8'>getMenuState()</text>
2395
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='7458' y='-2628.8'>getMenuNodeKey()</text>
2396
+ </g><g class='edge' id='edge85'><title>yuml_inavigationservice-&gt;yuml_navigationservice</title>
2397
+ <path d='M7458,-2614.44C7458,-2553.57 7458,-2438.35 7458,-2384.33' fill='none' stroke='black'/><path d='M7458,-2614.44C7458,-2553.57 7458,-2438.35 7458,-2384.33' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2398
+ <polygon fill='none' filter='url(#shadow)' points='7454.5,-2614.79 7458,-2624.79 7461.5,-2614.79 7454.5,-2614.79' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='7454.5,-2614.79 7458,-2624.79 7461.5,-2614.79 7454.5,-2614.79' stroke='black' style='fill:url(#none);stroke:black;'/>
2399
+ </g><g class='node' id='node148'><title>yuml_navigationnodeaddresult</title>
2400
+ <polygon fill='palegreen' filter='url(#shadow)' points='21992,-3159 21992,-3219 22168,-3219 22168,-3159 21992,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='21992,-3159 21992,-3219 22168,-3219 22168,-3159 21992,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2401
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22080' y='-3207.8'>NavigationNodeAddResult</text>
2402
+ <polyline fill='none' filter='url(#shadow)' points='21992,-3204 22168,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21992,-3204 22168,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2403
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22080' y='-3192.8'>data</text>
2404
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22080' y='-3177.8'>node</text>
2405
+ <polyline fill='none' filter='url(#shadow)' points='21992,-3174 22168,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='21992,-3174 22168,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2406
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22080' y='-3162.8'> </text>
2407
+ </g><g class='node' id='node151'><title>yuml_listensureresult</title>
2408
+ <polygon fill='palegreen' filter='url(#shadow)' points='22186,-3151.5 22186,-3226.5 22308,-3226.5 22308,-3151.5 22186,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='22186,-3151.5 22186,-3226.5 22308,-3226.5 22308,-3151.5 22186,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2409
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22247' y='-3215.3'>ListEnsureResult</text>
2410
+ <polyline fill='none' filter='url(#shadow)' points='22186,-3211.5 22308,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22186,-3211.5 22308,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2411
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22247' y='-3200.3'>list</text>
2412
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22247' y='-3185.3'>created</text>
2413
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22247' y='-3170.3'>data</text>
2414
+ <polyline fill='none' filter='url(#shadow)' points='22186,-3166.5 22308,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22186,-3166.5 22308,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2415
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22247' y='-3155.3'> </text>
2416
+ </g><g class='node' id='node152'><title>yuml_listupdateresult</title>
2417
+ <polygon fill='palegreen' filter='url(#shadow)' points='22326.5,-3159 22326.5,-3219 22449.5,-3219 22449.5,-3159 22326.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='22326.5,-3159 22326.5,-3219 22449.5,-3219 22449.5,-3159 22326.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2418
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22388' y='-3207.8'>ListUpdateResult</text>
2419
+ <polyline fill='none' filter='url(#shadow)' points='22326.5,-3204 22449.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22326.5,-3204 22449.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2420
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22388' y='-3192.8'>list</text>
2421
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22388' y='-3177.8'>data</text>
2422
+ <polyline fill='none' filter='url(#shadow)' points='22326.5,-3174 22449.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22326.5,-3174 22449.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2423
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22388' y='-3162.8'> </text>
2424
+ </g><g class='node' id='node153'><title>yuml_listaddresult</title>
2425
+ <polygon fill='palegreen' filter='url(#shadow)' points='22467.5,-3159 22467.5,-3219 22574.5,-3219 22574.5,-3159 22467.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='22467.5,-3159 22467.5,-3219 22574.5,-3219 22574.5,-3159 22467.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2426
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22521' y='-3207.8'>ListAddResult</text>
2427
+ <polyline fill='none' filter='url(#shadow)' points='22467.5,-3204 22574.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22467.5,-3204 22574.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2428
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22521' y='-3192.8'>list</text>
2429
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22521' y='-3177.8'>data</text>
2430
+ <polyline fill='none' filter='url(#shadow)' points='22467.5,-3174 22574.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22467.5,-3174 22574.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2431
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22521' y='-3162.8'> </text>
2432
+ </g><g class='node' id='node158'><title>yuml_itemupdateresultdata</title>
2433
+ <polygon fill='palegreen' filter='url(#shadow)' points='22592.5,-3166.5 22592.5,-3211.5 22745.5,-3211.5 22745.5,-3166.5 22592.5,-3166.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='22592.5,-3166.5 22592.5,-3211.5 22745.5,-3211.5 22745.5,-3166.5 22592.5,-3166.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2434
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22669' y='-3200.3'>ItemUpdateResultData</text>
2435
+ <polyline fill='none' filter='url(#shadow)' points='22592.5,-3196.5 22745.5,-3196.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22592.5,-3196.5 22745.5,-3196.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2436
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22669' y='-3185.3'>odata.etag</text>
2437
+ <polyline fill='none' filter='url(#shadow)' points='22592.5,-3181.5 22745.5,-3181.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22592.5,-3181.5 22745.5,-3181.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2438
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22669' y='-3170.3'> </text>
2439
+ </g><g class='node' id='node159'><title>yuml_itemupdateresult</title>
2440
+ <polygon fill='palegreen' filter='url(#shadow)' points='22764,-3159 22764,-3219 22892,-3219 22892,-3159 22764,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='22764,-3159 22764,-3219 22892,-3219 22892,-3159 22764,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2441
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22828' y='-3207.8'>ItemUpdateResult</text>
2442
+ <polyline fill='none' filter='url(#shadow)' points='22764,-3204 22892,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22764,-3204 22892,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2443
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22828' y='-3192.8'>item</text>
2444
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22828' y='-3177.8'>data</text>
2445
+ <polyline fill='none' filter='url(#shadow)' points='22764,-3174 22892,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22764,-3174 22892,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2446
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22828' y='-3162.8'> </text>
2447
+ </g><g class='node' id='node160'><title>yuml_itemaddresult</title>
2448
+ <polygon fill='palegreen' filter='url(#shadow)' points='22910,-3159 22910,-3219 23022,-3219 23022,-3159 22910,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='22910,-3159 22910,-3219 23022,-3219 23022,-3159 22910,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2449
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22966' y='-3207.8'>ItemAddResult</text>
2450
+ <polyline fill='none' filter='url(#shadow)' points='22910,-3204 23022,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22910,-3204 23022,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2451
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22966' y='-3192.8'>item</text>
2452
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22966' y='-3177.8'>data</text>
2453
+ <polyline fill='none' filter='url(#shadow)' points='22910,-3174 23022,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='22910,-3174 23022,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2454
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='22966' y='-3162.8'> </text>
2455
+ </g><g class='node' id='node161'><title>yuml_pageditemcollection</title>
2456
+ <polygon fill='skyblue' filter='url(#shadow)' points='23040.5,-3144 23040.5,-3234 23183.5,-3234 23183.5,-3144 23040.5,-3144' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='23040.5,-3144 23040.5,-3234 23183.5,-3234 23183.5,-3144 23040.5,-3144' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2457
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23112' y='-3222.8'>PagedItemCollection</text>
2458
+ <polyline fill='none' filter='url(#shadow)' points='23040.5,-3219 23183.5,-3219 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23040.5,-3219 23183.5,-3219 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2459
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23112' y='-3207.8'>parent</text>
2460
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23112' y='-3192.8'>nextUrl</text>
2461
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23112' y='-3177.8'>results</text>
2462
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23112' y='-3162.8'>hasNext</text>
2463
+ <polyline fill='none' filter='url(#shadow)' points='23040.5,-3159 23183.5,-3159 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23040.5,-3159 23183.5,-3159 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2464
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23112' y='-3147.8'>getNext()</text>
2465
+ </g><g class='node' id='node166'><title>yuml_folderupdateresult</title>
2466
+ <polygon fill='palegreen' filter='url(#shadow)' points='23201.5,-3159 23201.5,-3219 23338.5,-3219 23338.5,-3159 23201.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='23201.5,-3159 23201.5,-3219 23338.5,-3219 23338.5,-3159 23201.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2467
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23270' y='-3207.8'>FolderUpdateResult</text>
2468
+ <polyline fill='none' filter='url(#shadow)' points='23201.5,-3204 23338.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23201.5,-3204 23338.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2469
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23270' y='-3192.8'>folder</text>
2470
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23270' y='-3177.8'>data</text>
2471
+ <polyline fill='none' filter='url(#shadow)' points='23201.5,-3174 23338.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23201.5,-3174 23338.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2472
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23270' y='-3162.8'> </text>
2473
+ </g><g class='node' id='node167'><title>yuml_folderaddresult</title>
2474
+ <polygon fill='palegreen' filter='url(#shadow)' points='23357,-3159 23357,-3219 23479,-3219 23479,-3159 23357,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='23357,-3159 23357,-3219 23479,-3219 23479,-3159 23357,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2475
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23418' y='-3207.8'>FolderAddResult</text>
2476
+ <polyline fill='none' filter='url(#shadow)' points='23357,-3204 23479,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23357,-3204 23479,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2477
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23418' y='-3192.8'>folder</text>
2478
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23418' y='-3177.8'>data</text>
2479
+ <polyline fill='none' filter='url(#shadow)' points='23357,-3174 23479,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23357,-3174 23479,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2480
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23418' y='-3162.8'> </text>
2481
+ </g><g class='node' id='node202'><title>yuml_clientsidepage</title>
2482
+ <polygon fill='skyblue' filter='url(#shadow)' points='836,-1 836,-301 992,-301 992,-1 836,-1' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='836,-1 836,-301 992,-301 992,-1 836,-1' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2483
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-289.8'>ClientSidePage</text>
2484
+ <polyline fill='none' filter='url(#shadow)' points='836,-286 992,-286 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='836,-286 992,-286 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2485
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-274.8'>sections</text>
2486
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-259.8'>commentsDisabled</text>
2487
+ <polyline fill='none' filter='url(#shadow)' points='836,-256 992,-256 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='836,-256 992,-256 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2488
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-244.8'>create()</text>
2489
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-229.8'>fromFile()</text>
2490
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-214.8'>jsonToEscapedString()</text>
2491
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-199.8'>escapedStringToJson()</text>
2492
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-184.8'>addSection()</text>
2493
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-169.8'>toHtml()</text>
2494
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-154.8'>fromHtml()</text>
2495
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-139.8'>load()</text>
2496
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-124.8'>save()</text>
2497
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-109.8'>enableComments()</text>
2498
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-94.8'>disableComments()</text>
2499
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-79.8'>findControlById()</text>
2500
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-64.8'>findControl()</text>
2501
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-49.8'>setCommentsOn()</text>
2502
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-34.8'>mergePartToTree()</text>
2503
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-19.8'>mergeColumnToTree()</text>
2504
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='914' y='-4.8'>updateProperties()</text>
2505
+ </g><g class='edge' id='edge86'><title>yuml_file-&gt;yuml_clientsidepage</title>
2506
+ <path d='M914,-562.737C914,-477.257 914,-379.735 914,-301.174' fill='none' stroke='black'/><path d='M914,-562.737C914,-477.257 914,-379.735 914,-301.174' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2507
+ <polygon fill='none' filter='url(#shadow)' points='910.5,-562.832 914,-572.832 917.5,-562.832 910.5,-562.832' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='910.5,-562.832 914,-572.832 917.5,-562.832 910.5,-562.832' stroke='black' style='fill:url(#none);stroke:black;'/>
2508
+ </g><g class='node' id='node172'><title>yuml_fileaddresult</title>
2509
+ <polygon fill='palegreen' filter='url(#shadow)' points='23497.5,-3159 23497.5,-3219 23604.5,-3219 23604.5,-3159 23497.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='23497.5,-3159 23497.5,-3219 23604.5,-3219 23604.5,-3159 23497.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2510
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23551' y='-3207.8'>FileAddResult</text>
2511
+ <polyline fill='none' filter='url(#shadow)' points='23497.5,-3204 23604.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23497.5,-3204 23604.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2512
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23551' y='-3192.8'>file</text>
2513
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23551' y='-3177.8'>data</text>
2514
+ <polyline fill='none' filter='url(#shadow)' points='23497.5,-3174 23604.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23497.5,-3174 23604.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2515
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23551' y='-3162.8'> </text>
2516
+ </g><g class='node' id='node173'><title>yuml_chunkedfileuploadprogressdata</title>
2517
+ <polygon fill='palegreen' filter='url(#shadow)' points='23623,-3121.5 23623,-3256.5 23833,-3256.5 23833,-3121.5 23623,-3121.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='23623,-3121.5 23623,-3256.5 23833,-3256.5 23833,-3121.5 23623,-3121.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2518
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3245.3'>ChunkedFileUploadProgressData</text>
2519
+ <polyline fill='none' filter='url(#shadow)' points='23623,-3241.5 23833,-3241.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23623,-3241.5 23833,-3241.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2520
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3230.3'>uploadId</text>
2521
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3215.3'>stage</text>
2522
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3200.3'>blockNumber</text>
2523
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3185.3'>totalBlocks</text>
2524
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3170.3'>chunkSize</text>
2525
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3155.3'>currentPointer</text>
2526
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3140.3'>fileSize</text>
2527
+ <polyline fill='none' filter='url(#shadow)' points='23623,-3136.5 23833,-3136.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23623,-3136.5 23833,-3136.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2528
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23728' y='-3125.3'> </text>
2529
+ </g><g class='node' id='node176'><title>yuml_fieldupdateresult</title>
2530
+ <polygon fill='palegreen' filter='url(#shadow)' points='23851,-3159 23851,-3219 23981,-3219 23981,-3159 23851,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='23851,-3159 23851,-3219 23981,-3219 23981,-3159 23851,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2531
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23916' y='-3207.8'>FieldUpdateResult</text>
2532
+ <polyline fill='none' filter='url(#shadow)' points='23851,-3204 23981,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23851,-3204 23981,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2533
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23916' y='-3192.8'>data</text>
2534
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23916' y='-3177.8'>field</text>
2535
+ <polyline fill='none' filter='url(#shadow)' points='23851,-3174 23981,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23851,-3174 23981,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2536
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='23916' y='-3162.8'> </text>
2537
+ </g><g class='node' id='node177'><title>yuml_fieldaddresult</title>
2538
+ <polygon fill='palegreen' filter='url(#shadow)' points='23999,-3159 23999,-3219 24113,-3219 24113,-3159 23999,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='23999,-3159 23999,-3219 24113,-3219 24113,-3159 23999,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2539
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24056' y='-3207.8'>FieldAddResult</text>
2540
+ <polyline fill='none' filter='url(#shadow)' points='23999,-3204 24113,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23999,-3204 24113,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2541
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24056' y='-3192.8'>data</text>
2542
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24056' y='-3177.8'>field</text>
2543
+ <polyline fill='none' filter='url(#shadow)' points='23999,-3174 24113,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23999,-3174 24113,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2544
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24056' y='-3162.8'> </text>
2545
+ </g><g class='node' id='node180'><title>yuml_featureaddresult</title>
2546
+ <polygon fill='palegreen' filter='url(#shadow)' points='24131.5,-3159 24131.5,-3219 24258.5,-3219 24258.5,-3159 24131.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='24131.5,-3159 24131.5,-3219 24258.5,-3219 24258.5,-3159 24131.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2547
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24195' y='-3207.8'>FeatureAddResult</text>
2548
+ <polyline fill='none' filter='url(#shadow)' points='24131.5,-3204 24258.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24131.5,-3204 24258.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2549
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24195' y='-3192.8'>data</text>
2550
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24195' y='-3177.8'>feature</text>
2551
+ <polyline fill='none' filter='url(#shadow)' points='24131.5,-3174 24258.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24131.5,-3174 24258.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2552
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24195' y='-3162.8'> </text>
2553
+ </g><g class='node' id='node181'><title>yuml_error</title>
2554
+ <polygon fill='lightgrey' filter='url(#shadow)' points='24333.2,-3210.5 24276.8,-3210.5 24276.8,-3167.5 24333.2,-3167.5 24333.2,-3210.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='24333.2,-3210.5 24276.8,-3210.5 24276.8,-3167.5 24333.2,-3167.5 24333.2,-3210.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
2555
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24305' y='-3185.3'>Error</text>
2556
+ </g><g class='node' id='node182'><title>yuml_notsupportedinbatchexception</title>
2557
+ <polygon fill='skyblue' filter='url(#shadow)' points='23984,-2632.5 23984,-2677.5 24186,-2677.5 24186,-2632.5 23984,-2632.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='23984,-2632.5 23984,-2677.5 24186,-2677.5 24186,-2632.5 23984,-2632.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2558
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24085' y='-2666.3'>NotSupportedInBatchException</text>
2559
+ <polyline fill='none' filter='url(#shadow)' points='23984,-2662.5 24186,-2662.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23984,-2662.5 24186,-2662.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2560
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24085' y='-2651.3'> </text>
2561
+ <polyline fill='none' filter='url(#shadow)' points='23984,-2647.5 24186,-2647.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='23984,-2647.5 24186,-2647.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2562
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24085' y='-2636.3'> </text>
2563
+ </g><g class='edge' id='edge87'><title>yuml_error-&gt;yuml_notsupportedinbatchexception</title>
2564
+ <path d='M24308.6,-3157.16C24314.8,-3092.38 24321.9,-2938.99 24267,-2828 24248.8,-2791.18 24158.3,-2714.97 24112.1,-2677.61' fill='none' stroke='black'/><path d='M24308.6,-3157.16C24314.8,-3092.38 24321.9,-2938.99 24267,-2828 24248.8,-2791.18 24158.3,-2714.97 24112.1,-2677.61' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2565
+ <polygon fill='none' filter='url(#shadow)' points='24305.1,-3156.83 24307.6,-3167.13 24312.1,-3157.54 24305.1,-3156.83' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='24305.1,-3156.83 24307.6,-3167.13 24312.1,-3157.54 24305.1,-3156.83' stroke='black' style='fill:url(#none);stroke:black;'/>
2566
+ </g><g class='node' id='node183'><title>yuml_maxcommentlengthexception</title>
2567
+ <polygon fill='skyblue' filter='url(#shadow)' points='24204,-2632.5 24204,-2677.5 24406,-2677.5 24406,-2632.5 24204,-2632.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='24204,-2632.5 24204,-2677.5 24406,-2677.5 24406,-2632.5 24204,-2632.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2568
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24305' y='-2666.3'>MaxCommentLengthException</text>
2569
+ <polyline fill='none' filter='url(#shadow)' points='24204,-2662.5 24406,-2662.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24204,-2662.5 24406,-2662.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2570
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24305' y='-2651.3'> </text>
2571
+ <polyline fill='none' filter='url(#shadow)' points='24204,-2647.5 24406,-2647.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24204,-2647.5 24406,-2647.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2572
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24305' y='-2636.3'> </text>
2573
+ </g><g class='edge' id='edge88'><title>yuml_error-&gt;yuml_maxcommentlengthexception</title>
2574
+ <path d='M24305,-3157.43C24305,-3060.4 24305,-2760.82 24305,-2677.63' fill='none' stroke='black'/><path d='M24305,-3157.43C24305,-3060.4 24305,-2760.82 24305,-2677.63' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2575
+ <polygon fill='none' filter='url(#shadow)' points='24301.5,-3157.47 24305,-3167.47 24308.5,-3157.47 24301.5,-3157.47' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='24301.5,-3157.47 24305,-3167.47 24308.5,-3157.47 24301.5,-3157.47' stroke='black' style='fill:url(#none);stroke:black;'/>
2576
+ </g><g class='node' id='node184'><title>yuml_spbatchparseexception</title>
2577
+ <polygon fill='skyblue' filter='url(#shadow)' points='24424.5,-2632.5 24424.5,-2677.5 24583.5,-2677.5 24583.5,-2632.5 24424.5,-2632.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='24424.5,-2632.5 24424.5,-2677.5 24583.5,-2677.5 24583.5,-2632.5 24424.5,-2632.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2578
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24504' y='-2666.3'>SPBatchParseException</text>
2579
+ <polyline fill='none' filter='url(#shadow)' points='24424.5,-2662.5 24583.5,-2662.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24424.5,-2662.5 24583.5,-2662.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2580
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24504' y='-2651.3'> </text>
2581
+ <polyline fill='none' filter='url(#shadow)' points='24424.5,-2647.5 24583.5,-2647.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24424.5,-2647.5 24583.5,-2647.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2582
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24504' y='-2636.3'> </text>
2583
+ </g><g class='edge' id='edge89'><title>yuml_error-&gt;yuml_spbatchparseexception</title>
2584
+ <path d='M24301.8,-3157.02C24296.3,-3092.49 24290.6,-2940.35 24342,-2828 24358.2,-2792.65 24439.2,-2715.39 24480.2,-2677.63' fill='none' stroke='black'/><path d='M24301.8,-3157.02C24296.3,-3092.49 24290.6,-2940.35 24342,-2828 24358.2,-2792.65 24439.2,-2715.39 24480.2,-2677.63' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2585
+ <polygon fill='none' filter='url(#shadow)' points='24298.3,-3157.67 24302.7,-3167.31 24305.3,-3157.04 24298.3,-3157.67' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='24298.3,-3157.67 24302.7,-3167.31 24305.3,-3157.04 24298.3,-3157.67' stroke='black' style='fill:url(#none);stroke:black;'/>
2586
+ </g><g class='node' id='node189'><title>yuml_contenttypeaddresult</title>
2587
+ <polygon fill='palegreen' filter='url(#shadow)' points='24351.5,-3159 24351.5,-3219 24508.5,-3219 24508.5,-3159 24351.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='24351.5,-3159 24351.5,-3219 24508.5,-3219 24508.5,-3159 24351.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2588
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24430' y='-3207.8'>ContentTypeAddResult</text>
2589
+ <polyline fill='none' filter='url(#shadow)' points='24351.5,-3204 24508.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24351.5,-3204 24508.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2590
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24430' y='-3192.8'>contentType</text>
2591
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24430' y='-3177.8'>data</text>
2592
+ <polyline fill='none' filter='url(#shadow)' points='24351.5,-3174 24508.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24351.5,-3174 24508.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2593
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24430' y='-3162.8'> </text>
2594
+ </g><g class='node' id='node193'><title>yuml_commentinfo</title>
2595
+ <polygon fill='palegreen' filter='url(#shadow)' points='24527,-3159 24527,-3219 24633,-3219 24633,-3159 24527,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='24527,-3159 24527,-3219 24633,-3219 24633,-3159 24527,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2596
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24580' y='-3207.8'>CommentInfo</text>
2597
+ <polyline fill='none' filter='url(#shadow)' points='24527,-3204 24633,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24527,-3204 24633,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2598
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24580' y='-3192.8'>text</text>
2599
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24580' y='-3177.8'>mentions</text>
2600
+ <polyline fill='none' filter='url(#shadow)' points='24527,-3174 24633,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24527,-3174 24633,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2601
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24580' y='-3162.8'> </text>
2602
+ </g><g class='node' id='node194'><title>yuml_identity</title>
2603
+ <polygon fill='palegreen' filter='url(#shadow)' points='24650.5,-3151.5 24650.5,-3226.5 24739.5,-3226.5 24739.5,-3151.5 24650.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='24650.5,-3151.5 24650.5,-3226.5 24739.5,-3226.5 24739.5,-3151.5 24650.5,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2604
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24695' y='-3215.3'>Identity</text>
2605
+ <polyline fill='none' filter='url(#shadow)' points='24650.5,-3211.5 24739.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24650.5,-3211.5 24739.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2606
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24695' y='-3200.3'>loginName</text>
2607
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24695' y='-3185.3'>email</text>
2608
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24695' y='-3170.3'>name</text>
2609
+ <polyline fill='none' filter='url(#shadow)' points='24650.5,-3166.5 24739.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24650.5,-3166.5 24739.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2610
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24695' y='-3155.3'> </text>
2611
+ </g><g class='node' id='node195'><title>yuml_commentdata</title>
2612
+ <polygon fill='palegreen' filter='url(#shadow)' points='24758,-3084 24758,-3294 24868,-3294 24868,-3084 24758,-3084' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='24758,-3084 24758,-3294 24868,-3294 24868,-3084 24758,-3084' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2613
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3282.8'>CommentData</text>
2614
+ <polyline fill='none' filter='url(#shadow)' points='24758,-3279 24868,-3279 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24758,-3279 24868,-3279 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2615
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3267.8'>author</text>
2616
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3252.8'>createdDate</text>
2617
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3237.8'>id</text>
2618
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3222.8'>isLikedByUser</text>
2619
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3207.8'>isReply</text>
2620
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3192.8'>itemId</text>
2621
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3177.8'>likeCount</text>
2622
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3162.8'>listId</text>
2623
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3147.8'>mentions</text>
2624
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3132.8'>parentId</text>
2625
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3117.8'>replyCount</text>
2626
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3102.8'>text</text>
2627
+ <polyline fill='none' filter='url(#shadow)' points='24758,-3099 24868,-3099 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24758,-3099 24868,-3099 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2628
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24813' y='-3087.8'> </text>
2629
+ </g><g class='node' id='node196'><title>yuml_commentauthordata</title>
2630
+ <polygon fill='palegreen' filter='url(#shadow)' points='24886.5,-3106.5 24886.5,-3271.5 25033.5,-3271.5 25033.5,-3106.5 24886.5,-3106.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='24886.5,-3106.5 24886.5,-3271.5 25033.5,-3271.5 25033.5,-3106.5 24886.5,-3106.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2631
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3260.3'>CommentAuthorData</text>
2632
+ <polyline fill='none' filter='url(#shadow)' points='24886.5,-3256.5 25033.5,-3256.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24886.5,-3256.5 25033.5,-3256.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2633
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3245.3'>email</text>
2634
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3230.3'>id</text>
2635
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3215.3'>isActive</text>
2636
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3200.3'>isExternal</text>
2637
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3185.3'>jobTitle</text>
2638
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3170.3'>loginName</text>
2639
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3155.3'>name</text>
2640
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3140.3'>principalType</text>
2641
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3125.3'>userId</text>
2642
+ <polyline fill='none' filter='url(#shadow)' points='24886.5,-3121.5 25033.5,-3121.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24886.5,-3121.5 25033.5,-3121.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2643
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24960' y='-3110.3'> </text>
2644
+ </g><g class='node' id='node197'><title>yuml_clientsidepart</title>
2645
+ <polygon fill='skyblue' filter='url(#shadow)' points='24992.5,-2632.5 24992.5,-2677.5 25099.5,-2677.5 25099.5,-2632.5 24992.5,-2632.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='24992.5,-2632.5 24992.5,-2677.5 25099.5,-2677.5 25099.5,-2632.5 24992.5,-2632.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2646
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25046' y='-2666.3'>ClientSidePart</text>
2647
+ <polyline fill='none' filter='url(#shadow)' points='24992.5,-2662.5 25099.5,-2662.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24992.5,-2662.5 25099.5,-2662.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2648
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25046' y='-2651.3'> </text>
2649
+ <polyline fill='none' filter='url(#shadow)' points='24992.5,-2647.5 25099.5,-2647.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24992.5,-2647.5 25099.5,-2647.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2650
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25046' y='-2636.3'>remove()</text>
2651
+ </g><g class='node' id='node198'><title>yuml_clientsidewebpart</title>
2652
+ <polygon fill='skyblue' filter='url(#shadow)' points='24888,-2226.5 24888,-2481.5 25046,-2481.5 25046,-2226.5 24888,-2226.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='24888,-2226.5 24888,-2481.5 25046,-2481.5 25046,-2226.5 24888,-2226.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2653
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2470.3'>ClientSideWebpart</text>
2654
+ <polyline fill='none' filter='url(#shadow)' points='24888,-2466.5 25046,-2466.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24888,-2466.5 25046,-2466.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2655
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2455.3'>title</text>
2656
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2440.3'>description</text>
2657
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2425.3'>propertieJson</text>
2658
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2410.3'>webPartId</text>
2659
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2395.3'>htmlProperties</text>
2660
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2380.3'>serverProcessedContent</text>
2661
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2365.3'>canvasDataVersion</text>
2662
+ <polyline fill='none' filter='url(#shadow)' points='24888,-2361.5 25046,-2361.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='24888,-2361.5 25046,-2361.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2663
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2350.3'>fromComponentDef()</text>
2664
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2335.3'>import()</text>
2665
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2320.3'>setProperties()</text>
2666
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2305.3'>getProperties()</text>
2667
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2290.3'>toHtml()</text>
2668
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2275.3'>fromHtml()</text>
2669
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2260.3'>getControlData()</text>
2670
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2245.3'>renderHtmlProperties()</text>
2671
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='24967' y='-2230.3'>parseJsonProperties()</text>
2672
+ </g><g class='edge' id='edge90'><title>yuml_clientsidepart-&gt;yuml_clientsidewebpart</title>
2673
+ <path d='M25037.8,-2622.81C25028.9,-2589.21 25014.2,-2533.58 25000.5,-2481.7' fill='none' stroke='black'/><path d='M25037.8,-2622.81C25028.9,-2589.21 25014.2,-2533.58 25000.5,-2481.7' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2674
+ <polygon fill='none' filter='url(#shadow)' points='25034.4,-2623.72 25040.3,-2632.5 25041.1,-2621.93 25034.4,-2623.72' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='25034.4,-2623.72 25040.3,-2632.5 25041.1,-2621.93 25034.4,-2623.72' stroke='black' style='fill:url(#none);stroke:black;'/>
2675
+ </g><g class='node' id='node199'><title>yuml_clientsidetext</title>
2676
+ <polygon fill='skyblue' filter='url(#shadow)' points='25063.5,-2309 25063.5,-2399 25184.5,-2399 25184.5,-2309 25063.5,-2309' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='25063.5,-2309 25063.5,-2399 25184.5,-2399 25184.5,-2309 25063.5,-2309' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2677
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25124' y='-2387.8'>ClientSideText</text>
2678
+ <polyline fill='none' filter='url(#shadow)' points='25063.5,-2384 25184.5,-2384 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25063.5,-2384 25184.5,-2384 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2679
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25124' y='-2372.8'>_text</text>
2680
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25124' y='-2357.8'>text</text>
2681
+ <polyline fill='none' filter='url(#shadow)' points='25063.5,-2354 25184.5,-2354 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25063.5,-2354 25184.5,-2354 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2682
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25124' y='-2342.8'>getControlData()</text>
2683
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25124' y='-2327.8'>toHtml()</text>
2684
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25124' y='-2312.8'>fromHtml()</text>
2685
+ </g><g class='edge' id='edge91'><title>yuml_clientsidepart-&gt;yuml_clientsidetext</title>
2686
+ <path d='M25054.2,-2622.57C25068.1,-2569.11 25096.5,-2460.32 25112.5,-2399.21' fill='none' stroke='black'/><path d='M25054.2,-2622.57C25068.1,-2569.11 25096.5,-2460.32 25112.5,-2399.21' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2687
+ <polygon fill='none' filter='url(#shadow)' points='25050.7,-2621.94 25051.6,-2632.5 25057.5,-2623.7 25050.7,-2621.94' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='25050.7,-2621.94 25051.6,-2632.5 25057.5,-2623.7 25050.7,-2621.94' stroke='black' style='fill:url(#none);stroke:black;'/>
2688
+ </g><g class='node' id='node200'><title>yuml_canvascontrol</title>
2689
+ <polygon fill='skyblue' filter='url(#shadow)' points='25051.5,-3106.5 25051.5,-3271.5 25172.5,-3271.5 25172.5,-3106.5 25051.5,-3106.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='25051.5,-3106.5 25051.5,-3271.5 25172.5,-3271.5 25172.5,-3106.5 25051.5,-3106.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2690
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3260.3'>CanvasControl</text>
2691
+ <polyline fill='none' filter='url(#shadow)' points='25051.5,-3256.5 25172.5,-3256.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25051.5,-3256.5 25172.5,-3256.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2692
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3245.3'>controlType</text>
2693
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3230.3'>dataVersion</text>
2694
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3215.3'>column</text>
2695
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3200.3'>order</text>
2696
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3185.3'>id</text>
2697
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3170.3'>controlData</text>
2698
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3155.3'>jsonData</text>
2699
+ <polyline fill='none' filter='url(#shadow)' points='25051.5,-3151.5 25172.5,-3151.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25051.5,-3151.5 25172.5,-3151.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2700
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3140.3'>toHtml()</text>
2701
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3125.3'>fromHtml()</text>
2702
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25112' y='-3110.3'>getControlData()</text>
2703
+ </g><g class='edge' id='edge92'><title>yuml_canvascontrol-&gt;yuml_clientsidepart</title>
2704
+ <path d='M25100.6,-3096.23C25084.9,-2969.27 25057.4,-2747.76 25048.7,-2677.82' fill='none' stroke='black'/><path d='M25100.6,-3096.23C25084.9,-2969.27 25057.4,-2747.76 25048.7,-2677.82' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2705
+ <polygon fill='none' filter='url(#shadow)' points='25097.2,-3096.84 25101.9,-3106.33 25104.1,-3095.98 25097.2,-3096.84' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='25097.2,-3096.84 25101.9,-3106.33 25104.1,-3095.98 25097.2,-3096.84' stroke='black' style='fill:url(#none);stroke:black;'/>
2706
+ </g><g class='node' id='node201'><title>yuml_canvascolumn</title>
2707
+ <polygon fill='skyblue' filter='url(#shadow)' points='25117.5,-2572.5 25117.5,-2737.5 25238.5,-2737.5 25238.5,-2572.5 25117.5,-2572.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='25117.5,-2572.5 25117.5,-2737.5 25238.5,-2737.5 25238.5,-2572.5 25117.5,-2572.5' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2708
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2726.3'>CanvasColumn</text>
2709
+ <polyline fill='none' filter='url(#shadow)' points='25117.5,-2722.5 25238.5,-2722.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25117.5,-2722.5 25238.5,-2722.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2710
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2711.3'>section</text>
2711
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2696.3'>order</text>
2712
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2681.3'>factor</text>
2713
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2666.3'>controls</text>
2714
+ <polyline fill='none' filter='url(#shadow)' points='25117.5,-2662.5 25238.5,-2662.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25117.5,-2662.5 25238.5,-2662.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2715
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2651.3'>addControl()</text>
2716
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2636.3'>getControl()</text>
2717
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2621.3'>toHtml()</text>
2718
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2606.3'>fromHtml()</text>
2719
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2591.3'>getControlData()</text>
2720
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25178' y='-2576.3'>remove()</text>
2721
+ </g><g class='edge' id='edge93'><title>yuml_canvascontrol-&gt;yuml_canvascolumn</title>
2722
+ <path d='M25123.4,-3096.14C25135.9,-2995.17 25155.9,-2834.46 25167.9,-2737.71' fill='none' stroke='black'/><path d='M25123.4,-3096.14C25135.9,-2995.17 25155.9,-2834.46 25167.9,-2737.71' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2723
+ <polygon fill='none' filter='url(#shadow)' points='25119.9,-3095.98 25122.1,-3106.33 25126.8,-3096.84 25119.9,-3095.98' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='25119.9,-3095.98 25122.1,-3106.33 25126.8,-3096.84 25119.9,-3095.98' stroke='black' style='fill:url(#none);stroke:black;'/>
2724
+ </g><g class='node' id='node203'><title>yuml_clientsidewebpartdata</title>
2725
+ <polygon fill='palegreen' filter='url(#shadow)' points='25190,-3121.5 25190,-3256.5 25348,-3256.5 25348,-3121.5 25190,-3121.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='25190,-3121.5 25190,-3256.5 25348,-3256.5 25348,-3121.5 25190,-3121.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2726
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3245.3'>ClientSideWebpartData</text>
2727
+ <polyline fill='none' filter='url(#shadow)' points='25190,-3241.5 25348,-3241.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25190,-3241.5 25348,-3241.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2728
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3230.3'>dataVersion</text>
2729
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3215.3'>description</text>
2730
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3200.3'>id</text>
2731
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3185.3'>instanceId</text>
2732
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3170.3'>properties</text>
2733
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3155.3'>title</text>
2734
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3140.3'>serverProcessedContent</text>
2735
+ <polyline fill='none' filter='url(#shadow)' points='25190,-3136.5 25348,-3136.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25190,-3136.5 25348,-3136.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2736
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25269' y='-3125.3'> </text>
2737
+ </g><g class='node' id='node204'><title>yuml_clientsidecontroldata</title>
2738
+ <polygon fill='palegreen' filter='url(#shadow)' points='25366,-3129 25366,-3249 25518,-3249 25518,-3129 25366,-3129' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='25366,-3129 25366,-3249 25518,-3249 25518,-3129 25366,-3129' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2739
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3237.8'>ClientSideControlData</text>
2740
+ <polyline fill='none' filter='url(#shadow)' points='25366,-3234 25518,-3234 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25366,-3234 25518,-3234 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2741
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3222.8'>controlType</text>
2742
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3207.8'>id</text>
2743
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3192.8'>editorType</text>
2744
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3177.8'>position</text>
2745
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3162.8'>webPartId</text>
2746
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3147.8'>displayMode</text>
2747
+ <polyline fill='none' filter='url(#shadow)' points='25366,-3144 25518,-3144 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25366,-3144 25518,-3144 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2748
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25442' y='-3132.8'> </text>
2749
+ </g><g class='node' id='node205'><title>yuml_clientsidecontrolposition</title>
2750
+ <polygon fill='palegreen' filter='url(#shadow)' points='25536.5,-3144 25536.5,-3234 25707.5,-3234 25707.5,-3144 25536.5,-3144' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='25536.5,-3144 25536.5,-3234 25707.5,-3234 25707.5,-3144 25536.5,-3144' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2751
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25622' y='-3222.8'>ClientSideControlPosition</text>
2752
+ <polyline fill='none' filter='url(#shadow)' points='25536.5,-3219 25707.5,-3219 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25536.5,-3219 25707.5,-3219 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2753
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25622' y='-3207.8'>controlIndex</text>
2754
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25622' y='-3192.8'>sectionFactor</text>
2755
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25622' y='-3177.8'>sectionIndex</text>
2756
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25622' y='-3162.8'>zoneIndex</text>
2757
+ <polyline fill='none' filter='url(#shadow)' points='25536.5,-3159 25707.5,-3159 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25536.5,-3159 25707.5,-3159 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2758
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25622' y='-3147.8'> </text>
2759
+ </g><g class='node' id='node206'><title>yuml_serverprocessedcontent</title>
2760
+ <polygon fill='palegreen' filter='url(#shadow)' points='25725.5,-3151.5 25725.5,-3226.5 25886.5,-3226.5 25886.5,-3151.5 25725.5,-3151.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='25725.5,-3151.5 25725.5,-3226.5 25886.5,-3226.5 25886.5,-3151.5 25725.5,-3151.5' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2761
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25806' y='-3215.3'>ServerProcessedContent</text>
2762
+ <polyline fill='none' filter='url(#shadow)' points='25725.5,-3211.5 25886.5,-3211.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25725.5,-3211.5 25886.5,-3211.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2763
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25806' y='-3200.3'>searchablePlainTexts</text>
2764
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25806' y='-3185.3'>imageSources</text>
2765
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25806' y='-3170.3'>links</text>
2766
+ <polyline fill='none' filter='url(#shadow)' points='25725.5,-3166.5 25886.5,-3166.5 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25725.5,-3166.5 25886.5,-3166.5 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2767
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25806' y='-3155.3'> </text>
2768
+ </g><g class='node' id='node207'><title>yuml_clientsidepagecomponent</title>
2769
+ <polygon fill='palegreen' filter='url(#shadow)' points='25905,-3129 25905,-3249 26081,-3249 26081,-3129 25905,-3129' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='25905,-3129 25905,-3249 26081,-3249 26081,-3129 25905,-3129' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2770
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3237.8'>ClientSidePageComponent</text>
2771
+ <polyline fill='none' filter='url(#shadow)' points='25905,-3234 26081,-3234 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25905,-3234 26081,-3234 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2772
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3222.8'>ComponentType</text>
2773
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3207.8'>Id</text>
2774
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3192.8'>Manifest</text>
2775
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3177.8'>ManifestType</text>
2776
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3162.8'>Name</text>
2777
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3147.8'>Status</text>
2778
+ <polyline fill='none' filter='url(#shadow)' points='25905,-3144 26081,-3144 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='25905,-3144 26081,-3144 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2779
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='25993' y='-3132.8'> </text>
2780
+ </g><g class='node' id='node208'><title>yuml_canvassection</title>
2781
+ <polygon fill='skyblue' filter='url(#shadow)' points='26099,-3114 26099,-3264 26209,-3264 26209,-3114 26099,-3114' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='26099,-3114 26099,-3264 26209,-3264 26209,-3114 26099,-3114' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2782
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3252.8'>CanvasSection</text>
2783
+ <polyline fill='none' filter='url(#shadow)' points='26099,-3249 26209,-3249 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26099,-3249 26209,-3249 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2784
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3237.8'>page</text>
2785
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3222.8'>order</text>
2786
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3207.8'>columns</text>
2787
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3192.8'>_memId</text>
2788
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3177.8'>defaultColumn</text>
2789
+ <polyline fill='none' filter='url(#shadow)' points='26099,-3174 26209,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26099,-3174 26209,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2790
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3162.8'>addColumn()</text>
2791
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3147.8'>addControl()</text>
2792
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3132.8'>toHtml()</text>
2793
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26154' y='-3117.8'>remove()</text>
2794
+ </g><g class='node' id='node209'><title>yuml_odatabatch</title>
2795
+ <polygon fill='lightgrey' filter='url(#shadow)' points='26322.2,-3210.5 26227.8,-3210.5 26227.8,-3167.5 26322.2,-3167.5 26322.2,-3210.5' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='lightgrey' points='26322.2,-3210.5 26227.8,-3210.5 26227.8,-3167.5 26322.2,-3167.5 26322.2,-3210.5' stroke='black' style='fill:url(#lightgrey);stroke:black;'/>
2796
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26275' y='-3185.3'>ODataBatch</text>
2797
+ </g><g class='node' id='node210'><title>yuml_spbatch</title>
2798
+ <polygon fill='skyblue' filter='url(#shadow)' points='26215.5,-2625 26215.5,-2685 26334.5,-2685 26334.5,-2625 26215.5,-2625' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='skyblue' points='26215.5,-2625 26215.5,-2685 26334.5,-2685 26334.5,-2625 26215.5,-2625' stroke='black' style='fill:url(#skyblue);stroke:black;'/>
2799
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26275' y='-2673.8'>SPBatch</text>
2800
+ <polyline fill='none' filter='url(#shadow)' points='26215.5,-2670 26334.5,-2670 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26215.5,-2670 26334.5,-2670 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2801
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26275' y='-2658.8'>baseUrl</text>
2802
+ <polyline fill='none' filter='url(#shadow)' points='26215.5,-2655 26334.5,-2655 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26215.5,-2655 26334.5,-2655 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2803
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26275' y='-2643.8'>ParseResponse()</text>
2804
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26275' y='-2628.8'>executeImpl()</text>
2805
+ </g><g class='edge' id='edge94'><title>yuml_odatabatch-&gt;yuml_spbatch</title>
2806
+ <path d='M26275,-3157.44C26275,-3063.15 26275,-2777.56 26275,-2685.17' fill='none' stroke='black'/><path d='M26275,-3157.44C26275,-3063.15 26275,-2777.56 26275,-2685.17' fill='none' filter='url(#shadow)' stroke='black' style='stroke:{@stroke}; stroke-opacity:0.1; fill:none;'/>
2807
+ <polygon fill='none' filter='url(#shadow)' points='26271.5,-3157.47 26275,-3167.47 26278.5,-3157.47 26271.5,-3157.47' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='none' points='26271.5,-3157.47 26275,-3167.47 26278.5,-3157.47 26271.5,-3157.47' stroke='black' style='fill:url(#none);stroke:black;'/>
2808
+ </g><g class='node' id='node213'><title>yuml_attachmentfileaddresult</title>
2809
+ <polygon fill='palegreen' filter='url(#shadow)' points='26340.5,-3159 26340.5,-3219 26511.5,-3219 26511.5,-3159 26340.5,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='26340.5,-3159 26340.5,-3219 26511.5,-3219 26511.5,-3159 26340.5,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2810
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26426' y='-3207.8'>AttachmentFileAddResult</text>
2811
+ <polyline fill='none' filter='url(#shadow)' points='26340.5,-3204 26511.5,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26340.5,-3204 26511.5,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2812
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26426' y='-3192.8'>file</text>
2813
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26426' y='-3177.8'>data</text>
2814
+ <polyline fill='none' filter='url(#shadow)' points='26340.5,-3174 26511.5,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26340.5,-3174 26511.5,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2815
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26426' y='-3162.8'> </text>
2816
+ </g><g class='node' id='node214'><title>yuml_attachmentfileinfo</title>
2817
+ <polygon fill='palegreen' filter='url(#shadow)' points='26530,-3159 26530,-3219 26666,-3219 26666,-3159 26530,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='26530,-3159 26530,-3219 26666,-3219 26666,-3159 26530,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2818
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26598' y='-3207.8'>AttachmentFileInfo</text>
2819
+ <polyline fill='none' filter='url(#shadow)' points='26530,-3204 26666,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26530,-3204 26666,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2820
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26598' y='-3192.8'>name</text>
2821
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26598' y='-3177.8'>content</text>
2822
+ <polyline fill='none' filter='url(#shadow)' points='26530,-3174 26666,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26530,-3174 26666,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2823
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26598' y='-3162.8'> </text>
2824
+ </g><g class='node' id='node217'><title>yuml_appaddresult</title>
2825
+ <polygon fill='palegreen' filter='url(#shadow)' points='26684,-3159 26684,-3219 26794,-3219 26794,-3159 26684,-3159' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polygon fill='palegreen' points='26684,-3159 26684,-3219 26794,-3219 26794,-3159 26684,-3159' stroke='black' style='fill:url(#palegreen);stroke:black;'/>
2826
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26739' y='-3207.8'>AppAddResult</text>
2827
+ <polyline fill='none' filter='url(#shadow)' points='26684,-3204 26794,-3204 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26684,-3204 26794,-3204 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2828
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26739' y='-3192.8'>data</text>
2829
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26739' y='-3177.8'>file</text>
2830
+ <polyline fill='none' filter='url(#shadow)' points='26684,-3174 26794,-3174 ' stroke='black' style='fill: black; stroke: none; fill-opacity:0.2'/><polyline fill='none' points='26684,-3174 26794,-3174 ' stroke='black' style='fill:url(#none);stroke:black;'/>
2831
+ <text style='font-size:10px; font-family:Verdana;' text-anchor='middle' transform='translate(0,-2)' x='26739' y='-3162.8'> </text>
2832
+ </g></g>
2833
+ </svg>