@qhealth-design-system/core 1.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (503) hide show
  1. package/.babelrc +15 -0
  2. package/.browserslistrc +5 -0
  3. package/.editorconfig +19 -0
  4. package/.eslintignore +1 -0
  5. package/.eslintrc +25 -0
  6. package/.gitattributes +2 -0
  7. package/.github/workflows/release_package.yml +103 -0
  8. package/CHANGELOG.md +14 -0
  9. package/README.md +534 -0
  10. package/dist/api/service_finder/schemas.json +1 -0
  11. package/dist/component-abstract.html +884 -0
  12. package/dist/component-accordion.html +1157 -0
  13. package/dist/component-banner.html +928 -0
  14. package/dist/component-banner_advanced.html +1524 -0
  15. package/dist/component-banner_basic.html +1189 -0
  16. package/dist/component-banner_intermediate.html +1288 -0
  17. package/dist/component-body.html +919 -0
  18. package/dist/component-breadcrumbs.html +881 -0
  19. package/dist/component-btn.html +829 -0
  20. package/dist/component-callout.html +964 -0
  21. package/dist/component-card_feature.html +1805 -0
  22. package/dist/component-card_multi_action.html +1965 -0
  23. package/dist/component-card_no_action.html +1632 -0
  24. package/dist/component-card_single_action.html +1772 -0
  25. package/dist/component-code.html +928 -0
  26. package/dist/component-footer.html +1131 -0
  27. package/dist/component-forms.html +1297 -0
  28. package/dist/component-global-elements.html +1243 -0
  29. package/dist/component-global_alert.html +891 -0
  30. package/dist/component-header.html +1155 -0
  31. package/dist/component-in_page_navigation.html +920 -0
  32. package/dist/component-internal_navigation.html +1097 -0
  33. package/dist/component-left_hand_navigation.html +995 -0
  34. package/dist/component-main_navigation.html +999 -0
  35. package/dist/component-mega_main_navigation.html +1145 -0
  36. package/dist/component-multi_column.html +1116 -0
  37. package/dist/component-page_alert.html +911 -0
  38. package/dist/component-pagination.html +971 -0
  39. package/dist/component-tag_list.html +979 -0
  40. package/dist/component-updated_date.html +778 -0
  41. package/dist/component-widgets.html +851 -0
  42. package/dist/components/_global/import.xml +95 -0
  43. package/dist/components/_global/manifest.json +11 -0
  44. package/dist/components/_global/presentation.js +50 -0
  45. package/dist/components/_global/static.html +30 -0
  46. package/dist/components/_template/import.xml +299 -0
  47. package/dist/components/_template/manifest.json +40 -0
  48. package/dist/components/_template/presentation.js +12 -0
  49. package/dist/components/_template/static.html +4 -0
  50. package/dist/components/abstract/import.xml +231 -0
  51. package/dist/components/abstract/manifest.json +29 -0
  52. package/dist/components/abstract/presentation.js +33 -0
  53. package/dist/components/abstract/static.html +9 -0
  54. package/dist/components/accordion/import.xml +1929 -0
  55. package/dist/components/accordion/manifest.json +427 -0
  56. package/dist/components/accordion/presentation.js +112 -0
  57. package/dist/components/accordion/static.html +56 -0
  58. package/dist/components/banner/import.xml +95 -0
  59. package/dist/components/banner/manifest.json +11 -0
  60. package/dist/components/banner/presentation.js +138 -0
  61. package/dist/components/banner/static.html +39 -0
  62. package/dist/components/banner_advanced/import.xml +1969 -0
  63. package/dist/components/banner_advanced/manifest.json +1450 -0
  64. package/dist/components/banner_advanced/presentation.js +564 -0
  65. package/dist/components/banner_advanced/static.html +159 -0
  66. package/dist/components/banner_basic/import.xml +907 -0
  67. package/dist/components/banner_basic/manifest.json +151 -0
  68. package/dist/components/banner_basic/presentation.js +325 -0
  69. package/dist/components/banner_basic/static.html +86 -0
  70. package/dist/components/banner_intermediate/import.xml +1473 -0
  71. package/dist/components/banner_intermediate/manifest.json +248 -0
  72. package/dist/components/banner_intermediate/presentation.js +410 -0
  73. package/dist/components/banner_intermediate/static.html +102 -0
  74. package/dist/components/body/import.xml +343 -0
  75. package/dist/components/body/manifest.json +46 -0
  76. package/dist/components/body/presentation.js +37 -0
  77. package/dist/components/body/static.html +5 -0
  78. package/dist/components/breadcrumbs/import.xml +95 -0
  79. package/dist/components/breadcrumbs/manifest.json +9 -0
  80. package/dist/components/breadcrumbs/presentation.js +99 -0
  81. package/dist/components/breadcrumbs/static.html +21 -0
  82. package/dist/components/callout/import.xml +953 -0
  83. package/dist/components/callout/manifest.json +121 -0
  84. package/dist/components/callout/presentation.js +103 -0
  85. package/dist/components/callout/static.html +10 -0
  86. package/dist/components/card_feature/import.xml +2355 -0
  87. package/dist/components/card_feature/manifest.json +1390 -0
  88. package/dist/components/card_feature/presentation.js +365 -0
  89. package/dist/components/card_feature/static.html +80 -0
  90. package/dist/components/card_multi_action/import.xml +1539 -0
  91. package/dist/components/card_multi_action/manifest.json +1314 -0
  92. package/dist/components/card_multi_action/presentation.js +638 -0
  93. package/dist/components/card_multi_action/static.html +120 -0
  94. package/dist/components/card_no_action/import.xml +1449 -0
  95. package/dist/components/card_no_action/manifest.json +1264 -0
  96. package/dist/components/card_no_action/presentation.js +454 -0
  97. package/dist/components/card_no_action/static.html +94 -0
  98. package/dist/components/card_single_action/import.xml +1539 -0
  99. package/dist/components/card_single_action/manifest.json +1273 -0
  100. package/dist/components/card_single_action/presentation.js +498 -0
  101. package/dist/components/card_single_action/static.html +103 -0
  102. package/dist/components/code/import.xml +569 -0
  103. package/dist/components/code/manifest.json +112 -0
  104. package/dist/components/code/presentation.js +124 -0
  105. package/dist/components/code/static.html +15 -0
  106. package/dist/components/footer/import.xml +95 -0
  107. package/dist/components/footer/manifest.json +9 -0
  108. package/dist/components/footer/presentation.js +409 -0
  109. package/dist/components/footer/static.html +146 -0
  110. package/dist/components/global_alert/import.xml +95 -0
  111. package/dist/components/global_alert/manifest.json +9 -0
  112. package/dist/components/global_alert/presentation.js +81 -0
  113. package/dist/components/global_alert/static.html +26 -0
  114. package/dist/components/header/import.xml +95 -0
  115. package/dist/components/header/manifest.json +11 -0
  116. package/dist/components/header/presentation.js +190 -0
  117. package/dist/components/header/static.html +158 -0
  118. package/dist/components/horizontal_rule/import.xml +547 -0
  119. package/dist/components/horizontal_rule/manifest.json +69 -0
  120. package/dist/components/horizontal_rule/presentation.js +50 -0
  121. package/dist/components/horizontal_rule/static.html +4 -0
  122. package/dist/components/in_page_navigation/import.xml +253 -0
  123. package/dist/components/in_page_navigation/manifest.json +35 -0
  124. package/dist/components/in_page_navigation/presentation.js +14 -0
  125. package/dist/components/in_page_navigation/static.html +13 -0
  126. package/dist/components/internal_navigation/import.xml +95 -0
  127. package/dist/components/internal_navigation/manifest.json +11 -0
  128. package/dist/components/internal_navigation/presentation.js +165 -0
  129. package/dist/components/internal_navigation/static.html +130 -0
  130. package/dist/components/left_hand_navigation/import.xml +299 -0
  131. package/dist/components/left_hand_navigation/manifest.json +40 -0
  132. package/dist/components/left_hand_navigation/presentation.js +178 -0
  133. package/dist/components/left_hand_navigation/static.html +64 -0
  134. package/dist/components/main_navigation/import.xml +95 -0
  135. package/dist/components/main_navigation/manifest.json +11 -0
  136. package/dist/components/main_navigation/presentation.js +150 -0
  137. package/dist/components/main_navigation/static.html +80 -0
  138. package/dist/components/mega_main_navigation/import.xml +95 -0
  139. package/dist/components/mega_main_navigation/manifest.json +9 -0
  140. package/dist/components/mega_main_navigation/presentation.js +380 -0
  141. package/dist/components/mega_main_navigation/static.html +153 -0
  142. package/dist/components/multi_column/import.xml +1631 -0
  143. package/dist/components/multi_column/manifest.json +233 -0
  144. package/dist/components/multi_column/presentation.js +249 -0
  145. package/dist/components/multi_column/static.html +36 -0
  146. package/dist/components/page_alert/import.xml +479 -0
  147. package/dist/components/page_alert/manifest.json +63 -0
  148. package/dist/components/page_alert/presentation.js +67 -0
  149. package/dist/components/page_alert/static.html +8 -0
  150. package/dist/components/pagination/import.xml +95 -0
  151. package/dist/components/pagination/manifest.json +42 -0
  152. package/dist/components/pagination/presentation.js +84 -0
  153. package/dist/components/pagination/static.html +5 -0
  154. package/dist/components/updated_date/import.xml +95 -0
  155. package/dist/components/updated_date/manifest.json +9 -0
  156. package/dist/components/updated_date/presentation.js +34 -0
  157. package/dist/components/updated_date/static.html +6 -0
  158. package/dist/components/widgets/import.xml +95 -0
  159. package/dist/components/widgets/manifest.json +9 -0
  160. package/dist/components/widgets/presentation.js +40 -0
  161. package/dist/components/widgets/static.html +0 -0
  162. package/dist/components.html +790 -0
  163. package/dist/externals/componentPreview.js +101 -0
  164. package/dist/externals/dsComponentLoader.js +410 -0
  165. package/dist/externals/esri-leaflet-vector.js +5 -0
  166. package/dist/externals/esri-leaflet.js +12 -0
  167. package/dist/externals/fb-handlebars.min.js +29 -0
  168. package/dist/externals/fb-typeahead.bundle.min.js +6 -0
  169. package/dist/externals/funnelback.autocompletion-2.6.0.js +678 -0
  170. package/dist/externals/getPagination.js +62 -0
  171. package/dist/externals/handlebars.min-v4.7.6.js +29 -0
  172. package/dist/externals/leaflet.js +6 -0
  173. package/dist/externals/populateDatastoreSim.js +381 -0
  174. package/dist/externals/tinymce_classes.css +62 -0
  175. package/dist/home.html +694 -0
  176. package/dist/index.html +710 -0
  177. package/dist/inner-with-nav.html +1853 -0
  178. package/dist/inner.html +671 -0
  179. package/dist/js/helpers.js +892 -0
  180. package/dist/js/main.js +55 -0
  181. package/dist/js/main.js.map +1 -0
  182. package/dist/js/runtime.js +2 -0
  183. package/dist/js/runtime.js.map +1 -0
  184. package/dist/main.css +918 -0
  185. package/dist/main.css.map +1 -0
  186. package/dist/mysource_files/ajax-loader.gif +0 -0
  187. package/dist/mysource_files/favicons/favicon.ico +0 -0
  188. package/dist/mysource_files/img/100x100.jpg +0 -0
  189. package/dist/mysource_files/img/600x260.jpg +0 -0
  190. package/dist/mysource_files/img/Heart-Pattern-Dark.png +0 -0
  191. package/dist/mysource_files/img/Heart-Pattern.png +0 -0
  192. package/dist/mysource_files/img/banner-background--desktop.png +0 -0
  193. package/dist/mysource_files/img/banner-background--mobile.png +0 -0
  194. package/dist/mysource_files/img/banner-bg.png +0 -0
  195. package/dist/mysource_files/img/banner.png +0 -0
  196. package/dist/mysource_files/img/card--brand.png +0 -0
  197. package/dist/mysource_files/img/card--components.png +0 -0
  198. package/dist/mysource_files/img/card--content.png +0 -0
  199. package/dist/mysource_files/img/header-logo-agov.png +0 -0
  200. package/dist/mysource_files/img/header-logo-qgov--dark.svg +63 -0
  201. package/dist/mysource_files/img/header-logo-qgov--light.svg +56 -0
  202. package/dist/mysource_files/img/header-logo-qgov--pre-dark.svg +56 -0
  203. package/dist/mysource_files/img/header-search.svg +3 -0
  204. package/dist/mysource_files/img/layers-2x.png +0 -0
  205. package/dist/mysource_files/img/layers.png +0 -0
  206. package/dist/mysource_files/img/marker-icon.png +0 -0
  207. package/dist/mysource_files/img/svg-icons.svg +155 -0
  208. package/dist/mysource_files/img/video-play.svg +3 -0
  209. package/dist/mysource_files/slick.eot +0 -0
  210. package/dist/mysource_files/slick.svg +14 -0
  211. package/dist/mysource_files/slick.ttf +0 -0
  212. package/dist/mysource_files/slick.woff +0 -0
  213. package/package-lock.json +14276 -0
  214. package/package.json +79 -0
  215. package/scripts/add_component.sh +109 -0
  216. package/src/assets/favicons/favicon.ico +0 -0
  217. package/src/assets/img/100x100.jpg +0 -0
  218. package/src/assets/img/600x260.jpg +0 -0
  219. package/src/assets/img/Heart-Pattern-Dark.png +0 -0
  220. package/src/assets/img/Heart-Pattern.png +0 -0
  221. package/src/assets/img/banner-background--desktop.png +0 -0
  222. package/src/assets/img/banner-background--mobile.png +0 -0
  223. package/src/assets/img/banner-bg.png +0 -0
  224. package/src/assets/img/banner.png +0 -0
  225. package/src/assets/img/card--brand.png +0 -0
  226. package/src/assets/img/card--components.png +0 -0
  227. package/src/assets/img/card--content.png +0 -0
  228. package/src/assets/img/header-logo-agov.png +0 -0
  229. package/src/assets/img/header-logo-qgov--dark.svg +63 -0
  230. package/src/assets/img/header-logo-qgov--light.svg +56 -0
  231. package/src/assets/img/header-logo-qgov--pre-dark.svg +56 -0
  232. package/src/assets/img/header-search.svg +3 -0
  233. package/src/assets/img/layers-2x.png +0 -0
  234. package/src/assets/img/layers.png +0 -0
  235. package/src/assets/img/marker-icon.png +0 -0
  236. package/src/assets/img/svg-icons.svg +155 -0
  237. package/src/assets/img/video-play.svg +3 -0
  238. package/src/components/_global/css/admin/component.scss +71 -0
  239. package/src/components/_global/css/body/component.scss +897 -0
  240. package/src/components/_global/css/btn/component.scss +564 -0
  241. package/src/components/_global/css/cta_links/component.scss +121 -0
  242. package/src/components/_global/css/direction_links/component.scss +196 -0
  243. package/src/components/_global/css/example/component.scss +54 -0
  244. package/src/components/_global/css/forms/control_inputs/component.scss +349 -0
  245. package/src/components/_global/css/forms/general/component.scss +298 -0
  246. package/src/components/_global/css/forms/select/component.scss +230 -0
  247. package/src/components/_global/css/forms/text/component.scss +402 -0
  248. package/src/components/_global/css/global.scss +42 -0
  249. package/src/components/_global/css/grid-12/component.scss +331 -0
  250. package/src/components/_global/css/headings/component.scss +172 -0
  251. package/src/components/_global/css/icons/component.scss +29 -0
  252. package/src/components/_global/css/link_columns/component.scss +194 -0
  253. package/src/components/_global/css/link_list/component.scss +37 -0
  254. package/src/components/_global/css/modal/component.scss +182 -0
  255. package/src/components/_global/css/slick/component.scss +25 -0
  256. package/src/components/_global/css/table/component.scss +211 -0
  257. package/src/components/_global/css/tabs/component.scss +43 -0
  258. package/src/components/_global/css/tags/component.scss +272 -0
  259. package/src/components/_global/css/user_location/component.scss +38 -0
  260. package/src/components/_global/css/version/component.scss +47 -0
  261. package/src/components/_global/html/component.hbs +108 -0
  262. package/src/components/_global/html/ds_component.hbs +30 -0
  263. package/src/components/_global/html/head.html +63 -0
  264. package/src/components/_global/html/scripts.html +58 -0
  265. package/src/components/_global/js/_polyfills/global.js +18 -0
  266. package/src/components/_global/js/animate/global.js +324 -0
  267. package/src/components/_global/js/forms/global.js +182 -0
  268. package/src/components/_global/js/global.js +302 -0
  269. package/src/components/_global/js/manifest.json +11 -0
  270. package/src/components/_global/js/modal/global.js +236 -0
  271. package/src/components/_global/js/slick/global.js +153 -0
  272. package/src/components/_global/js/tabs/global.js +305 -0
  273. package/src/components/_global/js/user_location/global.js +116 -0
  274. package/src/components/_template/css/component.scss +22 -0
  275. package/src/components/_template/html/component-page.html +85 -0
  276. package/src/components/_template/html/component.hbs +4 -0
  277. package/src/components/_template/js/global.js +6 -0
  278. package/src/components/_template/js/manifest.json +40 -0
  279. package/src/components/abstract/css/component.scss +91 -0
  280. package/src/components/abstract/html/component.hbs +9 -0
  281. package/src/components/abstract/js/manifest.json +29 -0
  282. package/src/components/accordion/css/component.scss +329 -0
  283. package/src/components/accordion/html/accordion-group.html +157 -0
  284. package/src/components/accordion/html/component.hbs +46 -0
  285. package/src/components/accordion/html/default.html +92 -0
  286. package/src/components/accordion/js/global.js +413 -0
  287. package/src/components/accordion/js/manifest.json +427 -0
  288. package/src/components/banner/css/component.scss +664 -0
  289. package/src/components/banner/html/component.hbs +52 -0
  290. package/src/components/banner/js/manifest.json +11 -0
  291. package/src/components/banner_advanced/css/component.scss +7 -0
  292. package/src/components/banner_advanced/html/component.hbs +213 -0
  293. package/src/components/banner_advanced/js/global.js +6 -0
  294. package/src/components/banner_advanced/js/manifest.json +1450 -0
  295. package/src/components/banner_basic/css/component.scss +52 -0
  296. package/src/components/banner_basic/html/component.hbs +130 -0
  297. package/src/components/banner_basic/js/global.js +6 -0
  298. package/src/components/banner_basic/js/manifest.json +151 -0
  299. package/src/components/banner_intermediate/css/component.scss +276 -0
  300. package/src/components/banner_intermediate/html/component.hbs +165 -0
  301. package/src/components/banner_intermediate/js/global.js +6 -0
  302. package/src/components/banner_intermediate/js/manifest.json +248 -0
  303. package/src/components/body/css/component.scss +16 -0
  304. package/src/components/body/html/component.hbs +5 -0
  305. package/src/components/body/js/manifest.json +46 -0
  306. package/src/components/breadcrumbs/css/component.scss +236 -0
  307. package/src/components/breadcrumbs/html/component.hbs +29 -0
  308. package/src/components/breadcrumbs/js/manifest.json +9 -0
  309. package/src/components/callout/css/component.scss +146 -0
  310. package/src/components/callout/html/component.hbs +28 -0
  311. package/src/components/callout/js/manifest.json +121 -0
  312. package/src/components/card_feature/css/component.scss +224 -0
  313. package/src/components/card_feature/html/component.hbs +129 -0
  314. package/src/components/card_feature/js/manifest.json +1390 -0
  315. package/src/components/card_multi_action/css/component.scss +229 -0
  316. package/src/components/card_multi_action/html/component.hbs +192 -0
  317. package/src/components/card_multi_action/js/manifest.json +1314 -0
  318. package/src/components/card_no_action/css/component.scss +551 -0
  319. package/src/components/card_no_action/html/component.hbs +127 -0
  320. package/src/components/card_no_action/js/global.js +6 -0
  321. package/src/components/card_no_action/js/manifest.json +1264 -0
  322. package/src/components/card_single_action/css/component.scss +164 -0
  323. package/src/components/card_single_action/html/component.hbs +161 -0
  324. package/src/components/card_single_action/js/manifest.json +1273 -0
  325. package/src/components/code/css/component.scss +355 -0
  326. package/src/components/code/html/component.hbs +84 -0
  327. package/src/components/code/js/global.js +160 -0
  328. package/src/components/code/js/manifest.json +112 -0
  329. package/src/components/footer/css/component.scss +437 -0
  330. package/src/components/footer/html/component.hbs +177 -0
  331. package/src/components/footer/js/manifest.json +9 -0
  332. package/src/components/global_alert/css/component.scss +169 -0
  333. package/src/components/global_alert/html/component.hbs +38 -0
  334. package/src/components/global_alert/js/global.js +39 -0
  335. package/src/components/global_alert/js/manifest.json +9 -0
  336. package/src/components/header/css/component.scss +697 -0
  337. package/src/components/header/html/component.hbs +186 -0
  338. package/src/components/header/js/global.js +188 -0
  339. package/src/components/header/js/manifest.json +11 -0
  340. package/src/components/horizontal_rule/css/component.scss +37 -0
  341. package/src/components/horizontal_rule/html/component.hbs +6 -0
  342. package/src/components/horizontal_rule/js/manifest.json +69 -0
  343. package/src/components/in_page_navigation/css/component.scss +54 -0
  344. package/src/components/in_page_navigation/html/component.hbs +17 -0
  345. package/src/components/in_page_navigation/js/global.js +51 -0
  346. package/src/components/in_page_navigation/js/manifest.json +35 -0
  347. package/src/components/internal_navigation/css/component.scss +437 -0
  348. package/src/components/internal_navigation/html/component.hbs +57 -0
  349. package/src/components/internal_navigation/js/manifest.json +11 -0
  350. package/src/components/left_hand_navigation/css/component.scss +280 -0
  351. package/src/components/left_hand_navigation/html/component.hbs +77 -0
  352. package/src/components/left_hand_navigation/js/global.js +36 -0
  353. package/src/components/left_hand_navigation/js/manifest.json +40 -0
  354. package/src/components/main_navigation/css/component.scss +706 -0
  355. package/src/components/main_navigation/html/component.hbs +87 -0
  356. package/src/components/main_navigation/js/global.js +373 -0
  357. package/src/components/main_navigation/js/manifest.json +11 -0
  358. package/src/components/mega_main_navigation/css/component.scss +535 -0
  359. package/src/components/mega_main_navigation/html/component.hbs +157 -0
  360. package/src/components/mega_main_navigation/js/global.js +170 -0
  361. package/src/components/mega_main_navigation/js/manifest.json +9 -0
  362. package/src/components/multi_column/css/component.scss +11 -0
  363. package/src/components/multi_column/html/component.hbs +98 -0
  364. package/src/components/multi_column/js/manifest.json +233 -0
  365. package/src/components/page_alert/css/component.scss +132 -0
  366. package/src/components/page_alert/html/component.hbs +26 -0
  367. package/src/components/page_alert/js/manifest.json +63 -0
  368. package/src/components/pagination/css/component.scss +196 -0
  369. package/src/components/pagination/html/component.hbs +41 -0
  370. package/src/components/pagination/html/default.html +30 -0
  371. package/src/components/pagination/js/manifest.json +42 -0
  372. package/src/components/search_box/css/component.scss +48 -0
  373. package/src/components/search_box/html/component.html +11 -0
  374. package/src/components/search_box/js/manifest.json +73 -0
  375. package/src/components/updated_date/css/component.scss +0 -0
  376. package/src/components/updated_date/html/component.hbs +31 -0
  377. package/src/components/updated_date/js/manifest.json +9 -0
  378. package/src/components/widgets/css/component.scss +82 -0
  379. package/src/components/widgets/html/component.hbs +19 -0
  380. package/src/components/widgets/html/default.html +4 -0
  381. package/src/components/widgets/js/current.json +483 -0
  382. package/src/components/widgets/js/manifest.json +9 -0
  383. package/src/components/widgets/js/site.json +358 -0
  384. package/src/data/current.json +522 -0
  385. package/src/data/current_admin.json +305 -0
  386. package/src/data/model_component.js +14 -0
  387. package/src/data/site.json +762 -0
  388. package/src/externals/componentPreview.js +101 -0
  389. package/src/externals/dsComponentLoader.js +410 -0
  390. package/src/externals/esri-leaflet-vector.js +5 -0
  391. package/src/externals/esri-leaflet.js +12 -0
  392. package/src/externals/fb-handlebars.min.js +29 -0
  393. package/src/externals/fb-typeahead.bundle.min.js +6 -0
  394. package/src/externals/funnelback.autocompletion-2.6.0.js +678 -0
  395. package/src/externals/getPagination.js +62 -0
  396. package/src/externals/handlebars.min-v4.7.6.js +29 -0
  397. package/src/externals/leaflet.js +6 -0
  398. package/src/externals/populateDatastoreSim.js +381 -0
  399. package/src/externals/tinymce_classes.css +62 -0
  400. package/src/helpers/Handlebars/appendIf.js +6 -0
  401. package/src/helpers/Handlebars/arrayLength.js +3 -0
  402. package/src/helpers/Handlebars/arrayWith.js +13 -0
  403. package/src/helpers/Handlebars/capitaliseFirst.js +8 -0
  404. package/src/helpers/Handlebars/charMax.js +8 -0
  405. package/src/helpers/Handlebars/checkIf.js +20 -0
  406. package/src/helpers/Handlebars/columnWidth.js +39 -0
  407. package/src/helpers/Handlebars/contains.js +7 -0
  408. package/src/helpers/Handlebars/createMap.js +19 -0
  409. package/src/helpers/Handlebars/dsMapFromID.js +8 -0
  410. package/src/helpers/Handlebars/dsMapFromProp.js +8 -0
  411. package/src/helpers/Handlebars/eachByName.js +18 -0
  412. package/src/helpers/Handlebars/eachDS.js +7 -0
  413. package/src/helpers/Handlebars/eachFrom.js +13 -0
  414. package/src/helpers/Handlebars/eachUpTo.js +8 -0
  415. package/src/helpers/Handlebars/eachWhen.js +33 -0
  416. package/src/helpers/Handlebars/formatDate.js +62 -0
  417. package/src/helpers/Handlebars/generateDates.js +74 -0
  418. package/src/helpers/Handlebars/getDistance.js +40 -0
  419. package/src/helpers/Handlebars/getObject.js +3 -0
  420. package/src/helpers/Handlebars/getParamaterByName.js +11 -0
  421. package/src/helpers/Handlebars/getPossibleValues.js +13 -0
  422. package/src/helpers/Handlebars/getProp.js +3 -0
  423. package/src/helpers/Handlebars/getTags.js +20 -0
  424. package/src/helpers/Handlebars/getTitle.js +4 -0
  425. package/src/helpers/Handlebars/ifAny.js +9 -0
  426. package/src/helpers/Handlebars/ifArray.js +3 -0
  427. package/src/helpers/Handlebars/ifCond.js +31 -0
  428. package/src/helpers/Handlebars/ifEqualsOrChained.js +12 -0
  429. package/src/helpers/Handlebars/ifProp.js +3 -0
  430. package/src/helpers/Handlebars/if_eq.js +9 -0
  431. package/src/helpers/Handlebars/inArray.js +8 -0
  432. package/src/helpers/Handlebars/isPage.js +7 -0
  433. package/src/helpers/Handlebars/itemAt.js +11 -0
  434. package/src/helpers/Handlebars/jsonParse.js +8 -0
  435. package/src/helpers/Handlebars/jsonStringify.js +3 -0
  436. package/src/helpers/Handlebars/listAZ.js +51 -0
  437. package/src/helpers/Handlebars/listAZOptions.js +34 -0
  438. package/src/helpers/Handlebars/listByClosest.js +60 -0
  439. package/src/helpers/Handlebars/listByClosestWithOffset.js +63 -0
  440. package/src/helpers/Handlebars/math.js +11 -0
  441. package/src/helpers/Handlebars/newLineToBreak.js +6 -0
  442. package/src/helpers/Handlebars/nonBreakingSpaces.js +6 -0
  443. package/src/helpers/Handlebars/objectFromSelect.js +21 -0
  444. package/src/helpers/Handlebars/partialReplace.js +9 -0
  445. package/src/helpers/Handlebars/printAccordion.js +24 -0
  446. package/src/helpers/Handlebars/replace.js +8 -0
  447. package/src/helpers/Handlebars/replaceMany.js +5 -0
  448. package/src/helpers/Handlebars/sizeFormat.js +11 -0
  449. package/src/helpers/Handlebars/split.js +6 -0
  450. package/src/helpers/Handlebars/toUpperCase.js +7 -0
  451. package/src/helpers/Handlebars/urldecode.js +3 -0
  452. package/src/helpers/Handlebars/urlencode.js +3 -0
  453. package/src/helpers/Handlebars/withinObject.js +13 -0
  454. package/src/html/component-abstract.html +86 -0
  455. package/src/html/component-accordion.html +87 -0
  456. package/src/html/component-banner.html +84 -0
  457. package/src/html/component-banner_advanced.html +97 -0
  458. package/src/html/component-banner_basic.html +163 -0
  459. package/src/html/component-banner_intermediate.html +91 -0
  460. package/src/html/component-body.html +116 -0
  461. package/src/html/component-breadcrumbs.html +88 -0
  462. package/src/html/component-btn.html +117 -0
  463. package/src/html/component-callout.html +86 -0
  464. package/src/html/component-card_feature.html +631 -0
  465. package/src/html/component-card_multi_action.html +793 -0
  466. package/src/html/component-card_no_action.html +521 -0
  467. package/src/html/component-card_single_action.html +631 -0
  468. package/src/html/component-code.html +84 -0
  469. package/src/html/component-footer.html +87 -0
  470. package/src/html/component-forms.html +585 -0
  471. package/src/html/component-global-elements.html +531 -0
  472. package/src/html/component-global_alert.html +87 -0
  473. package/src/html/component-header.html +88 -0
  474. package/src/html/component-in_page_navigation.html +109 -0
  475. package/src/html/component-internal_navigation.html +87 -0
  476. package/src/html/component-left_hand_navigation.html +85 -0
  477. package/src/html/component-main_navigation.html +87 -0
  478. package/src/html/component-mega_main_navigation.html +88 -0
  479. package/src/html/component-multi_column.html +86 -0
  480. package/src/html/component-page_alert.html +86 -0
  481. package/src/html/component-pagination.html +86 -0
  482. package/src/html/component-tag_list.html +340 -0
  483. package/src/html/component-updated_date.html +88 -0
  484. package/src/html/component-widgets.html +90 -0
  485. package/src/html/components.html +136 -0
  486. package/src/html/home.html +126 -0
  487. package/src/html/index.html +142 -0
  488. package/src/html/inner-with-nav.html +1126 -0
  489. package/src/html/inner.html +107 -0
  490. package/src/index.js +12 -0
  491. package/src/styles/global.scss +120 -0
  492. package/src/styles/imports/figma.scss +0 -0
  493. package/src/styles/imports/functions.scss +519 -0
  494. package/src/styles/imports/mixins.scss +658 -0
  495. package/src/styles/imports/placeholders.scss +68 -0
  496. package/src/styles/imports/utilities.scss +185 -0
  497. package/src/styles/imports/variables.scss +484 -0
  498. package/src/styles/postcss.config.js +4 -0
  499. package/webpack/JsonMergePlugin.js +35 -0
  500. package/webpack/PrecompilePlugin.js +369 -0
  501. package/webpack/webpack.common.js +151 -0
  502. package/webpack/webpack.dev.js +54 -0
  503. package/webpack/webpack.prod.js +70 -0
@@ -0,0 +1,1929 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <actions>
3
+ <action>
4
+ <action_id>create_Content_Container_Template_8925951071</action_id>
5
+ <action_type>create_asset</action_type>
6
+ <type_code>Content_Container_Template</type_code>
7
+ <link_type>1</link_type>
8
+ <parentid>1</parentid>
9
+ <value></value>
10
+ <is_dependant>0</is_dependant>
11
+ <is_exclusive>0</is_exclusive>
12
+ </action>
13
+ <action>
14
+ <action_id>set_Content_Container_Template_8925951071_name</action_id>
15
+ <action_type>set_attribute_value</action_type>
16
+ <asset>[[output://create_Content_Container_Template_8925951071.assetid]]</asset>
17
+ <attribute>name</attribute>
18
+ <value><![CDATA[Accordion]]></value>
19
+ </action>
20
+
21
+ <action>
22
+ <action_id>set_Content_Container_Template_8925951071_edit_interface_in_admin</action_id>
23
+ <action_type>set_attribute_value</action_type>
24
+ <asset>[[output://create_Content_Container_Template_8925951071.assetid]]</asset>
25
+ <attribute>edit_interface_in_admin</attribute>
26
+ <value><![CDATA[1]]></value>
27
+ </action>
28
+
29
+ <action>
30
+ <action_id>set_Content_Container_Template_8925951071_icon_color</action_id>
31
+ <action_type>set_attribute_value</action_type>
32
+ <asset>[[output://create_Content_Container_Template_8925951071.assetid]]</asset>
33
+ <attribute>icon_color</attribute>
34
+ <value><![CDATA[blue]]></value>
35
+ </action>
36
+
37
+ <action>
38
+ <action_id>create_Metadata_Schema_7712356301</action_id>
39
+ <action_type>create_asset</action_type>
40
+ <type_code>Metadata_Schema</type_code>
41
+ <link_type>1</link_type>
42
+ <parentid>[[output://create_Content_Container_Template_8925951071.assetid]]</parentid>
43
+ <value></value>
44
+ <is_dependant>0</is_dependant>
45
+ <is_exclusive>0</is_exclusive>
46
+ </action>
47
+ <action>
48
+ <action_id>set_Metadata_Schema_7712356301_name</action_id>
49
+ <action_type>set_attribute_value</action_type>
50
+ <asset>[[output://create_Metadata_Schema_7712356301.assetid]]</asset>
51
+ <attribute>name</attribute>
52
+ <value><![CDATA[Accordion]]></value>
53
+ </action>
54
+ <action>
55
+ <action_id>set_permission_7712356301_read_5</action_id>
56
+ <action_type>set_permission</action_type>
57
+ <asset>[[output://create_Metadata_Schema_7712356301.assetid]]</asset>
58
+ <permission>1</permission>
59
+ <granted>1</granted>
60
+ <userid>[[system://public_user]]</userid>
61
+ </action>
62
+
63
+ <action>
64
+ <action_id>create_Metadata_Section_6941275076</action_id>
65
+ <action_type>create_asset</action_type>
66
+ <type_code>Metadata_Section</type_code>
67
+ <link_type>2</link_type>
68
+ <parentid>[[output://create_Metadata_Schema_7712356301.assetid]]</parentid>
69
+ <value></value>
70
+ <is_dependant>1</is_dependant>
71
+ <is_exclusive>0</is_exclusive>
72
+ </action>
73
+ <action>
74
+ <action_id>add_Metadata_Section_6941275076_path</action_id>
75
+ <action_type>add_web_path</action_type>
76
+ <asset>[[output://create_Metadata_Section_6941275076.assetid]]</asset>
77
+ <parent_asset>[[output://create_Metadata_Schema_7712356301.assetid]]</parent_asset>
78
+ <path>settings</path>
79
+ </action>
80
+ <action>
81
+ <action_id>set_Metadata_Section_6941275076_name</action_id>
82
+ <action_type>set_attribute_value</action_type>
83
+ <asset>[[output://create_Metadata_Section_6941275076.assetid]]</asset>
84
+ <attribute>name</attribute>
85
+ <value><![CDATA[Settings]]></value>
86
+ </action>
87
+ <action>
88
+ <action_id>set_permission_6941275076_read_5</action_id>
89
+ <action_type>set_permission</action_type>
90
+ <asset>[[output://create_Metadata_Section_6941275076.assetid]]</asset>
91
+ <permission>1</permission>
92
+ <granted>1</granted>
93
+ <userid>[[system://public_user]]</userid>
94
+ </action>
95
+
96
+ <action>
97
+ <action_id>create_metadata_field_select_824408986</action_id>
98
+ <action_type>create_asset</action_type>
99
+ <type_code>metadata_field_select</type_code>
100
+ <link_type>2</link_type>
101
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
102
+ <value></value>
103
+ <is_dependant>1</is_dependant>
104
+ <is_exclusive>0</is_exclusive>
105
+ </action>
106
+ <action>
107
+ <action_id>set_metadata_field_select_824408986_name</action_id>
108
+ <action_type>set_attribute_value</action_type>
109
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
110
+ <attribute>name</attribute>
111
+ <value><![CDATA[theme]]></value>
112
+ </action>
113
+ <action>
114
+ <action_id>set_metadata_field_select_824408986_friendly_name</action_id>
115
+ <action_type>set_attribute_value</action_type>
116
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
117
+ <attribute>friendly_name</attribute>
118
+ <value><![CDATA[Theme]]></value>
119
+ </action>
120
+ <action>
121
+ <action_id>set_metadata_field_select_824408986_default</action_id>
122
+ <action_type>set_attribute_value</action_type>
123
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
124
+ <attribute>default</attribute>
125
+ <value><![CDATA[default]]></value>
126
+ </action>
127
+ <action>
128
+ <action_id>set_metadata_field_select_824408986_description</action_id>
129
+ <action_type>set_attribute_value</action_type>
130
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
131
+ <attribute>description</attribute>
132
+ <value><![CDATA[]]></value>
133
+ </action>
134
+ <action>
135
+ <action_id>set_metadata_field_select_824408986_editable</action_id>
136
+ <action_type>set_attribute_value</action_type>
137
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
138
+ <attribute>editable</attribute>
139
+ <value><![CDATA[1]]></value>
140
+ </action>
141
+ <action>
142
+ <action_id>set_metadata_field_select_824408986_editable</action_id>
143
+ <action_type>set_attribute_value</action_type>
144
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
145
+ <attribute>editable</attribute>
146
+ <value><![CDATA[1]]></value>
147
+ </action>
148
+ <action>
149
+ <action_id>set_metadata_field_select_824408986_required</action_id>
150
+ <action_type>set_attribute_value</action_type>
151
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
152
+ <attribute>required</attribute>
153
+ <value><![CDATA[0]]></value>
154
+ </action>
155
+ <action>
156
+ <action_id>set_permission_824408986_read_5</action_id>
157
+ <action_type>set_permission</action_type>
158
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
159
+ <permission>1</permission>
160
+ <granted>1</granted>
161
+ <userid>[[system://public_user]]</userid>
162
+ </action>
163
+
164
+ <action>
165
+ <action_id>set_metadata_field_select_824408986_select_options</action_id>
166
+ <action_type>set_attribute_value</action_type>
167
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
168
+ <attribute>select_options</attribute>
169
+ <value><![CDATA[array ('qld__accordion-group--light' => 'Default','qld__accordion-group--alt' => 'Alternate','qld__accordion-group--dark' => 'Dark','qld__accordion-group--dark-alt' => 'Alternate Dark',);]]></value>
170
+ </action>
171
+ <action>
172
+ <action_id>set_{f.type}_824408986_edit_params</action_id>
173
+ <action_type>set_attribute_value</action_type>
174
+ <asset>[[output://create_metadata_field_select_824408986.assetid]]</asset>
175
+ <attribute>edit_params</attribute>
176
+ <value><![CDATA[array (
177
+ 'style' => 'list',
178
+ 'type' => 'table',
179
+ 'height' => '',
180
+ 'columns' => '1',
181
+ 'empty_text' => '',
182
+ 'extras' => '',
183
+ );]]></value>
184
+ </action>
185
+
186
+ <action>
187
+ <action_id>create_metadata_field_select_8950884647</action_id>
188
+ <action_type>create_asset</action_type>
189
+ <type_code>metadata_field_select</type_code>
190
+ <link_type>2</link_type>
191
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
192
+ <value></value>
193
+ <is_dependant>1</is_dependant>
194
+ <is_exclusive>0</is_exclusive>
195
+ </action>
196
+ <action>
197
+ <action_id>set_metadata_field_select_8950884647_name</action_id>
198
+ <action_type>set_attribute_value</action_type>
199
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
200
+ <attribute>name</attribute>
201
+ <value><![CDATA[toggle_all]]></value>
202
+ </action>
203
+ <action>
204
+ <action_id>set_metadata_field_select_8950884647_friendly_name</action_id>
205
+ <action_type>set_attribute_value</action_type>
206
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
207
+ <attribute>friendly_name</attribute>
208
+ <value><![CDATA[Display toggle all?]]></value>
209
+ </action>
210
+ <action>
211
+ <action_id>set_metadata_field_select_8950884647_default</action_id>
212
+ <action_type>set_attribute_value</action_type>
213
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
214
+ <attribute>default</attribute>
215
+ <value><![CDATA[yes]]></value>
216
+ </action>
217
+ <action>
218
+ <action_id>set_metadata_field_select_8950884647_description</action_id>
219
+ <action_type>set_attribute_value</action_type>
220
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
221
+ <attribute>description</attribute>
222
+ <value><![CDATA[]]></value>
223
+ </action>
224
+ <action>
225
+ <action_id>set_metadata_field_select_8950884647_editable</action_id>
226
+ <action_type>set_attribute_value</action_type>
227
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
228
+ <attribute>editable</attribute>
229
+ <value><![CDATA[1]]></value>
230
+ </action>
231
+ <action>
232
+ <action_id>set_metadata_field_select_8950884647_editable</action_id>
233
+ <action_type>set_attribute_value</action_type>
234
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
235
+ <attribute>editable</attribute>
236
+ <value><![CDATA[1]]></value>
237
+ </action>
238
+ <action>
239
+ <action_id>set_metadata_field_select_8950884647_required</action_id>
240
+ <action_type>set_attribute_value</action_type>
241
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
242
+ <attribute>required</attribute>
243
+ <value><![CDATA[0]]></value>
244
+ </action>
245
+ <action>
246
+ <action_id>set_permission_8950884647_read_5</action_id>
247
+ <action_type>set_permission</action_type>
248
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
249
+ <permission>1</permission>
250
+ <granted>1</granted>
251
+ <userid>[[system://public_user]]</userid>
252
+ </action>
253
+
254
+ <action>
255
+ <action_id>set_metadata_field_select_8950884647_select_options</action_id>
256
+ <action_type>set_attribute_value</action_type>
257
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
258
+ <attribute>select_options</attribute>
259
+ <value><![CDATA[array ('' => 'No','yes' => 'Yes',);]]></value>
260
+ </action>
261
+ <action>
262
+ <action_id>set_{f.type}_8950884647_edit_params</action_id>
263
+ <action_type>set_attribute_value</action_type>
264
+ <asset>[[output://create_metadata_field_select_8950884647.assetid]]</asset>
265
+ <attribute>edit_params</attribute>
266
+ <value><![CDATA[array (
267
+ 'style' => 'list',
268
+ 'type' => 'table',
269
+ 'height' => '',
270
+ 'columns' => '1',
271
+ 'empty_text' => '',
272
+ 'extras' => '',
273
+ );]]></value>
274
+ </action>
275
+
276
+ <action>
277
+ <action_id>create_metadata_field_text_4801437309</action_id>
278
+ <action_type>create_asset</action_type>
279
+ <type_code>metadata_field_text</type_code>
280
+ <link_type>2</link_type>
281
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
282
+ <value></value>
283
+ <is_dependant>1</is_dependant>
284
+ <is_exclusive>0</is_exclusive>
285
+ </action>
286
+ <action>
287
+ <action_id>set_metadata_field_text_4801437309_name</action_id>
288
+ <action_type>set_attribute_value</action_type>
289
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
290
+ <attribute>name</attribute>
291
+ <value><![CDATA[heading]]></value>
292
+ </action>
293
+ <action>
294
+ <action_id>set_metadata_field_text_4801437309_friendly_name</action_id>
295
+ <action_type>set_attribute_value</action_type>
296
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
297
+ <attribute>friendly_name</attribute>
298
+ <value><![CDATA[Heading]]></value>
299
+ </action>
300
+ <action>
301
+ <action_id>set_metadata_field_text_4801437309_default</action_id>
302
+ <action_type>set_attribute_value</action_type>
303
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
304
+ <attribute>default</attribute>
305
+ <value><![CDATA[Content]]></value>
306
+ </action>
307
+ <action>
308
+ <action_id>set_metadata_field_text_4801437309_description</action_id>
309
+ <action_type>set_attribute_value</action_type>
310
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
311
+ <attribute>description</attribute>
312
+ <value><![CDATA[]]></value>
313
+ </action>
314
+ <action>
315
+ <action_id>set_metadata_field_text_4801437309_editable</action_id>
316
+ <action_type>set_attribute_value</action_type>
317
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
318
+ <attribute>editable</attribute>
319
+ <value><![CDATA[1]]></value>
320
+ </action>
321
+ <action>
322
+ <action_id>set_metadata_field_text_4801437309_editable</action_id>
323
+ <action_type>set_attribute_value</action_type>
324
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
325
+ <attribute>editable</attribute>
326
+ <value><![CDATA[1]]></value>
327
+ </action>
328
+ <action>
329
+ <action_id>set_metadata_field_text_4801437309_required</action_id>
330
+ <action_type>set_attribute_value</action_type>
331
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
332
+ <attribute>required</attribute>
333
+ <value><![CDATA[0]]></value>
334
+ </action>
335
+ <action>
336
+ <action_id>set_permission_4801437309_read_5</action_id>
337
+ <action_type>set_permission</action_type>
338
+ <asset>[[output://create_metadata_field_text_4801437309.assetid]]</asset>
339
+ <permission>1</permission>
340
+ <granted>1</granted>
341
+ <userid>[[system://public_user]]</userid>
342
+ </action>
343
+
344
+ <action>
345
+ <action_id>create_metadata_field_wysiwyg_3705823128</action_id>
346
+ <action_type>create_asset</action_type>
347
+ <type_code>metadata_field_wysiwyg</type_code>
348
+ <link_type>2</link_type>
349
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
350
+ <value></value>
351
+ <is_dependant>1</is_dependant>
352
+ <is_exclusive>0</is_exclusive>
353
+ </action>
354
+ <action>
355
+ <action_id>set_metadata_field_wysiwyg_3705823128_name</action_id>
356
+ <action_type>set_attribute_value</action_type>
357
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
358
+ <attribute>name</attribute>
359
+ <value><![CDATA[intro]]></value>
360
+ </action>
361
+ <action>
362
+ <action_id>set_metadata_field_wysiwyg_3705823128_friendly_name</action_id>
363
+ <action_type>set_attribute_value</action_type>
364
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
365
+ <attribute>friendly_name</attribute>
366
+ <value><![CDATA[Intro content]]></value>
367
+ </action>
368
+ <action>
369
+ <action_id>set_metadata_field_wysiwyg_3705823128_default</action_id>
370
+ <action_type>set_attribute_value</action_type>
371
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
372
+ <attribute>default</attribute>
373
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
374
+ </action>
375
+ <action>
376
+ <action_id>set_metadata_field_wysiwyg_3705823128_description</action_id>
377
+ <action_type>set_attribute_value</action_type>
378
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
379
+ <attribute>description</attribute>
380
+ <value><![CDATA[]]></value>
381
+ </action>
382
+ <action>
383
+ <action_id>set_metadata_field_wysiwyg_3705823128_editable</action_id>
384
+ <action_type>set_attribute_value</action_type>
385
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
386
+ <attribute>editable</attribute>
387
+ <value><![CDATA[1]]></value>
388
+ </action>
389
+ <action>
390
+ <action_id>set_metadata_field_wysiwyg_3705823128_editable</action_id>
391
+ <action_type>set_attribute_value</action_type>
392
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
393
+ <attribute>editable</attribute>
394
+ <value><![CDATA[1]]></value>
395
+ </action>
396
+ <action>
397
+ <action_id>set_metadata_field_wysiwyg_3705823128_required</action_id>
398
+ <action_type>set_attribute_value</action_type>
399
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
400
+ <attribute>required</attribute>
401
+ <value><![CDATA[0]]></value>
402
+ </action>
403
+ <action>
404
+ <action_id>set_permission_3705823128_read_5</action_id>
405
+ <action_type>set_permission</action_type>
406
+ <asset>[[output://create_metadata_field_wysiwyg_3705823128.assetid]]</asset>
407
+ <permission>1</permission>
408
+ <granted>1</granted>
409
+ <userid>[[system://public_user]]</userid>
410
+ </action>
411
+
412
+ <action>
413
+ <action_id>create_metadata_field_select_8299813197</action_id>
414
+ <action_type>create_asset</action_type>
415
+ <type_code>metadata_field_select</type_code>
416
+ <link_type>2</link_type>
417
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
418
+ <value></value>
419
+ <is_dependant>1</is_dependant>
420
+ <is_exclusive>0</is_exclusive>
421
+ </action>
422
+ <action>
423
+ <action_id>set_metadata_field_select_8299813197_name</action_id>
424
+ <action_type>set_attribute_value</action_type>
425
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
426
+ <attribute>name</attribute>
427
+ <value><![CDATA[accordion_num]]></value>
428
+ </action>
429
+ <action>
430
+ <action_id>set_metadata_field_select_8299813197_friendly_name</action_id>
431
+ <action_type>set_attribute_value</action_type>
432
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
433
+ <attribute>friendly_name</attribute>
434
+ <value><![CDATA[Number of accordions]]></value>
435
+ </action>
436
+ <action>
437
+ <action_id>set_metadata_field_select_8299813197_default</action_id>
438
+ <action_type>set_attribute_value</action_type>
439
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
440
+ <attribute>default</attribute>
441
+ <value><![CDATA[3]]></value>
442
+ </action>
443
+ <action>
444
+ <action_id>set_metadata_field_select_8299813197_description</action_id>
445
+ <action_type>set_attribute_value</action_type>
446
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
447
+ <attribute>description</attribute>
448
+ <value><![CDATA[]]></value>
449
+ </action>
450
+ <action>
451
+ <action_id>set_metadata_field_select_8299813197_editable</action_id>
452
+ <action_type>set_attribute_value</action_type>
453
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
454
+ <attribute>editable</attribute>
455
+ <value><![CDATA[1]]></value>
456
+ </action>
457
+ <action>
458
+ <action_id>set_metadata_field_select_8299813197_editable</action_id>
459
+ <action_type>set_attribute_value</action_type>
460
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
461
+ <attribute>editable</attribute>
462
+ <value><![CDATA[1]]></value>
463
+ </action>
464
+ <action>
465
+ <action_id>set_metadata_field_select_8299813197_required</action_id>
466
+ <action_type>set_attribute_value</action_type>
467
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
468
+ <attribute>required</attribute>
469
+ <value><![CDATA[0]]></value>
470
+ </action>
471
+ <action>
472
+ <action_id>set_permission_8299813197_read_5</action_id>
473
+ <action_type>set_permission</action_type>
474
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
475
+ <permission>1</permission>
476
+ <granted>1</granted>
477
+ <userid>[[system://public_user]]</userid>
478
+ </action>
479
+
480
+ <action>
481
+ <action_id>set_metadata_field_select_8299813197_select_options</action_id>
482
+ <action_type>set_attribute_value</action_type>
483
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
484
+ <attribute>select_options</attribute>
485
+ <value><![CDATA[array ('1' => '1','2' => '2','3' => '3','4' => '4','5' => '5','6' => '6','7' => '7','8' => '8','9' => '9','10' => '10',);]]></value>
486
+ </action>
487
+ <action>
488
+ <action_id>set_{f.type}_8299813197_edit_params</action_id>
489
+ <action_type>set_attribute_value</action_type>
490
+ <asset>[[output://create_metadata_field_select_8299813197.assetid]]</asset>
491
+ <attribute>edit_params</attribute>
492
+ <value><![CDATA[array (
493
+ 'style' => 'list',
494
+ 'type' => 'table',
495
+ 'height' => '',
496
+ 'columns' => '1',
497
+ 'empty_text' => '',
498
+ 'extras' => '',
499
+ );]]></value>
500
+ </action>
501
+
502
+ <action>
503
+ <action_id>create_metadata_field_text_6893283402</action_id>
504
+ <action_type>create_asset</action_type>
505
+ <type_code>metadata_field_text</type_code>
506
+ <link_type>2</link_type>
507
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
508
+ <value></value>
509
+ <is_dependant>1</is_dependant>
510
+ <is_exclusive>0</is_exclusive>
511
+ </action>
512
+ <action>
513
+ <action_id>set_metadata_field_text_6893283402_name</action_id>
514
+ <action_type>set_attribute_value</action_type>
515
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
516
+ <attribute>name</attribute>
517
+ <value><![CDATA[title_1]]></value>
518
+ </action>
519
+ <action>
520
+ <action_id>set_metadata_field_text_6893283402_friendly_name</action_id>
521
+ <action_type>set_attribute_value</action_type>
522
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
523
+ <attribute>friendly_name</attribute>
524
+ <value><![CDATA[Accordion 1 - Title]]></value>
525
+ </action>
526
+ <action>
527
+ <action_id>set_metadata_field_text_6893283402_default</action_id>
528
+ <action_type>set_attribute_value</action_type>
529
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
530
+ <attribute>default</attribute>
531
+ <value><![CDATA[Content]]></value>
532
+ </action>
533
+ <action>
534
+ <action_id>set_metadata_field_text_6893283402_description</action_id>
535
+ <action_type>set_attribute_value</action_type>
536
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
537
+ <attribute>description</attribute>
538
+ <value><![CDATA[]]></value>
539
+ </action>
540
+ <action>
541
+ <action_id>set_metadata_field_text_6893283402_editable</action_id>
542
+ <action_type>set_attribute_value</action_type>
543
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
544
+ <attribute>editable</attribute>
545
+ <value><![CDATA[1]]></value>
546
+ </action>
547
+ <action>
548
+ <action_id>set_metadata_field_text_6893283402_editable</action_id>
549
+ <action_type>set_attribute_value</action_type>
550
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
551
+ <attribute>editable</attribute>
552
+ <value><![CDATA[1]]></value>
553
+ </action>
554
+ <action>
555
+ <action_id>set_metadata_field_text_6893283402_required</action_id>
556
+ <action_type>set_attribute_value</action_type>
557
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
558
+ <attribute>required</attribute>
559
+ <value><![CDATA[0]]></value>
560
+ </action>
561
+ <action>
562
+ <action_id>set_permission_6893283402_read_5</action_id>
563
+ <action_type>set_permission</action_type>
564
+ <asset>[[output://create_metadata_field_text_6893283402.assetid]]</asset>
565
+ <permission>1</permission>
566
+ <granted>1</granted>
567
+ <userid>[[system://public_user]]</userid>
568
+ </action>
569
+
570
+ <action>
571
+ <action_id>create_metadata_field_wysiwyg_3490965651</action_id>
572
+ <action_type>create_asset</action_type>
573
+ <type_code>metadata_field_wysiwyg</type_code>
574
+ <link_type>2</link_type>
575
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
576
+ <value></value>
577
+ <is_dependant>1</is_dependant>
578
+ <is_exclusive>0</is_exclusive>
579
+ </action>
580
+ <action>
581
+ <action_id>set_metadata_field_wysiwyg_3490965651_name</action_id>
582
+ <action_type>set_attribute_value</action_type>
583
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
584
+ <attribute>name</attribute>
585
+ <value><![CDATA[content_1]]></value>
586
+ </action>
587
+ <action>
588
+ <action_id>set_metadata_field_wysiwyg_3490965651_friendly_name</action_id>
589
+ <action_type>set_attribute_value</action_type>
590
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
591
+ <attribute>friendly_name</attribute>
592
+ <value><![CDATA[Accordion 1 - Content]]></value>
593
+ </action>
594
+ <action>
595
+ <action_id>set_metadata_field_wysiwyg_3490965651_default</action_id>
596
+ <action_type>set_attribute_value</action_type>
597
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
598
+ <attribute>default</attribute>
599
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
600
+ </action>
601
+ <action>
602
+ <action_id>set_metadata_field_wysiwyg_3490965651_description</action_id>
603
+ <action_type>set_attribute_value</action_type>
604
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
605
+ <attribute>description</attribute>
606
+ <value><![CDATA[]]></value>
607
+ </action>
608
+ <action>
609
+ <action_id>set_metadata_field_wysiwyg_3490965651_editable</action_id>
610
+ <action_type>set_attribute_value</action_type>
611
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
612
+ <attribute>editable</attribute>
613
+ <value><![CDATA[1]]></value>
614
+ </action>
615
+ <action>
616
+ <action_id>set_metadata_field_wysiwyg_3490965651_editable</action_id>
617
+ <action_type>set_attribute_value</action_type>
618
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
619
+ <attribute>editable</attribute>
620
+ <value><![CDATA[1]]></value>
621
+ </action>
622
+ <action>
623
+ <action_id>set_metadata_field_wysiwyg_3490965651_required</action_id>
624
+ <action_type>set_attribute_value</action_type>
625
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
626
+ <attribute>required</attribute>
627
+ <value><![CDATA[0]]></value>
628
+ </action>
629
+ <action>
630
+ <action_id>set_permission_3490965651_read_5</action_id>
631
+ <action_type>set_permission</action_type>
632
+ <asset>[[output://create_metadata_field_wysiwyg_3490965651.assetid]]</asset>
633
+ <permission>1</permission>
634
+ <granted>1</granted>
635
+ <userid>[[system://public_user]]</userid>
636
+ </action>
637
+
638
+ <action>
639
+ <action_id>create_metadata_field_text_163463265</action_id>
640
+ <action_type>create_asset</action_type>
641
+ <type_code>metadata_field_text</type_code>
642
+ <link_type>2</link_type>
643
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
644
+ <value></value>
645
+ <is_dependant>1</is_dependant>
646
+ <is_exclusive>0</is_exclusive>
647
+ </action>
648
+ <action>
649
+ <action_id>set_metadata_field_text_163463265_name</action_id>
650
+ <action_type>set_attribute_value</action_type>
651
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
652
+ <attribute>name</attribute>
653
+ <value><![CDATA[title_2]]></value>
654
+ </action>
655
+ <action>
656
+ <action_id>set_metadata_field_text_163463265_friendly_name</action_id>
657
+ <action_type>set_attribute_value</action_type>
658
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
659
+ <attribute>friendly_name</attribute>
660
+ <value><![CDATA[Accordion 2 - Title]]></value>
661
+ </action>
662
+ <action>
663
+ <action_id>set_metadata_field_text_163463265_default</action_id>
664
+ <action_type>set_attribute_value</action_type>
665
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
666
+ <attribute>default</attribute>
667
+ <value><![CDATA[Content]]></value>
668
+ </action>
669
+ <action>
670
+ <action_id>set_metadata_field_text_163463265_description</action_id>
671
+ <action_type>set_attribute_value</action_type>
672
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
673
+ <attribute>description</attribute>
674
+ <value><![CDATA[]]></value>
675
+ </action>
676
+ <action>
677
+ <action_id>set_metadata_field_text_163463265_editable</action_id>
678
+ <action_type>set_attribute_value</action_type>
679
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
680
+ <attribute>editable</attribute>
681
+ <value><![CDATA[1]]></value>
682
+ </action>
683
+ <action>
684
+ <action_id>set_metadata_field_text_163463265_editable</action_id>
685
+ <action_type>set_attribute_value</action_type>
686
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
687
+ <attribute>editable</attribute>
688
+ <value><![CDATA[1]]></value>
689
+ </action>
690
+ <action>
691
+ <action_id>set_metadata_field_text_163463265_required</action_id>
692
+ <action_type>set_attribute_value</action_type>
693
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
694
+ <attribute>required</attribute>
695
+ <value><![CDATA[0]]></value>
696
+ </action>
697
+ <action>
698
+ <action_id>set_permission_163463265_read_5</action_id>
699
+ <action_type>set_permission</action_type>
700
+ <asset>[[output://create_metadata_field_text_163463265.assetid]]</asset>
701
+ <permission>1</permission>
702
+ <granted>1</granted>
703
+ <userid>[[system://public_user]]</userid>
704
+ </action>
705
+
706
+ <action>
707
+ <action_id>create_metadata_field_wysiwyg_8825114651</action_id>
708
+ <action_type>create_asset</action_type>
709
+ <type_code>metadata_field_wysiwyg</type_code>
710
+ <link_type>2</link_type>
711
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
712
+ <value></value>
713
+ <is_dependant>1</is_dependant>
714
+ <is_exclusive>0</is_exclusive>
715
+ </action>
716
+ <action>
717
+ <action_id>set_metadata_field_wysiwyg_8825114651_name</action_id>
718
+ <action_type>set_attribute_value</action_type>
719
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
720
+ <attribute>name</attribute>
721
+ <value><![CDATA[content_2]]></value>
722
+ </action>
723
+ <action>
724
+ <action_id>set_metadata_field_wysiwyg_8825114651_friendly_name</action_id>
725
+ <action_type>set_attribute_value</action_type>
726
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
727
+ <attribute>friendly_name</attribute>
728
+ <value><![CDATA[Accordion 2 - Content]]></value>
729
+ </action>
730
+ <action>
731
+ <action_id>set_metadata_field_wysiwyg_8825114651_default</action_id>
732
+ <action_type>set_attribute_value</action_type>
733
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
734
+ <attribute>default</attribute>
735
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
736
+ </action>
737
+ <action>
738
+ <action_id>set_metadata_field_wysiwyg_8825114651_description</action_id>
739
+ <action_type>set_attribute_value</action_type>
740
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
741
+ <attribute>description</attribute>
742
+ <value><![CDATA[]]></value>
743
+ </action>
744
+ <action>
745
+ <action_id>set_metadata_field_wysiwyg_8825114651_editable</action_id>
746
+ <action_type>set_attribute_value</action_type>
747
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
748
+ <attribute>editable</attribute>
749
+ <value><![CDATA[1]]></value>
750
+ </action>
751
+ <action>
752
+ <action_id>set_metadata_field_wysiwyg_8825114651_editable</action_id>
753
+ <action_type>set_attribute_value</action_type>
754
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
755
+ <attribute>editable</attribute>
756
+ <value><![CDATA[1]]></value>
757
+ </action>
758
+ <action>
759
+ <action_id>set_metadata_field_wysiwyg_8825114651_required</action_id>
760
+ <action_type>set_attribute_value</action_type>
761
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
762
+ <attribute>required</attribute>
763
+ <value><![CDATA[0]]></value>
764
+ </action>
765
+ <action>
766
+ <action_id>set_permission_8825114651_read_5</action_id>
767
+ <action_type>set_permission</action_type>
768
+ <asset>[[output://create_metadata_field_wysiwyg_8825114651.assetid]]</asset>
769
+ <permission>1</permission>
770
+ <granted>1</granted>
771
+ <userid>[[system://public_user]]</userid>
772
+ </action>
773
+
774
+ <action>
775
+ <action_id>create_metadata_field_text_2902322633</action_id>
776
+ <action_type>create_asset</action_type>
777
+ <type_code>metadata_field_text</type_code>
778
+ <link_type>2</link_type>
779
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
780
+ <value></value>
781
+ <is_dependant>1</is_dependant>
782
+ <is_exclusive>0</is_exclusive>
783
+ </action>
784
+ <action>
785
+ <action_id>set_metadata_field_text_2902322633_name</action_id>
786
+ <action_type>set_attribute_value</action_type>
787
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
788
+ <attribute>name</attribute>
789
+ <value><![CDATA[title_3]]></value>
790
+ </action>
791
+ <action>
792
+ <action_id>set_metadata_field_text_2902322633_friendly_name</action_id>
793
+ <action_type>set_attribute_value</action_type>
794
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
795
+ <attribute>friendly_name</attribute>
796
+ <value><![CDATA[Accordion 3 - Title]]></value>
797
+ </action>
798
+ <action>
799
+ <action_id>set_metadata_field_text_2902322633_default</action_id>
800
+ <action_type>set_attribute_value</action_type>
801
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
802
+ <attribute>default</attribute>
803
+ <value><![CDATA[Content]]></value>
804
+ </action>
805
+ <action>
806
+ <action_id>set_metadata_field_text_2902322633_description</action_id>
807
+ <action_type>set_attribute_value</action_type>
808
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
809
+ <attribute>description</attribute>
810
+ <value><![CDATA[]]></value>
811
+ </action>
812
+ <action>
813
+ <action_id>set_metadata_field_text_2902322633_editable</action_id>
814
+ <action_type>set_attribute_value</action_type>
815
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
816
+ <attribute>editable</attribute>
817
+ <value><![CDATA[1]]></value>
818
+ </action>
819
+ <action>
820
+ <action_id>set_metadata_field_text_2902322633_editable</action_id>
821
+ <action_type>set_attribute_value</action_type>
822
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
823
+ <attribute>editable</attribute>
824
+ <value><![CDATA[1]]></value>
825
+ </action>
826
+ <action>
827
+ <action_id>set_metadata_field_text_2902322633_required</action_id>
828
+ <action_type>set_attribute_value</action_type>
829
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
830
+ <attribute>required</attribute>
831
+ <value><![CDATA[0]]></value>
832
+ </action>
833
+ <action>
834
+ <action_id>set_permission_2902322633_read_5</action_id>
835
+ <action_type>set_permission</action_type>
836
+ <asset>[[output://create_metadata_field_text_2902322633.assetid]]</asset>
837
+ <permission>1</permission>
838
+ <granted>1</granted>
839
+ <userid>[[system://public_user]]</userid>
840
+ </action>
841
+
842
+ <action>
843
+ <action_id>create_metadata_field_wysiwyg_9512255602</action_id>
844
+ <action_type>create_asset</action_type>
845
+ <type_code>metadata_field_wysiwyg</type_code>
846
+ <link_type>2</link_type>
847
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
848
+ <value></value>
849
+ <is_dependant>1</is_dependant>
850
+ <is_exclusive>0</is_exclusive>
851
+ </action>
852
+ <action>
853
+ <action_id>set_metadata_field_wysiwyg_9512255602_name</action_id>
854
+ <action_type>set_attribute_value</action_type>
855
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
856
+ <attribute>name</attribute>
857
+ <value><![CDATA[content_3]]></value>
858
+ </action>
859
+ <action>
860
+ <action_id>set_metadata_field_wysiwyg_9512255602_friendly_name</action_id>
861
+ <action_type>set_attribute_value</action_type>
862
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
863
+ <attribute>friendly_name</attribute>
864
+ <value><![CDATA[Accordion 3 - Content]]></value>
865
+ </action>
866
+ <action>
867
+ <action_id>set_metadata_field_wysiwyg_9512255602_default</action_id>
868
+ <action_type>set_attribute_value</action_type>
869
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
870
+ <attribute>default</attribute>
871
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
872
+ </action>
873
+ <action>
874
+ <action_id>set_metadata_field_wysiwyg_9512255602_description</action_id>
875
+ <action_type>set_attribute_value</action_type>
876
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
877
+ <attribute>description</attribute>
878
+ <value><![CDATA[]]></value>
879
+ </action>
880
+ <action>
881
+ <action_id>set_metadata_field_wysiwyg_9512255602_editable</action_id>
882
+ <action_type>set_attribute_value</action_type>
883
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
884
+ <attribute>editable</attribute>
885
+ <value><![CDATA[1]]></value>
886
+ </action>
887
+ <action>
888
+ <action_id>set_metadata_field_wysiwyg_9512255602_editable</action_id>
889
+ <action_type>set_attribute_value</action_type>
890
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
891
+ <attribute>editable</attribute>
892
+ <value><![CDATA[1]]></value>
893
+ </action>
894
+ <action>
895
+ <action_id>set_metadata_field_wysiwyg_9512255602_required</action_id>
896
+ <action_type>set_attribute_value</action_type>
897
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
898
+ <attribute>required</attribute>
899
+ <value><![CDATA[0]]></value>
900
+ </action>
901
+ <action>
902
+ <action_id>set_permission_9512255602_read_5</action_id>
903
+ <action_type>set_permission</action_type>
904
+ <asset>[[output://create_metadata_field_wysiwyg_9512255602.assetid]]</asset>
905
+ <permission>1</permission>
906
+ <granted>1</granted>
907
+ <userid>[[system://public_user]]</userid>
908
+ </action>
909
+
910
+ <action>
911
+ <action_id>create_metadata_field_text_8139406934</action_id>
912
+ <action_type>create_asset</action_type>
913
+ <type_code>metadata_field_text</type_code>
914
+ <link_type>2</link_type>
915
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
916
+ <value></value>
917
+ <is_dependant>1</is_dependant>
918
+ <is_exclusive>0</is_exclusive>
919
+ </action>
920
+ <action>
921
+ <action_id>set_metadata_field_text_8139406934_name</action_id>
922
+ <action_type>set_attribute_value</action_type>
923
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
924
+ <attribute>name</attribute>
925
+ <value><![CDATA[title_4]]></value>
926
+ </action>
927
+ <action>
928
+ <action_id>set_metadata_field_text_8139406934_friendly_name</action_id>
929
+ <action_type>set_attribute_value</action_type>
930
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
931
+ <attribute>friendly_name</attribute>
932
+ <value><![CDATA[Accordion 4 - Title]]></value>
933
+ </action>
934
+ <action>
935
+ <action_id>set_metadata_field_text_8139406934_default</action_id>
936
+ <action_type>set_attribute_value</action_type>
937
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
938
+ <attribute>default</attribute>
939
+ <value><![CDATA[Content]]></value>
940
+ </action>
941
+ <action>
942
+ <action_id>set_metadata_field_text_8139406934_description</action_id>
943
+ <action_type>set_attribute_value</action_type>
944
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
945
+ <attribute>description</attribute>
946
+ <value><![CDATA[]]></value>
947
+ </action>
948
+ <action>
949
+ <action_id>set_metadata_field_text_8139406934_editable</action_id>
950
+ <action_type>set_attribute_value</action_type>
951
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
952
+ <attribute>editable</attribute>
953
+ <value><![CDATA[1]]></value>
954
+ </action>
955
+ <action>
956
+ <action_id>set_metadata_field_text_8139406934_editable</action_id>
957
+ <action_type>set_attribute_value</action_type>
958
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
959
+ <attribute>editable</attribute>
960
+ <value><![CDATA[1]]></value>
961
+ </action>
962
+ <action>
963
+ <action_id>set_metadata_field_text_8139406934_required</action_id>
964
+ <action_type>set_attribute_value</action_type>
965
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
966
+ <attribute>required</attribute>
967
+ <value><![CDATA[0]]></value>
968
+ </action>
969
+ <action>
970
+ <action_id>set_permission_8139406934_read_5</action_id>
971
+ <action_type>set_permission</action_type>
972
+ <asset>[[output://create_metadata_field_text_8139406934.assetid]]</asset>
973
+ <permission>1</permission>
974
+ <granted>1</granted>
975
+ <userid>[[system://public_user]]</userid>
976
+ </action>
977
+
978
+ <action>
979
+ <action_id>create_metadata_field_wysiwyg_2282596946</action_id>
980
+ <action_type>create_asset</action_type>
981
+ <type_code>metadata_field_wysiwyg</type_code>
982
+ <link_type>2</link_type>
983
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
984
+ <value></value>
985
+ <is_dependant>1</is_dependant>
986
+ <is_exclusive>0</is_exclusive>
987
+ </action>
988
+ <action>
989
+ <action_id>set_metadata_field_wysiwyg_2282596946_name</action_id>
990
+ <action_type>set_attribute_value</action_type>
991
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
992
+ <attribute>name</attribute>
993
+ <value><![CDATA[content_4]]></value>
994
+ </action>
995
+ <action>
996
+ <action_id>set_metadata_field_wysiwyg_2282596946_friendly_name</action_id>
997
+ <action_type>set_attribute_value</action_type>
998
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
999
+ <attribute>friendly_name</attribute>
1000
+ <value><![CDATA[Accordion 4 - Content]]></value>
1001
+ </action>
1002
+ <action>
1003
+ <action_id>set_metadata_field_wysiwyg_2282596946_default</action_id>
1004
+ <action_type>set_attribute_value</action_type>
1005
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
1006
+ <attribute>default</attribute>
1007
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1008
+ </action>
1009
+ <action>
1010
+ <action_id>set_metadata_field_wysiwyg_2282596946_description</action_id>
1011
+ <action_type>set_attribute_value</action_type>
1012
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
1013
+ <attribute>description</attribute>
1014
+ <value><![CDATA[]]></value>
1015
+ </action>
1016
+ <action>
1017
+ <action_id>set_metadata_field_wysiwyg_2282596946_editable</action_id>
1018
+ <action_type>set_attribute_value</action_type>
1019
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
1020
+ <attribute>editable</attribute>
1021
+ <value><![CDATA[1]]></value>
1022
+ </action>
1023
+ <action>
1024
+ <action_id>set_metadata_field_wysiwyg_2282596946_editable</action_id>
1025
+ <action_type>set_attribute_value</action_type>
1026
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
1027
+ <attribute>editable</attribute>
1028
+ <value><![CDATA[1]]></value>
1029
+ </action>
1030
+ <action>
1031
+ <action_id>set_metadata_field_wysiwyg_2282596946_required</action_id>
1032
+ <action_type>set_attribute_value</action_type>
1033
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
1034
+ <attribute>required</attribute>
1035
+ <value><![CDATA[0]]></value>
1036
+ </action>
1037
+ <action>
1038
+ <action_id>set_permission_2282596946_read_5</action_id>
1039
+ <action_type>set_permission</action_type>
1040
+ <asset>[[output://create_metadata_field_wysiwyg_2282596946.assetid]]</asset>
1041
+ <permission>1</permission>
1042
+ <granted>1</granted>
1043
+ <userid>[[system://public_user]]</userid>
1044
+ </action>
1045
+
1046
+ <action>
1047
+ <action_id>create_metadata_field_text_3010884109</action_id>
1048
+ <action_type>create_asset</action_type>
1049
+ <type_code>metadata_field_text</type_code>
1050
+ <link_type>2</link_type>
1051
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1052
+ <value></value>
1053
+ <is_dependant>1</is_dependant>
1054
+ <is_exclusive>0</is_exclusive>
1055
+ </action>
1056
+ <action>
1057
+ <action_id>set_metadata_field_text_3010884109_name</action_id>
1058
+ <action_type>set_attribute_value</action_type>
1059
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1060
+ <attribute>name</attribute>
1061
+ <value><![CDATA[title_5]]></value>
1062
+ </action>
1063
+ <action>
1064
+ <action_id>set_metadata_field_text_3010884109_friendly_name</action_id>
1065
+ <action_type>set_attribute_value</action_type>
1066
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1067
+ <attribute>friendly_name</attribute>
1068
+ <value><![CDATA[Accordion 5 - Title]]></value>
1069
+ </action>
1070
+ <action>
1071
+ <action_id>set_metadata_field_text_3010884109_default</action_id>
1072
+ <action_type>set_attribute_value</action_type>
1073
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1074
+ <attribute>default</attribute>
1075
+ <value><![CDATA[Content]]></value>
1076
+ </action>
1077
+ <action>
1078
+ <action_id>set_metadata_field_text_3010884109_description</action_id>
1079
+ <action_type>set_attribute_value</action_type>
1080
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1081
+ <attribute>description</attribute>
1082
+ <value><![CDATA[]]></value>
1083
+ </action>
1084
+ <action>
1085
+ <action_id>set_metadata_field_text_3010884109_editable</action_id>
1086
+ <action_type>set_attribute_value</action_type>
1087
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1088
+ <attribute>editable</attribute>
1089
+ <value><![CDATA[1]]></value>
1090
+ </action>
1091
+ <action>
1092
+ <action_id>set_metadata_field_text_3010884109_editable</action_id>
1093
+ <action_type>set_attribute_value</action_type>
1094
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1095
+ <attribute>editable</attribute>
1096
+ <value><![CDATA[1]]></value>
1097
+ </action>
1098
+ <action>
1099
+ <action_id>set_metadata_field_text_3010884109_required</action_id>
1100
+ <action_type>set_attribute_value</action_type>
1101
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1102
+ <attribute>required</attribute>
1103
+ <value><![CDATA[0]]></value>
1104
+ </action>
1105
+ <action>
1106
+ <action_id>set_permission_3010884109_read_5</action_id>
1107
+ <action_type>set_permission</action_type>
1108
+ <asset>[[output://create_metadata_field_text_3010884109.assetid]]</asset>
1109
+ <permission>1</permission>
1110
+ <granted>1</granted>
1111
+ <userid>[[system://public_user]]</userid>
1112
+ </action>
1113
+
1114
+ <action>
1115
+ <action_id>create_metadata_field_wysiwyg_9229746587</action_id>
1116
+ <action_type>create_asset</action_type>
1117
+ <type_code>metadata_field_wysiwyg</type_code>
1118
+ <link_type>2</link_type>
1119
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1120
+ <value></value>
1121
+ <is_dependant>1</is_dependant>
1122
+ <is_exclusive>0</is_exclusive>
1123
+ </action>
1124
+ <action>
1125
+ <action_id>set_metadata_field_wysiwyg_9229746587_name</action_id>
1126
+ <action_type>set_attribute_value</action_type>
1127
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1128
+ <attribute>name</attribute>
1129
+ <value><![CDATA[content_5]]></value>
1130
+ </action>
1131
+ <action>
1132
+ <action_id>set_metadata_field_wysiwyg_9229746587_friendly_name</action_id>
1133
+ <action_type>set_attribute_value</action_type>
1134
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1135
+ <attribute>friendly_name</attribute>
1136
+ <value><![CDATA[Accordion 5 - Content]]></value>
1137
+ </action>
1138
+ <action>
1139
+ <action_id>set_metadata_field_wysiwyg_9229746587_default</action_id>
1140
+ <action_type>set_attribute_value</action_type>
1141
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1142
+ <attribute>default</attribute>
1143
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1144
+ </action>
1145
+ <action>
1146
+ <action_id>set_metadata_field_wysiwyg_9229746587_description</action_id>
1147
+ <action_type>set_attribute_value</action_type>
1148
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1149
+ <attribute>description</attribute>
1150
+ <value><![CDATA[]]></value>
1151
+ </action>
1152
+ <action>
1153
+ <action_id>set_metadata_field_wysiwyg_9229746587_editable</action_id>
1154
+ <action_type>set_attribute_value</action_type>
1155
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1156
+ <attribute>editable</attribute>
1157
+ <value><![CDATA[1]]></value>
1158
+ </action>
1159
+ <action>
1160
+ <action_id>set_metadata_field_wysiwyg_9229746587_editable</action_id>
1161
+ <action_type>set_attribute_value</action_type>
1162
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1163
+ <attribute>editable</attribute>
1164
+ <value><![CDATA[1]]></value>
1165
+ </action>
1166
+ <action>
1167
+ <action_id>set_metadata_field_wysiwyg_9229746587_required</action_id>
1168
+ <action_type>set_attribute_value</action_type>
1169
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1170
+ <attribute>required</attribute>
1171
+ <value><![CDATA[0]]></value>
1172
+ </action>
1173
+ <action>
1174
+ <action_id>set_permission_9229746587_read_5</action_id>
1175
+ <action_type>set_permission</action_type>
1176
+ <asset>[[output://create_metadata_field_wysiwyg_9229746587.assetid]]</asset>
1177
+ <permission>1</permission>
1178
+ <granted>1</granted>
1179
+ <userid>[[system://public_user]]</userid>
1180
+ </action>
1181
+
1182
+ <action>
1183
+ <action_id>create_metadata_field_text_7956874868</action_id>
1184
+ <action_type>create_asset</action_type>
1185
+ <type_code>metadata_field_text</type_code>
1186
+ <link_type>2</link_type>
1187
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1188
+ <value></value>
1189
+ <is_dependant>1</is_dependant>
1190
+ <is_exclusive>0</is_exclusive>
1191
+ </action>
1192
+ <action>
1193
+ <action_id>set_metadata_field_text_7956874868_name</action_id>
1194
+ <action_type>set_attribute_value</action_type>
1195
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1196
+ <attribute>name</attribute>
1197
+ <value><![CDATA[title_6]]></value>
1198
+ </action>
1199
+ <action>
1200
+ <action_id>set_metadata_field_text_7956874868_friendly_name</action_id>
1201
+ <action_type>set_attribute_value</action_type>
1202
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1203
+ <attribute>friendly_name</attribute>
1204
+ <value><![CDATA[Accordion 6 - Title]]></value>
1205
+ </action>
1206
+ <action>
1207
+ <action_id>set_metadata_field_text_7956874868_default</action_id>
1208
+ <action_type>set_attribute_value</action_type>
1209
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1210
+ <attribute>default</attribute>
1211
+ <value><![CDATA[Content]]></value>
1212
+ </action>
1213
+ <action>
1214
+ <action_id>set_metadata_field_text_7956874868_description</action_id>
1215
+ <action_type>set_attribute_value</action_type>
1216
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1217
+ <attribute>description</attribute>
1218
+ <value><![CDATA[]]></value>
1219
+ </action>
1220
+ <action>
1221
+ <action_id>set_metadata_field_text_7956874868_editable</action_id>
1222
+ <action_type>set_attribute_value</action_type>
1223
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1224
+ <attribute>editable</attribute>
1225
+ <value><![CDATA[1]]></value>
1226
+ </action>
1227
+ <action>
1228
+ <action_id>set_metadata_field_text_7956874868_editable</action_id>
1229
+ <action_type>set_attribute_value</action_type>
1230
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1231
+ <attribute>editable</attribute>
1232
+ <value><![CDATA[1]]></value>
1233
+ </action>
1234
+ <action>
1235
+ <action_id>set_metadata_field_text_7956874868_required</action_id>
1236
+ <action_type>set_attribute_value</action_type>
1237
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1238
+ <attribute>required</attribute>
1239
+ <value><![CDATA[0]]></value>
1240
+ </action>
1241
+ <action>
1242
+ <action_id>set_permission_7956874868_read_5</action_id>
1243
+ <action_type>set_permission</action_type>
1244
+ <asset>[[output://create_metadata_field_text_7956874868.assetid]]</asset>
1245
+ <permission>1</permission>
1246
+ <granted>1</granted>
1247
+ <userid>[[system://public_user]]</userid>
1248
+ </action>
1249
+
1250
+ <action>
1251
+ <action_id>create_metadata_field_wysiwyg_6017549922</action_id>
1252
+ <action_type>create_asset</action_type>
1253
+ <type_code>metadata_field_wysiwyg</type_code>
1254
+ <link_type>2</link_type>
1255
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1256
+ <value></value>
1257
+ <is_dependant>1</is_dependant>
1258
+ <is_exclusive>0</is_exclusive>
1259
+ </action>
1260
+ <action>
1261
+ <action_id>set_metadata_field_wysiwyg_6017549922_name</action_id>
1262
+ <action_type>set_attribute_value</action_type>
1263
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1264
+ <attribute>name</attribute>
1265
+ <value><![CDATA[content_6]]></value>
1266
+ </action>
1267
+ <action>
1268
+ <action_id>set_metadata_field_wysiwyg_6017549922_friendly_name</action_id>
1269
+ <action_type>set_attribute_value</action_type>
1270
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1271
+ <attribute>friendly_name</attribute>
1272
+ <value><![CDATA[Accordion 6 - Content]]></value>
1273
+ </action>
1274
+ <action>
1275
+ <action_id>set_metadata_field_wysiwyg_6017549922_default</action_id>
1276
+ <action_type>set_attribute_value</action_type>
1277
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1278
+ <attribute>default</attribute>
1279
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1280
+ </action>
1281
+ <action>
1282
+ <action_id>set_metadata_field_wysiwyg_6017549922_description</action_id>
1283
+ <action_type>set_attribute_value</action_type>
1284
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1285
+ <attribute>description</attribute>
1286
+ <value><![CDATA[]]></value>
1287
+ </action>
1288
+ <action>
1289
+ <action_id>set_metadata_field_wysiwyg_6017549922_editable</action_id>
1290
+ <action_type>set_attribute_value</action_type>
1291
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1292
+ <attribute>editable</attribute>
1293
+ <value><![CDATA[1]]></value>
1294
+ </action>
1295
+ <action>
1296
+ <action_id>set_metadata_field_wysiwyg_6017549922_editable</action_id>
1297
+ <action_type>set_attribute_value</action_type>
1298
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1299
+ <attribute>editable</attribute>
1300
+ <value><![CDATA[1]]></value>
1301
+ </action>
1302
+ <action>
1303
+ <action_id>set_metadata_field_wysiwyg_6017549922_required</action_id>
1304
+ <action_type>set_attribute_value</action_type>
1305
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1306
+ <attribute>required</attribute>
1307
+ <value><![CDATA[0]]></value>
1308
+ </action>
1309
+ <action>
1310
+ <action_id>set_permission_6017549922_read_5</action_id>
1311
+ <action_type>set_permission</action_type>
1312
+ <asset>[[output://create_metadata_field_wysiwyg_6017549922.assetid]]</asset>
1313
+ <permission>1</permission>
1314
+ <granted>1</granted>
1315
+ <userid>[[system://public_user]]</userid>
1316
+ </action>
1317
+
1318
+ <action>
1319
+ <action_id>create_metadata_field_text_2141315464</action_id>
1320
+ <action_type>create_asset</action_type>
1321
+ <type_code>metadata_field_text</type_code>
1322
+ <link_type>2</link_type>
1323
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1324
+ <value></value>
1325
+ <is_dependant>1</is_dependant>
1326
+ <is_exclusive>0</is_exclusive>
1327
+ </action>
1328
+ <action>
1329
+ <action_id>set_metadata_field_text_2141315464_name</action_id>
1330
+ <action_type>set_attribute_value</action_type>
1331
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1332
+ <attribute>name</attribute>
1333
+ <value><![CDATA[title_7]]></value>
1334
+ </action>
1335
+ <action>
1336
+ <action_id>set_metadata_field_text_2141315464_friendly_name</action_id>
1337
+ <action_type>set_attribute_value</action_type>
1338
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1339
+ <attribute>friendly_name</attribute>
1340
+ <value><![CDATA[Accordion 7 - Title]]></value>
1341
+ </action>
1342
+ <action>
1343
+ <action_id>set_metadata_field_text_2141315464_default</action_id>
1344
+ <action_type>set_attribute_value</action_type>
1345
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1346
+ <attribute>default</attribute>
1347
+ <value><![CDATA[Content]]></value>
1348
+ </action>
1349
+ <action>
1350
+ <action_id>set_metadata_field_text_2141315464_description</action_id>
1351
+ <action_type>set_attribute_value</action_type>
1352
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1353
+ <attribute>description</attribute>
1354
+ <value><![CDATA[]]></value>
1355
+ </action>
1356
+ <action>
1357
+ <action_id>set_metadata_field_text_2141315464_editable</action_id>
1358
+ <action_type>set_attribute_value</action_type>
1359
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1360
+ <attribute>editable</attribute>
1361
+ <value><![CDATA[1]]></value>
1362
+ </action>
1363
+ <action>
1364
+ <action_id>set_metadata_field_text_2141315464_editable</action_id>
1365
+ <action_type>set_attribute_value</action_type>
1366
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1367
+ <attribute>editable</attribute>
1368
+ <value><![CDATA[1]]></value>
1369
+ </action>
1370
+ <action>
1371
+ <action_id>set_metadata_field_text_2141315464_required</action_id>
1372
+ <action_type>set_attribute_value</action_type>
1373
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1374
+ <attribute>required</attribute>
1375
+ <value><![CDATA[0]]></value>
1376
+ </action>
1377
+ <action>
1378
+ <action_id>set_permission_2141315464_read_5</action_id>
1379
+ <action_type>set_permission</action_type>
1380
+ <asset>[[output://create_metadata_field_text_2141315464.assetid]]</asset>
1381
+ <permission>1</permission>
1382
+ <granted>1</granted>
1383
+ <userid>[[system://public_user]]</userid>
1384
+ </action>
1385
+
1386
+ <action>
1387
+ <action_id>create_metadata_field_wysiwyg_7903102509</action_id>
1388
+ <action_type>create_asset</action_type>
1389
+ <type_code>metadata_field_wysiwyg</type_code>
1390
+ <link_type>2</link_type>
1391
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1392
+ <value></value>
1393
+ <is_dependant>1</is_dependant>
1394
+ <is_exclusive>0</is_exclusive>
1395
+ </action>
1396
+ <action>
1397
+ <action_id>set_metadata_field_wysiwyg_7903102509_name</action_id>
1398
+ <action_type>set_attribute_value</action_type>
1399
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1400
+ <attribute>name</attribute>
1401
+ <value><![CDATA[content_7]]></value>
1402
+ </action>
1403
+ <action>
1404
+ <action_id>set_metadata_field_wysiwyg_7903102509_friendly_name</action_id>
1405
+ <action_type>set_attribute_value</action_type>
1406
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1407
+ <attribute>friendly_name</attribute>
1408
+ <value><![CDATA[Accordion 7 - Content]]></value>
1409
+ </action>
1410
+ <action>
1411
+ <action_id>set_metadata_field_wysiwyg_7903102509_default</action_id>
1412
+ <action_type>set_attribute_value</action_type>
1413
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1414
+ <attribute>default</attribute>
1415
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1416
+ </action>
1417
+ <action>
1418
+ <action_id>set_metadata_field_wysiwyg_7903102509_description</action_id>
1419
+ <action_type>set_attribute_value</action_type>
1420
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1421
+ <attribute>description</attribute>
1422
+ <value><![CDATA[]]></value>
1423
+ </action>
1424
+ <action>
1425
+ <action_id>set_metadata_field_wysiwyg_7903102509_editable</action_id>
1426
+ <action_type>set_attribute_value</action_type>
1427
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1428
+ <attribute>editable</attribute>
1429
+ <value><![CDATA[1]]></value>
1430
+ </action>
1431
+ <action>
1432
+ <action_id>set_metadata_field_wysiwyg_7903102509_editable</action_id>
1433
+ <action_type>set_attribute_value</action_type>
1434
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1435
+ <attribute>editable</attribute>
1436
+ <value><![CDATA[1]]></value>
1437
+ </action>
1438
+ <action>
1439
+ <action_id>set_metadata_field_wysiwyg_7903102509_required</action_id>
1440
+ <action_type>set_attribute_value</action_type>
1441
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1442
+ <attribute>required</attribute>
1443
+ <value><![CDATA[0]]></value>
1444
+ </action>
1445
+ <action>
1446
+ <action_id>set_permission_7903102509_read_5</action_id>
1447
+ <action_type>set_permission</action_type>
1448
+ <asset>[[output://create_metadata_field_wysiwyg_7903102509.assetid]]</asset>
1449
+ <permission>1</permission>
1450
+ <granted>1</granted>
1451
+ <userid>[[system://public_user]]</userid>
1452
+ </action>
1453
+
1454
+ <action>
1455
+ <action_id>create_metadata_field_text_2229983534</action_id>
1456
+ <action_type>create_asset</action_type>
1457
+ <type_code>metadata_field_text</type_code>
1458
+ <link_type>2</link_type>
1459
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1460
+ <value></value>
1461
+ <is_dependant>1</is_dependant>
1462
+ <is_exclusive>0</is_exclusive>
1463
+ </action>
1464
+ <action>
1465
+ <action_id>set_metadata_field_text_2229983534_name</action_id>
1466
+ <action_type>set_attribute_value</action_type>
1467
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1468
+ <attribute>name</attribute>
1469
+ <value><![CDATA[title_8]]></value>
1470
+ </action>
1471
+ <action>
1472
+ <action_id>set_metadata_field_text_2229983534_friendly_name</action_id>
1473
+ <action_type>set_attribute_value</action_type>
1474
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1475
+ <attribute>friendly_name</attribute>
1476
+ <value><![CDATA[Accordion 8 - Title]]></value>
1477
+ </action>
1478
+ <action>
1479
+ <action_id>set_metadata_field_text_2229983534_default</action_id>
1480
+ <action_type>set_attribute_value</action_type>
1481
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1482
+ <attribute>default</attribute>
1483
+ <value><![CDATA[Content]]></value>
1484
+ </action>
1485
+ <action>
1486
+ <action_id>set_metadata_field_text_2229983534_description</action_id>
1487
+ <action_type>set_attribute_value</action_type>
1488
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1489
+ <attribute>description</attribute>
1490
+ <value><![CDATA[]]></value>
1491
+ </action>
1492
+ <action>
1493
+ <action_id>set_metadata_field_text_2229983534_editable</action_id>
1494
+ <action_type>set_attribute_value</action_type>
1495
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1496
+ <attribute>editable</attribute>
1497
+ <value><![CDATA[1]]></value>
1498
+ </action>
1499
+ <action>
1500
+ <action_id>set_metadata_field_text_2229983534_editable</action_id>
1501
+ <action_type>set_attribute_value</action_type>
1502
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1503
+ <attribute>editable</attribute>
1504
+ <value><![CDATA[1]]></value>
1505
+ </action>
1506
+ <action>
1507
+ <action_id>set_metadata_field_text_2229983534_required</action_id>
1508
+ <action_type>set_attribute_value</action_type>
1509
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1510
+ <attribute>required</attribute>
1511
+ <value><![CDATA[0]]></value>
1512
+ </action>
1513
+ <action>
1514
+ <action_id>set_permission_2229983534_read_5</action_id>
1515
+ <action_type>set_permission</action_type>
1516
+ <asset>[[output://create_metadata_field_text_2229983534.assetid]]</asset>
1517
+ <permission>1</permission>
1518
+ <granted>1</granted>
1519
+ <userid>[[system://public_user]]</userid>
1520
+ </action>
1521
+
1522
+ <action>
1523
+ <action_id>create_metadata_field_wysiwyg_9649976511</action_id>
1524
+ <action_type>create_asset</action_type>
1525
+ <type_code>metadata_field_wysiwyg</type_code>
1526
+ <link_type>2</link_type>
1527
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1528
+ <value></value>
1529
+ <is_dependant>1</is_dependant>
1530
+ <is_exclusive>0</is_exclusive>
1531
+ </action>
1532
+ <action>
1533
+ <action_id>set_metadata_field_wysiwyg_9649976511_name</action_id>
1534
+ <action_type>set_attribute_value</action_type>
1535
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1536
+ <attribute>name</attribute>
1537
+ <value><![CDATA[content_8]]></value>
1538
+ </action>
1539
+ <action>
1540
+ <action_id>set_metadata_field_wysiwyg_9649976511_friendly_name</action_id>
1541
+ <action_type>set_attribute_value</action_type>
1542
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1543
+ <attribute>friendly_name</attribute>
1544
+ <value><![CDATA[Accordion 8 - Content]]></value>
1545
+ </action>
1546
+ <action>
1547
+ <action_id>set_metadata_field_wysiwyg_9649976511_default</action_id>
1548
+ <action_type>set_attribute_value</action_type>
1549
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1550
+ <attribute>default</attribute>
1551
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1552
+ </action>
1553
+ <action>
1554
+ <action_id>set_metadata_field_wysiwyg_9649976511_description</action_id>
1555
+ <action_type>set_attribute_value</action_type>
1556
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1557
+ <attribute>description</attribute>
1558
+ <value><![CDATA[]]></value>
1559
+ </action>
1560
+ <action>
1561
+ <action_id>set_metadata_field_wysiwyg_9649976511_editable</action_id>
1562
+ <action_type>set_attribute_value</action_type>
1563
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1564
+ <attribute>editable</attribute>
1565
+ <value><![CDATA[1]]></value>
1566
+ </action>
1567
+ <action>
1568
+ <action_id>set_metadata_field_wysiwyg_9649976511_editable</action_id>
1569
+ <action_type>set_attribute_value</action_type>
1570
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1571
+ <attribute>editable</attribute>
1572
+ <value><![CDATA[1]]></value>
1573
+ </action>
1574
+ <action>
1575
+ <action_id>set_metadata_field_wysiwyg_9649976511_required</action_id>
1576
+ <action_type>set_attribute_value</action_type>
1577
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1578
+ <attribute>required</attribute>
1579
+ <value><![CDATA[0]]></value>
1580
+ </action>
1581
+ <action>
1582
+ <action_id>set_permission_9649976511_read_5</action_id>
1583
+ <action_type>set_permission</action_type>
1584
+ <asset>[[output://create_metadata_field_wysiwyg_9649976511.assetid]]</asset>
1585
+ <permission>1</permission>
1586
+ <granted>1</granted>
1587
+ <userid>[[system://public_user]]</userid>
1588
+ </action>
1589
+
1590
+ <action>
1591
+ <action_id>create_metadata_field_text_5316881267</action_id>
1592
+ <action_type>create_asset</action_type>
1593
+ <type_code>metadata_field_text</type_code>
1594
+ <link_type>2</link_type>
1595
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1596
+ <value></value>
1597
+ <is_dependant>1</is_dependant>
1598
+ <is_exclusive>0</is_exclusive>
1599
+ </action>
1600
+ <action>
1601
+ <action_id>set_metadata_field_text_5316881267_name</action_id>
1602
+ <action_type>set_attribute_value</action_type>
1603
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1604
+ <attribute>name</attribute>
1605
+ <value><![CDATA[title_9]]></value>
1606
+ </action>
1607
+ <action>
1608
+ <action_id>set_metadata_field_text_5316881267_friendly_name</action_id>
1609
+ <action_type>set_attribute_value</action_type>
1610
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1611
+ <attribute>friendly_name</attribute>
1612
+ <value><![CDATA[Accordion 9 - Title]]></value>
1613
+ </action>
1614
+ <action>
1615
+ <action_id>set_metadata_field_text_5316881267_default</action_id>
1616
+ <action_type>set_attribute_value</action_type>
1617
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1618
+ <attribute>default</attribute>
1619
+ <value><![CDATA[Content]]></value>
1620
+ </action>
1621
+ <action>
1622
+ <action_id>set_metadata_field_text_5316881267_description</action_id>
1623
+ <action_type>set_attribute_value</action_type>
1624
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1625
+ <attribute>description</attribute>
1626
+ <value><![CDATA[]]></value>
1627
+ </action>
1628
+ <action>
1629
+ <action_id>set_metadata_field_text_5316881267_editable</action_id>
1630
+ <action_type>set_attribute_value</action_type>
1631
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1632
+ <attribute>editable</attribute>
1633
+ <value><![CDATA[1]]></value>
1634
+ </action>
1635
+ <action>
1636
+ <action_id>set_metadata_field_text_5316881267_editable</action_id>
1637
+ <action_type>set_attribute_value</action_type>
1638
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1639
+ <attribute>editable</attribute>
1640
+ <value><![CDATA[1]]></value>
1641
+ </action>
1642
+ <action>
1643
+ <action_id>set_metadata_field_text_5316881267_required</action_id>
1644
+ <action_type>set_attribute_value</action_type>
1645
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1646
+ <attribute>required</attribute>
1647
+ <value><![CDATA[0]]></value>
1648
+ </action>
1649
+ <action>
1650
+ <action_id>set_permission_5316881267_read_5</action_id>
1651
+ <action_type>set_permission</action_type>
1652
+ <asset>[[output://create_metadata_field_text_5316881267.assetid]]</asset>
1653
+ <permission>1</permission>
1654
+ <granted>1</granted>
1655
+ <userid>[[system://public_user]]</userid>
1656
+ </action>
1657
+
1658
+ <action>
1659
+ <action_id>create_metadata_field_wysiwyg_8382024362</action_id>
1660
+ <action_type>create_asset</action_type>
1661
+ <type_code>metadata_field_wysiwyg</type_code>
1662
+ <link_type>2</link_type>
1663
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1664
+ <value></value>
1665
+ <is_dependant>1</is_dependant>
1666
+ <is_exclusive>0</is_exclusive>
1667
+ </action>
1668
+ <action>
1669
+ <action_id>set_metadata_field_wysiwyg_8382024362_name</action_id>
1670
+ <action_type>set_attribute_value</action_type>
1671
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1672
+ <attribute>name</attribute>
1673
+ <value><![CDATA[content_9]]></value>
1674
+ </action>
1675
+ <action>
1676
+ <action_id>set_metadata_field_wysiwyg_8382024362_friendly_name</action_id>
1677
+ <action_type>set_attribute_value</action_type>
1678
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1679
+ <attribute>friendly_name</attribute>
1680
+ <value><![CDATA[Accordion 9 - Content]]></value>
1681
+ </action>
1682
+ <action>
1683
+ <action_id>set_metadata_field_wysiwyg_8382024362_default</action_id>
1684
+ <action_type>set_attribute_value</action_type>
1685
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1686
+ <attribute>default</attribute>
1687
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1688
+ </action>
1689
+ <action>
1690
+ <action_id>set_metadata_field_wysiwyg_8382024362_description</action_id>
1691
+ <action_type>set_attribute_value</action_type>
1692
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1693
+ <attribute>description</attribute>
1694
+ <value><![CDATA[]]></value>
1695
+ </action>
1696
+ <action>
1697
+ <action_id>set_metadata_field_wysiwyg_8382024362_editable</action_id>
1698
+ <action_type>set_attribute_value</action_type>
1699
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1700
+ <attribute>editable</attribute>
1701
+ <value><![CDATA[1]]></value>
1702
+ </action>
1703
+ <action>
1704
+ <action_id>set_metadata_field_wysiwyg_8382024362_editable</action_id>
1705
+ <action_type>set_attribute_value</action_type>
1706
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1707
+ <attribute>editable</attribute>
1708
+ <value><![CDATA[1]]></value>
1709
+ </action>
1710
+ <action>
1711
+ <action_id>set_metadata_field_wysiwyg_8382024362_required</action_id>
1712
+ <action_type>set_attribute_value</action_type>
1713
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1714
+ <attribute>required</attribute>
1715
+ <value><![CDATA[0]]></value>
1716
+ </action>
1717
+ <action>
1718
+ <action_id>set_permission_8382024362_read_5</action_id>
1719
+ <action_type>set_permission</action_type>
1720
+ <asset>[[output://create_metadata_field_wysiwyg_8382024362.assetid]]</asset>
1721
+ <permission>1</permission>
1722
+ <granted>1</granted>
1723
+ <userid>[[system://public_user]]</userid>
1724
+ </action>
1725
+
1726
+ <action>
1727
+ <action_id>create_metadata_field_text_268028193</action_id>
1728
+ <action_type>create_asset</action_type>
1729
+ <type_code>metadata_field_text</type_code>
1730
+ <link_type>2</link_type>
1731
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1732
+ <value></value>
1733
+ <is_dependant>1</is_dependant>
1734
+ <is_exclusive>0</is_exclusive>
1735
+ </action>
1736
+ <action>
1737
+ <action_id>set_metadata_field_text_268028193_name</action_id>
1738
+ <action_type>set_attribute_value</action_type>
1739
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1740
+ <attribute>name</attribute>
1741
+ <value><![CDATA[title_10]]></value>
1742
+ </action>
1743
+ <action>
1744
+ <action_id>set_metadata_field_text_268028193_friendly_name</action_id>
1745
+ <action_type>set_attribute_value</action_type>
1746
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1747
+ <attribute>friendly_name</attribute>
1748
+ <value><![CDATA[Accordion 10 - Title]]></value>
1749
+ </action>
1750
+ <action>
1751
+ <action_id>set_metadata_field_text_268028193_default</action_id>
1752
+ <action_type>set_attribute_value</action_type>
1753
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1754
+ <attribute>default</attribute>
1755
+ <value><![CDATA[Content]]></value>
1756
+ </action>
1757
+ <action>
1758
+ <action_id>set_metadata_field_text_268028193_description</action_id>
1759
+ <action_type>set_attribute_value</action_type>
1760
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1761
+ <attribute>description</attribute>
1762
+ <value><![CDATA[]]></value>
1763
+ </action>
1764
+ <action>
1765
+ <action_id>set_metadata_field_text_268028193_editable</action_id>
1766
+ <action_type>set_attribute_value</action_type>
1767
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1768
+ <attribute>editable</attribute>
1769
+ <value><![CDATA[1]]></value>
1770
+ </action>
1771
+ <action>
1772
+ <action_id>set_metadata_field_text_268028193_editable</action_id>
1773
+ <action_type>set_attribute_value</action_type>
1774
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1775
+ <attribute>editable</attribute>
1776
+ <value><![CDATA[1]]></value>
1777
+ </action>
1778
+ <action>
1779
+ <action_id>set_metadata_field_text_268028193_required</action_id>
1780
+ <action_type>set_attribute_value</action_type>
1781
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1782
+ <attribute>required</attribute>
1783
+ <value><![CDATA[0]]></value>
1784
+ </action>
1785
+ <action>
1786
+ <action_id>set_permission_268028193_read_5</action_id>
1787
+ <action_type>set_permission</action_type>
1788
+ <asset>[[output://create_metadata_field_text_268028193.assetid]]</asset>
1789
+ <permission>1</permission>
1790
+ <granted>1</granted>
1791
+ <userid>[[system://public_user]]</userid>
1792
+ </action>
1793
+
1794
+ <action>
1795
+ <action_id>create_metadata_field_wysiwyg_147343666</action_id>
1796
+ <action_type>create_asset</action_type>
1797
+ <type_code>metadata_field_wysiwyg</type_code>
1798
+ <link_type>2</link_type>
1799
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1800
+ <value></value>
1801
+ <is_dependant>1</is_dependant>
1802
+ <is_exclusive>0</is_exclusive>
1803
+ </action>
1804
+ <action>
1805
+ <action_id>set_metadata_field_wysiwyg_147343666_name</action_id>
1806
+ <action_type>set_attribute_value</action_type>
1807
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1808
+ <attribute>name</attribute>
1809
+ <value><![CDATA[content_10]]></value>
1810
+ </action>
1811
+ <action>
1812
+ <action_id>set_metadata_field_wysiwyg_147343666_friendly_name</action_id>
1813
+ <action_type>set_attribute_value</action_type>
1814
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1815
+ <attribute>friendly_name</attribute>
1816
+ <value><![CDATA[Accordion 10 - Content]]></value>
1817
+ </action>
1818
+ <action>
1819
+ <action_id>set_metadata_field_wysiwyg_147343666_default</action_id>
1820
+ <action_type>set_attribute_value</action_type>
1821
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1822
+ <attribute>default</attribute>
1823
+ <value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
1824
+ </action>
1825
+ <action>
1826
+ <action_id>set_metadata_field_wysiwyg_147343666_description</action_id>
1827
+ <action_type>set_attribute_value</action_type>
1828
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1829
+ <attribute>description</attribute>
1830
+ <value><![CDATA[]]></value>
1831
+ </action>
1832
+ <action>
1833
+ <action_id>set_metadata_field_wysiwyg_147343666_editable</action_id>
1834
+ <action_type>set_attribute_value</action_type>
1835
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1836
+ <attribute>editable</attribute>
1837
+ <value><![CDATA[1]]></value>
1838
+ </action>
1839
+ <action>
1840
+ <action_id>set_metadata_field_wysiwyg_147343666_editable</action_id>
1841
+ <action_type>set_attribute_value</action_type>
1842
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1843
+ <attribute>editable</attribute>
1844
+ <value><![CDATA[1]]></value>
1845
+ </action>
1846
+ <action>
1847
+ <action_id>set_metadata_field_wysiwyg_147343666_required</action_id>
1848
+ <action_type>set_attribute_value</action_type>
1849
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1850
+ <attribute>required</attribute>
1851
+ <value><![CDATA[0]]></value>
1852
+ </action>
1853
+ <action>
1854
+ <action_id>set_permission_147343666_read_5</action_id>
1855
+ <action_type>set_permission</action_type>
1856
+ <asset>[[output://create_metadata_field_wysiwyg_147343666.assetid]]</asset>
1857
+ <permission>1</permission>
1858
+ <granted>1</granted>
1859
+ <userid>[[system://public_user]]</userid>
1860
+ </action>
1861
+
1862
+ <action>
1863
+ <action_id>create_metadata_field_text_5921924796</action_id>
1864
+ <action_type>create_asset</action_type>
1865
+ <type_code>metadata_field_text</type_code>
1866
+ <link_type>2</link_type>
1867
+ <parentid>[[output://create_Metadata_Section_6941275076.assetid]]</parentid>
1868
+ <value></value>
1869
+ <is_dependant>1</is_dependant>
1870
+ <is_exclusive>0</is_exclusive>
1871
+ </action>
1872
+ <action>
1873
+ <action_id>set_metadata_field_text_5921924796_name</action_id>
1874
+ <action_type>set_attribute_value</action_type>
1875
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1876
+ <attribute>name</attribute>
1877
+ <value><![CDATA[id_field]]></value>
1878
+ </action>
1879
+ <action>
1880
+ <action_id>set_metadata_field_text_5921924796_friendly_name</action_id>
1881
+ <action_type>set_attribute_value</action_type>
1882
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1883
+ <attribute>friendly_name</attribute>
1884
+ <value><![CDATA[Id field]]></value>
1885
+ </action>
1886
+ <action>
1887
+ <action_id>set_metadata_field_text_5921924796_default</action_id>
1888
+ <action_type>set_attribute_value</action_type>
1889
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1890
+ <attribute>default</attribute>
1891
+ <value><![CDATA[]]></value>
1892
+ </action>
1893
+ <action>
1894
+ <action_id>set_metadata_field_text_5921924796_description</action_id>
1895
+ <action_type>set_attribute_value</action_type>
1896
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1897
+ <attribute>description</attribute>
1898
+ <value><![CDATA[]]></value>
1899
+ </action>
1900
+ <action>
1901
+ <action_id>set_metadata_field_text_5921924796_editable</action_id>
1902
+ <action_type>set_attribute_value</action_type>
1903
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1904
+ <attribute>editable</attribute>
1905
+ <value><![CDATA[1]]></value>
1906
+ </action>
1907
+ <action>
1908
+ <action_id>set_metadata_field_text_5921924796_editable</action_id>
1909
+ <action_type>set_attribute_value</action_type>
1910
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1911
+ <attribute>editable</attribute>
1912
+ <value><![CDATA[1]]></value>
1913
+ </action>
1914
+ <action>
1915
+ <action_id>set_metadata_field_text_5921924796_required</action_id>
1916
+ <action_type>set_attribute_value</action_type>
1917
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1918
+ <attribute>required</attribute>
1919
+ <value><![CDATA[0]]></value>
1920
+ </action>
1921
+ <action>
1922
+ <action_id>set_permission_5921924796_read_5</action_id>
1923
+ <action_type>set_permission</action_type>
1924
+ <asset>[[output://create_metadata_field_text_5921924796.assetid]]</asset>
1925
+ <permission>1</permission>
1926
+ <granted>1</granted>
1927
+ <userid>[[system://public_user]]</userid>
1928
+ </action>
1929
+ </actions>