@quintype/arrow 3.54.1-debug-full-bleed.4 → 3.54.1-version-upgrade.1

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 (648) hide show
  1. package/.babelrc +12 -0
  2. package/.circleci/config.yml +43 -0
  3. package/.eslintrc.json +35 -0
  4. package/.prettierrc +6 -0
  5. package/.storybook/addons.js +4 -0
  6. package/.storybook/main.js +7 -0
  7. package/.storybook/preview.js +3 -0
  8. package/.storybook/webpack.config.js +8 -0
  9. package/.stylelintrc +10 -0
  10. package/.vscode/extensions.json +16 -0
  11. package/.vscode/settings.json +12 -0
  12. package/CHANGELOG.md +2578 -0
  13. package/__mocks__/fileMock.js +1 -0
  14. package/__mocks__/styleMock.js +1 -0
  15. package/assets/stylesheets/mixins.scss +35 -0
  16. package/assets/stylesheets/reset.scss +148 -0
  17. package/assets/stylesheets/viewports.m.css +3 -0
  18. package/bin-dev-scripts/prepublish.sh +11 -0
  19. package/bin-dev-scripts/sync-to.sh +13 -0
  20. package/jest.config.json +14 -0
  21. package/package.json +138 -1
  22. package/publish +24 -0
  23. package/rollup.js +202 -0
  24. package/setupTests.js +3 -0
  25. package/src/components/Atoms/AdPlaceholder/ads.m.css +13 -0
  26. package/src/components/Atoms/AdPlaceholder/index.js +25 -0
  27. package/src/components/Atoms/AudioPlayer/PlayerBase.js +150 -0
  28. package/src/components/Atoms/AudioPlayer/PlayerControls.js +155 -0
  29. package/src/components/Atoms/AudioPlayer/ProgressBar.js +24 -0
  30. package/src/components/Atoms/AudioPlayer/audio.m.css +201 -0
  31. package/src/components/Atoms/AudioPlayer/index.js +59 -0
  32. package/src/components/Atoms/AudioPlayer/progressbar.m.css +48 -0
  33. package/src/components/Atoms/Author/README.md +19 -0
  34. package/src/components/Atoms/Author/author.m.css +62 -0
  35. package/src/components/Atoms/Author/index.js +112 -0
  36. package/src/components/Atoms/Author/stories.js +23 -0
  37. package/src/components/Atoms/AuthorCard/README.md +55 -0
  38. package/src/components/Atoms/AuthorCard/author-card.m.css +224 -0
  39. package/src/components/Atoms/AuthorCard/author-card.test.js +97 -0
  40. package/src/components/Atoms/AuthorCard/index.js +312 -0
  41. package/src/components/Atoms/AuthorCard/stories.js +164 -0
  42. package/src/components/Atoms/AuthorImage/README.md +31 -0
  43. package/src/components/Atoms/AuthorImage/author-image.m.css +53 -0
  44. package/src/components/Atoms/AuthorImage/index.js +62 -0
  45. package/src/components/Atoms/AuthorImage/stories.js +20 -0
  46. package/src/components/Atoms/AuthorWithTimestamp/README.md +12 -0
  47. package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +40 -0
  48. package/src/components/Atoms/AuthorWithTimestamp/index.js +115 -0
  49. package/src/components/Atoms/AuthorWithTimestamp/stories.js +27 -0
  50. package/src/components/Atoms/BulletPoint/README.md +9 -0
  51. package/src/components/Atoms/BulletPoint/bullet-point.m.css +25 -0
  52. package/src/components/Atoms/BulletPoint/index.js +19 -0
  53. package/src/components/Atoms/BulletPoint/stories.js +6 -0
  54. package/src/components/Atoms/CaptionAttribution/README.md +15 -0
  55. package/src/components/Atoms/CaptionAttribution/caption-attribution.m.css +40 -0
  56. package/src/components/Atoms/CaptionAttribution/caption-attribution.test.js +29 -0
  57. package/src/components/Atoms/CaptionAttribution/index.js +40 -0
  58. package/src/components/Atoms/CaptionAttribution/stories.js +40 -0
  59. package/src/components/Atoms/CollectionName/README.md +11 -0
  60. package/src/components/Atoms/CollectionName/collection-name.m.css +106 -0
  61. package/src/components/Atoms/CollectionName/index.js +147 -0
  62. package/src/components/Atoms/CollectionName/stories.js +52 -0
  63. package/src/components/Atoms/Divider/__snapshots__/divider.test.js.snap +18 -0
  64. package/src/components/Atoms/Divider/divider.m.css +6 -0
  65. package/src/components/Atoms/Divider/divider.test.js +10 -0
  66. package/src/components/Atoms/Divider/index.js +20 -0
  67. package/src/components/Atoms/Dot/dot.js +20 -0
  68. package/src/components/Atoms/Dot/dot.m.css +6 -0
  69. package/src/components/Atoms/ExtendedLoadMore/README.md +9 -0
  70. package/src/components/Atoms/ExtendedLoadMore/__snapshots__/extended-load-more.test.js.snap +11 -0
  71. package/src/components/Atoms/ExtendedLoadMore/extended-load-more.test.js +19 -0
  72. package/src/components/Atoms/ExtendedLoadMore/index.js +114 -0
  73. package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
  74. package/src/components/Atoms/FallbackImage/index.js +39 -0
  75. package/src/components/Atoms/Headline/README.md +7 -0
  76. package/src/components/Atoms/Headline/headline.m.css +67 -0
  77. package/src/components/Atoms/Headline/index.js +112 -0
  78. package/src/components/Atoms/Headline/stories.js +52 -0
  79. package/src/components/Atoms/HeroImage/README.md +13 -0
  80. package/src/components/Atoms/HeroImage/hero-image.m.css +99 -0
  81. package/src/components/Atoms/HeroImage/index.js +293 -0
  82. package/src/components/Atoms/HeroImage/stories.js +22 -0
  83. package/src/components/Atoms/Hyperlink/hyperlink.m.css +10 -0
  84. package/src/components/Atoms/Hyperlink/index.js +24 -0
  85. package/src/components/Atoms/LoadMoreTarget/index.js +30 -0
  86. package/src/components/Atoms/LoadMoreTarget/load-more-target.m.css +7 -0
  87. package/src/components/Atoms/Loadmore/README.md +0 -0
  88. package/src/components/Atoms/Loadmore/__snapshots__/load-more.test.js.snap +25 -0
  89. package/src/components/Atoms/Loadmore/index.js +54 -0
  90. package/src/components/Atoms/Loadmore/load-more.m.css +23 -0
  91. package/src/components/Atoms/Loadmore/load-more.test.js +30 -0
  92. package/src/components/Atoms/Loadmore/stories.js +17 -0
  93. package/src/components/Atoms/MagazineCoverImage/README.md +21 -0
  94. package/src/components/Atoms/MagazineCoverImage/index.js +73 -0
  95. package/src/components/Atoms/MagazineCoverImage/magazine-cover-image.m.css +24 -0
  96. package/src/components/Atoms/MagazineCoverImage/stories.js +21 -0
  97. package/src/components/Atoms/PremiumStoryIcon/index.js +27 -0
  98. package/src/components/Atoms/PublishDetail/README.md +15 -0
  99. package/src/components/Atoms/PublishDetail/index.js +105 -0
  100. package/src/components/Atoms/PublishDetail/publish-details.m.css +53 -0
  101. package/src/components/Atoms/PublishDetail/publish-details.test.js +35 -0
  102. package/src/components/Atoms/PublishDetail/stories.js +22 -0
  103. package/src/components/Atoms/ReadTime/README.md +13 -0
  104. package/src/components/Atoms/ReadTime/index.js +59 -0
  105. package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
  106. package/src/components/Atoms/ReadTime/read-time.test.js +27 -0
  107. package/src/components/Atoms/ReadTime/stories.js +19 -0
  108. package/src/components/Atoms/ResponsiveImg/index.js +174 -0
  109. package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +67 -0
  110. package/src/components/Atoms/ScrollSnap/SliderArrow/slider-arrow.m.css +45 -0
  111. package/src/components/Atoms/ScrollSnap/SliderIndicator/index.js +41 -0
  112. package/src/components/Atoms/ScrollSnap/SliderIndicator/slider-indicator.m.css +71 -0
  113. package/src/components/Atoms/ScrollSnap/index.js +179 -0
  114. package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +26 -0
  115. package/src/components/Atoms/SectionTag/README.md +11 -0
  116. package/src/components/Atoms/SectionTag/index.js +74 -0
  117. package/src/components/Atoms/SectionTag/section.m.css +53 -0
  118. package/src/components/Atoms/SectionTag/stories.js +26 -0
  119. package/src/components/Atoms/SocialSharePopup/README.md +25 -0
  120. package/src/components/Atoms/SocialSharePopup/__snapshots__/social-share-popup.test.js.snap +259 -0
  121. package/src/components/Atoms/SocialSharePopup/index.js +122 -0
  122. package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +287 -0
  123. package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +101 -0
  124. package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
  125. package/src/components/Atoms/SponsoredLabel/index.js +52 -0
  126. package/src/components/Atoms/SponsoredLabel/sponsored-lable.m.css +17 -0
  127. package/src/components/Atoms/StoryDemarcationIcon/index.js +127 -0
  128. package/src/components/Atoms/StoryElements/AISummary/ai-icons.js +51 -0
  129. package/src/components/Atoms/StoryElements/AISummary/ai-summary.m.css +106 -0
  130. package/src/components/Atoms/StoryElements/AISummary/index.js +206 -0
  131. package/src/components/Atoms/StoryElements/AISummary/stories.js +27 -0
  132. package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
  133. package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +133 -0
  134. package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
  135. package/src/components/Atoms/StoryElements/AlsoRead/index.js +126 -0
  136. package/src/components/Atoms/StoryElements/AlsoRead/stories.js +40 -0
  137. package/src/components/Atoms/StoryElements/Attachment/README.md +21 -0
  138. package/src/components/Atoms/StoryElements/Attachment/__snapshots__/attachment.test.js.snap +47 -0
  139. package/src/components/Atoms/StoryElements/Attachment/attachment.m.css +127 -0
  140. package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
  141. package/src/components/Atoms/StoryElements/Attachment/index.js +63 -0
  142. package/src/components/Atoms/StoryElements/Attachment/stories.js +48 -0
  143. package/src/components/Atoms/StoryElements/BigFact/README.md +9 -0
  144. package/src/components/Atoms/StoryElements/BigFact/big-fact.m.css +41 -0
  145. package/src/components/Atoms/StoryElements/BigFact/big-fact.test.js +21 -0
  146. package/src/components/Atoms/StoryElements/BigFact/index.js +33 -0
  147. package/src/components/Atoms/StoryElements/BigFact/stories.js +9 -0
  148. package/src/components/Atoms/StoryElements/BlockQuote/README.md +49 -0
  149. package/src/components/Atoms/StoryElements/BlockQuote/Svg/curve.js +27 -0
  150. package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +27 -0
  151. package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +11 -0
  152. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +170 -0
  153. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.test.js +48 -0
  154. package/src/components/Atoms/StoryElements/BlockQuote/index.js +82 -0
  155. package/src/components/Atoms/StoryElements/BlockQuote/stories.js +35 -0
  156. package/src/components/Atoms/StoryElements/Blurb/README.md +43 -0
  157. package/src/components/Atoms/StoryElements/Blurb/blurb.m.css +56 -0
  158. package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +71 -0
  159. package/src/components/Atoms/StoryElements/Blurb/index.js +50 -0
  160. package/src/components/Atoms/StoryElements/Blurb/stories.js +28 -0
  161. package/src/components/Atoms/StoryElements/Image/README.md +13 -0
  162. package/src/components/Atoms/StoryElements/Image/image.m.css +21 -0
  163. package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
  164. package/src/components/Atoms/StoryElements/Image/index.js +76 -0
  165. package/src/components/Atoms/StoryElements/Image/stories.js +25 -0
  166. package/src/components/Atoms/StoryElements/ImageSlideshow/README.md +13 -0
  167. package/src/components/Atoms/StoryElements/ImageSlideshow/image-slideshow.m.css +63 -0
  168. package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +101 -0
  169. package/src/components/Atoms/StoryElements/ImageSlideshow/stories.js +34 -0
  170. package/src/components/Atoms/StoryElements/QuestionAnswer/README.md +56 -0
  171. package/src/components/Atoms/StoryElements/QuestionAnswer/index.js +150 -0
  172. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +185 -0
  173. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.test.js +74 -0
  174. package/src/components/Atoms/StoryElements/QuestionAnswer/stories.js +79 -0
  175. package/src/components/Atoms/StoryElements/Quote/README.md +41 -0
  176. package/src/components/Atoms/StoryElements/Quote/index.js +45 -0
  177. package/src/components/Atoms/StoryElements/Quote/quote.m.css +125 -0
  178. package/src/components/Atoms/StoryElements/Quote/quote.test.js +58 -0
  179. package/src/components/Atoms/StoryElements/Quote/stories.js +28 -0
  180. package/src/components/Atoms/StoryElements/Reference/README.md +9 -0
  181. package/src/components/Atoms/StoryElements/Reference/index.js +52 -0
  182. package/src/components/Atoms/StoryElements/Reference/reference.m.css +42 -0
  183. package/src/components/Atoms/StoryElements/Reference/reference.test.js +28 -0
  184. package/src/components/Atoms/StoryElements/Reference/stories.js +18 -0
  185. package/src/components/Atoms/StoryElements/StoryElement/README.md +10 -0
  186. package/src/components/Atoms/StoryElements/StoryElement/index.js +35 -0
  187. package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
  188. package/src/components/Atoms/StoryElements/StoryElement/storyElement.m.css +23 -0
  189. package/src/components/Atoms/StoryElements/StoryElement/storyelement.test.js +13 -0
  190. package/src/components/Atoms/StoryElements/Summary/README.md +56 -0
  191. package/src/components/Atoms/StoryElements/Summary/index.js +67 -0
  192. package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
  193. package/src/components/Atoms/StoryElements/Summary/summary.m.css +169 -0
  194. package/src/components/Atoms/StoryElements/Summary/summary.test.js +50 -0
  195. package/src/components/Atoms/StoryElements/Text/README.md +32 -0
  196. package/src/components/Atoms/StoryElements/Text/index.js +40 -0
  197. package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
  198. package/src/components/Atoms/StoryElements/Text/text.m.css +88 -0
  199. package/src/components/Atoms/StoryElements/Text/text.test.js +42 -0
  200. package/src/components/Atoms/StoryElements/Video/README.md +9 -0
  201. package/src/components/Atoms/StoryElements/Video/index.js +46 -0
  202. package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
  203. package/src/components/Atoms/StoryElements/Video/video.m.css +142 -0
  204. package/src/components/Atoms/StoryElements/Video/video.test.js +19 -0
  205. package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
  206. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +52 -0
  207. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
  208. package/src/components/Atoms/StoryElements/imageGallery/index.js +79 -0
  209. package/src/components/Atoms/StoryElements/imageGallery/stories.js +23 -0
  210. package/src/components/Atoms/StoryElements/withElementWrapper.js +13 -0
  211. package/src/components/Atoms/StoryElements/withElementWrapper.test.js +31 -0
  212. package/src/components/Atoms/StoryHeadline/index.js +56 -0
  213. package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
  214. package/src/components/Atoms/StoryReview/README.md +9 -0
  215. package/src/components/Atoms/StoryReview/index.js +39 -0
  216. package/src/components/Atoms/StoryReview/stories.js +8 -0
  217. package/src/components/Atoms/StoryReview/story-review.m.css +34 -0
  218. package/src/components/Atoms/StoryTags/README.md +9 -0
  219. package/src/components/Atoms/StoryTags/index.js +33 -0
  220. package/src/components/Atoms/StoryTags/stories.js +25 -0
  221. package/src/components/Atoms/StoryTags/story-tags.test.js +18 -0
  222. package/src/components/Atoms/StoryTags/tags.m.css +42 -0
  223. package/src/components/Atoms/Subheadline/README.md +17 -0
  224. package/src/components/Atoms/Subheadline/index.js +54 -0
  225. package/src/components/Atoms/Subheadline/stories.js +12 -0
  226. package/src/components/Atoms/Subheadline/subheadline.m.css +17 -0
  227. package/src/components/Atoms/TimeStamp/README.md +9 -0
  228. package/src/components/Atoms/TimeStamp/index.js +83 -0
  229. package/src/components/Atoms/TimeStamp/stories.js +9 -0
  230. package/src/components/Atoms/TimeStamp/timestamp.m.css +21 -0
  231. package/src/components/Fixture/config.json +2703 -0
  232. package/src/components/Fixture/dummy-collection.js +2790 -0
  233. package/src/components/Fixture/dummyStory.js +2368 -0
  234. package/src/components/Fixture/index.js +425 -0
  235. package/src/components/Fixture/slot-config.js +29 -0
  236. package/src/components/Fixture/timezone.js +1 -0
  237. package/src/components/Molecules/FollowUs/README.md +17 -0
  238. package/src/components/Molecules/FollowUs/follow-us.m.css +99 -0
  239. package/src/components/Molecules/FollowUs/index.js +97 -0
  240. package/src/components/Molecules/FollowUs/stories.js +9 -0
  241. package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +56 -0
  242. package/src/components/Molecules/FullScreenImages/index.js +98 -0
  243. package/src/components/Molecules/KeyEvents/README.md +21 -0
  244. package/src/components/Molecules/KeyEvents/index.js +132 -0
  245. package/src/components/Molecules/KeyEvents/key-events.m.css +103 -0
  246. package/src/components/Molecules/KeyEvents/stories.js +28 -0
  247. package/src/components/Molecules/PageIntroductionCard/README.md +25 -0
  248. package/src/components/Molecules/PageIntroductionCard/index.js +50 -0
  249. package/src/components/Molecules/PageIntroductionCard/page-intro-card.m.css +61 -0
  250. package/src/components/Molecules/PageIntroductionCard/stories.js +16 -0
  251. package/src/components/Molecules/PortraitStoryCard/README.md +10 -0
  252. package/src/components/Molecules/PortraitStoryCard/index.js +54 -0
  253. package/src/components/Molecules/PortraitStoryCard/portrait-story-card.m.css +42 -0
  254. package/src/components/Molecules/PortraitStoryCard/stories.js +24 -0
  255. package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
  256. package/src/components/Molecules/SliderHorizontalCard/index.js +44 -0
  257. package/src/components/Molecules/SliderHorizontalCard/slider-horizontal-card.m.css +42 -0
  258. package/src/components/Molecules/SliderHorizontalCard/stories.js +30 -0
  259. package/src/components/Molecules/SocialShareTemplate/README.md +118 -0
  260. package/src/components/Molecules/SocialShareTemplate/__snapshots__/social-share-template.test.js.snap +285 -0
  261. package/src/components/Molecules/SocialShareTemplate/index.js +299 -0
  262. package/src/components/Molecules/SocialShareTemplate/social-share-data.js +205 -0
  263. package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +340 -0
  264. package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +147 -0
  265. package/src/components/Molecules/SocialShareTemplate/stories.js +45 -0
  266. package/src/components/Molecules/StoryCard/README.md +75 -0
  267. package/src/components/Molecules/StoryCard/READMEBGIMAGE.md +25 -0
  268. package/src/components/Molecules/StoryCard/READMEBORDER.md +61 -0
  269. package/src/components/Molecules/StoryCard/index.js +248 -0
  270. package/src/components/Molecules/StoryCard/stories.js +223 -0
  271. package/src/components/Molecules/StoryCard/storycard.m.css +197 -0
  272. package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
  273. package/src/components/Molecules/StoryCardWithBulletPoint/index.js +33 -0
  274. package/src/components/Molecules/StoryCardWithBulletPoint/stories.js +31 -0
  275. package/src/components/Molecules/StoryCardWithBulletPoint/story-card-with-bullet-point.m.css +7 -0
  276. package/src/components/Molecules/StoryElementCard/README.md +9 -0
  277. package/src/components/Molecules/StoryElementCard/index.js +511 -0
  278. package/src/components/Molecules/StoryElementCard/stories.js +27 -0
  279. package/src/components/Molecules/StoryElementCard/story-element-card.m.css +102 -0
  280. package/src/components/Molecules/StorycardContent/README.md +34 -0
  281. package/src/components/Molecules/StorycardContent/index.js +85 -0
  282. package/src/components/Molecules/StorycardContent/stories.js +39 -0
  283. package/src/components/Molecules/StorycardContent/storycardContent.m.css +27 -0
  284. package/src/components/Rows/AlternateCollectionFilter/README.md +38 -0
  285. package/src/components/Rows/AlternateCollectionFilter/alternate-collection-filter.m.css +254 -0
  286. package/src/components/Rows/AlternateCollectionFilter/index.js +179 -0
  287. package/src/components/Rows/AlternateCollectionFilter/stories.js +74 -0
  288. package/src/components/Rows/AsideCollection/README.md +27 -0
  289. package/src/components/Rows/AsideCollection/aside-collection.m.css +125 -0
  290. package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
  291. package/src/components/Rows/AsideCollection/index.js +247 -0
  292. package/src/components/Rows/AsideCollection/stories.js +52 -0
  293. package/src/components/Rows/AstrologyCollection/README.md +40 -0
  294. package/src/components/Rows/AstrologyCollection/astrology-collection.m.css +173 -0
  295. package/src/components/Rows/AstrologyCollection/index.js +176 -0
  296. package/src/components/Rows/AstrologyCollection/stories.js +60 -0
  297. package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
  298. package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +334 -0
  299. package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
  300. package/src/components/Rows/AuthorIntroductionCard/index.js +126 -0
  301. package/src/components/Rows/AuthorIntroductionCard/stories.js +43 -0
  302. package/src/components/Rows/AuthorsList/README.md +24 -0
  303. package/src/components/Rows/AuthorsList/author-list.test.js +50 -0
  304. package/src/components/Rows/AuthorsList/authors-list.m.css +22 -0
  305. package/src/components/Rows/AuthorsList/index.js +48 -0
  306. package/src/components/Rows/AuthorsList/stories.js +61 -0
  307. package/src/components/Rows/CollectionFilter/README.md +39 -0
  308. package/src/components/Rows/CollectionFilter/collection-filter.m.css +213 -0
  309. package/src/components/Rows/CollectionFilter/index.js +240 -0
  310. package/src/components/Rows/CollectionFilter/stories.js +77 -0
  311. package/src/components/Rows/ElevenStories/11-stories.m.css +85 -0
  312. package/src/components/Rows/ElevenStories/README.md +39 -0
  313. package/src/components/Rows/ElevenStories/index.js +338 -0
  314. package/src/components/Rows/ElevenStories/stories.js +70 -0
  315. package/src/components/Rows/FourColFiveStories/README.md +37 -0
  316. package/src/components/Rows/FourColFiveStories/four-col-five-stories.m.css +115 -0
  317. package/src/components/Rows/FourColFiveStories/index.js +170 -0
  318. package/src/components/Rows/FourColFiveStories/stories.js +68 -0
  319. package/src/components/Rows/FourColGrid/README.md +39 -0
  320. package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
  321. package/src/components/Rows/FourColGrid/index.js +164 -0
  322. package/src/components/Rows/FourColGrid/stories.js +66 -0
  323. package/src/components/Rows/FourColPortraitStories/README.md +38 -0
  324. package/src/components/Rows/FourColPortraitStories/four-col-portrait-stories.m.css +45 -0
  325. package/src/components/Rows/FourColPortraitStories/index.js +149 -0
  326. package/src/components/Rows/FourColPortraitStories/stories.js +66 -0
  327. package/src/components/Rows/FourColSixteenStories/README.md +35 -0
  328. package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +165 -0
  329. package/src/components/Rows/FourColSixteenStories/index.js +136 -0
  330. package/src/components/Rows/FourColSixteenStories/stories.js +47 -0
  331. package/src/components/Rows/FourColTwelveStory/README.md +39 -0
  332. package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +80 -0
  333. package/src/components/Rows/FourColTwelveStory/index.js +175 -0
  334. package/src/components/Rows/FourColTwelveStory/stories.js +117 -0
  335. package/src/components/Rows/FourStorySlider/README.md +45 -0
  336. package/src/components/Rows/FourStorySlider/four-story-slider.m.css +78 -0
  337. package/src/components/Rows/FourStorySlider/index.js +128 -0
  338. package/src/components/Rows/FourStorySlider/stories.js +117 -0
  339. package/src/components/Rows/FourStorySliderPortrait/README.md +45 -0
  340. package/src/components/Rows/FourStorySliderPortrait/four-story-slider-portrait.m.css +272 -0
  341. package/src/components/Rows/FourStorySliderPortrait/index.js +128 -0
  342. package/src/components/Rows/FourStorySliderPortrait/stories.js +117 -0
  343. package/src/components/Rows/FourTabbedBigStorySlider/README.md +39 -0
  344. package/src/components/Rows/FourTabbedBigStorySlider/four-tabbed-big-story-slider.m.css +265 -0
  345. package/src/components/Rows/FourTabbedBigStorySlider/index.js +159 -0
  346. package/src/components/Rows/FourTabbedBigStorySlider/stories.js +63 -0
  347. package/src/components/Rows/FullScreenSlider/README.md +46 -0
  348. package/src/components/Rows/FullScreenSlider/full-screen-slider.m.css +162 -0
  349. package/src/components/Rows/FullScreenSlider/index.js +122 -0
  350. package/src/components/Rows/FullScreenSlider/stories.js +115 -0
  351. package/src/components/Rows/HalfScreenSlider/README.md +43 -0
  352. package/src/components/Rows/HalfScreenSlider/half-screen-slider.m.css +80 -0
  353. package/src/components/Rows/HalfScreenSlider/index.js +112 -0
  354. package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
  355. package/src/components/Rows/IntroductionCard/README.md +11 -0
  356. package/src/components/Rows/IntroductionCard/index.js +72 -0
  357. package/src/components/Rows/IntroductionCard/intro-card.module.css +102 -0
  358. package/src/components/Rows/IntroductionCard/stories.js +32 -0
  359. package/src/components/Rows/ListComponent/README.md +48 -0
  360. package/src/components/Rows/ListComponent/index.js +149 -0
  361. package/src/components/Rows/ListComponent/list-component.m.css +65 -0
  362. package/src/components/Rows/ListComponent/stories.js +63 -0
  363. package/src/components/Rows/Listicles/README.md +32 -0
  364. package/src/components/Rows/Listicles/index.js +162 -0
  365. package/src/components/Rows/Listicles/listicles.m.css +149 -0
  366. package/src/components/Rows/Listicles/stories.js +66 -0
  367. package/src/components/Rows/MagazineEditions/README.md +21 -0
  368. package/src/components/Rows/MagazineEditions/index.js +96 -0
  369. package/src/components/Rows/MagazineEditions/magazine-editions.m.css +50 -0
  370. package/src/components/Rows/MagazineEditions/magazine-editions.test.js +33 -0
  371. package/src/components/Rows/MagazineEditions/stories.js +45 -0
  372. package/src/components/Rows/MagazineHeaderCard/README.md +21 -0
  373. package/src/components/Rows/MagazineHeaderCard/index.js +77 -0
  374. package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +107 -0
  375. package/src/components/Rows/MagazineHeaderCard/stories.js +36 -0
  376. package/src/components/Rows/MagazineWidget/README.md +21 -0
  377. package/src/components/Rows/MagazineWidget/index.js +132 -0
  378. package/src/components/Rows/MagazineWidget/stories.js +43 -0
  379. package/src/components/Rows/OneColStoryList/README.md +48 -0
  380. package/src/components/Rows/OneColStoryList/index.js +217 -0
  381. package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +91 -0
  382. package/src/components/Rows/OneColStoryList/stories.js +61 -0
  383. package/src/components/Rows/OpinionCollection/README.md +36 -0
  384. package/src/components/Rows/OpinionCollection/index.js +156 -0
  385. package/src/components/Rows/OpinionCollection/opinion-collection.m.css +210 -0
  386. package/src/components/Rows/OpinionCollection/stories.js +82 -0
  387. package/src/components/Rows/SixColSixStories/README.md +39 -0
  388. package/src/components/Rows/SixColSixStories/index.js +182 -0
  389. package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +92 -0
  390. package/src/components/Rows/SixColSixStories/stories.js +76 -0
  391. package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/custom-attributes.m.css +78 -0
  392. package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/index.js +103 -0
  393. package/src/components/Rows/StoryTemplates/EventStoryTemplates/event-story.m.css +138 -0
  394. package/src/components/Rows/StoryTemplates/EventStoryTemplates/index.js +56 -0
  395. package/src/components/Rows/StoryTemplates/EventStoryTemplates/stories.js +78 -0
  396. package/src/components/Rows/StoryTemplates/EventStoryTemplates/template.js +169 -0
  397. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
  398. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +841 -0
  399. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +477 -0
  400. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +285 -0
  401. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
  402. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicleUtils.js +16 -0
  403. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +125 -0
  404. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
  405. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +74 -0
  406. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +320 -0
  407. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +114 -0
  408. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +449 -0
  409. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +381 -0
  410. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
  411. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +199 -0
  412. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +117 -0
  413. package/src/components/Rows/StoryTemplates/Snapshot/README.md +9 -0
  414. package/src/components/Rows/StoryTemplates/Snapshot/index.js +103 -0
  415. package/src/components/Rows/StoryTemplates/Snapshot/snapshot.m.css +88 -0
  416. package/src/components/Rows/StoryTemplates/Snapshot/stories.js +95 -0
  417. package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
  418. package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +100 -0
  419. package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +120 -0
  420. package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +413 -0
  421. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +496 -0
  422. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.test.js +222 -0
  423. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/README.md +31 -0
  424. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/index.js +294 -0
  425. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +217 -0
  426. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +185 -0
  427. package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
  428. package/src/components/Rows/ThreeColFlexStories/index.js +217 -0
  429. package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
  430. package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +58 -0
  431. package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
  432. package/src/components/Rows/ThreeColFourteenStory/index.js +131 -0
  433. package/src/components/Rows/ThreeColFourteenStory/stories.js +60 -0
  434. package/src/components/Rows/ThreeColFourteenStory/three-col-fourteen-story.m.css +51 -0
  435. package/src/components/Rows/ThreeColGrid/README.md +36 -0
  436. package/src/components/Rows/ThreeColGrid/index.js +177 -0
  437. package/src/components/Rows/ThreeColGrid/stories.js +70 -0
  438. package/src/components/Rows/ThreeColGrid/three-col.m.css +43 -0
  439. package/src/components/Rows/ThreeColSevenStory/README.md +36 -0
  440. package/src/components/Rows/ThreeColSevenStory/index.js +242 -0
  441. package/src/components/Rows/ThreeColSevenStory/stories.js +103 -0
  442. package/src/components/Rows/ThreeColSevenStory/three-col-seven-story.m.css +44 -0
  443. package/src/components/Rows/ThreeColSixStories/README.md +40 -0
  444. package/src/components/Rows/ThreeColSixStories/index.js +183 -0
  445. package/src/components/Rows/ThreeColSixStories/stories.js +73 -0
  446. package/src/components/Rows/ThreeColSixStories/three-col-six-stories.m.css +32 -0
  447. package/src/components/Rows/ThreeColTwelveStories/README.md +41 -0
  448. package/src/components/Rows/ThreeColTwelveStories/index.js +153 -0
  449. package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
  450. package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +105 -0
  451. package/src/components/Rows/TwoColFourStory/README.md +33 -0
  452. package/src/components/Rows/TwoColFourStory/index.js +162 -0
  453. package/src/components/Rows/TwoColFourStory/stories.js +68 -0
  454. package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +66 -0
  455. package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
  456. package/src/components/Rows/TwoColFourStoryHighlight/index.js +138 -0
  457. package/src/components/Rows/TwoColFourStoryHighlight/stories.js +48 -0
  458. package/src/components/Rows/TwoColFourStoryHighlight/two-col-four-story-highlight.m.css +116 -0
  459. package/src/components/Rows/TwoColSevenStories/README.md +37 -0
  460. package/src/components/Rows/TwoColSevenStories/index.js +150 -0
  461. package/src/components/Rows/TwoColSevenStories/stories.js +100 -0
  462. package/src/components/Rows/TwoColSevenStories/two-col-seven-stories.m.css +182 -0
  463. package/src/components/Rows/TwoColSixStories/README.md +36 -0
  464. package/src/components/Rows/TwoColSixStories/index.js +140 -0
  465. package/src/components/Rows/TwoColSixStories/stories.js +67 -0
  466. package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +174 -0
  467. package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
  468. package/src/components/Rows/TwoColTenStoriesSidebar/index.js +193 -0
  469. package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
  470. package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +64 -0
  471. package/src/components/Rows/TwoColThreeStory/README.md +40 -0
  472. package/src/components/Rows/TwoColThreeStory/index.js +155 -0
  473. package/src/components/Rows/TwoColThreeStory/stories.js +68 -0
  474. package/src/components/Rows/TwoColThreeStory/two-col-three-story.m.css +36 -0
  475. package/src/components/SharedContext.js +13 -0
  476. package/src/components/Svgs/Loading/loading.js +133 -0
  477. package/src/components/Svgs/Loading/loading.m.css +6 -0
  478. package/src/components/Svgs/SocialIcons/circular-color/copylink.js +22 -0
  479. package/src/components/Svgs/SocialIcons/circular-color/email.js +16 -0
  480. package/src/components/Svgs/SocialIcons/circular-color/facebook.js +23 -0
  481. package/src/components/Svgs/SocialIcons/circular-color/instagram.js +24 -0
  482. package/src/components/Svgs/SocialIcons/circular-color/jio.js +30 -0
  483. package/src/components/Svgs/SocialIcons/circular-color/linkedin.js +16 -0
  484. package/src/components/Svgs/SocialIcons/circular-color/pinterest.js +16 -0
  485. package/src/components/Svgs/SocialIcons/circular-color/reddit.js +27 -0
  486. package/src/components/Svgs/SocialIcons/circular-color/telegram.js +16 -0
  487. package/src/components/Svgs/SocialIcons/circular-color/tiktok.js +40 -0
  488. package/src/components/Svgs/SocialIcons/circular-color/twitter.js +22 -0
  489. package/src/components/Svgs/SocialIcons/circular-color/whatsapp.js +18 -0
  490. package/src/components/Svgs/SocialIcons/circular-color/youtube.js +16 -0
  491. package/src/components/Svgs/SocialIcons/circular-plain/copylink.js +19 -0
  492. package/src/components/Svgs/SocialIcons/circular-plain/email.js +19 -0
  493. package/src/components/Svgs/SocialIcons/circular-plain/facebook.js +29 -0
  494. package/src/components/Svgs/SocialIcons/circular-plain/instagram.js +21 -0
  495. package/src/components/Svgs/SocialIcons/circular-plain/linkedin.js +21 -0
  496. package/src/components/Svgs/SocialIcons/circular-plain/reddit.js +33 -0
  497. package/src/components/Svgs/SocialIcons/circular-plain/telegram.js +22 -0
  498. package/src/components/Svgs/SocialIcons/circular-plain/twitter.js +21 -0
  499. package/src/components/Svgs/SocialIcons/circular-plain/whatsapp.js +23 -0
  500. package/src/components/Svgs/SocialIcons/circular-plain/youtube.js +17 -0
  501. package/src/components/Svgs/SocialIcons/plain/copylink.js +17 -0
  502. package/src/components/Svgs/SocialIcons/plain/email.js +23 -0
  503. package/src/components/Svgs/SocialIcons/plain/facebook.js +21 -0
  504. package/src/components/Svgs/SocialIcons/plain/google-news.js +26 -0
  505. package/src/components/Svgs/SocialIcons/plain/instagram.js +17 -0
  506. package/src/components/Svgs/SocialIcons/plain/linkedin.js +17 -0
  507. package/src/components/Svgs/SocialIcons/plain/pinterest.js +19 -0
  508. package/src/components/Svgs/SocialIcons/plain/reddit.js +25 -0
  509. package/src/components/Svgs/SocialIcons/plain/twitter.js +17 -0
  510. package/src/components/Svgs/SocialIcons/plain/whatsapp.js +19 -0
  511. package/src/components/Svgs/SocialIcons/plain/youtube.js +17 -0
  512. package/src/components/Svgs/SocialIcons/square/copylink.js +19 -0
  513. package/src/components/Svgs/SocialIcons/square/email.js +13 -0
  514. package/src/components/Svgs/SocialIcons/square/facebook.js +20 -0
  515. package/src/components/Svgs/SocialIcons/square/instagram.js +17 -0
  516. package/src/components/Svgs/SocialIcons/square/linkedin.js +13 -0
  517. package/src/components/Svgs/SocialIcons/square/reddit.js +24 -0
  518. package/src/components/Svgs/SocialIcons/square/telegram.js +13 -0
  519. package/src/components/Svgs/SocialIcons/square/twitter.js +19 -0
  520. package/src/components/Svgs/SocialIcons/square/whatsapp.js +15 -0
  521. package/src/components/Svgs/SocialIcons/square/youtube.js +13 -0
  522. package/src/components/Svgs/TTS-Icons/AudioSpeakerIcon.js +14 -0
  523. package/src/components/Svgs/TTS-Icons/BackwardIconSvg.js +13 -0
  524. package/src/components/Svgs/TTS-Icons/ClosePlayerIconSvg.js +13 -0
  525. package/src/components/Svgs/TTS-Icons/ForwordIconSvg.js +13 -0
  526. package/src/components/Svgs/TTS-Icons/PauseIconSvg.js +13 -0
  527. package/src/components/Svgs/TTS-Icons/PlayIconSvg.js +15 -0
  528. package/src/components/Svgs/TTS-Icons/ReplayIcon.js +16 -0
  529. package/src/components/Svgs/back-arrow.js +22 -0
  530. package/src/components/Svgs/calender.js +20 -0
  531. package/src/components/Svgs/caret-right.svg +3 -0
  532. package/src/components/Svgs/clock-icon.js +17 -0
  533. package/src/components/Svgs/close-icon.js +15 -0
  534. package/src/components/Svgs/crown.js +31 -0
  535. package/src/components/Svgs/fallbackImage.js +42 -0
  536. package/src/components/Svgs/hyperlink.js +17 -0
  537. package/src/components/Svgs/key.js +33 -0
  538. package/src/components/Svgs/large-share-icon.js +64 -0
  539. package/src/components/Svgs/left-arrow.js +17 -0
  540. package/src/components/Svgs/liveicon.js +14 -0
  541. package/src/components/Svgs/location.js +19 -0
  542. package/src/components/Svgs/lock.js +31 -0
  543. package/src/components/Svgs/photo-icons.js +84 -0
  544. package/src/components/Svgs/right-arrow.js +17 -0
  545. package/src/components/Svgs/share-icon.js +66 -0
  546. package/src/components/Svgs/star.js +33 -0
  547. package/src/components/Svgs/user-fallback-icon.js +19 -0
  548. package/src/components/Svgs/video-icons.js +104 -0
  549. package/src/components/Svgs/visual-story-icons.js +77 -0
  550. package/src/components/Typography/README.md +7 -0
  551. package/src/components/Typography/index.js +47 -0
  552. package/src/components/Typography/stories.js +10 -0
  553. package/src/components/Typography/style.m.css +11 -0
  554. package/src/constants.js +2 -0
  555. package/src/entry-points.js +373 -0
  556. package/src/guide/stories.js +18 -0
  557. package/src/hydration-component/index.js +37 -0
  558. package/src/hydration-component/useNearScreen.js +56 -0
  559. package/src/index.js +99 -0
  560. package/src/utils/copy-link.js +37 -0
  561. package/src/utils/dateFnsLocales.js +9 -0
  562. package/src/utils/img-size-utils.js +102 -0
  563. package/src/utils/testing-utils.js +8 -0
  564. package/src/utils/utils.js +615 -0
  565. package/src/utils/utils.test.js +108 -0
  566. package/storybook/index.js +83 -0
  567. package/AlsoRead/styles.arrow.css +0 -1
  568. package/AlternateCollectionFilter/styles.arrow.css +0 -1
  569. package/AsideCollection/styles.arrow.css +0 -1
  570. package/AstrologyCollection/styles.arrow.css +0 -1
  571. package/Attachment/styles.arrow.css +0 -1
  572. package/Author/styles.arrow.css +0 -1
  573. package/AuthorIntroductionCard/styles.arrow.css +0 -1
  574. package/AuthorWithTime/styles.arrow.css +0 -1
  575. package/AuthorsList/styles.arrow.css +0 -1
  576. package/BigFact/styles.arrow.css +0 -1
  577. package/BlockQuote/styles.arrow.css +0 -1
  578. package/Blurb/styles.arrow.css +0 -1
  579. package/CollectionFilter/styles.arrow.css +0 -1
  580. package/CollectionName/styles.arrow.css +0 -1
  581. package/ElevenStories/styles.arrow.css +0 -1
  582. package/EventStoryTemplate/styles.arrow.css +0 -1
  583. package/FollowUs/styles.arrow.css +0 -1
  584. package/FourColFiveStories/styles.arrow.css +0 -1
  585. package/FourColGrid/styles.arrow.css +0 -1
  586. package/FourColPortraitStories/styles.arrow.css +0 -1
  587. package/FourColSixteenStories/styles.arrow.css +0 -1
  588. package/FourColTwelveStories/styles.arrow.css +0 -1
  589. package/FourStorySlider/styles.arrow.css +0 -1
  590. package/FourStorySliderPortrait/styles.arrow.css +0 -1
  591. package/FourTabbedBigStorySlider/styles.arrow.css +0 -1
  592. package/FullScreenSlider/styles.arrow.css +0 -1
  593. package/HalfScreenSlider/styles.arrow.css +0 -1
  594. package/Headline/styles.arrow.css +0 -1
  595. package/HeroImage/styles.arrow.css +0 -1
  596. package/Image/styles.arrow.css +0 -1
  597. package/ImageGallery/styles.arrow.css +0 -1
  598. package/ImageSlideshow/styles.arrow.css +0 -1
  599. package/IntroductionCard/styles.arrow.css +0 -1
  600. package/KeyEvents/styles.arrow.css +0 -1
  601. package/ListComponent/styles.arrow.css +0 -1
  602. package/ListicleStoryTemplate/styles.arrow.css +0 -1
  603. package/Listicles/styles.arrow.css +0 -1
  604. package/LiveBlogStoryTemplate/styles.arrow.css +0 -1
  605. package/LoadmoreButton/styles.arrow.css +0 -1
  606. package/MagazineEditions/styles.arrow.css +0 -1
  607. package/MagazineHeaderCard/styles.arrow.css +0 -1
  608. package/MagazineWidget/styles.arrow.css +0 -1
  609. package/OneColStoryList/styles.arrow.css +0 -1
  610. package/OpinionCollection/styles.arrow.css +0 -1
  611. package/PageIntroductionCard/styles.arrow.css +0 -1
  612. package/PhotoStoryTemplate/styles.arrow.css +0 -1
  613. package/PublishDetails/styles.arrow.css +0 -1
  614. package/QuestionAnswer/styles.arrow.css +0 -1
  615. package/Quote/styles.arrow.css +0 -1
  616. package/Reference/styles.arrow.css +0 -1
  617. package/ScrollSnap/styles.arrow.css +0 -1
  618. package/SectionTag/styles.arrow.css +0 -1
  619. package/SixColSixStories/styles.arrow.css +0 -1
  620. package/Snapshot/styles.arrow.css +0 -1
  621. package/SocialShareTemplate/styles.arrow.css +0 -1
  622. package/StoryCard/styles.arrow.css +0 -1
  623. package/StoryCollection/styles.arrow.css +0 -1
  624. package/StoryElement/styles.arrow.css +0 -1
  625. package/StoryElementCard/styles.arrow.css +0 -1
  626. package/StorycardContent/styles.arrow.css +0 -1
  627. package/Subheadline/styles.arrow.css +0 -1
  628. package/Summary/styles.arrow.css +0 -1
  629. package/Text/styles.arrow.css +0 -1
  630. package/TextStoryTemplate/styles.arrow.css +0 -1
  631. package/ThreeColFlexStories/styles.arrow.css +0 -1
  632. package/ThreeColFourteenStories/styles.arrow.css +0 -1
  633. package/ThreeColGrid/styles.arrow.css +0 -1
  634. package/ThreeColSevenStory/styles.arrow.css +0 -1
  635. package/ThreeColSixStories/styles.arrow.css +0 -1
  636. package/ThreeColTwelveStories/styles.arrow.css +0 -1
  637. package/TimeStamp/styles.arrow.css +0 -1
  638. package/TwoColFourStories/styles.arrow.css +0 -1
  639. package/TwoColFourStoryHighlight/styles.arrow.css +0 -1
  640. package/TwoColSevenStories/styles.arrow.css +0 -1
  641. package/TwoColSixStories/styles.arrow.css +0 -1
  642. package/TwoColTenStoriesSidebar/styles.arrow.css +0 -1
  643. package/TwoColThreeStories/styles.arrow.css +0 -1
  644. package/Video/styles.arrow.css +0 -1
  645. package/VideoStoryTemplate/styles.arrow.css +0 -1
  646. package/cjs/index.js +0 -1
  647. package/esm/index.js +0 -1
  648. /package/{app.scss → assets/stylesheets/app.scss} +0 -0
@@ -0,0 +1,2703 @@
1
+ {
2
+ "stripe-publishable-key": null,
3
+ "sketches-host": "https://ace-web.qtstage.io",
4
+ "public-integrations": {
5
+ "facebook": {
6
+ "app-id": "296173334434957"
7
+ },
8
+ "linkedin": {
9
+ "app-id": "818zdjpe6p28n0"
10
+ },
11
+ "twitter": {
12
+ "app-id": "cCauAWFScNgFJv3WLWbxqZ4OD"
13
+ },
14
+ "google": {
15
+ "app-id": "568104192219-fo3pplg00om7824fshreh5e3rafpevfl.apps.googleusercontent.com"
16
+ },
17
+ "one-signal": {
18
+ "app-id": "03ef0b4b-3920-4b9f-9933-2ec237321000"
19
+ }
20
+ },
21
+ "theme-attributes": {
22
+ "subscription_color": "#800080",
23
+ "one_signal_app_id": "hfjkzdfighje",
24
+ "enableAccesstype": "true",
25
+ "footer-quintype-link": "true",
26
+ "subscription-color": "#ff0000",
27
+ "authorFilter": "true",
28
+ "secondary_color": "#a3a3a3",
29
+ "timezone": "Asia/Calcutta",
30
+ "accesstypeKey": "9rm1ijqQmGfJ2kwQ9zt2gWhK",
31
+ "adbutlerConfig": {
32
+ "publisherId": "176031",
33
+ "Horizontal-Ad": "357146",
34
+ "Mrec": "357151",
35
+ "Vertical-Ad": "357148",
36
+ "Story-Mrec": "357152",
37
+ "Story-Middle-Ad": "357149",
38
+ "Story-Bottom-Ad": "357150"
39
+ },
40
+ "primaryFont": "Noto Sans Devanagari",
41
+ "q-and-a-element": "default",
42
+ "disableMetering": "false",
43
+ "amp_enabled": "true",
44
+ "secondary_header_text_color": "#000000",
45
+ "logo": "https://quintype-dropbox.s3-accelerate.amazonaws.com/itsman.quintype.com/2018-12-04/1712/c9b0221acd904f0d968c9feba0c6fefd.png",
46
+ "plan-page-layout": "grid-view",
47
+ "header_text_color": "#a72723",
48
+ "social-share-style": "vertical-color",
49
+ "header_background_color": "#ffffff",
50
+ "photo-story": "hero-priority",
51
+ "footer_background_color": "#0b0b0c",
52
+ "imageFallbackUrl": "",
53
+ "secondary_logo": "https://quintype-dropbox.s3-accelerate.amazonaws.com/itsman.quintype.com/2018-12-04/1712/c9b0221acd904f0d968c9feba0c6fefd.png",
54
+ "secondaryFont": "Mukta Mahee",
55
+ "plan_page_title": "",
56
+ "visual-story-monogram": "https://images.pexels.com/photos/326055/pexels-photo-326055.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
57
+ "accesstype-key": "9rm1ijqQmGfJ2kwQ9zt2gWhK",
58
+ "filterOption": {
59
+ "author-name": "true",
60
+ "story-template": "true",
61
+ "date": "true"
62
+ },
63
+ "primary_header_background_color": "#0433ff",
64
+ "ga_id": "UA-131537578-1",
65
+ "one_signal_apple_web_id": "gshdjksldj",
66
+ "story-elements": {
67
+ "summary": "border",
68
+ "blurb": "blurb2",
69
+ "question-element": "question-element-default",
70
+ "answer-element": "answer-element-default",
71
+ "q-and-a-element": "q-and-a-element-default",
72
+ "attachment-element": "attachment-element-1"
73
+ },
74
+ "dfp_network_id": "54630992873",
75
+ "header_icon_color": "#1e66a7",
76
+ "video-story": "hero-priority",
77
+ "storyTemplateFilter": "true",
78
+ "lang": "en",
79
+ "primary_menu_count": "11",
80
+ "gtm_id": "web.onesignal.auto.516349e1-446e-4cea-8b68-2396bd3ac49a",
81
+ "secondary_header_background_color": "#ffffff",
82
+ "adService": "adbutler",
83
+ "language_direction": "left",
84
+ "metype-config": {
85
+ "accountId": "2",
86
+ "host": "https://www.metype.com",
87
+ "primaryColor": "#FF4500",
88
+ "bgColor": "#000000",
89
+ "fontColor": "#FFD700"
90
+ },
91
+ "secondary_menu_count": "9",
92
+ "text-story": "default",
93
+ "row-title-style": "style-1",
94
+ "plan_page_desc": "",
95
+ "monogram": "data:image/jpeg;base64,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",
96
+ "cache-burst": 1562307337536,
97
+ "primary_header_text_color": "#ffffff",
98
+ "footer_text_color": "#bbbdc1",
99
+ "enableAdvancedSearch": "true",
100
+ "header_theme": "header_1",
101
+ "also-read-element": "vertical",
102
+ "breaking-news-config": {
103
+ "template": "template1",
104
+ "title": "Breaking news",
105
+ "bg-color": "#1d1daa",
106
+ "scrollSpeed": "1",
107
+ "delimiter": "pipe"
108
+ },
109
+ "static_pages": [
110
+ "aboutUs",
111
+ "privacyPolicy",
112
+ "contactUs"
113
+ ],
114
+ "banner-source": "/privacy-policy",
115
+ "structured_data_news_article": true,
116
+ "enableSSO": "true",
117
+ "accesstypeEnvironment": "staging",
118
+ "primary_logo": "",
119
+ "menu_count": "7",
120
+ "adsense_client_id": "dbjdfnjff",
121
+ "manifest_logo": "https://images.assettype.com/samachara/2018-09/e5dafadd-902a-4639-982a-2b9564f6d69e/b7f17273_7077_46d4_8a85_f649ba8e3946.jpg",
122
+ "widgets": "",
123
+ "infinite-scroll": "Section Based",
124
+ "custom-metadata": {
125
+ "facebook-verification": {
126
+ "property": "fb:pages",
127
+ "content": "fbmeow"
128
+ },
129
+ "google-site-verification": {
130
+ "name": "google-site-verification",
131
+ "content": "gtag"
132
+ },
133
+ "yandex-verification": {
134
+ "name": "yandex-verification",
135
+ "content": "ytag"
136
+ }
137
+ },
138
+ "sectionFilter": "false",
139
+ "primary_color": "#ff0004"
140
+ },
141
+ "facebook": {
142
+ "app-id": "296173334434957"
143
+ },
144
+ "sections": [
145
+ {
146
+ "domain-slug": null,
147
+ "slug": "news",
148
+ "name": "News",
149
+ "section-url": "https://ace-web.qtstage.io/section/news",
150
+ "id": 5670,
151
+ "parent-id": 5773,
152
+ "display-name": "News ",
153
+ "collection": {
154
+ "slug": "news",
155
+ "name": "News",
156
+ "id": 3795
157
+ },
158
+ "data": null
159
+ },
160
+ {
161
+ "domain-slug": null,
162
+ "slug": "other",
163
+ "name": "Other",
164
+ "section-url": "https://ace-web.qtstage.io/section/other",
165
+ "id": 5747,
166
+ "parent-id": null,
167
+ "display-name": "Other",
168
+ "collection": {
169
+ "slug": "science",
170
+ "name": "Science",
171
+ "id": 2723
172
+ },
173
+ "data": null
174
+ },
175
+ {
176
+ "domain-slug": null,
177
+ "slug": "film",
178
+ "name": "Film",
179
+ "section-url": "https://ace-web.qtstage.io/section/film",
180
+ "id": 5749,
181
+ "parent-id": 5670,
182
+ "display-name": "Film Display name",
183
+ "collection": {
184
+ "slug": "film-manual-collection",
185
+ "name": "Film",
186
+ "id": 2725
187
+ },
188
+ "data": null
189
+ },
190
+ {
191
+ "domain-slug": null,
192
+ "slug": "lifestyle",
193
+ "name": "Lifestyle",
194
+ "section-url": "https://ace-web.qtstage.io/section/lifestyle",
195
+ "id": 5751,
196
+ "parent-id": null,
197
+ "display-name": "Lifestyle",
198
+ "collection": {
199
+ "slug": "lifestyle-updated-slug",
200
+ "name": "sports",
201
+ "id": 2728
202
+ },
203
+ "data": null
204
+ },
205
+ {
206
+ "domain-slug": null,
207
+ "slug": "business",
208
+ "name": "Business",
209
+ "section-url": "https://ace-web.qtstage.io/section/business",
210
+ "id": 5752,
211
+ "parent-id": 5670,
212
+ "display-name": "Business",
213
+ "collection": {
214
+ "slug": "business1",
215
+ "name": "Business News",
216
+ "id": 2729
217
+ },
218
+ "data": null
219
+ },
220
+ {
221
+ "domain-slug": null,
222
+ "slug": "recent-stories",
223
+ "name": "Recent stories",
224
+ "section-url": "https://ace-web.qtstage.io/section/recent-stories",
225
+ "id": 5773,
226
+ "parent-id": null,
227
+ "display-name": "Recent stories",
228
+ "collection": {
229
+ "slug": "recent",
230
+ "name": "Recent stories",
231
+ "id": 2760
232
+ },
233
+ "data": null
234
+ },
235
+ {
236
+ "domain-slug": null,
237
+ "slug": "food-culture",
238
+ "name": "Food culture",
239
+ "section-url": "https://ace-web.qtstage.io/section/food-culture",
240
+ "id": 6448,
241
+ "parent-id": null,
242
+ "display-name": "Food culture",
243
+ "collection": {
244
+ "slug": "food-culture",
245
+ "name": "Food culture",
246
+ "id": 3947
247
+ },
248
+ "data": null
249
+ },
250
+ {
251
+ "domain-slug": null,
252
+ "slug": "current-affairs",
253
+ "name": "Current Affairs",
254
+ "section-url": "https://ace-web.qtstage.io/section/current-affairs",
255
+ "id": 6449,
256
+ "parent-id": null,
257
+ "display-name": "Current Affairs",
258
+ "collection": null,
259
+ "data": null
260
+ },
261
+ {
262
+ "domain-slug": null,
263
+ "slug": "regional",
264
+ "name": "Regional",
265
+ "section-url": "https://ace-web.qtstage.io/section/regional",
266
+ "id": 6450,
267
+ "parent-id": null,
268
+ "display-name": "Regional",
269
+ "collection": {
270
+ "slug": "regional",
271
+ "name": "Regional",
272
+ "id": 3949
273
+ },
274
+ "data": null
275
+ },
276
+ {
277
+ "domain-slug": null,
278
+ "slug": "weather",
279
+ "name": "Weather",
280
+ "section-url": "https://ace-web.qtstage.io/section/weather",
281
+ "id": 6452,
282
+ "parent-id": null,
283
+ "display-name": "Weather",
284
+ "collection": {
285
+ "slug": "weather-ed",
286
+ "name": "Weather",
287
+ "id": 3951
288
+ },
289
+ "data": null
290
+ },
291
+ {
292
+ "domain-slug": null,
293
+ "slug": "",
294
+ "name": "\u0CB8\u0C82\u0CA6\u0CB0\u0CCD\u0CB6\u0CA8\u0C97\u0CB3\u0CC1",
295
+ "section-url": "https://ace-web.qtstage.io/section/",
296
+ "id": 6566,
297
+ "parent-id": null,
298
+ "display-name": "\u0CB8\u0C82\u0CA6\u0CB0\u0CCD\u0CB6\u0CA8\u0C97\u0CB3\u0CC1",
299
+ "collection": {
300
+ "slug": "sndrshngllu",
301
+ "name": "\u0CB8\u0C82\u0CA6\u0CB0\u0CCD\u0CB6\u0CA8\u0C97\u0CB3\u0CC1",
302
+ "id": 4800
303
+ },
304
+ "data": null
305
+ },
306
+ {
307
+ "domain-slug": null,
308
+ "slug": "global-issues",
309
+ "name": "Global Issues",
310
+ "section-url": "https://ace-web.qtstage.io/section/global-issues",
311
+ "id": 6657,
312
+ "parent-id": null,
313
+ "display-name": "Global Issues",
314
+ "collection": {
315
+ "slug": "global-issues",
316
+ "name": "Global Issues",
317
+ "id": 5690
318
+ },
319
+ "data": null
320
+ },
321
+ {
322
+ "domain-slug": null,
323
+ "slug": "health",
324
+ "name": "Health",
325
+ "section-url": "https://ace-web.qtstage.io/section/health",
326
+ "id": 11181,
327
+ "parent-id": null,
328
+ "display-name": "Health",
329
+ "collection": {
330
+ "slug": "health",
331
+ "name": "Health",
332
+ "id": 15603
333
+ },
334
+ "data": null
335
+ },
336
+ {
337
+ "domain-slug": null,
338
+ "slug": "sample",
339
+ "name": "Sample",
340
+ "section-url": "https://ace-web.qtstage.io/section/sample",
341
+ "id": 11238,
342
+ "parent-id": null,
343
+ "display-name": "Sample",
344
+ "collection": {
345
+ "slug": "sample",
346
+ "name": "Sample",
347
+ "id": 15732
348
+ },
349
+ "data": null
350
+ },
351
+ {
352
+ "domain-slug": null,
353
+ "slug": "parent-sec",
354
+ "name": "parent-sec",
355
+ "section-url": "https://ace-web.qtstage.io/section/parent-sec",
356
+ "id": 11824,
357
+ "parent-id": null,
358
+ "display-name": "parent-sec",
359
+ "collection": {
360
+ "slug": "parent-sec",
361
+ "name": "parent-sec",
362
+ "id": 17114
363
+ },
364
+ "data": null
365
+ },
366
+ {
367
+ "domain-slug": null,
368
+ "slug": "child-sec",
369
+ "name": "child-sec",
370
+ "section-url": "https://ace-web.qtstage.io/section/child-sec",
371
+ "id": 11825,
372
+ "parent-id": 11824,
373
+ "display-name": "child-sec",
374
+ "collection": {
375
+ "slug": "child-sec-parent-sec",
376
+ "name": "child-sec (parent-sec)",
377
+ "id": 17115
378
+ },
379
+ "data": null
380
+ },
381
+ {
382
+ "domain-slug": null,
383
+ "slug": "test12345",
384
+ "name": "test12345",
385
+ "section-url": "https://ace-web.qtstage.io/section/test12345",
386
+ "id": 12022,
387
+ "parent-id": null,
388
+ "display-name": "premium",
389
+ "collection": {
390
+ "slug": "test12345",
391
+ "name": "test12345",
392
+ "id": 17593
393
+ },
394
+ "data": null
395
+ },
396
+ {
397
+ "domain-slug": null,
398
+ "slug": "firstsection",
399
+ "name": "Firstsection",
400
+ "section-url": "https://ace-web.qtstage.io/section/firstsection",
401
+ "id": 12025,
402
+ "parent-id": null,
403
+ "display-name": "Firstsection",
404
+ "collection": {
405
+ "slug": "firstsection",
406
+ "name": "Firstsection",
407
+ "id": 17596
408
+ },
409
+ "data": null
410
+ },
411
+ {
412
+ "domain-slug": null,
413
+ "slug": "firstsubsection",
414
+ "name": "Firstsubsection",
415
+ "section-url": "https://ace-web.qtstage.io/section/firstsubsection",
416
+ "id": 12026,
417
+ "parent-id": 12025,
418
+ "display-name": "Firstsubsection",
419
+ "collection": {
420
+ "slug": "firstsubsection-firstsection",
421
+ "name": "Firstsubsection (Firstsection)",
422
+ "id": 17597
423
+ },
424
+ "data": null
425
+ },
426
+ {
427
+ "domain-slug": null,
428
+ "slug": "subsection",
429
+ "name": "Subsection",
430
+ "section-url": "https://ace-web.qtstage.io/section/subsection",
431
+ "id": 12031,
432
+ "parent-id": 12025,
433
+ "display-name": "Subsection",
434
+ "collection": {
435
+ "slug": "subsection-firstsection",
436
+ "name": "Subsection (Firstsection)",
437
+ "id": 17612
438
+ },
439
+ "data": null
440
+ },
441
+ {
442
+ "domain-slug": null,
443
+ "slug": "secondsubsection",
444
+ "name": "secondsubsection",
445
+ "section-url": "https://ace-web.qtstage.io/section/secondsubsection",
446
+ "id": 12032,
447
+ "parent-id": 12025,
448
+ "display-name": "secondsubsection",
449
+ "collection": {
450
+ "slug": "secondsubsection-firstsection",
451
+ "name": "secondsubsection (Firstsection)",
452
+ "id": 17613
453
+ },
454
+ "data": null
455
+ },
456
+ {
457
+ "domain-slug": null,
458
+ "slug": "newsection",
459
+ "name": "Newsection",
460
+ "section-url": "https://ace-web.qtstage.io/section/newsection",
461
+ "id": 12102,
462
+ "parent-id": null,
463
+ "display-name": "Newsection",
464
+ "collection": {
465
+ "slug": "newsection",
466
+ "name": "Newsection",
467
+ "id": 17810
468
+ },
469
+ "data": null
470
+ },
471
+ {
472
+ "domain-slug": null,
473
+ "slug": "newsubsection",
474
+ "name": "Newsubsection",
475
+ "section-url": "https://ace-web.qtstage.io/section/newsubsection",
476
+ "id": 12103,
477
+ "parent-id": 12102,
478
+ "display-name": "Newsubsection",
479
+ "collection": {
480
+ "slug": "newsubsection-newsection",
481
+ "name": "Newsubsection (Newsection)",
482
+ "id": 17811
483
+ },
484
+ "data": null
485
+ },
486
+ {
487
+ "domain-slug": null,
488
+ "slug": "newsectionsample",
489
+ "name": "Newsectionsample",
490
+ "section-url": "https://ace-web.qtstage.io/section/newsectionsample",
491
+ "id": 12190,
492
+ "parent-id": null,
493
+ "display-name": "Newsectionsample",
494
+ "collection": {
495
+ "slug": "newsectionsample",
496
+ "name": "Newsectionsample",
497
+ "id": 17970
498
+ },
499
+ "data": null
500
+ },
501
+ {
502
+ "domain-slug": null,
503
+ "slug": "newsubsectionsample",
504
+ "name": "Newsubsectionsample",
505
+ "section-url": "https://ace-web.qtstage.io/section/newsubsectionsample",
506
+ "id": 12191,
507
+ "parent-id": 12190,
508
+ "display-name": "Newsubsectionsample",
509
+ "collection": {
510
+ "slug": "newsubsectionsample-newsectionsample",
511
+ "name": "Newsubsectionsample (Newsectionsample)",
512
+ "id": 17971
513
+ },
514
+ "data": null
515
+ },
516
+ {
517
+ "domain-slug": null,
518
+ "slug": "testsection1",
519
+ "name": "Testsection1",
520
+ "section-url": "https://ace-web.qtstage.io/section/testsection1",
521
+ "id": 12193,
522
+ "parent-id": null,
523
+ "display-name": "Testsection1",
524
+ "collection": {
525
+ "slug": "testsection1",
526
+ "name": "Testsection1",
527
+ "id": 17973
528
+ },
529
+ "data": null
530
+ },
531
+ {
532
+ "domain-slug": null,
533
+ "slug": "testsubsection1",
534
+ "name": "Testsubsection1",
535
+ "section-url": "https://ace-web.qtstage.io/section/testsubsection1",
536
+ "id": 12194,
537
+ "parent-id": 12193,
538
+ "display-name": "Testsubsection1",
539
+ "collection": {
540
+ "slug": "testsubsection1-testsection1",
541
+ "name": "Testsubsection1 (Testsection1)",
542
+ "id": 17974
543
+ },
544
+ "data": null
545
+ },
546
+ {
547
+ "domain-slug": null,
548
+ "slug": "testsubsection2",
549
+ "name": "Testsubsection2",
550
+ "section-url": "https://ace-web.qtstage.io/section/testsubsection2",
551
+ "id": 12195,
552
+ "parent-id": 12193,
553
+ "display-name": "Testsubsection2",
554
+ "collection": {
555
+ "slug": "testsubsection2-testsection1",
556
+ "name": "Testsubsection2 (Testsection1)",
557
+ "id": 17975
558
+ },
559
+ "data": null
560
+ },
561
+ {
562
+ "domain-slug": null,
563
+ "slug": "onesection",
564
+ "name": "onesection",
565
+ "section-url": "https://ace-web.qtstage.io/section/onesection",
566
+ "id": 12206,
567
+ "parent-id": null,
568
+ "display-name": "onesection",
569
+ "collection": {
570
+ "slug": "onesection",
571
+ "name": "onesection",
572
+ "id": 17984
573
+ },
574
+ "data": null
575
+ },
576
+ {
577
+ "domain-slug": null,
578
+ "slug": "sectioncollection",
579
+ "name": "sectioncollection",
580
+ "section-url": "https://ace-web.qtstage.io/section/sectioncollection",
581
+ "id": 12772,
582
+ "parent-id": null,
583
+ "display-name": "sectioncollection",
584
+ "collection": {
585
+ "slug": "sectioncollection",
586
+ "name": "sectioncollection",
587
+ "id": 18558
588
+ },
589
+ "data": null
590
+ },
591
+ {
592
+ "domain-slug": null,
593
+ "slug": "subsectioncollection",
594
+ "name": "subsectioncollection",
595
+ "section-url": "https://ace-web.qtstage.io/section/subsectioncollection",
596
+ "id": 12773,
597
+ "parent-id": 12772,
598
+ "display-name": "subsectioncollection",
599
+ "collection": {
600
+ "slug": "subsectioncollection-sectioncollection",
601
+ "name": "subsectioncollection (sectioncollection)",
602
+ "id": 18559
603
+ },
604
+ "data": null
605
+ },
606
+ {
607
+ "domain-slug": null,
608
+ "slug": "rams-collection",
609
+ "name": "Ram's collection",
610
+ "section-url": "https://ace-web.qtstage.io/section/rams-collection",
611
+ "id": 14469,
612
+ "parent-id": null,
613
+ "display-name": "Ram's collection",
614
+ "collection": {
615
+ "slug": "rams-collection",
616
+ "name": "Ram\u2019s collection",
617
+ "id": 20441
618
+ },
619
+ "data": null
620
+ },
621
+ {
622
+ "domain-slug": null,
623
+ "slug": "elections-2018",
624
+ "name": "Elections 2018",
625
+ "section-url": "https://ace-web.qtstage.io/section/elections-2018",
626
+ "id": 18454,
627
+ "parent-id": null,
628
+ "display-name": "Elections 2018",
629
+ "collection": {
630
+ "slug": "elections-2018",
631
+ "name": "Elections 2018",
632
+ "id": 23928
633
+ },
634
+ "data": null
635
+ },
636
+ {
637
+ "domain-slug": null,
638
+ "slug": "empty-collection",
639
+ "name": "Empty Collection",
640
+ "section-url": "https://ace-web.qtstage.io/section/empty-collection",
641
+ "id": 19005,
642
+ "parent-id": null,
643
+ "display-name": "Empty Collection",
644
+ "collection": {
645
+ "slug": "empty-collection",
646
+ "name": "Empty Collection",
647
+ "id": 24824
648
+ },
649
+ "data": null
650
+ },
651
+ {
652
+ "domain-slug": null,
653
+ "slug": "testsection",
654
+ "name": "TestSection",
655
+ "section-url": "https://ace-web.qtstage.io/section/testsection",
656
+ "id": 23016,
657
+ "parent-id": 6448,
658
+ "display-name": "Test",
659
+ "collection": {
660
+ "slug": "testsection-current-affairs",
661
+ "name": "TestSection (Current Affairs)",
662
+ "id": 32859
663
+ },
664
+ "data": null
665
+ },
666
+ {
667
+ "domain-slug": null,
668
+ "slug": "test-section-san",
669
+ "name": "Test Section- San",
670
+ "section-url": "https://ace-web.qtstage.io/section/test-section-san",
671
+ "id": 23097,
672
+ "parent-id": null,
673
+ "display-name": "TestSectionSan",
674
+ "collection": {
675
+ "slug": "test-section-san",
676
+ "name": "Test Section- San",
677
+ "id": 33158
678
+ },
679
+ "data": null
680
+ },
681
+ {
682
+ "domain-slug": null,
683
+ "slug": "full-img-slider",
684
+ "name": "Full-Img-Slider",
685
+ "section-url": "https://ace-web.qtstage.io/section/full-img-slider",
686
+ "id": 23099,
687
+ "parent-id": null,
688
+ "display-name": "FullimgSlide",
689
+ "collection": {
690
+ "slug": "full-img-slider",
691
+ "name": "Full-Img-Slider",
692
+ "id": 33160
693
+ },
694
+ "data": null
695
+ },
696
+ {
697
+ "domain-slug": null,
698
+ "slug": "fourcolgrid",
699
+ "name": "FourColGrid",
700
+ "section-url": "https://ace-web.qtstage.io/section/fourcolgrid",
701
+ "id": 23102,
702
+ "parent-id": null,
703
+ "display-name": "Four-Col-Grid",
704
+ "collection": {
705
+ "slug": "fourcolgrid",
706
+ "name": "FourColGrid",
707
+ "id": 33163
708
+ },
709
+ "data": null
710
+ },
711
+ {
712
+ "domain-slug": null,
713
+ "slug": "skcoll",
714
+ "name": "SK-Coll",
715
+ "section-url": "https://ace-web.qtstage.io/section/skcoll",
716
+ "id": 23174,
717
+ "parent-id": null,
718
+ "display-name": "SanSection",
719
+ "collection": {
720
+ "slug": "skcoll",
721
+ "name": "SK-Coll",
722
+ "id": 34582
723
+ },
724
+ "data": null
725
+ },
726
+ {
727
+ "domain-slug": null,
728
+ "slug": "entertainment",
729
+ "name": "Entertainment",
730
+ "section-url": "https://ace-web.qtstage.io/section/entertainment",
731
+ "id": 23194,
732
+ "parent-id": null,
733
+ "display-name": "Entertainment",
734
+ "collection": {
735
+ "slug": "entertainment",
736
+ "name": "Entertainment",
737
+ "id": 34644
738
+ },
739
+ "data": null
740
+ },
741
+ {
742
+ "domain-slug": null,
743
+ "slug": "with-parent",
744
+ "name": "With Parent",
745
+ "section-url": "https://ace-web.qtstage.io/section/with-parent",
746
+ "id": 24564,
747
+ "parent-id": 6449,
748
+ "display-name": "With Parent",
749
+ "collection": {
750
+ "slug": "with-parent-current-affairs",
751
+ "name": "With Parent (Current Affairs)",
752
+ "id": 35864
753
+ },
754
+ "data": null
755
+ },
756
+ {
757
+ "domain-slug": null,
758
+ "slug": "the-count",
759
+ "name": "The Count",
760
+ "section-url": "https://ace-web.qtstage.io/section/the-count",
761
+ "id": 24565,
762
+ "parent-id": null,
763
+ "display-name": "The Count",
764
+ "collection": {
765
+ "slug": "the-count",
766
+ "name": "The Count",
767
+ "id": 35865
768
+ },
769
+ "data": null
770
+ },
771
+ {
772
+ "domain-slug": null,
773
+ "slug": "literature",
774
+ "name": "Literature",
775
+ "section-url": "https://ace-web.qtstage.io/section/literature",
776
+ "id": 24698,
777
+ "parent-id": null,
778
+ "display-name": "Literature",
779
+ "collection": {
780
+ "slug": "literature",
781
+ "name": "Literature",
782
+ "id": 36309
783
+ },
784
+ "data": null
785
+ }
786
+ ],
787
+ "social-links": {
788
+ "facebook-url": "https://www.facebook.com/QuintypeInc/",
789
+ "google-plus-url": "https://plus.google.com/109975125732886477523",
790
+ "instagram-url": "https://www.instagram.com/quintypestories",
791
+ "twitter-url": "https://www.twitter.com"
792
+ },
793
+ "layout": {
794
+ "stories-between-stacks": 4,
795
+ "menu": [
796
+ {
797
+ "updated-at": 1552564819033,
798
+ "tag-name": null,
799
+ "publisher-id": 97,
800
+ "menu-group-slug": "sidebar-menu",
801
+ "item-id": null,
802
+ "rank": 822,
803
+ "title": "Times",
804
+ "item-type": "link",
805
+ "section-slug": null,
806
+ "tag-slug": null,
807
+ "id": 3405,
808
+ "parent-id": null,
809
+ "url": "http://transportandlogisticsme.com/",
810
+ "created-at": 1538040312837,
811
+ "section-name": null,
812
+ "menu-group-id": 42,
813
+ "data": {
814
+ "color": "#000000",
815
+ "link": "http://transportandlogisticsme.com/"
816
+ }
817
+ },
818
+ {
819
+ "updated-at": 1557472381289,
820
+ "tag-name": null,
821
+ "publisher-id": 97,
822
+ "menu-group-slug": "default",
823
+ "item-id": null,
824
+ "rank": 834,
825
+ "title": "Film",
826
+ "item-type": "link",
827
+ "section-slug": null,
828
+ "tag-slug": null,
829
+ "id": 848,
830
+ "parent-id": 1522,
831
+ "url": "https://www.google.com/",
832
+ "created-at": 1506336796940,
833
+ "section-name": null,
834
+ "menu-group-id": 43,
835
+ "data": {
836
+ "color": "#49c6dd",
837
+ "link": "https://www.google.com/"
838
+ }
839
+ },
840
+ {
841
+ "updated-at": 1557474959822,
842
+ "tag-name": null,
843
+ "publisher-id": 97,
844
+ "menu-group-slug": "secondary-menu",
845
+ "item-id": 18454,
846
+ "rank": 1073,
847
+ "title": "Politics",
848
+ "item-type": "section",
849
+ "section-slug": "elections-2018",
850
+ "tag-slug": null,
851
+ "id": 818,
852
+ "parent-id": 1522,
853
+ "url": "https://ace-web.qtstage.io/section/elections-2018",
854
+ "created-at": 1505453353162,
855
+ "section-name": "Elections 2018",
856
+ "menu-group-id": 42,
857
+ "data": {
858
+ "color": "#47cd85",
859
+ "link": ""
860
+ }
861
+ },
862
+ {
863
+ "updated-at": 1557472042370,
864
+ "tag-name": null,
865
+ "publisher-id": 97,
866
+ "menu-group-slug": "header",
867
+ "item-id": 5670,
868
+ "rank": 1318,
869
+ "title": "News",
870
+ "item-type": "section",
871
+ "section-slug": "news",
872
+ "tag-slug": null,
873
+ "id": 822,
874
+ "parent-id": 848,
875
+ "url": "https://ace-web.qtstage.io/section/news",
876
+ "created-at": 1505811047360,
877
+ "section-name": "News",
878
+ "menu-group-id": 44,
879
+ "data": {
880
+ "color": "#65036b",
881
+ "link": ""
882
+ }
883
+ },
884
+ {
885
+ "updated-at": 1557472039453,
886
+ "tag-name": null,
887
+ "publisher-id": 97,
888
+ "menu-group-slug": "secondary-menu",
889
+ "item-id": 5752,
890
+ "rank": 1320,
891
+ "title": "Business",
892
+ "item-type": "section",
893
+ "section-slug": "business",
894
+ "tag-slug": null,
895
+ "id": 1073,
896
+ "parent-id": 822,
897
+ "url": "https://ace-web.qtstage.io/section/business",
898
+ "created-at": 1507113313397,
899
+ "section-name": "Business",
900
+ "menu-group-id": 42,
901
+ "data": {
902
+ "color": "#43fc5c",
903
+ "link": ""
904
+ }
905
+ },
906
+ {
907
+ "updated-at": 1557472175708,
908
+ "tag-name": "tags",
909
+ "publisher-id": 97,
910
+ "menu-group-slug": "default",
911
+ "item-id": 164300,
912
+ "rank": 2820,
913
+ "title": "Food culture",
914
+ "item-type": "tag",
915
+ "section-slug": null,
916
+ "tag-slug": "tags",
917
+ "id": 1522,
918
+ "parent-id": null,
919
+ "url": "https://ace-web.qtstage.io/topic/tags",
920
+ "created-at": 1528779877461,
921
+ "section-name": null,
922
+ "menu-group-id": 43,
923
+ "data": {
924
+ "color": "#000000"
925
+ }
926
+ },
927
+ {
928
+ "updated-at": 1548926316072,
929
+ "tag-name": null,
930
+ "publisher-id": 97,
931
+ "menu-group-slug": "default",
932
+ "item-id": 6447,
933
+ "rank": 3146,
934
+ "title": "About Us",
935
+ "item-type": "section",
936
+ "section-slug": "entertainment",
937
+ "tag-slug": null,
938
+ "id": 2000,
939
+ "parent-id": null,
940
+ "url": "https://ace-web.qtstage.io/section/entertainment",
941
+ "created-at": 1531910982329,
942
+ "section-name": "Entertainment",
943
+ "menu-group-id": 43,
944
+ "data": {
945
+ "color": "#000000",
946
+ "link": ""
947
+ }
948
+ },
949
+ {
950
+ "updated-at": 1548926316080,
951
+ "tag-name": "film",
952
+ "publisher-id": 97,
953
+ "menu-group-slug": "sidebar-menu",
954
+ "item-id": 163460,
955
+ "rank": 3218,
956
+ "title": "Automotive Menu ",
957
+ "item-type": "tag",
958
+ "section-slug": null,
959
+ "tag-slug": "film",
960
+ "id": 2439,
961
+ "parent-id": null,
962
+ "url": "https://ace-web.qtstage.io/topic/film",
963
+ "created-at": 1533706920952,
964
+ "section-name": null,
965
+ "menu-group-id": 45,
966
+ "data": {
967
+ "color": "#000000"
968
+ }
969
+ },
970
+ {
971
+ "updated-at": 1548926316068,
972
+ "tag-name": null,
973
+ "publisher-id": 97,
974
+ "menu-group-slug": "secondary-menu",
975
+ "item-id": null,
976
+ "rank": 3219,
977
+ "title": "INDIA",
978
+ "item-type": "link",
979
+ "section-slug": null,
980
+ "tag-slug": null,
981
+ "id": 3217,
982
+ "parent-id": null,
983
+ "url": "#",
984
+ "created-at": 1537430249429,
985
+ "section-name": null,
986
+ "menu-group-id": 42,
987
+ "data": {
988
+ "color": "#000000",
989
+ "link": "#"
990
+ }
991
+ },
992
+ {
993
+ "updated-at": 1548926316068,
994
+ "tag-name": null,
995
+ "publisher-id": 97,
996
+ "menu-group-slug": "secondary-menu",
997
+ "item-id": null,
998
+ "rank": 3406,
999
+ "title": "Cities",
1000
+ "item-type": "placeholder",
1001
+ "section-slug": null,
1002
+ "tag-slug": null,
1003
+ "id": 3218,
1004
+ "parent-id": null,
1005
+ "url": null,
1006
+ "created-at": 1537430266340,
1007
+ "section-name": null,
1008
+ "menu-group-id": 42,
1009
+ "data": {
1010
+ "color": "#000000",
1011
+ "link": "#"
1012
+ }
1013
+ },
1014
+ {
1015
+ "updated-at": 1548926316076,
1016
+ "tag-name": null,
1017
+ "publisher-id": 97,
1018
+ "menu-group-slug": "header",
1019
+ "item-id": 5748,
1020
+ "rank": 3452,
1021
+ "title": "Roman",
1022
+ "item-type": "section",
1023
+ "section-slug": "sports",
1024
+ "tag-slug": null,
1025
+ "id": 3406,
1026
+ "parent-id": null,
1027
+ "url": "https://ace-web.qtstage.io/section/sports",
1028
+ "created-at": 1538040329674,
1029
+ "section-name": "Sports",
1030
+ "menu-group-id": 44,
1031
+ "data": {
1032
+ "color": "#000000",
1033
+ "link": "/"
1034
+ }
1035
+ },
1036
+ {
1037
+ "updated-at": 1548926316068,
1038
+ "tag-name": null,
1039
+ "publisher-id": 97,
1040
+ "menu-group-slug": "secondary-menu",
1041
+ "item-id": 6447,
1042
+ "rank": 3453,
1043
+ "title": "Recent stories",
1044
+ "item-type": "section",
1045
+ "section-slug": "entertainment",
1046
+ "tag-slug": null,
1047
+ "id": 3452,
1048
+ "parent-id": null,
1049
+ "url": "https://ace-web.qtstage.io/section/entertainment",
1050
+ "created-at": 1538626542936,
1051
+ "section-name": "Entertainment",
1052
+ "menu-group-id": 42,
1053
+ "data": {
1054
+ "color": "#000000"
1055
+ }
1056
+ },
1057
+ {
1058
+ "updated-at": 1548926316068,
1059
+ "tag-name": null,
1060
+ "publisher-id": 97,
1061
+ "menu-group-slug": "secondary-menu",
1062
+ "item-id": 164216,
1063
+ "rank": 3675,
1064
+ "title": "States",
1065
+ "item-type": "link",
1066
+ "section-slug": null,
1067
+ "tag-slug": null,
1068
+ "id": 3675,
1069
+ "parent-id": null,
1070
+ "url": "https://www.pennews.net/",
1071
+ "created-at": 1540814301207,
1072
+ "section-name": null,
1073
+ "menu-group-id": 42,
1074
+ "data": {
1075
+ "color": "#000000",
1076
+ "link": "https://www.pennews.net/"
1077
+ }
1078
+ },
1079
+ {
1080
+ "updated-at": 1548926316068,
1081
+ "tag-name": null,
1082
+ "publisher-id": 97,
1083
+ "menu-group-slug": "secondary-menu",
1084
+ "item-id": 6449,
1085
+ "rank": 4060,
1086
+ "title": "CurrentAffairs",
1087
+ "item-type": "section",
1088
+ "section-slug": "current-affairs",
1089
+ "tag-slug": null,
1090
+ "id": 4060,
1091
+ "parent-id": 3452,
1092
+ "url": "https://ace-web.qtstage.io/section/current-affairs",
1093
+ "created-at": 1542620427491,
1094
+ "section-name": "Current Affairs",
1095
+ "menu-group-id": 42,
1096
+ "data": {
1097
+ "color": "#000000"
1098
+ }
1099
+ },
1100
+ {
1101
+ "updated-at": 1548926316068,
1102
+ "tag-name": "tags1",
1103
+ "publisher-id": 97,
1104
+ "menu-group-slug": "secondary-menu",
1105
+ "item-id": 164275,
1106
+ "rank": 4062,
1107
+ "title": "Cinema",
1108
+ "item-type": "tag",
1109
+ "section-slug": null,
1110
+ "tag-slug": "tags1",
1111
+ "id": 4062,
1112
+ "parent-id": null,
1113
+ "url": "https://ace-web.qtstage.io/topic/tags1",
1114
+ "created-at": 1542622548832,
1115
+ "section-name": null,
1116
+ "menu-group-id": 42,
1117
+ "data": {
1118
+ "color": "#000000"
1119
+ }
1120
+ },
1121
+ {
1122
+ "updated-at": 1548926316068,
1123
+ "tag-name": null,
1124
+ "publisher-id": 97,
1125
+ "menu-group-slug": "secondary-menu",
1126
+ "item-id": 5670,
1127
+ "rank": 4065,
1128
+ "title": "News",
1129
+ "item-type": "section",
1130
+ "section-slug": "news",
1131
+ "tag-slug": null,
1132
+ "id": 4065,
1133
+ "parent-id": null,
1134
+ "url": "https://ace-web.qtstage.io/section/news",
1135
+ "created-at": 1542794210872,
1136
+ "section-name": "News",
1137
+ "menu-group-id": 42,
1138
+ "data": {
1139
+ "color": "#000000"
1140
+ }
1141
+ },
1142
+ {
1143
+ "updated-at": 1548926316072,
1144
+ "tag-name": null,
1145
+ "publisher-id": 97,
1146
+ "menu-group-slug": "default",
1147
+ "item-id": null,
1148
+ "rank": 4066,
1149
+ "title": "sports",
1150
+ "item-type": "link",
1151
+ "section-slug": null,
1152
+ "tag-slug": null,
1153
+ "id": 4066,
1154
+ "parent-id": 848,
1155
+ "url": "https://madrid.quintype.io",
1156
+ "created-at": 1542801843550,
1157
+ "section-name": null,
1158
+ "menu-group-id": 43,
1159
+ "data": {
1160
+ "color": "#000000",
1161
+ "link": "https://madrid.quintype.io"
1162
+ }
1163
+ },
1164
+ {
1165
+ "updated-at": 1548926316072,
1166
+ "tag-name": null,
1167
+ "publisher-id": 97,
1168
+ "menu-group-slug": "default",
1169
+ "item-id": 11181,
1170
+ "rank": 4067,
1171
+ "title": "Health",
1172
+ "item-type": "section",
1173
+ "section-slug": "health",
1174
+ "tag-slug": null,
1175
+ "id": 4067,
1176
+ "parent-id": null,
1177
+ "url": "https://ace-web.qtstage.io/section/health",
1178
+ "created-at": 1542801924654,
1179
+ "section-name": "Health",
1180
+ "menu-group-id": 43,
1181
+ "data": {
1182
+ "color": "#000000"
1183
+ }
1184
+ },
1185
+ {
1186
+ "updated-at": 1548926316072,
1187
+ "tag-name": null,
1188
+ "publisher-id": 97,
1189
+ "menu-group-slug": "default",
1190
+ "item-id": 5670,
1191
+ "rank": 4068,
1192
+ "title": "International",
1193
+ "item-type": "section",
1194
+ "section-slug": "news",
1195
+ "tag-slug": null,
1196
+ "id": 4068,
1197
+ "parent-id": 4065,
1198
+ "url": "https://ace-web.qtstage.io/section/news",
1199
+ "created-at": 1542802305382,
1200
+ "section-name": "News",
1201
+ "menu-group-id": 43,
1202
+ "data": {
1203
+ "color": "#000000"
1204
+ }
1205
+ },
1206
+ {
1207
+ "updated-at": 1548926316068,
1208
+ "tag-name": null,
1209
+ "publisher-id": 97,
1210
+ "menu-group-slug": "secondary-menu",
1211
+ "item-id": 6449,
1212
+ "rank": 4069,
1213
+ "title": "National",
1214
+ "item-type": "section",
1215
+ "section-slug": "current-affairs",
1216
+ "tag-slug": null,
1217
+ "id": 4069,
1218
+ "parent-id": 1522,
1219
+ "url": "https://ace-web.qtstage.io/section/current-affairs",
1220
+ "created-at": 1542802374551,
1221
+ "section-name": "Current Affairs",
1222
+ "menu-group-id": 42,
1223
+ "data": {
1224
+ "color": "#000000"
1225
+ }
1226
+ },
1227
+ {
1228
+ "updated-at": 1554111858361,
1229
+ "tag-name": null,
1230
+ "publisher-id": 97,
1231
+ "menu-group-slug": "sidebar-menu",
1232
+ "item-id": 6657,
1233
+ "rank": 4070,
1234
+ "title": "Economy",
1235
+ "item-type": "link",
1236
+ "section-slug": null,
1237
+ "tag-slug": null,
1238
+ "id": 4070,
1239
+ "parent-id": null,
1240
+ "url": "https://beta-madrid.quintype.io",
1241
+ "created-at": 1542802433571,
1242
+ "section-name": null,
1243
+ "menu-group-id": 43,
1244
+ "data": {
1245
+ "color": "#000000",
1246
+ "link": "https://beta-madrid.quintype.io"
1247
+ }
1248
+ },
1249
+ {
1250
+ "updated-at": 1557474975893,
1251
+ "tag-name": null,
1252
+ "publisher-id": 97,
1253
+ "menu-group-slug": "sidebar-menu",
1254
+ "item-id": 5752,
1255
+ "rank": 4071,
1256
+ "title": "Weekend Special",
1257
+ "item-type": "link",
1258
+ "section-slug": null,
1259
+ "tag-slug": null,
1260
+ "id": 4071,
1261
+ "parent-id": 1522,
1262
+ "url": "https://www.google.com/",
1263
+ "created-at": 1542802544832,
1264
+ "section-name": null,
1265
+ "menu-group-id": 45,
1266
+ "data": {
1267
+ "color": "#000000",
1268
+ "link": "https://www.google.com/"
1269
+ }
1270
+ },
1271
+ {
1272
+ "updated-at": 1548926316080,
1273
+ "tag-name": null,
1274
+ "publisher-id": 97,
1275
+ "menu-group-slug": "sidebar-menu",
1276
+ "item-id": null,
1277
+ "rank": 4072,
1278
+ "title": "Technology",
1279
+ "item-type": "link",
1280
+ "section-slug": null,
1281
+ "tag-slug": null,
1282
+ "id": 4072,
1283
+ "parent-id": null,
1284
+ "url": "https://www.tgdaily.com/",
1285
+ "created-at": 1542802728754,
1286
+ "section-name": null,
1287
+ "menu-group-id": 45,
1288
+ "data": {
1289
+ "color": "#000000",
1290
+ "link": "https://www.tgdaily.com/"
1291
+ }
1292
+ },
1293
+ {
1294
+ "updated-at": 1548926316080,
1295
+ "tag-name": null,
1296
+ "publisher-id": 97,
1297
+ "menu-group-slug": "sidebar-menu",
1298
+ "item-id": null,
1299
+ "rank": 4073,
1300
+ "title": "Web",
1301
+ "item-type": "placeholder",
1302
+ "section-slug": null,
1303
+ "tag-slug": null,
1304
+ "id": 4073,
1305
+ "parent-id": null,
1306
+ "url": null,
1307
+ "created-at": 1542802766194,
1308
+ "section-name": null,
1309
+ "menu-group-id": 45,
1310
+ "data": {
1311
+ "color": "#000000"
1312
+ }
1313
+ },
1314
+ {
1315
+ "updated-at": 1557475002240,
1316
+ "tag-name": null,
1317
+ "publisher-id": 97,
1318
+ "menu-group-slug": "sidebar-menu",
1319
+ "item-id": 5746,
1320
+ "rank": 4074,
1321
+ "title": "Sunday",
1322
+ "item-type": "link",
1323
+ "section-slug": null,
1324
+ "tag-slug": null,
1325
+ "id": 4074,
1326
+ "parent-id": 4071,
1327
+ "url": "https://www.google.com/",
1328
+ "created-at": 1542802888444,
1329
+ "section-name": null,
1330
+ "menu-group-id": 45,
1331
+ "data": {
1332
+ "color": "#000000",
1333
+ "link": "https://www.google.com/"
1334
+ }
1335
+ },
1336
+ {
1337
+ "updated-at": 1548926316080,
1338
+ "tag-name": "modi",
1339
+ "publisher-id": 97,
1340
+ "menu-group-slug": "sidebar-menu",
1341
+ "item-id": 201129,
1342
+ "rank": 4075,
1343
+ "title": "Saturday",
1344
+ "item-type": "tag",
1345
+ "section-slug": null,
1346
+ "tag-slug": "modi",
1347
+ "id": 4075,
1348
+ "parent-id": 4071,
1349
+ "url": "https://ace-web.qtstage.io/topic/modi",
1350
+ "created-at": 1542802966656,
1351
+ "section-name": null,
1352
+ "menu-group-id": 45,
1353
+ "data": {
1354
+ "color": "#000000"
1355
+ }
1356
+ },
1357
+ {
1358
+ "updated-at": 1548926316080,
1359
+ "tag-name": null,
1360
+ "publisher-id": 97,
1361
+ "menu-group-slug": "sidebar-menu",
1362
+ "item-id": 5751,
1363
+ "rank": 4076,
1364
+ "title": "Software",
1365
+ "item-type": "section",
1366
+ "section-slug": "lifestyle",
1367
+ "tag-slug": null,
1368
+ "id": 4076,
1369
+ "parent-id": null,
1370
+ "url": "https://ace-web.qtstage.io/section/lifestyle",
1371
+ "created-at": 1542803018746,
1372
+ "section-name": "Lifestyle",
1373
+ "menu-group-id": 45,
1374
+ "data": {
1375
+ "color": "#000000"
1376
+ }
1377
+ },
1378
+ {
1379
+ "updated-at": 1548926316072,
1380
+ "tag-name": null,
1381
+ "publisher-id": 97,
1382
+ "menu-group-slug": "default",
1383
+ "item-id": 5751,
1384
+ "rank": 4077,
1385
+ "title": "Lifestyle",
1386
+ "item-type": "section",
1387
+ "section-slug": "lifestyle",
1388
+ "tag-slug": null,
1389
+ "id": 4077,
1390
+ "parent-id": null,
1391
+ "url": "https://ace-web.qtstage.io/section/lifestyle",
1392
+ "created-at": 1542803308765,
1393
+ "section-name": "Lifestyle",
1394
+ "menu-group-id": 43,
1395
+ "data": {
1396
+ "color": "#000000"
1397
+ }
1398
+ },
1399
+ {
1400
+ "updated-at": 1548926316072,
1401
+ "tag-name": null,
1402
+ "publisher-id": 97,
1403
+ "menu-group-slug": "default",
1404
+ "item-id": 6450,
1405
+ "rank": 4078,
1406
+ "title": "Regional",
1407
+ "item-type": "section",
1408
+ "section-slug": "regional",
1409
+ "tag-slug": null,
1410
+ "id": 4078,
1411
+ "parent-id": null,
1412
+ "url": "https://ace-web.qtstage.io/section/regional",
1413
+ "created-at": 1542803338480,
1414
+ "section-name": "Regional",
1415
+ "menu-group-id": 43,
1416
+ "data": {
1417
+ "color": "#000000"
1418
+ }
1419
+ },
1420
+ {
1421
+ "updated-at": 1548926316072,
1422
+ "tag-name": null,
1423
+ "publisher-id": 97,
1424
+ "menu-group-slug": "default",
1425
+ "item-id": 6452,
1426
+ "rank": 4079,
1427
+ "title": "Weather",
1428
+ "item-type": "section",
1429
+ "section-slug": "weather",
1430
+ "tag-slug": null,
1431
+ "id": 4079,
1432
+ "parent-id": null,
1433
+ "url": "https://ace-web.qtstage.io/section/weather",
1434
+ "created-at": 1542803359151,
1435
+ "section-name": "Weather",
1436
+ "menu-group-id": 43,
1437
+ "data": {
1438
+ "color": "#000000"
1439
+ }
1440
+ },
1441
+ {
1442
+ "updated-at": 1548926316072,
1443
+ "tag-name": "t100",
1444
+ "publisher-id": 97,
1445
+ "menu-group-slug": "default",
1446
+ "item-id": 197961,
1447
+ "rank": 4080,
1448
+ "title": "Opinion",
1449
+ "item-type": "tag",
1450
+ "section-slug": null,
1451
+ "tag-slug": "t100",
1452
+ "id": 4080,
1453
+ "parent-id": null,
1454
+ "url": "https://ace-web.qtstage.io/topic/t100",
1455
+ "created-at": 1542803488800,
1456
+ "section-name": null,
1457
+ "menu-group-id": 43,
1458
+ "data": {
1459
+ "color": "#000000"
1460
+ }
1461
+ },
1462
+ {
1463
+ "updated-at": 1548926316080,
1464
+ "tag-name": null,
1465
+ "publisher-id": 97,
1466
+ "menu-group-slug": "sidebar-menu",
1467
+ "item-id": 12193,
1468
+ "rank": 4081,
1469
+ "title": "Reviews",
1470
+ "item-type": "section",
1471
+ "section-slug": "testsection1",
1472
+ "tag-slug": null,
1473
+ "id": 4081,
1474
+ "parent-id": null,
1475
+ "url": "https://ace-web.qtstage.io/section/testsection1",
1476
+ "created-at": 1542803868459,
1477
+ "section-name": "Testsection1",
1478
+ "menu-group-id": 45,
1479
+ "data": {
1480
+ "color": "#000000"
1481
+ }
1482
+ },
1483
+ {
1484
+ "updated-at": 1548926316080,
1485
+ "tag-name": null,
1486
+ "publisher-id": 97,
1487
+ "menu-group-slug": "sidebar-menu",
1488
+ "item-id": 6657,
1489
+ "rank": 4082,
1490
+ "title": "Global News",
1491
+ "item-type": "section",
1492
+ "section-slug": "global-issues",
1493
+ "tag-slug": null,
1494
+ "id": 4082,
1495
+ "parent-id": null,
1496
+ "url": "https://ace-web.qtstage.io/section/global-issues",
1497
+ "created-at": 1542803916512,
1498
+ "section-name": "Global Issues",
1499
+ "menu-group-id": 45,
1500
+ "data": {
1501
+ "color": "#000000"
1502
+ }
1503
+ },
1504
+ {
1505
+ "updated-at": 1548926316072,
1506
+ "tag-name": null,
1507
+ "publisher-id": 97,
1508
+ "menu-group-slug": "default",
1509
+ "item-id": 6449,
1510
+ "rank": 4083,
1511
+ "title": "Book Review",
1512
+ "item-type": "section",
1513
+ "section-slug": "current-affairs",
1514
+ "tag-slug": null,
1515
+ "id": 4083,
1516
+ "parent-id": null,
1517
+ "url": "https://ace-web.qtstage.io/section/current-affairs",
1518
+ "created-at": 1542804019603,
1519
+ "section-name": "Current Affairs",
1520
+ "menu-group-id": 43,
1521
+ "data": {
1522
+ "color": "#000000"
1523
+ }
1524
+ },
1525
+ {
1526
+ "updated-at": 1555481131134,
1527
+ "tag-name": null,
1528
+ "publisher-id": 97,
1529
+ "menu-group-slug": "default",
1530
+ "item-id": 6448,
1531
+ "rank": 4084,
1532
+ "title": "climate",
1533
+ "item-type": "link",
1534
+ "section-slug": null,
1535
+ "tag-slug": null,
1536
+ "id": 4084,
1537
+ "parent-id": 4079,
1538
+ "url": "https://www.google.com/",
1539
+ "created-at": 1542804158991,
1540
+ "section-name": null,
1541
+ "menu-group-id": 43,
1542
+ "data": {
1543
+ "color": "#000000",
1544
+ "link": "https://www.google.com/"
1545
+ }
1546
+ },
1547
+ {
1548
+ "updated-at": 1548926316068,
1549
+ "tag-name": "tags1",
1550
+ "publisher-id": 97,
1551
+ "menu-group-slug": "secondary-menu",
1552
+ "item-id": 164275,
1553
+ "rank": 4085,
1554
+ "title": "State1",
1555
+ "item-type": "tag",
1556
+ "section-slug": null,
1557
+ "tag-slug": "tags1",
1558
+ "id": 4085,
1559
+ "parent-id": 3675,
1560
+ "url": "https://ace-web.qtstage.io/topic/tags1",
1561
+ "created-at": 1542804435609,
1562
+ "section-name": null,
1563
+ "menu-group-id": 42,
1564
+ "data": {
1565
+ "color": "#000000"
1566
+ }
1567
+ },
1568
+ {
1569
+ "updated-at": 1548926316068,
1570
+ "tag-name": null,
1571
+ "publisher-id": 97,
1572
+ "menu-group-slug": "secondary-menu",
1573
+ "item-id": 5746,
1574
+ "rank": 4086,
1575
+ "title": "Suppliers",
1576
+ "item-type": "section",
1577
+ "section-slug": "politics",
1578
+ "tag-slug": null,
1579
+ "id": 4086,
1580
+ "parent-id": null,
1581
+ "url": "https://ace-web.qtstage.io/section/politics",
1582
+ "created-at": 1542805068091,
1583
+ "section-name": "Politics",
1584
+ "menu-group-id": 42,
1585
+ "data": {
1586
+ "color": "#000000"
1587
+ }
1588
+ },
1589
+ {
1590
+ "updated-at": 1552564289863,
1591
+ "tag-name": null,
1592
+ "publisher-id": 97,
1593
+ "menu-group-slug": "header",
1594
+ "item-id": null,
1595
+ "rank": 4087,
1596
+ "title": "Testing sidebar Menu",
1597
+ "item-type": "link",
1598
+ "section-slug": null,
1599
+ "tag-slug": null,
1600
+ "id": 5746,
1601
+ "parent-id": null,
1602
+ "url": "Google.com",
1603
+ "created-at": 1552558297664,
1604
+ "section-name": null,
1605
+ "menu-group-id": 43,
1606
+ "data": {
1607
+ "color": "#000000",
1608
+ "link": "Google.com"
1609
+ }
1610
+ },
1611
+ {
1612
+ "updated-at": 1552564289862,
1613
+ "tag-name": null,
1614
+ "publisher-id": 97,
1615
+ "menu-group-slug": "secondary-menu",
1616
+ "item-id": 5670,
1617
+ "rank": 4101,
1618
+ "title": "World",
1619
+ "item-type": "section",
1620
+ "section-slug": "news",
1621
+ "tag-slug": null,
1622
+ "id": 4087,
1623
+ "parent-id": null,
1624
+ "url": "https://ace-web.qtstage.io/section/news",
1625
+ "created-at": 1542805144108,
1626
+ "section-name": "News",
1627
+ "menu-group-id": 42,
1628
+ "data": {
1629
+ "color": "#000000"
1630
+ }
1631
+ },
1632
+ {
1633
+ "updated-at": 1552564285505,
1634
+ "tag-name": null,
1635
+ "publisher-id": 97,
1636
+ "menu-group-slug": "secondary-menu",
1637
+ "item-id": 6657,
1638
+ "rank": 4595,
1639
+ "title": "Asia",
1640
+ "item-type": "section",
1641
+ "section-slug": "global-issues",
1642
+ "tag-slug": null,
1643
+ "id": 4101,
1644
+ "parent-id": 3217,
1645
+ "url": "https://ace-web.qtstage.io/section/global-issues",
1646
+ "created-at": 1542876792540,
1647
+ "section-name": "Global Issues",
1648
+ "menu-group-id": 42,
1649
+ "data": {
1650
+ "color": "#000000"
1651
+ }
1652
+ },
1653
+ {
1654
+ "updated-at": 1552564283543,
1655
+ "tag-name": null,
1656
+ "publisher-id": 97,
1657
+ "menu-group-slug": "secondary-menu",
1658
+ "item-id": 6449,
1659
+ "rank": 5165,
1660
+ "title": "Transport",
1661
+ "item-type": "section",
1662
+ "section-slug": "current-affairs",
1663
+ "tag-slug": null,
1664
+ "id": 4595,
1665
+ "parent-id": null,
1666
+ "url": "https://ace-web.qtstage.io/section/current-affairs",
1667
+ "created-at": 1545297180936,
1668
+ "section-name": "Current Affairs",
1669
+ "menu-group-id": 42,
1670
+ "data": {
1671
+ "color": "#000000"
1672
+ }
1673
+ },
1674
+ {
1675
+ "updated-at": 1552564281066,
1676
+ "tag-name": null,
1677
+ "publisher-id": 97,
1678
+ "menu-group-slug": "footer",
1679
+ "item-id": null,
1680
+ "rank": 5166,
1681
+ "title": "Privacy Policy",
1682
+ "item-type": "link",
1683
+ "section-slug": null,
1684
+ "tag-slug": null,
1685
+ "id": 5165,
1686
+ "parent-id": null,
1687
+ "url": "/privacy-policy",
1688
+ "created-at": 1549015968607,
1689
+ "section-name": null,
1690
+ "menu-group-id": null,
1691
+ "data": {
1692
+ "color": "#000000",
1693
+ "link": "/privacy-policy"
1694
+ }
1695
+ },
1696
+ {
1697
+ "updated-at": 1552564276746,
1698
+ "tag-name": null,
1699
+ "publisher-id": 97,
1700
+ "menu-group-slug": "footer",
1701
+ "item-id": null,
1702
+ "rank": 5167,
1703
+ "title": "Contact Us",
1704
+ "item-type": "link",
1705
+ "section-slug": null,
1706
+ "tag-slug": null,
1707
+ "id": 5166,
1708
+ "parent-id": null,
1709
+ "url": "/contact-us",
1710
+ "created-at": 1549016032161,
1711
+ "section-name": null,
1712
+ "menu-group-id": null,
1713
+ "data": {
1714
+ "color": "#000000",
1715
+ "link": "/contact-us"
1716
+ }
1717
+ },
1718
+ {
1719
+ "updated-at": 1552564274624,
1720
+ "tag-name": null,
1721
+ "publisher-id": 97,
1722
+ "menu-group-slug": "footer",
1723
+ "item-id": null,
1724
+ "rank": 5169,
1725
+ "title": "About Us",
1726
+ "item-type": "link",
1727
+ "section-slug": null,
1728
+ "tag-slug": null,
1729
+ "id": 5167,
1730
+ "parent-id": null,
1731
+ "url": "/about-us",
1732
+ "created-at": 1549016072811,
1733
+ "section-name": null,
1734
+ "menu-group-id": null,
1735
+ "data": {
1736
+ "color": "#000000",
1737
+ "link": "/about-us"
1738
+ }
1739
+ },
1740
+ {
1741
+ "updated-at": 1552564270740,
1742
+ "tag-name": null,
1743
+ "publisher-id": 97,
1744
+ "menu-group-slug": "secondary-menu",
1745
+ "item-id": 6449,
1746
+ "rank": 5170,
1747
+ "title": "My menu",
1748
+ "item-type": "section",
1749
+ "section-slug": "current-affairs",
1750
+ "tag-slug": null,
1751
+ "id": 5169,
1752
+ "parent-id": 822,
1753
+ "url": "https://ace-web.qtstage.io/section/current-affairs",
1754
+ "created-at": 1549033379532,
1755
+ "section-name": "Current Affairs",
1756
+ "menu-group-id": null,
1757
+ "data": {
1758
+ "color": "#000000"
1759
+ }
1760
+ },
1761
+ {
1762
+ "updated-at": 1552564047190,
1763
+ "tag-name": null,
1764
+ "publisher-id": 97,
1765
+ "menu-group-slug": "sidebar-menu",
1766
+ "item-id": 18454,
1767
+ "rank": 5185,
1768
+ "title": "Mymenu",
1769
+ "item-type": "section",
1770
+ "section-slug": "elections-2018",
1771
+ "tag-slug": null,
1772
+ "id": 5170,
1773
+ "parent-id": 822,
1774
+ "url": "https://ace-web.qtstage.io/section/elections-2018",
1775
+ "created-at": 1549033759338,
1776
+ "section-name": "Elections 2018",
1777
+ "menu-group-id": null,
1778
+ "data": {
1779
+ "color": "#000000"
1780
+ }
1781
+ },
1782
+ {
1783
+ "updated-at": 1552564045310,
1784
+ "tag-name": null,
1785
+ "publisher-id": 97,
1786
+ "menu-group-slug": "header",
1787
+ "item-id": 5751,
1788
+ "rank": 5745,
1789
+ "title": "MyMenuItem",
1790
+ "item-type": "section",
1791
+ "section-slug": "lifestyle",
1792
+ "tag-slug": null,
1793
+ "id": 5185,
1794
+ "parent-id": 4077,
1795
+ "url": "https://ace-web.qtstage.io/section/lifestyle",
1796
+ "created-at": 1549614180849,
1797
+ "section-name": "Lifestyle",
1798
+ "menu-group-id": null,
1799
+ "data": {
1800
+ "color": "#000000"
1801
+ }
1802
+ },
1803
+ {
1804
+ "updated-at": 1552564042031,
1805
+ "tag-name": null,
1806
+ "publisher-id": 97,
1807
+ "menu-group-slug": "header",
1808
+ "item-id": null,
1809
+ "rank": 5746,
1810
+ "title": "Testing Header Menu",
1811
+ "item-type": "link",
1812
+ "section-slug": null,
1813
+ "tag-slug": null,
1814
+ "id": 5745,
1815
+ "parent-id": null,
1816
+ "url": "google.com",
1817
+ "created-at": 1552558276605,
1818
+ "section-name": null,
1819
+ "menu-group-id": 44,
1820
+ "data": {
1821
+ "color": "#000000",
1822
+ "link": "google.com"
1823
+ }
1824
+ },
1825
+ {
1826
+ "updated-at": 1557309038083,
1827
+ "tag-name": null,
1828
+ "publisher-id": 97,
1829
+ "menu-group-slug": "default",
1830
+ "item-id": null,
1831
+ "rank": 6552,
1832
+ "title": "Test",
1833
+ "item-type": "placeholder",
1834
+ "section-slug": null,
1835
+ "tag-slug": null,
1836
+ "id": 6552,
1837
+ "parent-id": null,
1838
+ "url": null,
1839
+ "created-at": 1557309038083,
1840
+ "section-name": null,
1841
+ "menu-group-id": 43,
1842
+ "data": {
1843
+ "color": "#000000"
1844
+ }
1845
+ },
1846
+ {
1847
+ "updated-at": 1557309285086,
1848
+ "tag-name": null,
1849
+ "publisher-id": 97,
1850
+ "menu-group-slug": "default",
1851
+ "item-id": 6449,
1852
+ "rank": 6553,
1853
+ "title": "Test-child 1",
1854
+ "item-type": "section",
1855
+ "section-slug": "current-affairs",
1856
+ "tag-slug": null,
1857
+ "id": 6553,
1858
+ "parent-id": 6552,
1859
+ "url": "https://ace-web.qtstage.io/section/current-affairs",
1860
+ "created-at": 1557309275053,
1861
+ "section-name": "Current Affairs",
1862
+ "menu-group-id": 43,
1863
+ "data": {
1864
+ "color": "#000000"
1865
+ }
1866
+ }
1867
+ ],
1868
+ "stacks": []
1869
+ },
1870
+ "domains": [],
1871
+ "cdn-name": "https://thumbor-stg.assettype.com/",
1872
+ "publisher-id": 97,
1873
+ "publisher-settings": {
1874
+ "title": "title",
1875
+ "description": "This is the desc inside admin settings to come",
1876
+ "publisher-logo": {
1877
+ "temp-s3-key": "ace.staging.quintype.com/2018-02-16/1646/b5928b9c-f5e1-4734-8028-35a89edc560f.svg",
1878
+ "url": "https://quintype-dropbox-accelerated.s3-accelerate.amazonaws.com/ace.staging.quintype.com/2018-02-16/1646/b5928b9c-f5e1-4734-8028-35a89edc560f.svg"
1879
+ },
1880
+ "theme-color": "#fff000",
1881
+ "publisher-logo-to-show-on-header": "logo",
1882
+ "copyright": "\u00A9 ace 2019"
1883
+ },
1884
+ "num-headlines": 5,
1885
+ "publisher-name": "ace",
1886
+ "env": "staging",
1887
+ "initial-stories-per-page": 40,
1888
+ "seo-metadata": [
1889
+ {
1890
+ "id": 80,
1891
+ "publisher-id": 97,
1892
+ "owner-type": "section",
1893
+ "owner-id": 6447,
1894
+ "unused-guid": null,
1895
+ "data": {
1896
+ "page-title": "Entertainment",
1897
+ "title": "Entertainment"
1898
+ },
1899
+ "created-at": 1528795311426,
1900
+ "updated-at": 1550120889135
1901
+ },
1902
+ {
1903
+ "id": 82,
1904
+ "publisher-id": 97,
1905
+ "owner-type": "section",
1906
+ "owner-id": 5746,
1907
+ "unused-guid": null,
1908
+ "data": {
1909
+ "page-title": "Politics ",
1910
+ "title": "Politics Meta Title",
1911
+ "description": "Politics Description",
1912
+ "keywords": "Politics, Bjp, congress, modi"
1913
+ },
1914
+ "created-at": 1531988798136,
1915
+ "updated-at": 1531988798136
1916
+ },
1917
+ {
1918
+ "id": 84,
1919
+ "publisher-id": 97,
1920
+ "owner-type": "home",
1921
+ "owner-id": null,
1922
+ "unused-guid": null,
1923
+ "data": {
1924
+ "page-title": "Ace",
1925
+ "title": "ace ",
1926
+ "description": "lorem ipsum"
1927
+ },
1928
+ "created-at": 1535711639327,
1929
+ "updated-at": 1535711652608
1930
+ }
1931
+ ],
1932
+ "typekit-id": "ntm3kec",
1933
+ "cdn-image": "thumbor-stg.assettype.com",
1934
+ "story-slug-format": "{{section}}/{{first-published-at|YYYY/MM/dd}}",
1935
+ "android": {
1936
+ "notification-style": "roll-up"
1937
+ },
1938
+ "shrubbery-host": "https://stg-analytics.qlitics.com",
1939
+ "static-page-urls": [
1940
+ "https://ace-web.qtstage.io/TestStaticPage194837",
1941
+ "https://ace-web.qtstage.io/TestStaticPage52917",
1942
+ "https://ace-web.qtstage.io/TestStaticPage95821",
1943
+ "https://ace-web.qtstage.io/TestStaticPage113457",
1944
+ "https://ace-web.qtstage.io/TestStaticPage131548",
1945
+ "https://ace-web.qtstage.io/TestStaticPage131325",
1946
+ "https://ace-web.qtstage.io/TestStaticPage73623",
1947
+ "https://ace-web.qtstage.io/TestStaticPage94537",
1948
+ "https://ace-web.qtstage.io/TestStaticPage131940",
1949
+ "https://ace-web.qtstage.io/TestStaticPage55252",
1950
+ "https://ace-web.qtstage.io/TestStaticPage7306",
1951
+ "https://ace-web.qtstage.io/TestStaticPage54725",
1952
+ "https://ace-web.qtstage.io/TestStaticPage125551",
1953
+ "https://ace-web.qtstage.io/TestStaticPage61940",
1954
+ "https://ace-web.qtstage.io/TestStaticPage65044",
1955
+ "https://ace-web.qtstage.io/TestStaticPage7340",
1956
+ "https://ace-web.qtstage.io/TestStaticPage93414",
1957
+ "https://ace-web.qtstage.io/TestStaticPage111642",
1958
+ "https://ace-web.qtstage.io/TestStaticPage9398",
1959
+ "https://ace-web.qtstage.io/TestStaticPage102756",
1960
+ "https://ace-web.qtstage.io/TestStaticPage115949",
1961
+ "https://ace-web.qtstage.io/TestStaticPage95247",
1962
+ "https://ace-web.qtstage.io/TestStaticPage9821",
1963
+ "https://ace-web.qtstage.io/TestStaticPage175546",
1964
+ "https://ace-web.qtstage.io/TestStaticPage71339",
1965
+ "https://ace-web.qtstage.io/TestStaticPage174539",
1966
+ "https://ace-web.qtstage.io/TestStaticPage20526",
1967
+ "https://ace-web.qtstage.io/TestStaticPage182937",
1968
+ "https://ace-web.qtstage.io/TestStaticPage104410",
1969
+ "https://ace-web.qtstage.io/TestStaticPage52635",
1970
+ "https://ace-web.qtstage.io/TestStaticPage53336",
1971
+ "https://ace-web.qtstage.io/TestStaticPage84052",
1972
+ "https://ace-web.qtstage.io/TestStaticPage174043",
1973
+ "https://ace-web.qtstage.io/TestStaticPage14343",
1974
+ "https://ace-web.qtstage.io/TestStaticPage72113",
1975
+ "https://ace-web.qtstage.io/TestStaticPage182737",
1976
+ "https://ace-web.qtstage.io/TestStaticPage92929",
1977
+ "https://ace-web.qtstage.io/TestStaticPage91244",
1978
+ "https://ace-web.qtstage.io/TestStaticPage73212",
1979
+ "https://ace-web.qtstage.io/TestStaticPage93015",
1980
+ "https://ace-web.qtstage.io/TestStaticPage35756",
1981
+ "https://ace-web.qtstage.io/TestStaticPage103221",
1982
+ "https://ace-web.qtstage.io/TestStaticPage1165",
1983
+ "https://ace-web.qtstage.io/TestStaticPage14253",
1984
+ "https://ace-web.qtstage.io/TestStaticPage45522",
1985
+ "https://ace-web.qtstage.io/TestStaticPage4310",
1986
+ "https://ace-web.qtstage.io/TestStaticPage1756",
1987
+ "https://ace-web.qtstage.io/TestStaticPage15191",
1988
+ "https://ace-web.qtstage.io/TestStaticPage12410",
1989
+ "https://ace-web.qtstage.io/form",
1990
+ "https://ace-web.qtstage.io/TestStaticPage115630",
1991
+ "https://ace-web.qtstage.io/TestStaticPage43538",
1992
+ "https://ace-web.qtstage.io/TestStaticPage134331",
1993
+ "https://ace-web.qtstage.io/TestStaticPage74839",
1994
+ "https://ace-web.qtstage.io/testing123",
1995
+ "https://ace-web.qtstage.io/TestStaticPage43014",
1996
+ "https://ace-web.qtstage.io/TestStaticPage131159",
1997
+ "https://ace-web.qtstage.io/TestStaticPage45713",
1998
+ "https://ace-web.qtstage.io/banner-source",
1999
+ "https://ace-web.qtstage.io/TestStaticPage8323",
2000
+ "https://ace-web.qtstage.io/TestStaticPage8372",
2001
+ "https://ace-web.qtstage.io/TestStaticPage171245",
2002
+ "https://ace-web.qtstage.io/TestStaticPage173535",
2003
+ "https://ace-web.qtstage.io/TestStaticPage45947",
2004
+ "https://ace-web.qtstage.io/TestStaticPage41337",
2005
+ "https://ace-web.qtstage.io/TestStaticPage610",
2006
+ "https://ace-web.qtstage.io/TestStaticPage132317",
2007
+ "https://ace-web.qtstage.io/TestStaticPage104644",
2008
+ "https://ace-web.qtstage.io/TestStaticPage152442",
2009
+ "https://ace-web.qtstage.io/TestStaticPage10230",
2010
+ "https://ace-web.qtstage.io/TestStaticPage8418",
2011
+ "https://ace-web.qtstage.io/TestStaticPage63313",
2012
+ "https://ace-web.qtstage.io/TestStaticPage5453",
2013
+ "https://ace-web.qtstage.io/TestStaticPage12645",
2014
+ "https://ace-web.qtstage.io/TestStaticPage103436",
2015
+ "https://ace-web.qtstage.io/TestStaticPage19354",
2016
+ "https://ace-web.qtstage.io/TestStaticPage65452",
2017
+ "https://ace-web.qtstage.io/TestStaticPage41626",
2018
+ "https://ace-web.qtstage.io/TestStaticPage22322",
2019
+ "https://ace-web.qtstage.io/TestStaticPage54918",
2020
+ "https://ace-web.qtstage.io/TestStaticPage114131",
2021
+ "https://ace-web.qtstage.io/TestStaticPage45038",
2022
+ "https://ace-web.qtstage.io/TestStaticPage12438",
2023
+ "https://ace-web.qtstage.io/TestStaticPage43620",
2024
+ "https://ace-web.qtstage.io/TestStaticPage10485",
2025
+ "https://ace-web.qtstage.io/TestStaticPage3464",
2026
+ "https://ace-web.qtstage.io/TestStaticPage105459",
2027
+ "https://ace-web.qtstage.io/TestStaticPage104012",
2028
+ "https://ace-web.qtstage.io/TestStaticPage11356",
2029
+ "https://ace-web.qtstage.io/TestStaticPage64219",
2030
+ "https://ace-web.qtstage.io/TestStaticPage6329",
2031
+ "https://ace-web.qtstage.io/TestStaticPage8255",
2032
+ "https://ace-web.qtstage.io/TestStaticPage41451",
2033
+ "https://ace-web.qtstage.io/TestStaticPage6325",
2034
+ "https://ace-web.qtstage.io/TestStaticPage6328",
2035
+ "https://ace-web.qtstage.io/TestStaticPage105126",
2036
+ "https://ace-web.qtstage.io/TestStaticPage91111",
2037
+ "https://ace-web.qtstage.io/TestStaticPage124256",
2038
+ "https://ace-web.qtstage.io/TestStaticPage61350",
2039
+ "https://ace-web.qtstage.io/TestStaticPage19613",
2040
+ "https://ace-web.qtstage.io/TestStaticPage34843",
2041
+ "https://ace-web.qtstage.io/TestStaticPage5598",
2042
+ "https://ace-web.qtstage.io/TestStaticPage55258",
2043
+ "https://ace-web.qtstage.io/TestStaticPage12586",
2044
+ "https://ace-web.qtstage.io/TestStaticPage6833",
2045
+ "https://ace-web.qtstage.io/TestStaticPage115423",
2046
+ "https://ace-web.qtstage.io/TestStaticPage95020",
2047
+ "https://ace-web.qtstage.io/TestStaticPage111526",
2048
+ "https://ace-web.qtstage.io/contact-us",
2049
+ "https://ace-web.qtstage.io/TestStaticPage6718",
2050
+ "https://ace-web.qtstage.io/TestStaticPage14256",
2051
+ "https://ace-web.qtstage.io/TestStaticPage91010",
2052
+ "https://ace-web.qtstage.io/communitysheroes",
2053
+ "https://ace-web.qtstage.io/TestStaticPage92626",
2054
+ "https://ace-web.qtstage.io/TestStaticPage91921",
2055
+ "https://ace-web.qtstage.io/TestStaticPage14811",
2056
+ "https://ace-web.qtstage.io/TestStaticPage41632",
2057
+ "https://ace-web.qtstage.io/TestStaticPage41224",
2058
+ "https://ace-web.qtstage.io/TestStaticPage17048",
2059
+ "https://ace-web.qtstage.io/TestStaticPage121132",
2060
+ "https://ace-web.qtstage.io/TestStaticPage174537",
2061
+ "https://ace-web.qtstage.io/TestStaticPage6653",
2062
+ "https://ace-web.qtstage.io/TestStaticPage54740",
2063
+ "https://ace-web.qtstage.io/TestStaticPage13651",
2064
+ "https://ace-web.qtstage.io/TestStaticPage6336",
2065
+ "https://ace-web.qtstage.io/a1-static-page",
2066
+ "https://ace-web.qtstage.io/TestStaticPage71422",
2067
+ "https://ace-web.qtstage.io/TestStaticPage4223",
2068
+ "https://ace-web.qtstage.io/TestStaticPage175331",
2069
+ "https://ace-web.qtstage.io/TestStaticPage9139",
2070
+ "https://ace-web.qtstage.io/TestStaticPage8394",
2071
+ "https://ace-web.qtstage.io/TestStaticPage1479",
2072
+ "https://ace-web.qtstage.io/TestStaticPage85452",
2073
+ "https://ace-web.qtstage.io/TestStaticPage43352",
2074
+ "https://ace-web.qtstage.io/TestStaticPage105437",
2075
+ "https://ace-web.qtstage.io/TestStaticPage105321",
2076
+ "https://ace-web.qtstage.io/TestStaticPage11138",
2077
+ "https://ace-web.qtstage.io/TestStaticPage5954",
2078
+ "https://ace-web.qtstage.io/TestStaticPage165417",
2079
+ "https://ace-web.qtstage.io/TestStaticPage9331",
2080
+ "https://ace-web.qtstage.io/TestStaticPage112133",
2081
+ "https://ace-web.qtstage.io/TestStaticPage44711",
2082
+ "https://ace-web.qtstage.io/TestStaticPage131131",
2083
+ "https://ace-web.qtstage.io/TestStaticPage14346",
2084
+ "https://ace-web.qtstage.io/TestStaticPage10919",
2085
+ "https://ace-web.qtstage.io/TestStaticPage14328",
2086
+ "https://ace-web.qtstage.io/TestStaticPage14313",
2087
+ "https://ace-web.qtstage.io/TestStaticPage121712",
2088
+ "https://ace-web.qtstage.io/TestStaticPage102159",
2089
+ "https://ace-web.qtstage.io/TestStaticPage72951",
2090
+ "https://ace-web.qtstage.io/TestStaticPage10293",
2091
+ "https://ace-web.qtstage.io/TestStaticPage152219",
2092
+ "https://ace-web.qtstage.io/TestStaticPage62419",
2093
+ "https://ace-web.qtstage.io/TestStaticPage52939",
2094
+ "https://ace-web.qtstage.io/TestStaticPage3164734",
2095
+ "https://ace-web.qtstage.io/TestStaticPage316220",
2096
+ "https://ace-web.qtstage.io/TestStaticPage3",
2097
+ "https://ace-web.qtstage.io/TestStaticPage124753",
2098
+ "https://ace-web.qtstage.io/TestStaticPage82028",
2099
+ "https://ace-web.qtstage.io/TestStaticPage103025",
2100
+ "https://ace-web.qtstage.io/TestStaticPage85241",
2101
+ "https://ace-web.qtstage.io/TestStaticPage11335",
2102
+ "https://ace-web.qtstage.io/TestStaticPage13428",
2103
+ "https://ace-web.qtstage.io/TestStaticPage10132",
2104
+ "https://ace-web.qtstage.io/TestStaticPage14249",
2105
+ "https://ace-web.qtstage.io/augusttest",
2106
+ "https://ace-web.qtstage.io/TestStaticPage91738",
2107
+ "https://ace-web.qtstage.io/TestStaticPage124336",
2108
+ "https://ace-web.qtstage.io/TestStaticPage123333",
2109
+ "https://ace-web.qtstage.io/TestStaticPage93546",
2110
+ "https://ace-web.qtstage.io/TestStaticPage10461",
2111
+ "https://ace-web.qtstage.io/TestStaticPage125739",
2112
+ "https://ace-web.qtstage.io/TestStaticPage3104540",
2113
+ "https://ace-web.qtstage.io/TestStaticPage9251",
2114
+ "https://ace-web.qtstage.io/TestStaticPage114115",
2115
+ "https://ace-web.qtstage.io/TestStaticPage10164",
2116
+ "https://ace-web.qtstage.io/TestStaticPage101948",
2117
+ "https://ace-web.qtstage.io/TestStaticPage61825",
2118
+ "https://ace-web.qtstage.io/TestStaticPage93616",
2119
+ "https://ace-web.qtstage.io/TestStaticPage72541",
2120
+ "https://ace-web.qtstage.io/TestStaticPage123946",
2121
+ "https://ace-web.qtstage.io/TestStaticPage43910",
2122
+ "https://ace-web.qtstage.io/TestStaticPage441",
2123
+ "https://ace-web.qtstage.io/TestStaticPage1444",
2124
+ "https://ace-web.qtstage.io/TestStaticPage112616",
2125
+ "https://ace-web.qtstage.io/TestStaticPage44514",
2126
+ "https://ace-web.qtstage.io/TestStaticPage9483",
2127
+ "https://ace-web.qtstage.io/TestStaticPage102244",
2128
+ "https://ace-web.qtstage.io/TestStaticPage115450",
2129
+ "https://ace-web.qtstage.io/TestStaticPage122538",
2130
+ "https://ace-web.qtstage.io/TestStaticPage6154",
2131
+ "https://ace-web.qtstage.io/TestStaticPage102948",
2132
+ "https://ace-web.qtstage.io/TestStaticPage163525",
2133
+ "https://ace-web.qtstage.io/TestStaticPage63735",
2134
+ "https://ace-web.qtstage.io/TestStaticPage12536",
2135
+ "https://ace-web.qtstage.io/TestStaticPage9461",
2136
+ "https://ace-web.qtstage.io/TestStaticPage43816",
2137
+ "https://ace-web.qtstage.io/TestStaticPage95836",
2138
+ "https://ace-web.qtstage.io/TestStaticPage14105",
2139
+ "https://ace-web.qtstage.io/TestStaticPage6829",
2140
+ "https://ace-web.qtstage.io/TestStaticPage33937",
2141
+ "https://ace-web.qtstage.io//audio",
2142
+ "https://ace-web.qtstage.io/TestStaticPage161433",
2143
+ "https://ace-web.qtstage.io/TestStaticPage4263",
2144
+ "https://ace-web.qtstage.io/TestStaticPage73344",
2145
+ "https://ace-web.qtstage.io/TestStaticPage14312",
2146
+ "https://ace-web.qtstage.io/TestStaticPage94259",
2147
+ "https://ace-web.qtstage.io/TestStaticPage92521",
2148
+ "https://ace-web.qtstage.io/TestStaticPage81125",
2149
+ "https://ace-web.qtstage.io/TestStaticPage14854",
2150
+ "https://ace-web.qtstage.io/TestStaticPage121451",
2151
+ "https://ace-web.qtstage.io/TestStaticPage153632",
2152
+ "https://ace-web.qtstage.io/TestStaticPage94018",
2153
+ "https://ace-web.qtstage.io/TestStaticPage221731",
2154
+ "https://ace-web.qtstage.io/TestStaticPage124241",
2155
+ "https://ace-web.qtstage.io/TestStaticPage201447",
2156
+ "https://ace-web.qtstage.io/TestStaticPage14634",
2157
+ "https://ace-web.qtstage.io/TestStaticPage185332",
2158
+ "https://ace-web.qtstage.io/TestStaticPage14251",
2159
+ "https://ace-web.qtstage.io/TestStaticPage91727",
2160
+ "https://ace-web.qtstage.io/TestStaticPage21631",
2161
+ "https://ace-web.qtstage.io/TestStaticPage55618",
2162
+ "https://ace-web.qtstage.io/TestStaticPage10429",
2163
+ "https://ace-web.qtstage.io/test-test123",
2164
+ "https://ace-web.qtstage.io/TestStaticPage103542",
2165
+ "https://ace-web.qtstage.io/TestStaticPage61828",
2166
+ "https://ace-web.qtstage.io/TestStaticPage113918",
2167
+ "https://ace-web.qtstage.io/TestStaticPage8911",
2168
+ "https://ace-web.qtstage.io/TestStaticPage9617",
2169
+ "https://ace-web.qtstage.io/TestStaticPage53151",
2170
+ "https://ace-web.qtstage.io/TestStaticPage9356",
2171
+ "https://ace-web.qtstage.io/TestStaticPage94656",
2172
+ "https://ace-web.qtstage.io/TestStaticPage19251",
2173
+ "https://ace-web.qtstage.io/TestStaticPage4850",
2174
+ "https://ace-web.qtstage.io/TestStaticPage6387",
2175
+ "https://ace-web.qtstage.io/TestStaticPage103234",
2176
+ "https://ace-web.qtstage.io/TestStaticPage113528",
2177
+ "https://ace-web.qtstage.io/TestStaticPage6161",
2178
+ "https://ace-web.qtstage.io/TestStaticPage1294",
2179
+ "https://ace-web.qtstage.io/TestStaticPage75337",
2180
+ "https://ace-web.qtstage.io/TestStaticPage63818",
2181
+ "https://ace-web.qtstage.io/TestStaticPage43716",
2182
+ "https://ace-web.qtstage.io/TestStaticPage6582",
2183
+ "https://ace-web.qtstage.io/TestStaticPage73228",
2184
+ "https://ace-web.qtstage.io/TestStaticPage1347",
2185
+ "https://ace-web.qtstage.io/TestStaticPage14914",
2186
+ "https://ace-web.qtstage.io/TestStaticPage83132",
2187
+ "https://ace-web.qtstage.io/TestStaticPage14242",
2188
+ "https://ace-web.qtstage.io/TestStaticPage16454",
2189
+ "https://ace-web.qtstage.io/TestStaticPage14757",
2190
+ "https://ace-web.qtstage.io/TestStaticPage92541",
2191
+ "https://ace-web.qtstage.io/TestStaticPage133412",
2192
+ "https://ace-web.qtstage.io/TestStaticPage93641",
2193
+ "https://ace-web.qtstage.io/TestStaticPage104258",
2194
+ "https://ace-web.qtstage.io/TestStaticPage16170",
2195
+ "https://ace-web.qtstage.io/TestStaticPage111146",
2196
+ "https://ace-web.qtstage.io/TestStaticPage102116",
2197
+ "https://ace-web.qtstage.io/TestStaticPage105111",
2198
+ "https://ace-web.qtstage.io/TestStaticPage141558",
2199
+ "https://ace-web.qtstage.io/TestStaticPage10327",
2200
+ "https://ace-web.qtstage.io/TestStaticPage10521",
2201
+ "https://ace-web.qtstage.io/TestStaticPage171029",
2202
+ "https://ace-web.qtstage.io/TestStaticPage12045",
2203
+ "https://ace-web.qtstage.io/TestStaticPage14317",
2204
+ "https://ace-web.qtstage.io/TestStaticPage3155757",
2205
+ "https://ace-web.qtstage.io/TestStaticPage41321",
2206
+ "https://ace-web.qtstage.io/TestStaticPage75319",
2207
+ "https://ace-web.qtstage.io/TestStaticPage19450",
2208
+ "https://ace-web.qtstage.io/TestStaticPage114521",
2209
+ "https://ace-web.qtstage.io/TestStaticPage10373",
2210
+ "https://ace-web.qtstage.io/TestStaticPage84422",
2211
+ "https://ace-web.qtstage.io/TestStaticPage72024",
2212
+ "https://ace-web.qtstage.io/TestStaticPage1381",
2213
+ "https://ace-web.qtstage.io/TestStaticPage142359",
2214
+ "https://ace-web.qtstage.io/TestStaticPage4533",
2215
+ "https://ace-web.qtstage.io/TestStaticPage83939",
2216
+ "https://ace-web.qtstage.io/TestStaticPage164057",
2217
+ "https://ace-web.qtstage.io/TestStaticPage5924",
2218
+ "https://ace-web.qtstage.io/TestStaticPage4718",
2219
+ "https://ace-web.qtstage.io/TestStaticPage12649",
2220
+ "https://ace-web.qtstage.io/TestStaticPage64659",
2221
+ "https://ace-web.qtstage.io/TestStaticPage123512",
2222
+ "https://ace-web.qtstage.io/TestStaticPage10442",
2223
+ "https://ace-web.qtstage.io/TestStaticPage183638",
2224
+ "https://ace-web.qtstage.io/TestStaticPage175329",
2225
+ "https://ace-web.qtstage.io/TestStaticPage13390",
2226
+ "https://ace-web.qtstage.io/sample2",
2227
+ "https://ace-web.qtstage.io/TestStaticPage3155719",
2228
+ "https://ace-web.qtstage.io/TestStaticPage14617",
2229
+ "https://ace-web.qtstage.io/privacy-policy",
2230
+ "https://ace-web.qtstage.io/TestStaticPage11553",
2231
+ "https://ace-web.qtstage.io/TestStaticPage112712",
2232
+ "https://ace-web.qtstage.io/TestStaticPage84144",
2233
+ "https://ace-web.qtstage.io/TestStaticPage6011",
2234
+ "https://ace-web.qtstage.io/TestStaticPage41251",
2235
+ "https://ace-web.qtstage.io/TestStaticPage102845",
2236
+ "https://ace-web.qtstage.io/TestStaticPage7410",
2237
+ "https://ace-web.qtstage.io/TestStaticPage53116",
2238
+ "https://ace-web.qtstage.io/TestStaticPage596",
2239
+ "https://ace-web.qtstage.io/TestStaticPage63030",
2240
+ "https://ace-web.qtstage.io/TestStaticPage104551",
2241
+ "http://ace-web.staging.quintype.io/privacy-policy",
2242
+ "https://ace-web.qtstage.io/TestStaticPage74314",
2243
+ "https://ace-web.qtstage.io/TestStaticPage14330",
2244
+ "https://ace-web.qtstage.io/TestStaticPage11322",
2245
+ "https://ace-web.qtstage.io/TestStaticPage162728",
2246
+ "http://ace-web.staging.quintype.io/about-us",
2247
+ "https://ace-web.qtstage.io/TestStaticPage62115",
2248
+ "https://ace-web.qtstage.io/TestStaticPage41914",
2249
+ "https://ace-web.qtstage.io/TestStaticPage72757",
2250
+ "https://ace-web.qtstage.io/TestStaticPage85245",
2251
+ "https://ace-web.qtstage.io/TestStaticPage63628",
2252
+ "https://ace-web.qtstage.io/TestStaticPage113859",
2253
+ "https://ace-web.qtstage.io/TestStaticPage93656",
2254
+ "https://ace-web.qtstage.io/TestStaticPage4269",
2255
+ "https://ace-web.qtstage.io/TestStaticPage41543",
2256
+ "https://ace-web.qtstage.io/TestStaticPage92516",
2257
+ "https://ace-web.qtstage.io/TestStaticPage152752",
2258
+ "https://ace-web.qtstage.io/TestStaticPage95517",
2259
+ "https://ace-web.qtstage.io/TestStaticPage52819",
2260
+ "https://ace-web.qtstage.io/TestStaticPage4935",
2261
+ "https://ace-web.qtstage.io/TestStaticPage9954",
2262
+ "https://ace-web.qtstage.io/TestStaticPage7452",
2263
+ "https://ace-web.qtstage.io/TestStaticPage112849",
2264
+ "https://ace-web.qtstage.io/TestStaticPage105557",
2265
+ "https://ace-web.qtstage.io/TestStaticPage52515",
2266
+ "https://ace-web.qtstage.io/TestStaticPage92649",
2267
+ "https://ace-web.qtstage.io/TestStaticPage10638",
2268
+ "https://ace-web.qtstage.io/TestStaticPage10645",
2269
+ "https://ace-web.qtstage.io/TestStaticPage42119",
2270
+ "https://ace-web.qtstage.io/TestStaticPage10307",
2271
+ "https://ace-web.qtstage.io/TestStaticPage122653",
2272
+ "https://ace-web.qtstage.io/TestStaticPage9916",
2273
+ "https://ace-web.qtstage.io/TestStaticPage102535",
2274
+ "https://ace-web.qtstage.io/TestStaticPage94323",
2275
+ "https://ace-web.qtstage.io/TestStaticPage93353",
2276
+ "https://ace-web.qtstage.io/TestStaticPage62925",
2277
+ "https://ace-web.qtstage.io/TestStaticPage92734",
2278
+ "https://ace-web.qtstage.io/TestStaticPage8204",
2279
+ "https://ace-web.qtstage.io/TestStaticPage95345",
2280
+ "https://ace-web.qtstage.io/TestStaticPage133344",
2281
+ "https://ace-web.qtstage.io/TestStaticPage61443",
2282
+ "https://ace-web.qtstage.io/TestStaticPage81246",
2283
+ "https://ace-web.qtstage.io/TestStaticPage7110",
2284
+ "https://ace-web.qtstage.io/community",
2285
+ "https://ace-web.qtstage.io/TestStaticPage43611",
2286
+ "https://ace-web.qtstage.io/TestStaticPage10140",
2287
+ "https://ace-web.qtstage.io/TestStaticPage860",
2288
+ "https://ace-web.qtstage.io/TestStaticPage124351",
2289
+ "https://ace-web.qtstage.io/TestStaticPage51851",
2290
+ "https://ace-web.qtstage.io/TestStaticPage83722",
2291
+ "https://ace-web.qtstage.io/TestStaticPage112358",
2292
+ "https://ace-web.qtstage.io/TestStaticPage42525",
2293
+ "https://ace-web.qtstage.io/TestStaticPage7722",
2294
+ "https://ace-web.qtstage.io/TestStaticPage71120",
2295
+ "https://ace-web.qtstage.io/TestStaticPage6831",
2296
+ "https://ace-web.qtstage.io/TestStaticPage82447",
2297
+ "https://ace-web.qtstage.io/TestStaticPage93124",
2298
+ "https://ace-web.qtstage.io/TestStaticPage75853",
2299
+ "https://ace-web.qtstage.io/TestStaticPage112512",
2300
+ "https://ace-web.qtstage.io/TestStaticPage6452",
2301
+ "https://ace-web.qtstage.io/TestStaticPage51757",
2302
+ "https://ace-web.qtstage.io/TestStaticPage53243",
2303
+ "https://ace-web.qtstage.io/TestStaticPage133951",
2304
+ "https://ace-web.qtstage.io/TestStaticPage54017",
2305
+ "https://ace-web.qtstage.io/TestStaticPage11489",
2306
+ "https://ace-web.qtstage.io/TestStaticPage14319",
2307
+ "https://ace-web.qtstage.io/TestStaticPage71853",
2308
+ "https://ace-web.qtstage.io/TestStaticPage92711",
2309
+ "https://ace-web.qtstage.io/TestStaticPage6487",
2310
+ "https://ace-web.qtstage.io/TestStaticPage7734",
2311
+ "https://ace-web.qtstage.io/TestStaticPage1082",
2312
+ "https://ace-web.qtstage.io/TestStaticPage154911",
2313
+ "https://ace-web.qtstage.io/TestStaticPage42340",
2314
+ "https://ace-web.qtstage.io/TestStaticPage165234",
2315
+ "https://ace-web.qtstage.io/TestStaticPage115422",
2316
+ "https://ace-web.qtstage.io/TestStaticPage101711",
2317
+ "https://ace-web.qtstage.io/TestStaticPage114122",
2318
+ "https://ace-web.qtstage.io/TestStaticPage7455",
2319
+ "https://ace-web.qtstage.io/TestStaticPage72245",
2320
+ "https://ace-web.qtstage.io/TestStaticPage153330",
2321
+ "https://ace-web.qtstage.io/TestStaticPage72020",
2322
+ "https://ace-web.qtstage.io/TestStaticPage125918",
2323
+ "https://ace-web.qtstage.io/TestStaticPage5345",
2324
+ "https://ace-web.qtstage.io/TestStaticPage61851",
2325
+ "https://ace-web.qtstage.io/TestStaticPage111430",
2326
+ "https://ace-web.qtstage.io/TestStaticPage9833",
2327
+ "https://ace-web.qtstage.io/TestStaticPage1",
2328
+ "https://ace-web.qtstage.io/TestStaticPage105214",
2329
+ "https://ace-web.qtstage.io/TestStaticPage10157",
2330
+ "https://ace-web.qtstage.io/TestStaticPage12922",
2331
+ "https://ace-web.qtstage.io/TestStaticPage14324",
2332
+ "https://ace-web.qtstage.io/partners",
2333
+ "https://ace-web.qtstage.io/TestStaticPage102235",
2334
+ "https://ace-web.qtstage.io/TestStaticPage102158",
2335
+ "https://ace-web.qtstage.io/TestStaticPage95757",
2336
+ "https://ace-web.qtstage.io/TestStaticPage45657",
2337
+ "https://ace-web.qtstage.io/TestStaticPage113323",
2338
+ "https://ace-web.qtstage.io/TestStaticPage83019",
2339
+ "https://ace-web.qtstage.io/TestStaticPage123212",
2340
+ "https://ace-web.qtstage.io/TestStaticPage114444",
2341
+ "https://ace-web.qtstage.io/TestStaticPage14355",
2342
+ "https://ace-web.qtstage.io/TestStaticPage62117",
2343
+ "https://ace-web.qtstage.io/testing-test",
2344
+ "https://ace-web.qtstage.io/TestStaticPage8355",
2345
+ "https://ace-web.qtstage.io/TestStaticPage93313",
2346
+ "https://ace-web.qtstage.io/TestStaticPage113232",
2347
+ "https://ace-web.qtstage.io/TestStaticPage6029",
2348
+ "https://ace-web.qtstage.io/TestStaticPage12615",
2349
+ "https://ace-web.qtstage.io/TestStaticPage14259",
2350
+ "https://ace-web.qtstage.io/TestStaticPage133558",
2351
+ "https://ace-web.qtstage.io/TestStaticPage14326",
2352
+ "https://ace-web.qtstage.io/TestStaticPage13755",
2353
+ "https://ace-web.qtstage.io/TestStaticPage63948",
2354
+ "https://ace-web.qtstage.io/TestStaticPage44025",
2355
+ "https://ace-web.qtstage.io/TestStaticPage44047",
2356
+ "https://ace-web.qtstage.io/TestStaticPage85244",
2357
+ "https://ace-web.qtstage.io/TestStaticPage855",
2358
+ "https://ace-web.qtstage.io/TestStaticPage141856",
2359
+ "https://ace-web.qtstage.io/TestStaticPage61647",
2360
+ "https://ace-web.qtstage.io/TestStaticPage102225",
2361
+ "https://ace-web.qtstage.io/TestStaticPage141324",
2362
+ "https://ace-web.qtstage.io/TestStaticPage43749",
2363
+ "https://ace-web.qtstage.io/TestStaticPage103540",
2364
+ "https://ace-web.qtstage.io/TestStaticPage125915",
2365
+ "https://ace-web.qtstage.io/TestStaticPage111958",
2366
+ "https://ace-web.qtstage.io/TestStaticPage582",
2367
+ "https://ace-web.qtstage.io/TestStaticPage6201",
2368
+ "https://ace-web.qtstage.io/TestStaticPage174515",
2369
+ "https://ace-web.qtstage.io/TestStaticPage11142",
2370
+ "https://ace-web.qtstage.io/TestStaticPage11511",
2371
+ "https://ace-web.qtstage.io/TestStaticPage41237",
2372
+ "https://ace-web.qtstage.io/TestStaticPage4429",
2373
+ "https://ace-web.qtstage.io/TestStaticPage11238",
2374
+ "https://ace-web.qtstage.io/TestStaticPage15848",
2375
+ "https://ace-web.qtstage.io/election-tracker",
2376
+ "https://ace-web.qtstage.io/TestStaticPage14331",
2377
+ "https://ace-web.qtstage.io/TestStaticPage81539",
2378
+ "https://ace-web.qtstage.io/TestStaticPage4934",
2379
+ "https://ace-web.qtstage.io/TestStaticPage43049",
2380
+ "https://ace-web.qtstage.io/TestStaticPage11537",
2381
+ "https://ace-web.qtstage.io/TestStaticPage155150",
2382
+ "https://ace-web.qtstage.io/TestStaticPage145822",
2383
+ "https://ace-web.qtstage.io/TestStaticPage135330",
2384
+ "https://ace-web.qtstage.io/TestStaticPage5525",
2385
+ "https://ace-web.qtstage.io/TestStaticPage7394",
2386
+ "https://ace-web.qtstage.io/TestStaticPage131531",
2387
+ "https://ace-web.qtstage.io/TestStaticPage55310",
2388
+ "https://ace-web.qtstage.io/TestStaticPage8357",
2389
+ "https://ace-web.qtstage.io/TestStaticPage61852",
2390
+ "https://ace-web.qtstage.io/TestStaticPage121314",
2391
+ "https://ace-web.qtstage.io/TestStaticPage12035",
2392
+ "https://ace-web.qtstage.io/TestStaticPage141211",
2393
+ "https://ace-web.qtstage.io/TestStaticPage1762",
2394
+ "https://ace-web.qtstage.io/TestStaticPage132350",
2395
+ "https://ace-web.qtstage.io/TestStaticPage14349",
2396
+ "https://ace-web.qtstage.io/TestStaticPage192816",
2397
+ "https://ace-web.qtstage.io/TestStaticPage42658",
2398
+ "https://ace-web.qtstage.io/TestStaticPage95820",
2399
+ "https://ace-web.qtstage.io/TestStaticPage14332",
2400
+ "https://ace-web.qtstage.io/TestStaticPage45543",
2401
+ "https://ace-web.qtstage.io/TestStaticPage113953",
2402
+ "https://ace-web.qtstage.io/TestStaticPage4750",
2403
+ "https://ace-web.qtstage.io/TestStaticPage73548",
2404
+ "https://ace-web.qtstage.io/TestStaticPage133144",
2405
+ "https://ace-web.qtstage.io/TestStaticPage124433",
2406
+ "https://ace-web.qtstage.io/TestStaticPage11913",
2407
+ "https://ace-web.qtstage.io/TestStaticPage103117",
2408
+ "https://ace-web.qtstage.io/TestStaticPage152025",
2409
+ "https://ace-web.qtstage.io/TestStaticPage9163",
2410
+ "https://ace-web.qtstage.io/TestStaticPage13146",
2411
+ "https://ace-web.qtstage.io/TestStaticPage34517",
2412
+ "https://ace-web.qtstage.io/TestStaticPage83245",
2413
+ "https://ace-web.qtstage.io/TestStaticPage94350",
2414
+ "https://ace-web.qtstage.io/TestStaticPage125954",
2415
+ "https://ace-web.qtstage.io/TestStaticPage51236",
2416
+ "https://ace-web.qtstage.io/TestStaticPage163026",
2417
+ "https://ace-web.qtstage.io/TestStaticPage125542",
2418
+ "https://ace-web.qtstage.io/TestStaticPage1133",
2419
+ "https://ace-web.qtstage.io/TestStaticPage94836",
2420
+ "https://ace-web.qtstage.io/TestStaticPage5037",
2421
+ "https://ace-web.qtstage.io/TestStaticPage94731",
2422
+ "https://ace-web.qtstage.io/TestStaticPage11347",
2423
+ "https://ace-web.qtstage.io/TestStaticPage946",
2424
+ "https://ace-web.qtstage.io/TestStaticPage133212",
2425
+ "https://ace-web.qtstage.io/TestStaticPage114353",
2426
+ "https://ace-web.qtstage.io/TestStaticPage7351",
2427
+ "https://ace-web.qtstage.io/TestStaticPage54823",
2428
+ "https://ace-web.qtstage.io/TestStaticPage85522",
2429
+ "https://ace-web.qtstage.io/TestStaticPage62537",
2430
+ "https://ace-web.qtstage.io/TestStaticPage7163",
2431
+ "https://ace-web.qtstage.io/TestStaticPage92147",
2432
+ "https://ace-web.qtstage.io/TestStaticPage101551",
2433
+ "https://ace-web.qtstage.io/TestStaticPage64734",
2434
+ "https://ace-web.qtstage.io/TestStaticPage65144",
2435
+ "https://ace-web.qtstage.io/TestStaticPage105119",
2436
+ "https://ace-web.qtstage.io/TestStaticPage14341",
2437
+ "https://ace-web.qtstage.io/TestStaticPage104545",
2438
+ "https://ace-web.qtstage.io/TestStaticPage6948",
2439
+ "https://ace-web.qtstage.io/TestStaticPage13278",
2440
+ "https://ace-web.qtstage.io/TestStaticPage64618",
2441
+ "https://ace-web.qtstage.io/TestStaticPage73822",
2442
+ "https://ace-web.qtstage.io/TestStaticPage55518",
2443
+ "https://ace-web.qtstage.io/test-1",
2444
+ "https://ace-web.qtstage.io/TestStaticPage173721",
2445
+ "https://ace-web.qtstage.io/TestStaticPage64439",
2446
+ "https://ace-web.qtstage.io/TestStaticPage123042",
2447
+ "https://ace-web.qtstage.io/TestStaticPage22575",
2448
+ "https://ace-web.qtstage.io/TestStaticPage14633",
2449
+ "https://ace-web.qtstage.io/TestStaticPage45016",
2450
+ "https://ace-web.qtstage.io/TestStaticPage43153",
2451
+ "https://ace-web.qtstage.io/TestStaticPage62821",
2452
+ "https://ace-web.qtstage.io/TestStaticPage43826",
2453
+ "https://ace-web.qtstage.io/TestStaticPage71955",
2454
+ "https://ace-web.qtstage.io/TestStaticPage42426",
2455
+ "https://ace-web.qtstage.io/TestStaticPage101830",
2456
+ "https://ace-web.qtstage.io/TestStaticPage43833",
2457
+ "https://ace-web.qtstage.io/TestStaticPage53551",
2458
+ "https://ace-web.qtstage.io/TestStaticPage14217",
2459
+ "https://ace-web.qtstage.io/TestStaticPage94632",
2460
+ "https://ace-web.qtstage.io/TestStaticPage94215",
2461
+ "https://ace-web.qtstage.io/TestStaticPage15213",
2462
+ "https://ace-web.qtstage.io/TestStaticPage175127",
2463
+ "https://ace-web.qtstage.io/TestStaticPage",
2464
+ "https://ace-web.qtstage.io/TestStaticPage65816",
2465
+ "https://ace-web.qtstage.io/contact",
2466
+ "https://ace-web.qtstage.io/TestStaticPage63712",
2467
+ "https://ace-web.qtstage.io/TestStaticPage14752",
2468
+ "https://ace-web.qtstage.io/TestStaticPage65935",
2469
+ "https://ace-web.qtstage.io/TestStaticPage65430",
2470
+ "https://ace-web.qtstage.io/TestStaticPage93122",
2471
+ "https://ace-web.qtstage.io/TestStaticPage74223",
2472
+ "https://ace-web.qtstage.io/TestStaticPage102412",
2473
+ "https://ace-web.qtstage.io/TestStaticPage51754",
2474
+ "https://ace-web.qtstage.io/TestStaticPage18456",
2475
+ "https://ace-web.qtstage.io/TestStaticPage7149",
2476
+ "https://ace-web.qtstage.io/TestStaticPage20531",
2477
+ "https://ace-web.qtstage.io/TestStaticPage7272",
2478
+ "https://ace-web.qtstage.io/TestStaticPage101333",
2479
+ "https://ace-web.qtstage.io/TestStaticPage6511",
2480
+ "https://ace-web.qtstage.io/about-us",
2481
+ "https://ace-web.qtstage.io/TestStaticPage5317",
2482
+ "https://ace-web.qtstage.io/TestStaticPage12505",
2483
+ "https://ace-web.qtstage.io/TestStaticPage204627",
2484
+ "https://ace-web.qtstage.io/TestStaticPage93741",
2485
+ "https://ace-web.qtstage.io/TestStaticPage123143",
2486
+ "https://ace-web.qtstage.io/TestStaticPage52235",
2487
+ "https://ace-web.qtstage.io/TestStaticPage2",
2488
+ "https://ace-web.qtstage.io/TestStaticPage75753",
2489
+ "https://ace-web.qtstage.io/TestStaticPage73010",
2490
+ "https://ace-web.qtstage.io/sample",
2491
+ "https://ace-web.qtstage.io/TestStaticPage224045",
2492
+ "https://ace-web.qtstage.io/TestStaticPage958",
2493
+ "https://ace-web.qtstage.io/TestStaticPage72712",
2494
+ "https://ace-web.qtstage.io/TestStaticPage31621",
2495
+ "https://ace-web.qtstage.io/TestStaticPage101149",
2496
+ "https://ace-web.qtstage.io/TestStaticPage7726",
2497
+ "http://ace-web.staging.quintype.io/terms-and-conditions",
2498
+ "https://ace-web.qtstage.io/TestStaticPage65323",
2499
+ "https://ace-web.qtstage.io/TestStaticPage12713",
2500
+ "https://ace-web.qtstage.io/TestStaticPage103040",
2501
+ "https://ace-web.qtstage.io/TestStaticPage44221",
2502
+ "https://ace-web.qtstage.io/TestStaticPage103815",
2503
+ "https://ace-web.qtstage.io/TestStaticPage131744",
2504
+ "https://ace-web.qtstage.io/TestStaticPage134512",
2505
+ "https://ace-web.qtstage.io/TestStaticPage63645",
2506
+ "https://ace-web.qtstage.io/TestStaticPage14955",
2507
+ "https://ace-web.qtstage.io/TestStaticPage64821",
2508
+ "https://ace-web.qtstage.io/TestStaticPage82347",
2509
+ "https://ace-web.qtstage.io/TestStaticPage52859",
2510
+ "https://ace-web.qtstage.io/TestStaticPage1342",
2511
+ "https://ace-web.qtstage.io/TestStaticPage12651",
2512
+ "https://ace-web.qtstage.io/xxx123xxx",
2513
+ "https://ace-web.qtstage.io/TestStaticPage9114",
2514
+ "https://ace-web.qtstage.io/TestStaticPage14244",
2515
+ "https://ace-web.qtstage.io/source",
2516
+ "https://ace-web.qtstage.io/TestStaticPage123716",
2517
+ "https://ace-web.qtstage.io/TestStaticPage6115",
2518
+ "https://ace-web.qtstage.io/TestStaticPage71827",
2519
+ "https://ace-web.qtstage.io/TestStaticPage81957",
2520
+ "https://ace-web.qtstage.io/TestStaticPage13715",
2521
+ "https://ace-web.qtstage.io/TestStaticPage51432",
2522
+ "https://ace-web.qtstage.io/TestStaticPage316232",
2523
+ "https://ace-web.qtstage.io/TestStaticPage114326",
2524
+ "https://ace-web.qtstage.io/TestStaticPage82326",
2525
+ "https://ace-web.qtstage.io/TestStaticPage74535",
2526
+ "https://ace-web.qtstage.io/TestStaticPage10594",
2527
+ "https://ace-web.qtstage.io/TestStaticPage101846",
2528
+ "https://ace-web.qtstage.io/TestStaticPage14642",
2529
+ "https://ace-web.qtstage.io/TestStaticPage123955",
2530
+ "https://ace-web.qtstage.io/TestStaticPage94229",
2531
+ "https://ace-web.qtstage.io/TestStaticPage102126",
2532
+ "https://ace-web.qtstage.io/TestStaticPage62237",
2533
+ "https://ace-web.qtstage.io/TestStaticPage12445",
2534
+ "https://ace-web.qtstage.io/TestStaticPage141623",
2535
+ "https://ace-web.qtstage.io/TestStaticPage1413",
2536
+ "https://ace-web.qtstage.io/TestStaticPage43052",
2537
+ "https://ace-web.qtstage.io/TestStaticPage4261",
2538
+ "https://ace-web.qtstage.io/TestStaticPage53443",
2539
+ "https://ace-web.qtstage.io/TestStaticPage114230",
2540
+ "https://ace-web.qtstage.io/TestStaticPage14255",
2541
+ "https://ace-web.qtstage.io/TestStaticPage112624",
2542
+ "https://ace-web.qtstage.io/TestStaticPage13911",
2543
+ "https://ace-web.qtstage.io/TestStaticPage94728",
2544
+ "https://ace-web.qtstage.io/TestStaticPage134715",
2545
+ "https://ace-web.qtstage.io/TestStaticPage52118",
2546
+ "https://ace-web.qtstage.io/TestStaticPage124333",
2547
+ "https://ace-web.qtstage.io/TestStaticPage73413",
2548
+ "https://ace-web.qtstage.io/TestStaticPage123851",
2549
+ "https://ace-web.qtstage.io/TestStaticPage51425",
2550
+ "https://ace-web.qtstage.io/TestStaticPage134050",
2551
+ "https://ace-web.qtstage.io/TestStaticPage51925",
2552
+ "https://ace-web.qtstage.io/TestStaticPage93749",
2553
+ "https://ace-web.qtstage.io/TestStaticPage111425",
2554
+ "https://ace-web.qtstage.io/TestStaticPage131228",
2555
+ "https://ace-web.qtstage.io/TestStaticPage121242",
2556
+ "https://ace-web.qtstage.io/TestStaticPage9735",
2557
+ "https://ace-web.qtstage.io/TestStaticPage13925",
2558
+ "https://ace-web.qtstage.io/TestStaticPage115036",
2559
+ "https://ace-web.qtstage.io/TestStaticPage504",
2560
+ "https://ace-web.qtstage.io/TestStaticPage44437",
2561
+ "https://ace-web.qtstage.io/TestStaticPage13627",
2562
+ "https://ace-web.qtstage.io/TestStaticPage112642",
2563
+ "https://ace-web.qtstage.io/TestStaticPage91932",
2564
+ "https://ace-web.qtstage.io/TestStaticPage9545",
2565
+ "https://ace-web.qtstage.io/TestStaticPage122734",
2566
+ "https://ace-web.qtstage.io/TestStaticPage112812",
2567
+ "https://ace-web.qtstage.io/TestStaticPage43253",
2568
+ "https://ace-web.qtstage.io/TestStaticPage103531",
2569
+ "https://ace-web.qtstage.io/TestStaticPage55323",
2570
+ "https://ace-web.qtstage.io/TestStaticPage103211",
2571
+ "https://ace-web.qtstage.io/TestStaticPage4859",
2572
+ "https://ace-web.qtstage.io/TestStaticPage71340",
2573
+ "https://ace-web.qtstage.io/TestStaticPage7354",
2574
+ "https://ace-web.qtstage.io/TestStaticPage1482",
2575
+ "https://ace-web.qtstage.io/TestStaticPage16594",
2576
+ "https://ace-web.qtstage.io/TestStaticPage183756",
2577
+ "https://ace-web.qtstage.io/TestStaticPage101419",
2578
+ "https://ace-web.qtstage.io/TestStaticPage162054",
2579
+ "https://ace-web.qtstage.io/TestStaticPage114035",
2580
+ "https://ace-web.qtstage.io/TestStaticPage5335",
2581
+ "https://ace-web.qtstage.io/TestStaticPage43758",
2582
+ "https://ace-web.qtstage.io/TestStaticPage83439",
2583
+ "https://ace-web.qtstage.io/TestStaticPage43845",
2584
+ "https://ace-web.qtstage.io/TestStaticPage102541",
2585
+ "https://ace-web.qtstage.io/TestStaticPage14235",
2586
+ "https://ace-web.qtstage.io/TestStaticPage13334",
2587
+ "https://ace-web.qtstage.io/TestStaticPage63915",
2588
+ "https://ace-web.qtstage.io/TestStaticPage63458",
2589
+ "https://ace-web.qtstage.io/TestStaticPage21510",
2590
+ "https://ace-web.qtstage.io/brochure",
2591
+ "https://ace-web.qtstage.io/TestStaticPage123543",
2592
+ "https://ace-web.qtstage.io/TestStaticPage4051",
2593
+ "https://ace-web.qtstage.io/TestStaticPage113555",
2594
+ "https://ace-web.qtstage.io/TestStaticPage112235",
2595
+ "https://ace-web.qtstage.io/TestStaticPage4237",
2596
+ "https://ace-web.qtstage.io/TestStaticPage101726",
2597
+ "https://ace-web.qtstage.io/TestStaticPage71525",
2598
+ "https://ace-web.qtstage.io/TestStaticPage95832",
2599
+ "https://ace-web.qtstage.io/TestStaticPage174842",
2600
+ "https://ace-web.qtstage.io/TestStaticPage94558",
2601
+ "https://ace-web.qtstage.io/TestStaticPage1437",
2602
+ "https://ace-web.qtstage.io/TestStaticPage8588",
2603
+ "https://ace-web.qtstage.io/TestStaticPage43529",
2604
+ "https://ace-web.qtstage.io/TestStaticPage12735",
2605
+ "https://ace-web.qtstage.io/about-us-1",
2606
+ "https://ace-web.qtstage.io/TestStaticPage112651",
2607
+ "https://ace-web.qtstage.io/TestStaticPage141626",
2608
+ "https://ace-web.qtstage.io/TestStaticPage6820",
2609
+ "https://ace-web.qtstage.io/TestStaticPage1137",
2610
+ "https://ace-web.qtstage.io/TestStaticPage65750",
2611
+ "https://ace-web.qtstage.io/TestStaticPage102929",
2612
+ "https://ace-web.qtstage.io/TestStaticPage154629",
2613
+ "https://ace-web.qtstage.io/TestStaticPage43444",
2614
+ "https://ace-web.qtstage.io/TestStaticPage174117",
2615
+ "https://ace-web.qtstage.io/TestStaticPage10851",
2616
+ "https://ace-web.qtstage.io/TestStaticPage122559",
2617
+ "https://ace-web.qtstage.io/TestStaticPage175316",
2618
+ "https://ace-web.qtstage.io/TestStaticPage93426",
2619
+ "https://ace-web.qtstage.io/TestStaticPage53836",
2620
+ "https://ace-web.qtstage.io/TestStaticPage62010",
2621
+ "https://ace-web.qtstage.io/TestStaticPage93832",
2622
+ "https://ace-web.qtstage.io/TestStaticPage54154",
2623
+ "https://ace-web.qtstage.io/TestStaticPage84517",
2624
+ "https://ace-web.qtstage.io/TestStaticPage122514"
2625
+ ],
2626
+ "nudge-host": "https://ace.qtstage.io",
2627
+ "num-more-stories": 20,
2628
+ "polltype-host": "https://polltype-api.qtstage.io",
2629
+ "apps-data": {},
2630
+ "razorpay-gateway-key": null,
2631
+ "story-attributes": [
2632
+ {
2633
+ "type": "story",
2634
+ "name": "source",
2635
+ "values": [
2636
+ "India",
2637
+ "HK",
2638
+ "Thailand"
2639
+ ],
2640
+ "display-name": "Source",
2641
+ "attribute-level": "single",
2642
+ "data-type": "multi-valued-strings"
2643
+ },
2644
+ {
2645
+ "type": "story",
2646
+ "name": "demo",
2647
+ "values": [
2648
+ "de",
2649
+ "se"
2650
+ ],
2651
+ "display-name": "demo",
2652
+ "attribute-level": "multi",
2653
+ "data-type": "multi-valued-strings"
2654
+ },
2655
+ {
2656
+ "type": "story",
2657
+ "name": "ampstory",
2658
+ "values": [
2659
+ "true"
2660
+ ],
2661
+ "display-name": "AMP story",
2662
+ "attribute-level": "single",
2663
+ "data-type": "multi-valued-strings"
2664
+ },
2665
+ {
2666
+ "type": "card",
2667
+ "name": "visualstorystyle",
2668
+ "values": [
2669
+ "Shadow",
2670
+ "Box"
2671
+ ],
2672
+ "display-name": "Visual Story Style",
2673
+ "attribute-level": "single",
2674
+ "data-type": "multi-valued-strings"
2675
+ },
2676
+ {
2677
+ "type": "card",
2678
+ "name": "visualstoryposition",
2679
+ "values": [
2680
+ "Top",
2681
+ "Bottom",
2682
+ "Centre"
2683
+ ],
2684
+ "display-name": "Visual Story Position",
2685
+ "attribute-level": "single",
2686
+ "data-type": "multi-valued-strings"
2687
+ },
2688
+ {
2689
+ "type": "card",
2690
+ "name": "elementalignment",
2691
+ "values": [
2692
+ "left",
2693
+ "right",
2694
+ "Left",
2695
+ "Right"
2696
+ ],
2697
+ "display-name": "Element Alignment",
2698
+ "attribute-level": "single",
2699
+ "data-type": "multi-valued-strings"
2700
+ }
2701
+ ],
2702
+ "mins-between-refreshes": 25
2703
+ }