@mozaic-ds/vue 1.0.0-rc.2 → 2.1.0

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 (222) hide show
  1. package/LICENSE +51 -0
  2. package/README.md +76 -77
  3. package/dist/mozaic-vue.css +1 -1
  4. package/dist/mozaic-vue.d.ts +1664 -0
  5. package/dist/mozaic-vue.js +1943 -0
  6. package/dist/mozaic-vue.js.map +1 -0
  7. package/dist/mozaic-vue.umd.cjs +2 -0
  8. package/dist/mozaic-vue.umd.cjs.map +1 -0
  9. package/env.d.ts +1 -0
  10. package/package.json +78 -51
  11. package/src/components/Contributing.mdx +118 -0
  12. package/src/components/GettingStarted.mdx +45 -0
  13. package/src/components/Introduction.mdx +100 -0
  14. package/src/components/Support.mdx +18 -0
  15. package/src/components/breadcrumb/MBreadcrumb.spec.ts +105 -0
  16. package/src/components/breadcrumb/MBreadcrumb.stories.ts +82 -0
  17. package/src/components/breadcrumb/MBreadcrumb.vue +52 -55
  18. package/src/components/button/MButton.spec.ts +191 -0
  19. package/src/components/button/MButton.stories.ts +59 -0
  20. package/src/components/button/MButton.vue +98 -154
  21. package/src/components/checkbox/MCheckbox.spec.ts +104 -0
  22. package/src/components/checkbox/MCheckbox.stories.ts +83 -0
  23. package/src/components/checkbox/MCheckbox.vue +60 -101
  24. package/src/components/checkboxgroup/MCheckboxGroup.spec.ts +78 -0
  25. package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +61 -0
  26. package/src/components/checkboxgroup/MCheckboxGroup.vue +97 -0
  27. package/src/components/datepicker/MDatepicker.spec.ts +95 -0
  28. package/src/components/datepicker/MDatepicker.stories.ts +75 -0
  29. package/src/components/datepicker/MDatepicker.vue +114 -0
  30. package/src/components/divider/MDivider.spec.ts +57 -0
  31. package/src/components/divider/MDivider.stories.ts +64 -0
  32. package/src/components/divider/MDivider.vue +56 -0
  33. package/src/components/drawer/MDrawer.spec.ts +100 -0
  34. package/src/components/drawer/MDrawer.stories.ts +128 -0
  35. package/src/components/drawer/MDrawer.vue +140 -0
  36. package/src/components/field/MField.spec.ts +166 -0
  37. package/src/components/field/MField.stories.ts +369 -0
  38. package/src/components/field/MField.vue +78 -61
  39. package/src/components/fieldgroup/MFieldGroup.spec.ts +165 -0
  40. package/src/components/fieldgroup/MFieldGroup.stories.ts +416 -0
  41. package/src/components/fieldgroup/MFieldGroup.vue +79 -0
  42. package/src/components/flag/MFlag.spec.ts +46 -0
  43. package/src/components/flag/MFlag.stories.ts +46 -0
  44. package/src/components/flag/MFlag.vue +28 -39
  45. package/src/components/iconbutton/MIconButton.spec.ts +108 -0
  46. package/src/components/iconbutton/MIconButton.stories.ts +74 -0
  47. package/src/components/iconbutton/MIconButton.vue +73 -0
  48. package/src/components/link/MLink.spec.ts +154 -0
  49. package/src/components/link/MLink.stories.ts +89 -0
  50. package/src/components/link/MLink.vue +86 -120
  51. package/src/components/loader/MLoader.spec.ts +104 -0
  52. package/src/components/loader/MLoader.stories.ts +43 -0
  53. package/src/components/loader/MLoader.vue +66 -55
  54. package/src/components/loadingoverlay/MLoadingOverlay.spec.ts +37 -0
  55. package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +40 -0
  56. package/src/components/loadingoverlay/MLoadingOverlay.vue +28 -0
  57. package/src/components/modal/MModal.spec.ts +103 -0
  58. package/src/components/modal/MModal.stories.ts +127 -0
  59. package/src/components/modal/MModal.vue +106 -154
  60. package/src/components/numberbadge/MNumberBadge.spec.ts +56 -0
  61. package/src/components/numberbadge/MNumberBadge.stories.ts +48 -0
  62. package/src/components/numberbadge/MNumberBadge.vue +45 -0
  63. package/src/components/overlay/MOverlay.spec.ts +51 -0
  64. package/src/components/overlay/MOverlay.stories.ts +35 -0
  65. package/src/components/overlay/MOverlay.vue +27 -19
  66. package/src/components/pagination/MPagination.spec.ts +123 -0
  67. package/src/components/pagination/MPagination.stories.ts +83 -0
  68. package/src/components/pagination/MPagination.vue +120 -140
  69. package/src/components/passwordinput/MPasswordInput.spec.ts +104 -0
  70. package/src/components/passwordinput/MPasswordInput.stories.ts +75 -0
  71. package/src/components/passwordinput/MPasswordInput.vue +126 -77
  72. package/src/components/pincode/MPincode.spec.ts +126 -0
  73. package/src/components/pincode/MPincode.stories.ts +68 -0
  74. package/src/components/pincode/MPincode.vue +148 -0
  75. package/src/components/quantityselector/MQuantitySelector.spec.ts +262 -0
  76. package/src/components/quantityselector/MQuantitySelector.stories.ts +89 -0
  77. package/src/components/quantityselector/MQuantitySelector.vue +159 -148
  78. package/src/components/radio/MRadio.spec.ts +104 -0
  79. package/src/components/radio/MRadio.stories.ts +68 -0
  80. package/src/components/radio/MRadio.vue +56 -39
  81. package/src/components/radiogroup/MRadioGroup.spec.ts +54 -0
  82. package/src/components/radiogroup/MRadioGroup.stories.ts +61 -0
  83. package/src/components/radiogroup/MRadioGroup.vue +79 -0
  84. package/src/components/select/MSelect.spec.ts +114 -0
  85. package/src/components/select/MSelect.stories.ts +101 -0
  86. package/src/components/select/MSelect.vue +77 -119
  87. package/src/components/statusbadge/MStatusBadge.stories.ts +45 -0
  88. package/src/components/statusbadge/MStatusBadge.vue +40 -0
  89. package/src/components/statusbadge/MstatusBadge.spec.ts +16 -0
  90. package/src/components/statusdot/MStatusDot.spec.ts +51 -0
  91. package/src/components/statusdot/MStatusDot.stories.ts +48 -0
  92. package/src/components/statusdot/MStatusDot.vue +36 -0
  93. package/src/components/statusnotification/MStatusNotification.spec.ts +103 -0
  94. package/src/components/statusnotification/MStatusNotification.stories.ts +89 -0
  95. package/src/components/statusnotification/MStatusNotification.vue +106 -0
  96. package/src/components/tabs/MTabs.stories.ts +104 -0
  97. package/src/components/tabs/MTabs.vue +113 -0
  98. package/src/components/tabs/Mtabs.spec.ts +149 -0
  99. package/src/components/tag/MTag.spec.ts +107 -0
  100. package/src/components/tag/MTag.stories.ts +75 -0
  101. package/src/components/tag/MTag.vue +151 -0
  102. package/src/components/textarea/MTextArea.spec.ts +112 -0
  103. package/src/components/textarea/MTextArea.stories.ts +67 -0
  104. package/src/components/textarea/MTextArea.vue +81 -43
  105. package/src/components/textinput/MTextInput.spec.ts +121 -0
  106. package/src/components/textinput/MTextInput.stories.ts +107 -0
  107. package/src/components/textinput/MTextInput.vue +127 -47
  108. package/src/components/toggle/MToggle.spec.ts +99 -0
  109. package/src/components/toggle/MToggle.stories.ts +68 -0
  110. package/src/components/toggle/MToggle.vue +63 -103
  111. package/src/components/togglegroup/MToggleGroup.spec.ts +78 -0
  112. package/src/components/togglegroup/MToggleGroup.stories.ts +61 -0
  113. package/src/components/togglegroup/MToggleGroup.vue +97 -0
  114. package/src/components/usingIcons.mdx +35 -0
  115. package/src/components/usingPresets.mdx +128 -0
  116. package/src/main.ts +32 -0
  117. package/dist/demo.html +0 -1
  118. package/dist/mozaic-vue.adeo.css +0 -47
  119. package/dist/mozaic-vue.adeo.umd.js +0 -31109
  120. package/dist/mozaic-vue.common.js +0 -31099
  121. package/dist/mozaic-vue.common.js.map +0 -1
  122. package/dist/mozaic-vue.umd.js +0 -31110
  123. package/dist/mozaic-vue.umd.js.map +0 -1
  124. package/dist/mozaic-vue.umd.min.js +0 -4
  125. package/dist/mozaic-vue.umd.min.js.map +0 -1
  126. package/postinstall.js +0 -3
  127. package/src/components/accordion/MAccordion.vue +0 -128
  128. package/src/components/accordion/index.js +0 -7
  129. package/src/components/autocomplete/MAutocomplete.vue +0 -381
  130. package/src/components/autocomplete/index.js +0 -7
  131. package/src/components/badge/MBadge.vue +0 -43
  132. package/src/components/badge/index.js +0 -7
  133. package/src/components/breadcrumb/index.js +0 -7
  134. package/src/components/button/index.js +0 -7
  135. package/src/components/card/MCard.vue +0 -78
  136. package/src/components/card/index.js +0 -7
  137. package/src/components/checkbox/MCheckboxGroup.vue +0 -163
  138. package/src/components/checkbox/index.js +0 -12
  139. package/src/components/container/MContainer.vue +0 -33
  140. package/src/components/container/index.js +0 -7
  141. package/src/components/datatable/MDataTable.vue +0 -651
  142. package/src/components/datatable/MDataTableHeader.vue +0 -55
  143. package/src/components/datatable/MDataTableTop.vue +0 -35
  144. package/src/components/datatable/helpers.js +0 -132
  145. package/src/components/datatable/index.js +0 -12
  146. package/src/components/dropdown/MDropdown.vue +0 -317
  147. package/src/components/dropdown/index.js +0 -7
  148. package/src/components/field/index.js +0 -7
  149. package/src/components/fileuploader/MFileResult.vue +0 -149
  150. package/src/components/fileuploader/MFileUploader.vue +0 -142
  151. package/src/components/fileuploader/index.js +0 -7
  152. package/src/components/flag/index.js +0 -7
  153. package/src/components/heading/MHeading.vue +0 -75
  154. package/src/components/heading/index.js +0 -7
  155. package/src/components/hero/MHero.vue +0 -93
  156. package/src/components/hero/index.js +0 -7
  157. package/src/components/icon/MIcon.vue +0 -136
  158. package/src/components/icon/index.js +0 -7
  159. package/src/components/index.js +0 -44
  160. package/src/components/layer/MLayer.vue +0 -208
  161. package/src/components/layer/index.js +0 -7
  162. package/src/components/link/index.js +0 -7
  163. package/src/components/listbox/MListBox.vue +0 -146
  164. package/src/components/listbox/MListBoxActions.vue +0 -251
  165. package/src/components/listbox/index.js +0 -12
  166. package/src/components/loader/index.js +0 -7
  167. package/src/components/modal/index.js +0 -7
  168. package/src/components/notification/MNotification.vue +0 -110
  169. package/src/components/notification/index.js +0 -7
  170. package/src/components/optionbutton/MOptionButton.vue +0 -67
  171. package/src/components/optionbutton/index.js +0 -7
  172. package/src/components/optioncard/MOptionCard.vue +0 -132
  173. package/src/components/optioncard/index.js +0 -7
  174. package/src/components/optiongroup/MOptionGroup.vue +0 -18
  175. package/src/components/optiongroup/index.js +0 -7
  176. package/src/components/overlay/MOverlayLoader.vue +0 -43
  177. package/src/components/overlay/index.js +0 -12
  178. package/src/components/pagination/index.js +0 -7
  179. package/src/components/passwordinput/index.js +0 -7
  180. package/src/components/phonenumber/MPhoneNumber.vue +0 -398
  181. package/src/components/phonenumber/index.js +0 -7
  182. package/src/components/progressbar/MProgress.vue +0 -102
  183. package/src/components/progressbar/index.js +0 -7
  184. package/src/components/quantityselector/index.js +0 -7
  185. package/src/components/radio/MRadioGroup.vue +0 -111
  186. package/src/components/radio/index.js +0 -12
  187. package/src/components/ratingstars/MStarsInput.vue +0 -119
  188. package/src/components/ratingstars/MStarsResult.vue +0 -89
  189. package/src/components/ratingstars/index.js +0 -12
  190. package/src/components/select/index.js +0 -7
  191. package/src/components/stepper/MStepper.vue +0 -111
  192. package/src/components/stepper/index.js +0 -7
  193. package/src/components/tabs/MTab.vue +0 -198
  194. package/src/components/tabs/index.js +0 -7
  195. package/src/components/tags/MTag.vue +0 -173
  196. package/src/components/tags/index.js +0 -7
  197. package/src/components/textarea/index.js +0 -7
  198. package/src/components/textinput/MTextInputField.vue +0 -105
  199. package/src/components/textinput/MTextInputIcon.vue +0 -42
  200. package/src/components/textinput/index.js +0 -7
  201. package/src/components/toggle/index.js +0 -7
  202. package/src/components/tooltip/MTooltip.vue +0 -42
  203. package/src/components/tooltip/index.js +0 -7
  204. package/src/index.js +0 -63
  205. package/src/shims-tsx.d.ts +0 -13
  206. package/src/shims.vue.d.ts +0 -4
  207. package/src/tokens/adeo/android/colors.xml +0 -448
  208. package/src/tokens/adeo/android/font_dimens.xml +0 -18
  209. package/src/tokens/adeo/css/_variables.scss +0 -442
  210. package/src/tokens/adeo/css/root.scss +0 -444
  211. package/src/tokens/adeo/ios/StyleDictionaryColor.h +0 -456
  212. package/src/tokens/adeo/ios/StyleDictionaryColor.m +0 -468
  213. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +0 -451
  214. package/src/tokens/adeo/ios/StyleDictionarySize.h +0 -69
  215. package/src/tokens/adeo/ios/StyleDictionarySize.m +0 -70
  216. package/src/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
  217. package/src/tokens/adeo/js/tokens.js +0 -540
  218. package/src/tokens/adeo/js/tokensObject.js +0 -11641
  219. package/src/tokens/adeo/scss/_tokens.scss +0 -1514
  220. package/src/utils/mozaicClasses.js +0 -16
  221. package/src/utils/theme.validator.js +0 -19
  222. package/types/index.d.ts +0 -104
@@ -1,468 +0,0 @@
1
-
2
- //
3
- // StyleDictionaryColor.m
4
- //
5
-
6
- #import "StyleDictionaryColor.h"
7
-
8
- @implementation StyleDictionaryColor
9
-
10
- + (UIColor *)color:(StyleDictionaryColorName)colorEnum{
11
- return [[self values] objectAtIndex:colorEnum];
12
- }
13
-
14
- + (NSArray *)values {
15
- static NSArray* colorArray;
16
- static dispatch_once_t onceToken;
17
-
18
- dispatch_once(&onceToken, ^{
19
- colorArray = @[
20
- [UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f],
21
- [UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f],
22
- [UIColor colorWithRed:0.000f green:0.361f blue:0.569f alpha:1.000f],
23
- [UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f],
24
- [UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f],
25
- [UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f],
26
- [UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f],
27
- [UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f],
28
- [UIColor colorWithRed:0.549f green:0.208f blue:0.000f alpha:1.000f],
29
- [UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f],
30
- [UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f],
31
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
32
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
33
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
34
- [UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f],
35
- [UIColor colorWithRed:0.851f green:0.941f blue:0.953f alpha:1.000f],
36
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
37
- [UIColor colorWithRed:0.282f green:0.729f blue:0.769f alpha:1.000f],
38
- [UIColor colorWithRed:0.000f green:0.620f blue:0.675f alpha:1.000f],
39
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
40
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
41
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
42
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
43
- [UIColor colorWithRed:0.000f green:0.180f blue:0.200f alpha:1.000f],
44
- [UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f],
45
- [UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f],
46
- [UIColor colorWithRed:0.702f green:0.718f blue:0.757f alpha:1.000f],
47
- [UIColor colorWithRed:0.561f green:0.580f blue:0.639f alpha:1.000f],
48
- [UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f],
49
- [UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f],
50
- [UIColor colorWithRed:0.204f green:0.231f blue:0.298f alpha:1.000f],
51
- [UIColor colorWithRed:0.141f green:0.161f blue:0.220f alpha:1.000f],
52
- [UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f],
53
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
54
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
55
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
56
- [UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f],
57
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
58
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
59
- [UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f],
60
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
61
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
62
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
63
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
64
- [UIColor colorWithRed:0.918f green:0.929f blue:0.937f alpha:1.000f],
65
- [UIColor colorWithRed:0.804f green:0.831f blue:0.847f alpha:1.000f],
66
- [UIColor colorWithRed:0.690f green:0.733f blue:0.753f alpha:1.000f],
67
- [UIColor colorWithRed:0.573f green:0.635f blue:0.663f alpha:1.000f],
68
- [UIColor colorWithRed:0.459f green:0.537f blue:0.573f alpha:1.000f],
69
- [UIColor colorWithRed:0.357f green:0.451f blue:0.490f alpha:1.000f],
70
- [UIColor colorWithRed:0.251f green:0.365f blue:0.408f alpha:1.000f],
71
- [UIColor colorWithRed:0.149f green:0.275f blue:0.325f alpha:1.000f],
72
- [UIColor colorWithRed:0.031f green:0.141f blue:0.208f alpha:1.000f],
73
- [UIColor colorWithRed:0.851f green:0.941f blue:0.953f alpha:1.000f],
74
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
75
- [UIColor colorWithRed:0.282f green:0.729f blue:0.769f alpha:1.000f],
76
- [UIColor colorWithRed:0.000f green:0.620f blue:0.675f alpha:1.000f],
77
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
78
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
79
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
80
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
81
- [UIColor colorWithRed:0.000f green:0.180f blue:0.200f alpha:1.000f],
82
- [UIColor colorWithRed:0.906f green:0.906f blue:0.941f alpha:1.000f],
83
- [UIColor colorWithRed:0.773f green:0.773f blue:0.863f alpha:1.000f],
84
- [UIColor colorWithRed:0.643f green:0.639f blue:0.780f alpha:1.000f],
85
- [UIColor colorWithRed:0.510f green:0.506f blue:0.698f alpha:1.000f],
86
- [UIColor colorWithRed:0.376f green:0.373f blue:0.616f alpha:1.000f],
87
- [UIColor colorWithRed:0.294f green:0.290f blue:0.549f alpha:1.000f],
88
- [UIColor colorWithRed:0.224f green:0.220f blue:0.475f alpha:1.000f],
89
- [UIColor colorWithRed:0.157f green:0.157f blue:0.388f alpha:1.000f],
90
- [UIColor colorWithRed:0.102f green:0.102f blue:0.294f alpha:1.000f],
91
- [UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f],
92
- [UIColor colorWithRed:0.973f green:0.737f blue:0.733f alpha:1.000f],
93
- [UIColor colorWithRed:0.953f green:0.553f blue:0.549f alpha:1.000f],
94
- [UIColor colorWithRed:0.937f green:0.373f blue:0.361f alpha:1.000f],
95
- [UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f],
96
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
97
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
98
- [UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f],
99
- [UIColor colorWithRed:0.176f green:0.000f blue:0.000f alpha:1.000f],
100
- [UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f],
101
- [UIColor colorWithRed:0.973f green:0.824f blue:0.702f alpha:1.000f],
102
- [UIColor colorWithRed:0.957f green:0.698f blue:0.494f alpha:1.000f],
103
- [UIColor colorWithRed:0.937f green:0.576f blue:0.290f alpha:1.000f],
104
- [UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f],
105
- [UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f],
106
- [UIColor colorWithRed:0.549f green:0.208f blue:0.000f alpha:1.000f],
107
- [UIColor colorWithRed:0.325f green:0.106f blue:0.000f alpha:1.000f],
108
- [UIColor colorWithRed:0.212f green:0.055f blue:0.000f alpha:1.000f],
109
- [UIColor colorWithRed:1.000f green:0.973f blue:0.886f alpha:1.000f],
110
- [UIColor colorWithRed:1.000f green:0.922f blue:0.686f alpha:1.000f],
111
- [UIColor colorWithRed:0.996f green:0.878f blue:0.490f alpha:1.000f],
112
- [UIColor colorWithRed:0.988f green:0.839f blue:0.298f alpha:1.000f],
113
- [UIColor colorWithRed:0.973f green:0.800f blue:0.110f alpha:1.000f],
114
- [UIColor colorWithRed:0.788f green:0.635f blue:0.106f alpha:1.000f],
115
- [UIColor colorWithRed:0.612f green:0.482f blue:0.094f alpha:1.000f],
116
- [UIColor colorWithRed:0.439f green:0.337f blue:0.075f alpha:1.000f],
117
- [UIColor colorWithRed:0.275f green:0.208f blue:0.051f alpha:1.000f],
118
- [UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f],
119
- [UIColor colorWithRed:0.973f green:0.737f blue:0.733f alpha:1.000f],
120
- [UIColor colorWithRed:0.953f green:0.553f blue:0.549f alpha:1.000f],
121
- [UIColor colorWithRed:0.937f green:0.373f blue:0.361f alpha:1.000f],
122
- [UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f],
123
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
124
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
125
- [UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f],
126
- [UIColor colorWithRed:0.176f green:0.000f blue:0.000f alpha:1.000f],
127
- [UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f],
128
- [UIColor colorWithRed:0.655f green:0.851f blue:0.929f alpha:1.000f],
129
- [UIColor colorWithRed:0.451f green:0.765f blue:0.886f alpha:1.000f],
130
- [UIColor colorWithRed:0.247f green:0.675f blue:0.843f alpha:1.000f],
131
- [UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f],
132
- [UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f],
133
- [UIColor colorWithRed:0.000f green:0.361f blue:0.569f alpha:1.000f],
134
- [UIColor colorWithRed:0.000f green:0.227f blue:0.361f alpha:1.000f],
135
- [UIColor colorWithRed:0.000f green:0.165f blue:0.255f alpha:1.000f],
136
- [UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f],
137
- [UIColor colorWithRed:0.973f green:0.824f blue:0.702f alpha:1.000f],
138
- [UIColor colorWithRed:0.957f green:0.698f blue:0.494f alpha:1.000f],
139
- [UIColor colorWithRed:0.937f green:0.576f blue:0.290f alpha:1.000f],
140
- [UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f],
141
- [UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f],
142
- [UIColor colorWithRed:0.549f green:0.208f blue:0.000f alpha:1.000f],
143
- [UIColor colorWithRed:0.325f green:0.106f blue:0.000f alpha:1.000f],
144
- [UIColor colorWithRed:0.212f green:0.055f blue:0.000f alpha:1.000f],
145
- [UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f],
146
- [UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f],
147
- [UIColor colorWithRed:0.620f green:0.816f blue:0.373f alpha:1.000f],
148
- [UIColor colorWithRed:0.471f green:0.745f blue:0.125f alpha:1.000f],
149
- [UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f],
150
- [UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f],
151
- [UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f],
152
- [UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f],
153
- [UIColor colorWithRed:0.008f green:0.212f blue:0.094f alpha:1.000f],
154
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
155
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
156
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
157
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
158
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
159
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
160
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
161
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
162
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
163
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
164
- [UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f],
165
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
166
- [UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f],
167
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
168
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
169
- [UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f],
170
- [UIColor colorWithRed:0.141f green:0.161f blue:0.220f alpha:1.000f],
171
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
172
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
173
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
174
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
175
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
176
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
177
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
178
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
179
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
180
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
181
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
182
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
183
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
184
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
185
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
186
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
187
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
188
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
189
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
190
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
191
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
192
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
193
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
194
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
195
- [UIColor colorWithRed:0.851f green:0.941f blue:0.953f alpha:1.000f],
196
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
197
- [UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f],
198
- [UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f],
199
- [UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f],
200
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
201
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
202
- [UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f],
203
- [UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f],
204
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
205
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
206
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
207
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
208
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
209
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
210
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
211
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
212
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
213
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
214
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
215
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
216
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
217
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
218
- [UIColor colorWithRed:0.973f green:0.737f blue:0.733f alpha:1.000f],
219
- [UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f],
220
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
221
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
222
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
223
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
224
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
225
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
226
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
227
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
228
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
229
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
230
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
231
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
232
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
233
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
234
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
235
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
236
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
237
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
238
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
239
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
240
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
241
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
242
- [UIColor colorWithRed:0.294f green:0.290f blue:0.549f alpha:1.000f],
243
- [UIColor colorWithRed:0.294f green:0.290f blue:0.549f alpha:1.000f],
244
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
245
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
246
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
247
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
248
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
249
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
250
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
251
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
252
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
253
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
254
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
255
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
256
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
257
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
258
- [UIColor colorWithRed:0.294f green:0.290f blue:0.549f alpha:1.000f],
259
- [UIColor colorWithRed:0.294f green:0.290f blue:0.549f alpha:1.000f],
260
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
261
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
262
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
263
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
264
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
265
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
266
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
267
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
268
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
269
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
270
- [UIColor colorWithRed:0.459f green:0.537f blue:0.573f alpha:1.000f],
271
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
272
- [UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f],
273
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
274
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
275
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
276
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
277
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
278
- [UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f],
279
- [UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f],
280
- [UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f],
281
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
282
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
283
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
284
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
285
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
286
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
287
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
288
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
289
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
290
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
291
- [UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f],
292
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
293
- [UIColor colorWithRed:0.459f green:0.537f blue:0.573f alpha:1.000f],
294
- [UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f],
295
- [UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f],
296
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
297
- [UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f],
298
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
299
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
300
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
301
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
302
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
303
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
304
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
305
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
306
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
307
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
308
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
309
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
310
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
311
- [UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f],
312
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
313
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
314
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
315
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
316
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
317
- [UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f],
318
- [UIColor colorWithRed:0.204f green:0.231f blue:0.298f alpha:1.000f],
319
- [UIColor colorWithRed:0.204f green:0.231f blue:0.298f alpha:1.000f],
320
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
321
- [UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f],
322
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
323
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
324
- [UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f],
325
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
326
- [UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f],
327
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
328
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
329
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
330
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
331
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
332
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
333
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
334
- [UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f],
335
- [UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f],
336
- [UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f],
337
- [UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f],
338
- [UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f],
339
- [UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f],
340
- [UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f],
341
- [UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f],
342
- [UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f],
343
- [UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f],
344
- [UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f],
345
- [UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f],
346
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
347
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
348
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
349
- [UIColor colorWithRed:0.851f green:0.941f blue:0.953f alpha:1.000f],
350
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
351
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
352
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
353
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
354
- [UIColor colorWithRed:0.851f green:0.941f blue:0.953f alpha:1.000f],
355
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
356
- [UIColor colorWithRed:0.031f green:0.141f blue:0.208f alpha:1.000f],
357
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
358
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
359
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
360
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
361
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
362
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
363
- [UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f],
364
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
365
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
366
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
367
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
368
- [UIColor colorWithRed:0.459f green:0.537f blue:0.573f alpha:1.000f],
369
- [UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f],
370
- [UIColor colorWithRed:0.957f green:0.698f blue:0.494f alpha:1.000f],
371
- [UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f],
372
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
373
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
374
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
375
- [UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f],
376
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
377
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
378
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
379
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
380
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
381
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
382
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
383
- [UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f],
384
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
385
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
386
- [UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f],
387
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
388
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
389
- [UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f],
390
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
391
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
392
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
393
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
394
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
395
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
396
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
397
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
398
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
399
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
400
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
401
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
402
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
403
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
404
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
405
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
406
- [UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f],
407
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
408
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
409
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
410
- [UIColor colorWithRed:0.282f green:0.729f blue:0.769f alpha:1.000f],
411
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
412
- [UIColor colorWithRed:0.000f green:0.306f blue:0.341f alpha:1.000f],
413
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
414
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
415
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
416
- [UIColor colorWithRed:0.000f green:0.498f blue:0.549f alpha:1.000f],
417
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
418
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
419
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
420
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
421
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
422
- [UIColor colorWithRed:0.000f green:0.412f blue:0.455f alpha:1.000f],
423
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
424
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
425
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
426
- [UIColor colorWithRed:0.000f green:0.620f blue:0.675f alpha:1.000f],
427
- [UIColor colorWithRed:0.000f green:0.620f blue:0.675f alpha:1.000f],
428
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
429
- [UIColor colorWithRed:0.282f green:0.729f blue:0.769f alpha:1.000f],
430
- [UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f],
431
- [UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f],
432
- [UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f],
433
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
434
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
435
- [UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f],
436
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
437
- [UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f],
438
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
439
- [UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f],
440
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
441
- [UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f],
442
- [UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f],
443
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
444
- [UIColor colorWithRed:0.000f green:0.569f blue:0.624f alpha:1.000f],
445
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
446
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
447
- [UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f],
448
- [UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f],
449
- [UIColor colorWithRed:0.569f green:0.835f blue:0.859f alpha:1.000f],
450
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
451
- [UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f],
452
- [UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f],
453
- [UIColor colorWithRed:0.933f green:0.929f blue:0.918f alpha:1.000f],
454
- [UIColor colorWithRed:0.867f green:0.863f blue:0.835f alpha:1.000f],
455
- [UIColor colorWithRed:0.761f green:0.757f blue:0.729f alpha:1.000f],
456
- [UIColor colorWithRed:0.655f green:0.651f blue:0.627f alpha:1.000f],
457
- [UIColor colorWithRed:0.549f green:0.545f blue:0.522f alpha:1.000f],
458
- [UIColor colorWithRed:0.443f green:0.439f blue:0.420f alpha:1.000f],
459
- [UIColor colorWithRed:0.333f green:0.333f blue:0.314f alpha:1.000f],
460
- [UIColor colorWithRed:0.227f green:0.224f blue:0.212f alpha:1.000f],
461
- [UIColor colorWithRed:0.118f green:0.118f blue:0.110f alpha:1.000f]
462
- ];
463
- });
464
-
465
- return colorArray;
466
- }
467
-
468
- @end