@necrolab/dashboard 0.4.3

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 (240) hide show
  1. package/.claude/settings.local.json +45 -0
  2. package/.eslintrc.js +24 -0
  3. package/.prettierignore +1 -0
  4. package/.prettierrc +10 -0
  5. package/.vscode/extensions.json +3 -0
  6. package/ICONS.md +21 -0
  7. package/README.md +65 -0
  8. package/backend/api.js +430 -0
  9. package/backend/auth.js +62 -0
  10. package/backend/batching.js +43 -0
  11. package/backend/endpoints.js +343 -0
  12. package/backend/index.js +23 -0
  13. package/backend/mock-data.js +66 -0
  14. package/backend/mock-src/classes/logger.js +112 -0
  15. package/backend/mock-src/classes/utils.js +42 -0
  16. package/backend/mock-src/ticketmaster.js +92 -0
  17. package/backend/validator.js +62 -0
  18. package/config/configs.json +20 -0
  19. package/config/filter.json +3 -0
  20. package/config/presale.csv +3 -0
  21. package/config/proxies.txt +6 -0
  22. package/config/used-codes.json +4 -0
  23. package/index.html +114 -0
  24. package/index.js +2 -0
  25. package/jsconfig.json +16 -0
  26. package/package.json +48 -0
  27. package/postcss.config.js +6 -0
  28. package/postinstall.js +9 -0
  29. package/public/android-chrome-192x192.png +0 -0
  30. package/public/android-chrome-512x512.png +0 -0
  31. package/public/apple-touch-icon.png +0 -0
  32. package/public/favicon-16x16.png +0 -0
  33. package/public/favicon-32x32.png +0 -0
  34. package/public/favicon.ico +0 -0
  35. package/public/flags/ae.svg +1 -0
  36. package/public/flags/at.svg +1 -0
  37. package/public/flags/au.svg +1 -0
  38. package/public/flags/be.svg +1 -0
  39. package/public/flags/ch.svg +1 -0
  40. package/public/flags/cz.svg +1 -0
  41. package/public/flags/de.svg +1 -0
  42. package/public/flags/dk.svg +1 -0
  43. package/public/flags/es.svg +1 -0
  44. package/public/flags/nl.svg +1 -0
  45. package/public/flags/no.svg +1 -0
  46. package/public/flags/nz.svg +1 -0
  47. package/public/flags/pl.svg +1 -0
  48. package/public/flags/se.svg +1 -0
  49. package/public/flags/uk.svg +1 -0
  50. package/public/flags/us.svg +1 -0
  51. package/public/img/award.svg +3 -0
  52. package/public/img/background.svg +14 -0
  53. package/public/img/bag_w.svg +12 -0
  54. package/public/img/banks/amex.svg +4 -0
  55. package/public/img/banks/mastercard.svg +4 -0
  56. package/public/img/banks/visa.svg +4 -0
  57. package/public/img/camera.svg +3 -0
  58. package/public/img/close.svg +3 -0
  59. package/public/img/controls/disable.svg +5 -0
  60. package/public/img/controls/enable.svg +5 -0
  61. package/public/img/groups.svg +3 -0
  62. package/public/img/hand.svg +3 -0
  63. package/public/img/key.svg +3 -0
  64. package/public/img/logo.png +0 -0
  65. package/public/img/logo_icon.png +0 -0
  66. package/public/img/logo_icon_2.png +0 -0
  67. package/public/img/logo_trans.png +0 -0
  68. package/public/img/loyalty.svg +3 -0
  69. package/public/img/mail.svg +3 -0
  70. package/public/img/pencil.svg +3 -0
  71. package/public/img/profile.svg +4 -0
  72. package/public/img/reload.svg +3 -0
  73. package/public/img/sandclock.svg +25 -0
  74. package/public/img/save.svg +5 -0
  75. package/public/img/savings.svg +3 -0
  76. package/public/img/scanner.svg +3 -0
  77. package/public/img/sell.svg +3 -0
  78. package/public/img/shield.svg +3 -0
  79. package/public/img/ski.svg +3 -0
  80. package/public/img/stadium.svg +8 -0
  81. package/public/img/stadium_w.svg +8 -0
  82. package/public/img/timer.svg +3 -0
  83. package/public/manifest.json +27 -0
  84. package/public/robots.txt +2 -0
  85. package/run +10 -0
  86. package/src/App.vue +307 -0
  87. package/src/assets/css/_input.scss +197 -0
  88. package/src/assets/css/main.scss +269 -0
  89. package/src/assets/css/tailwind.css +3 -0
  90. package/src/assets/img/award.svg +3 -0
  91. package/src/assets/img/background.svg +11 -0
  92. package/src/assets/img/camera.svg +3 -0
  93. package/src/assets/img/close.svg +3 -0
  94. package/src/assets/img/eyes/closed.svg +13 -0
  95. package/src/assets/img/eyes/open.svg +12 -0
  96. package/src/assets/img/groups.svg +3 -0
  97. package/src/assets/img/hand.svg +3 -0
  98. package/src/assets/img/key.svg +3 -0
  99. package/src/assets/img/logo.png +0 -0
  100. package/src/assets/img/logo_icon.png +0 -0
  101. package/src/assets/img/logo_icon_2.png +0 -0
  102. package/src/assets/img/logo_trans.png +0 -0
  103. package/src/assets/img/loyalty.svg +3 -0
  104. package/src/assets/img/mail.svg +3 -0
  105. package/src/assets/img/pencil.svg +3 -0
  106. package/src/assets/img/reload.svg +3 -0
  107. package/src/assets/img/savings.svg +3 -0
  108. package/src/assets/img/scanner.svg +3 -0
  109. package/src/assets/img/sell.svg +3 -0
  110. package/src/assets/img/shield.svg +3 -0
  111. package/src/assets/img/ski.svg +3 -0
  112. package/src/assets/img/square_check.svg +5 -0
  113. package/src/assets/img/square_uncheck.svg +5 -0
  114. package/src/assets/img/stadium.svg +8 -0
  115. package/src/assets/img/timer.svg +3 -0
  116. package/src/assets/img/wildcard.svg +7 -0
  117. package/src/components/Auth/LoginForm.vue +48 -0
  118. package/src/components/Editors/Account/Account.vue +119 -0
  119. package/src/components/Editors/Account/AccountCreator.vue +147 -0
  120. package/src/components/Editors/Account/AccountView.vue +87 -0
  121. package/src/components/Editors/Account/CreateAccount.vue +106 -0
  122. package/src/components/Editors/Profile/CreateProfile.vue +321 -0
  123. package/src/components/Editors/Profile/Profile.vue +142 -0
  124. package/src/components/Editors/Profile/ProfileCountryChooser.vue +75 -0
  125. package/src/components/Editors/Profile/ProfileView.vue +96 -0
  126. package/src/components/Editors/TagLabel.vue +16 -0
  127. package/src/components/Editors/TagToggle.vue +41 -0
  128. package/src/components/Filter/Filter.vue +409 -0
  129. package/src/components/Filter/FilterPreview.vue +236 -0
  130. package/src/components/Filter/PriceSortToggle.vue +105 -0
  131. package/src/components/Table/Header.vue +5 -0
  132. package/src/components/Table/Row.vue +5 -0
  133. package/src/components/Table/Table.vue +14 -0
  134. package/src/components/Table/index.js +4 -0
  135. package/src/components/Tasks/CheckStock.vue +62 -0
  136. package/src/components/Tasks/Controls/DesktopControls.vue +73 -0
  137. package/src/components/Tasks/Controls/MobileControls.vue +32 -0
  138. package/src/components/Tasks/Controls/index.js +3 -0
  139. package/src/components/Tasks/CreateTaskAXS.vue +339 -0
  140. package/src/components/Tasks/CreateTaskTM.vue +459 -0
  141. package/src/components/Tasks/MassEdit.vue +50 -0
  142. package/src/components/Tasks/QuickSettings.vue +167 -0
  143. package/src/components/Tasks/ScrapeVenue.vue +42 -0
  144. package/src/components/Tasks/Stats.vue +66 -0
  145. package/src/components/Tasks/Task.vue +296 -0
  146. package/src/components/Tasks/TaskLabel.vue +20 -0
  147. package/src/components/Tasks/TaskView.vue +126 -0
  148. package/src/components/Tasks/Utilities.vue +33 -0
  149. package/src/components/icons/Award.vue +8 -0
  150. package/src/components/icons/Bag.vue +8 -0
  151. package/src/components/icons/BagWhite.vue +8 -0
  152. package/src/components/icons/Box.vue +8 -0
  153. package/src/components/icons/Camera.vue +8 -0
  154. package/src/components/icons/Cart.vue +8 -0
  155. package/src/components/icons/Check.vue +5 -0
  156. package/src/components/icons/Checkmark.vue +11 -0
  157. package/src/components/icons/Click.vue +8 -0
  158. package/src/components/icons/Close.vue +21 -0
  159. package/src/components/icons/CloseX.vue +5 -0
  160. package/src/components/icons/Console.vue +13 -0
  161. package/src/components/icons/Down.vue +8 -0
  162. package/src/components/icons/Edit.vue +13 -0
  163. package/src/components/icons/Event.vue +8 -0
  164. package/src/components/icons/Expand.vue +8 -0
  165. package/src/components/icons/Filter.vue +13 -0
  166. package/src/components/icons/Gear.vue +8 -0
  167. package/src/components/icons/Group.vue +8 -0
  168. package/src/components/icons/Hand.vue +8 -0
  169. package/src/components/icons/Key.vue +21 -0
  170. package/src/components/icons/Logout.vue +13 -0
  171. package/src/components/icons/Loyalty.vue +8 -0
  172. package/src/components/icons/Mail.vue +8 -0
  173. package/src/components/icons/Menu.vue +8 -0
  174. package/src/components/icons/Pause.vue +5 -0
  175. package/src/components/icons/Pencil.vue +21 -0
  176. package/src/components/icons/Play.vue +8 -0
  177. package/src/components/icons/Plus.vue +8 -0
  178. package/src/components/icons/Profile.vue +18 -0
  179. package/src/components/icons/Reload.vue +7 -0
  180. package/src/components/icons/Sandclock.vue +33 -0
  181. package/src/components/icons/Savings.vue +8 -0
  182. package/src/components/icons/Scanner.vue +8 -0
  183. package/src/components/icons/Scrape.vue +8 -0
  184. package/src/components/icons/Sell.vue +21 -0
  185. package/src/components/icons/Shield.vue +8 -0
  186. package/src/components/icons/Shrink.vue +8 -0
  187. package/src/components/icons/Ski.vue +8 -0
  188. package/src/components/icons/Spinner.vue +42 -0
  189. package/src/components/icons/SquareCheck.vue +18 -0
  190. package/src/components/icons/SquareUncheck.vue +18 -0
  191. package/src/components/icons/Stadium.vue +13 -0
  192. package/src/components/icons/StadiumWhite.vue +13 -0
  193. package/src/components/icons/Status.vue +8 -0
  194. package/src/components/icons/Tag.vue +8 -0
  195. package/src/components/icons/Tasks.vue +13 -0
  196. package/src/components/icons/Ticket.vue +8 -0
  197. package/src/components/icons/Timer.vue +8 -0
  198. package/src/components/icons/Trash.vue +8 -0
  199. package/src/components/icons/Up.vue +10 -0
  200. package/src/components/icons/Wildcard.vue +18 -0
  201. package/src/components/icons/index.js +111 -0
  202. package/src/components/ui/Modal.vue +61 -0
  203. package/src/components/ui/Navbar.vue +207 -0
  204. package/src/components/ui/ReconnectIndicator.vue +90 -0
  205. package/src/components/ui/Splash.vue +24 -0
  206. package/src/components/ui/controls/CountryChooser.vue +87 -0
  207. package/src/components/ui/controls/EyeToggle.vue +11 -0
  208. package/src/components/ui/controls/atomic/Checkbox.vue +28 -0
  209. package/src/components/ui/controls/atomic/Dropdown.vue +138 -0
  210. package/src/components/ui/controls/atomic/LoadingButton.vue +45 -0
  211. package/src/components/ui/controls/atomic/MultiDropdown.vue +262 -0
  212. package/src/components/ui/controls/atomic/Switch.vue +84 -0
  213. package/src/libs/Filter.js +593 -0
  214. package/src/libs/ansii.js +565 -0
  215. package/src/libs/panzoom.js +1413 -0
  216. package/src/main.js +23 -0
  217. package/src/registerServiceWorker.js +32 -0
  218. package/src/router/index.js +65 -0
  219. package/src/stores/cities.json +1 -0
  220. package/src/stores/connection.js +399 -0
  221. package/src/stores/countries.js +88 -0
  222. package/src/stores/logger.js +103 -0
  223. package/src/stores/requests.js +88 -0
  224. package/src/stores/sampleData.js +1034 -0
  225. package/src/stores/ui.js +584 -0
  226. package/src/stores/utils.js +554 -0
  227. package/src/types/index.js +42 -0
  228. package/src/utils/debug.js +1 -0
  229. package/src/views/Accounts.vue +191 -0
  230. package/src/views/Console.vue +224 -0
  231. package/src/views/Editor.vue +785 -0
  232. package/src/views/FilterBuilder.vue +785 -0
  233. package/src/views/Login.vue +27 -0
  234. package/src/views/Profiles.vue +209 -0
  235. package/src/views/Tasks.vue +157 -0
  236. package/static/offline.html +184 -0
  237. package/tailwind.config.js +57 -0
  238. package/vite.config.js +63 -0
  239. package/vue.config.js +32 -0
  240. package/workbox-config.js +66 -0
@@ -0,0 +1,1034 @@
1
+ export default {
2
+ Profile: {
3
+ name: "DEV",
4
+ profileTags: ["Debug1", "Debug2", "Debug3"],
5
+ accountTags: ["Debug4", "Debug5", "Debug6"],
6
+ admin: true,
7
+ proxyList: { checkout: "admin-proxies", queue: "admin-recaptcha" }
8
+ },
9
+ Tasks: {
10
+ T0: {
11
+ profileName: "profile0",
12
+ mode: "CHECKOUT",
13
+ createdAt: "2023-05-17T10:18:27.887Z",
14
+ taskId: "T0",
15
+ active: true,
16
+ email: "grantelam@hotmail.com",
17
+ password: "Dkstrhf4srth56Gksj",
18
+ status: "Event already happened",
19
+ statusColor: "red",
20
+ manual: false,
21
+ incapsulaBypass: false,
22
+ quickQueue: false,
23
+ loginAfterCart: false,
24
+ quantity: 8,
25
+ proxy: "http://events1597:yEXBe4Hs@23.26.22.61:61234",
26
+ eventId: "01005D5C92031D57",
27
+ reservedTicketsList: "-",
28
+ expirationTime: null,
29
+ doNotPay: false,
30
+ agedAccount: true,
31
+ presaleCode: "",
32
+ smartTimer: false,
33
+ accountTag: "admin",
34
+ profileTags: ["Any"],
35
+ eventName: "Taylor Swift | The Eras Tour",
36
+ eventDate: "2023-05-19T22:30:00.000Z",
37
+ venueName: "Gillette Stadium",
38
+ eventCity: "Foxborough, MA",
39
+ eventUrl:
40
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-19-2023/event/01005D5C92031D57",
41
+ eventImage:
42
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
43
+ siteId: "TM_US"
44
+ },
45
+
46
+ // T2: {
47
+ // profileName: "profile2",
48
+ // mode: "CHECKOUT",
49
+ // createdAt: "2023-05-17T10:18:27.895Z",
50
+ // taskId: "T2",
51
+ // active: true,
52
+ // email: "eastereatamesz6265@gmail.com",
53
+ // password: "VdashtOyUCWrba2",
54
+ // status: "Waiting for Stock",
55
+ // statusColor: "white",
56
+ // manual: false,
57
+ // incapsulaBypass: false,
58
+ // quickQueue: false,
59
+ // loginAfterCart: false,
60
+ // quantity: 8,
61
+ // proxy: "http://events1273:0AEYflS4@94.190.248.249:61234",
62
+ // eventId: "01005D5C92031D57",
63
+ // reservedTicketsList: "-",
64
+ // expirationTime: null,
65
+
66
+ // doNotPay: false,
67
+ // agedAccount: false,
68
+ // presaleCode: "",
69
+ // smartTimer: false,
70
+ // accountTag: "admin",
71
+ // profileTags: ["Any"],
72
+ // eventName: "Taylor Swift | The Eras Tour",
73
+ // eventDate: "2023-05-19T22:30:00.000Z",
74
+ // venueName: "Gillette Stadium",
75
+ // eventCity: "Foxborough, MA",
76
+ // eventUrl:
77
+ // "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-19-2023/event/01005D5C92031D57",
78
+ // eventImage: "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg"
79
+ // },
80
+
81
+ T4: {
82
+ profileName: "profile4",
83
+ mode: "CHECKOUT",
84
+ createdAt: "2023-05-17T10:18:27.899Z",
85
+ taskId: "T4",
86
+ active: true,
87
+ email: "hardacrehardhugreenh5264@gmail.com",
88
+ password: "UtgsrtTBsrthaou5zL2",
89
+ status: "Waiting for Stock",
90
+ statusColor: "white",
91
+ manual: true,
92
+ incapsulaBypass: false,
93
+ quickQueue: false,
94
+ loginAfterCart: true,
95
+ quantity: 8,
96
+ proxy: "http://events1338:xN4PBVze@23.26.21.58:61234",
97
+ eventId: "01005D85964A1747",
98
+ reservedTicketsList: "-",
99
+ expirationTime: null,
100
+ doNotPay: false,
101
+ agedAccount: false,
102
+ presaleCode: "",
103
+ smartTimer: false,
104
+ accountTag: "admin",
105
+ profileTags: ["Any"],
106
+ eventName: "Morgan Wallen: One Night At A Time World Tour",
107
+ eventDate: "2024-06-06T23:00:00.000Z",
108
+ venueName: "Veterans United Home Loans Amphitheater at Virginia Beach",
109
+ eventCity: "Virginia Beach, VA",
110
+ eventUrl:
111
+ "https://concerts.livenation.com/morgan-wallen-one-night-at-a-virginia-beach-virginia/event/01005D85964A1747",
112
+ eventImage:
113
+ "https://s1.ticketm.net/dam/a/184/1de64204-dda7-4bf4-b341-ecd9baed7184_1861381_RETINA_PORTRAIT_16_9.jpg",
114
+ siteId: "TM_US"
115
+ },
116
+ "admin-US-6": {
117
+ mode: "CHECKOUT",
118
+ createdAt: "2023-05-17T10:18:27.901Z",
119
+ taskId: "admin-US-6",
120
+ active: true,
121
+ email: "mcleanmcmzpe5611@gmail.com",
122
+ password: "VHsrthSvGMsrtFMFm28",
123
+ status: "Waiting for Stock",
124
+ statusColor: "white",
125
+ manual: false,
126
+ incapsulaBypass: false,
127
+ quickQueue: false,
128
+ loginAfterCart: false,
129
+ quantity: 8,
130
+ proxy: "http://events2532:JGW9ZUyD@115.167.4.228:61234",
131
+ eventId: "01005D6474FD0E07",
132
+ reservedTicketsList: "-",
133
+ expirationTime: null,
134
+ doNotPay: false,
135
+ agedAccount: false,
136
+ presaleCode: "",
137
+ smartTimer: false,
138
+ accountTag: "admin",
139
+ profileTags: ["Any"],
140
+ eventName: "Taylor Swift | The Eras Tour",
141
+ eventDate: "2023-05-21T22:30:00.000Z",
142
+ venueName: "Gillette Stadium",
143
+ eventCity: "Foxborough, MA",
144
+ eventUrl:
145
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-21-2023/event/01005D6474FD0E07",
146
+ eventImage:
147
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
148
+ siteId: "TM_US"
149
+ },
150
+ T7: {
151
+ mode: "CHECKOUT",
152
+ createdAt: "2023-05-17T10:18:27.903Z",
153
+ taskId: "T7",
154
+ active: true,
155
+ email: "jodyj48@hotmail.com",
156
+ password: "Drsthksf456Grthksj",
157
+ status: "Waiting for Stock",
158
+ statusColor: "white",
159
+ manual: false,
160
+ incapsulaBypass: false,
161
+ quickQueue: false,
162
+ loginAfterCart: false,
163
+ quantity: 8,
164
+ proxy: "http://OR104412519:nTvADqHp@208.207.163.29:7470",
165
+ eventId: "01005D5C92031D56",
166
+ reservedTicketsList: "-",
167
+ expirationTime: null,
168
+ doNotPay: false,
169
+ agedAccount: true,
170
+ presaleCode: "",
171
+ smartTimer: false,
172
+ accountTag: "admin",
173
+ profileTags: ["Any"],
174
+ eventName: "Taylor Swift | The Eras Tour",
175
+ eventDate: "2023-05-19T22:30:00.000Z",
176
+ venueName: "Gillette Stadium",
177
+ eventCity: "Foxborough, MA",
178
+ eventUrl:
179
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-19-2023/event/01005D5C92031D57",
180
+ eventImage:
181
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
182
+ siteId: "TM_US"
183
+ },
184
+ T8: {
185
+ mode: "CHECKOUT",
186
+ createdAt: "2023-05-17T10:18:27.904Z",
187
+ taskId: "T8",
188
+ active: true,
189
+ email: "suphathrphrnb@gmail.com",
190
+ password: "PrthYTpNPk1hfm3",
191
+ status: "Waiting for Stock",
192
+ statusColor: "white",
193
+ manual: false,
194
+ incapsulaBypass: false,
195
+ quickQueue: false,
196
+ loginAfterCart: false,
197
+ quantity: 8,
198
+ proxy: "http://OR104412519:nTvADqHp@208.207.160.53:5658",
199
+ eventId: "01005D5C92031D37",
200
+ reservedTicketsList: "-",
201
+ expirationTime: null,
202
+ doNotPay: false,
203
+ agedAccount: false,
204
+ presaleCode: "",
205
+ smartTimer: false,
206
+ accountTag: "admin",
207
+ profileTags: ["Any"],
208
+ eventName: "Taylor Swift | The Eras Tour",
209
+ eventDate: "2023-05-19T22:30:00.000Z",
210
+ venueName: "Gillette Stadium",
211
+ eventCity: "Foxborough, MA",
212
+ eventUrl:
213
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-19-2023/event/01005D5C92031D57",
214
+ eventImage:
215
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
216
+ siteId: "TM_US"
217
+ },
218
+ T9: {
219
+ mode: "CHECKOUT",
220
+ createdAt: "2023-05-17T10:18:27.906Z",
221
+ taskId: "T9",
222
+ active: true,
223
+ email: "mathismaeqn53666@gmail.com",
224
+ password: "UmtsrthJWiaNQHi4",
225
+ status: "Waiting for Stock",
226
+ statusColor: "white",
227
+ manual: true,
228
+ incapsulaBypass: false,
229
+ quickQueue: false,
230
+ loginAfterCart: true,
231
+ quantity: 8,
232
+ proxy: "http://OR104412519:nTvADqHp@208.207.171.42:8207",
233
+ eventId: "02005E7892BF2800",
234
+ reservedTicketsList: "-",
235
+ expirationTime: null,
236
+ doNotPay: false,
237
+ agedAccount: false,
238
+ presaleCode: "",
239
+ smartTimer: false,
240
+ accountTag: "admin",
241
+ profileTags: ["Any"],
242
+ eventName: "Melanie Martinez: PORTALS Tour",
243
+ eventDate: "2023-06-30T23:30:00.000Z",
244
+ venueName: "Skyline Stage at the Mann",
245
+ eventCity: "Philadelphia, PA",
246
+ eventUrl:
247
+ "https://www.ticketmaster.com/melanie-martinez-portals-tour-philadelphia-pennsylvania-06-30-2023/event/02005E7892BF2800",
248
+ eventImage:
249
+ "https://s1.ticketm.net/dam/a/39c/ffdebc1d-6b1e-42da-940f-ec7a132a939c_RETINA_PORTRAIT_16_9.jpg",
250
+ siteId: "TM_US"
251
+ },
252
+ T10: {
253
+ mode: "CHECKOUT",
254
+ createdAt: "2023-05-17T10:18:27.907Z",
255
+ taskId: "T10",
256
+ active: true,
257
+ email: "wilberwiqctar0044@gmail.com",
258
+ password: "5jhsrtsdvqv54a7",
259
+ status: "Waiting for Stock",
260
+ statusColor: "white",
261
+ manual: false,
262
+ incapsulaBypass: false,
263
+ quickQueue: false,
264
+ loginAfterCart: false,
265
+ quantity: 8,
266
+ proxy: "http://events1707:V3rtYkwW@23.26.22.171:61234",
267
+ eventId: "01005D5C90E81BA7",
268
+ reservedTicketsList: "-",
269
+ expirationTime: null,
270
+ doNotPay: false,
271
+ agedAccount: false,
272
+ presaleCode: "",
273
+ smartTimer: false,
274
+ accountTag: "admin",
275
+ profileTags: ["Any"],
276
+ eventName: "Taylor Swift | The Eras Tour",
277
+ eventDate: "2023-05-20T22:30:00.000Z",
278
+ venueName: "Gillette Stadium",
279
+ eventCity: "Foxborough, MA",
280
+ eventUrl:
281
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-20-2023/event/01005D5C90E81CA7",
282
+ eventImage:
283
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
284
+ siteId: "TM_US"
285
+ },
286
+ T11: {
287
+ mode: "CHECKOUT",
288
+ createdAt: "2023-05-17T10:18:27.908Z",
289
+ taskId: "T11",
290
+ active: true,
291
+ email: "cuongcuodvda3429@gmail.com",
292
+ password: "6XrsthEzVaiGZV8",
293
+ status: "Waiting for Stock",
294
+ statusColor: "white",
295
+ manual: true,
296
+ incapsulaBypass: false,
297
+ quickQueue: false,
298
+ loginAfterCart: true,
299
+ quantity: 8,
300
+ proxy: "http://OR104412519:nTvADqHp@208.207.172.8:9066",
301
+ eventId: "0E005D7DE2173395",
302
+ reservedTicketsList: "-",
303
+ expirationTime: null,
304
+ doNotPay: false,
305
+ agedAccount: false,
306
+ presaleCode: "",
307
+ smartTimer: false,
308
+ accountTag: "admin",
309
+ profileTags: ["Any"],
310
+ eventName: "Morgan Wallen: One Night At A Time World Tour",
311
+ eventDate: "2023-11-11T22:30:00.000Z",
312
+ venueName: "Truist Park",
313
+ eventCity: "Atlanta, GA",
314
+ eventUrl:
315
+ "https://www.ticketmaster.com/morgan-wallen-one-night-at-a-atlanta-georgia-11-11-2023/event/0E005D7DE1173395",
316
+ eventImage:
317
+ "https://s1.ticketm.net/dam/a/184/1de64204-dda7-4bf4-b341-ecd9baed7184_1861381_RETINA_PORTRAIT_16_9.jpg",
318
+ siteId: "TM_US"
319
+ },
320
+ T12: {
321
+ mode: "CHECKOUT",
322
+ createdAt: "2023-05-17T10:18:27.909Z",
323
+ taskId: "T12",
324
+ active: true,
325
+ email: "taylortaxjbr26248@gmail.com",
326
+ password: "OwZz9PfKtWsrS7",
327
+ status: "Waiting for Stock",
328
+ statusColor: "white",
329
+ manual: false,
330
+ incapsulaBypass: false,
331
+ quickQueue: false,
332
+ loginAfterCart: false,
333
+ quantity: 8,
334
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
335
+ eventId: "01005D6474FD0E07",
336
+ reservedTicketsList: "-",
337
+ expirationTime: null,
338
+ doNotPay: false,
339
+ agedAccount: false,
340
+ presaleCode: "",
341
+ smartTimer: false,
342
+ accountTag: "admin",
343
+ profileTags: ["Any"],
344
+ eventName: "Taylor Swift | The Eras Tour",
345
+ eventDate: "2023-05-21T22:30:00.000Z",
346
+ venueName: "Gillette Stadium",
347
+ eventCity: "Foxborough, MA",
348
+ eventUrl:
349
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-21-2023/event/01005D6474FD0E07",
350
+ eventImage:
351
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
352
+ siteId: "TM_US"
353
+ },
354
+ T12a: {
355
+ mode: "CHECKOUT",
356
+ createdAt: "2023-05-17T10:18:27.909Z",
357
+ taskId: "T12a",
358
+ active: true,
359
+ email: "taylortaxjbr26248@gmail.com",
360
+ password: "OwZz9PfKtWsrS7",
361
+ status: "Waiting for Queue",
362
+ statusColor: "white",
363
+ manual: false,
364
+ incapsulaBypass: false,
365
+ quickQueue: false,
366
+ loginAfterCart: false,
367
+ quantity: 8,
368
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
369
+ eventId: "01005D6474FD0E07",
370
+ reservedTicketsList: "-",
371
+ expirationTime: null,
372
+ doNotPay: false,
373
+ agedAccount: false,
374
+ presaleCode: "",
375
+ smartTimer: false,
376
+ accountTag: "admin",
377
+ profileTags: ["Any"],
378
+ eventName: "Taylor Swift | The Eras Tour",
379
+ eventDate: "2023-05-21T22:30:00.000Z",
380
+ venueName: "Gillette Stadium",
381
+ eventCity: "Foxborough, MA",
382
+ eventUrl:
383
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-21-2023/event/01005D6474FD0E07",
384
+ eventImage:
385
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
386
+ siteId: "TM_US"
387
+ },
388
+ T12b: {
389
+ mode: "CHECKOUT",
390
+ createdAt: "2023-05-17T10:18:27.909Z",
391
+ taskId: "T12b",
392
+ active: true,
393
+ email: "taylortaxjbr26248@gmail.com",
394
+ password: "OwZz9PfKtWsrS7",
395
+ status: "Error in Enqueue",
396
+ statusColor: "red",
397
+ manual: false,
398
+ incapsulaBypass: false,
399
+ quickQueue: false,
400
+ loginAfterCart: false,
401
+ quantity: 8,
402
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
403
+ eventId: "01005D6474FD0E07",
404
+ reservedTicketsList: "-",
405
+ expirationTime: null,
406
+ doNotPay: false,
407
+ agedAccount: false,
408
+ presaleCode: "",
409
+ smartTimer: false,
410
+ accountTag: "admin",
411
+ profileTags: ["Any"],
412
+ eventName: "Taylor Swift | The Eras Tour",
413
+ eventDate: "2023-05-21T22:30:00.000Z",
414
+ venueName: "Gillette Stadium",
415
+ eventCity: "Foxborough, MA",
416
+ eventUrl:
417
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-21-2023/event/01005D6474FD0E07",
418
+ eventImage:
419
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
420
+ siteId: "TM_US"
421
+ },
422
+ T12c: {
423
+ mode: "CHECKOUT",
424
+ createdAt: "2023-05-17T10:18:27.909Z",
425
+ taskId: "T12c",
426
+ active: true,
427
+ email: "taylortaxjbr26248@gmail.com",
428
+ password: "OwZz9PfKtWsrS7",
429
+ status: "Waiting for Stock",
430
+ statusColor: "white",
431
+ manual: false,
432
+ incapsulaBypass: false,
433
+ quickQueue: false,
434
+ loginAfterCart: false,
435
+ quantity: 8,
436
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
437
+ eventId: "01005D6474FD0E07",
438
+ reservedTicketsList: "-",
439
+ expirationTime: null,
440
+ doNotPay: false,
441
+ agedAccount: false,
442
+ presaleCode: "",
443
+ smartTimer: false,
444
+ accountTag: "admin",
445
+ profileTags: ["Any"],
446
+ eventName: "Taylor Swift | The Eras Tour",
447
+ eventDate: "2023-05-21T22:30:00.000Z",
448
+ venueName: "Gillette Stadium",
449
+ eventCity: "Foxborough, MA",
450
+ eventUrl:
451
+ "https://www.ticketmaster.com/taylor-swift-the-eras-tour-foxborough-massachusetts-05-21-2023/event/01005D6474FD0E07",
452
+ eventImage:
453
+ "https://s1.ticketm.net/dam/a/477/955a0c60-463c-442a-a3bb-d10aa68dc477_RETINA_PORTRAIT_16_9.jpg",
454
+ siteId: "TM_US"
455
+ },
456
+ T16: {
457
+ mode: "CHECKOUT",
458
+ createdAt: "2023-05-17T10:18:27.909Z",
459
+ taskId: "T-mqm-12",
460
+ active: true,
461
+ email: "taylortaxjbr26248@gmail.com",
462
+ password: "OwZz9PfKtWsrS7",
463
+ status: "5500 users ahead - ETA: 4min",
464
+ statusColor: "white",
465
+ manual: false,
466
+ incapsulaBypass: false,
467
+ quickQueue: false,
468
+ loginAfterCart: false,
469
+ quantity: 8,
470
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
471
+ eventId: "01005D6474FD0E07",
472
+ reservedTicketsList: "-",
473
+ expirationTime: null,
474
+ doNotPay: false,
475
+ agedAccount: false,
476
+ presaleCode: "",
477
+ smartTimer: false,
478
+ accountTag: "admin",
479
+ profileTags: ["Any"],
480
+ eventName: "Taylor Swift | The Eras Tour",
481
+ eventDate: "2023-05-21T22:30:00.000Z",
482
+ venueName: "Gillette Stadium",
483
+ eventCity: "Foxborough, MA",
484
+ hidden: true,
485
+ siteId: "TM_DE"
486
+ },
487
+ T17: {
488
+ mode: "CHECKOUT",
489
+ createdAt: "2023-05-17T10:18:27.909Z",
490
+ taskId: "T-mqm-12",
491
+ active: true,
492
+ email: "taylortaxjbr26248@gmail.com",
493
+ password: "OwZz9PfKtWsrS7",
494
+ status: "5000 users ahead - ETA: 3min",
495
+ statusColor: "white",
496
+ manual: false,
497
+ incapsulaBypass: false,
498
+ quickQueue: false,
499
+ loginAfterCart: false,
500
+ quantity: 8,
501
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
502
+ eventId: "01005D6474FD0E07",
503
+ reservedTicketsList: "-",
504
+ expirationTime: null,
505
+ doNotPay: false,
506
+ agedAccount: false,
507
+ presaleCode: "",
508
+ smartTimer: false,
509
+ accountTag: "admin",
510
+ profileTags: ["Any"],
511
+ eventName: "Taylor Swift | The Eras Tour",
512
+ eventDate: "2023-05-21T22:30:00.000Z",
513
+ venueName: "Gillette Stadium",
514
+ eventCity: "Foxborough, MA",
515
+ hidden: true,
516
+ siteId: "TM_DE"
517
+ },
518
+
519
+ T18: {
520
+ mode: "CHECKOUT",
521
+ createdAt: "2023-05-17T10:18:27.909Z",
522
+ taskId: "T-mqm-12",
523
+ active: true,
524
+ email: "taylortaxjbr26248@gmail.com",
525
+ password: "OwZz9PfKtWsrS7",
526
+ status: "400 users ahead - ETA: less than 1 minute",
527
+ statusColor: "white",
528
+ manual: false,
529
+ incapsulaBypass: false,
530
+ quickQueue: false,
531
+ loginAfterCart: false,
532
+ quantity: 8,
533
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
534
+ eventId: "01005D6474FD0E07",
535
+ reservedTicketsList: "-",
536
+ expirationTime: null,
537
+ doNotPay: false,
538
+ agedAccount: false,
539
+ presaleCode: "",
540
+ smartTimer: false,
541
+ accountTag: "admin",
542
+ profileTags: ["Any"],
543
+ eventName: "Taylor Swift | The Eras Tour",
544
+ eventDate: "2023-05-21T22:30:00.000Z",
545
+ venueName: "Gillette Stadium",
546
+ eventCity: "Foxborough, MA",
547
+ hidden: true,
548
+ siteId: "TM_DE"
549
+ },
550
+ T19: {
551
+ mode: "CHECKOUT",
552
+ createdAt: "2023-05-17T10:18:27.909Z",
553
+ taskId: "T-mqm-12",
554
+ active: true,
555
+ email: "taylortaxjbr26248@gmail.com",
556
+ password: "OwZz9PfKtWsrS7",
557
+ status: "400 users ahead - ETA: less than 1 minute",
558
+ statusColor: "white",
559
+ manual: false,
560
+ incapsulaBypass: false,
561
+ quickQueue: false,
562
+ loginAfterCart: false,
563
+ quantity: 8,
564
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
565
+ eventId: "01005D6474FD0E07",
566
+ reservedTicketsList: "-",
567
+ expirationTime: null,
568
+ doNotPay: false,
569
+ agedAccount: false,
570
+ presaleCode: "",
571
+ smartTimer: false,
572
+ accountTag: "admin",
573
+ profileTags: ["Any"],
574
+ eventName: "Taylor Swift | The Eras Tour",
575
+ eventDate: "2023-05-21T22:30:00.000Z",
576
+ venueName: "Gillette Stadium",
577
+ eventCity: "Foxborough, MA",
578
+ hidden: true,
579
+ siteId: "TM_DE"
580
+ },
581
+ T20: {
582
+ mode: "CHECKOUT",
583
+ createdAt: "2023-05-17T10:18:27.909Z",
584
+ taskId: "T-mqm-12",
585
+ active: true,
586
+ email: "taylortaxjbr26248@gmail.com",
587
+ password: "OwZz9PfKtWsrS7",
588
+ status: "400 users ahead - ETA: less than 1 minute",
589
+ statusColor: "white",
590
+ manual: false,
591
+ incapsulaBypass: false,
592
+ quickQueue: false,
593
+ loginAfterCart: false,
594
+ quantity: 8,
595
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
596
+ eventId: "01005D6474FD0E07",
597
+ reservedTicketsList: "-",
598
+ expirationTime: null,
599
+ doNotPay: false,
600
+ agedAccount: false,
601
+ presaleCode: "",
602
+ smartTimer: false,
603
+ accountTag: "admin",
604
+ profileTags: ["Any"],
605
+ eventName: "Taylor Swift | The Eras Tour",
606
+ eventDate: "2023-05-21T22:30:00.000Z",
607
+ venueName: "Gillette Stadium",
608
+ eventCity: "Foxborough, MA",
609
+ hidden: false,
610
+ siteId: "TM_DE"
611
+ },
612
+ T21: {
613
+ mode: "CHECKOUT",
614
+ createdAt: "2023-05-17T10:18:27.909Z",
615
+ taskId: "T-mqm-12",
616
+ active: true,
617
+ email: "taylortaxjbr26248@gmail.com",
618
+ password: "OwZz9PfKtWsrS7",
619
+ status: "400 users ahead - ETA: less than 1 minute",
620
+ statusColor: "white",
621
+ manual: false,
622
+ incapsulaBypass: false,
623
+ quickQueue: false,
624
+ loginAfterCart: false,
625
+ quantity: 8,
626
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
627
+ eventId: "01005D6474FD0E07",
628
+ reservedTicketsList: "-",
629
+ expirationTime: null,
630
+ doNotPay: false,
631
+ agedAccount: false,
632
+ presaleCode: "",
633
+ smartTimer: false,
634
+ accountTag: "admin",
635
+ profileTags: ["Any"],
636
+ eventName: "Taylor Swift | The Eras Tour",
637
+ eventDate: "2023-05-21T22:30:00.000Z",
638
+ venueName: "Gillette Stadium",
639
+ eventCity: "Foxborough, MA",
640
+ hidden: true,
641
+ siteId: "TM_DE"
642
+ },
643
+ T22: {
644
+ mode: "CHECKOUT",
645
+ createdAt: "2023-05-17T10:18:27.909Z",
646
+ taskId: "T-mqm-12",
647
+ active: true,
648
+ email: "taylortaxjbr26248@gmail.com",
649
+ password: "OwZz9PfKtWsrS7",
650
+ status: "400 users ahead - ETA: less than 1 minute",
651
+ statusColor: "white",
652
+ manual: false,
653
+ incapsulaBypass: false,
654
+ quickQueue: false,
655
+ loginAfterCart: false,
656
+ quantity: 8,
657
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
658
+ eventId: "01005D6474FD0E07",
659
+ reservedTicketsList: "-",
660
+ expirationTime: null,
661
+ doNotPay: false,
662
+ agedAccount: false,
663
+ presaleCode: "",
664
+ smartTimer: false,
665
+ accountTag: "admin",
666
+ profileTags: ["Any"],
667
+ eventName: "Taylor Swift | The Eras Tour",
668
+ eventDate: "2023-05-21T22:30:00.000Z",
669
+ venueName: "Gillette Stadium",
670
+ eventCity: "Foxborough, MA",
671
+ hidden: true,
672
+ siteId: "TM_DE"
673
+ },
674
+ T23: {
675
+ mode: "CHECKOUT",
676
+ createdAt: "2023-05-17T10:18:27.909Z",
677
+ taskId: "T-mqm-12",
678
+ active: true,
679
+ email: "taylortaxjbr26248@gmail.com",
680
+ password: "OwZz9PfKtWsrS7",
681
+ status: "Sleeping in queue",
682
+ statusColor: "white",
683
+ manual: false,
684
+ incapsulaBypass: false,
685
+ quickQueue: false,
686
+ loginAfterCart: false,
687
+ quantity: 8,
688
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
689
+ eventId: "01005D6474FD0E07",
690
+ reservedTicketsList: "-",
691
+ expirationTime: null,
692
+ doNotPay: false,
693
+ agedAccount: false,
694
+ presaleCode: "",
695
+ smartTimer: false,
696
+ accountTag: "admin",
697
+ profileTags: ["Any"],
698
+ eventName: "Taylor Swift | The Eras Tour",
699
+ eventDate: "2023-05-21T22:30:00.000Z",
700
+ venueName: "Gillette Stadium",
701
+ eventCity: "Foxborough, MA",
702
+ hidden: true,
703
+ siteId: "TM_DE"
704
+ },
705
+ T24: {
706
+ mode: "CHECKOUT",
707
+ createdAt: "2023-05-17T10:18:27.909Z",
708
+ taskId: "T-mqm-12",
709
+ active: true,
710
+ email: "taylortaxjbr26248@gmail.com",
711
+ password: "OwZz9PfKtWsrS7",
712
+ status: "Sleeping in queue",
713
+ statusColor: "white",
714
+ manual: false,
715
+ incapsulaBypass: false,
716
+ quickQueue: false,
717
+ loginAfterCart: false,
718
+ quantity: 8,
719
+ proxy: "http://events2453:CfSuEtOA@115.167.4.149:61234",
720
+ eventId: "01005D6474FD0E07",
721
+ reservedTicketsList: "-",
722
+ expirationTime: null,
723
+ doNotPay: false,
724
+ agedAccount: false,
725
+ presaleCode: "",
726
+ smartTimer: false,
727
+ accountTag: "admin",
728
+ profileTags: ["Any"],
729
+ eventName: "Taylor Swift | The Eras Tour",
730
+ eventDate: "2023-05-21T22:30:00.000Z",
731
+ venueName: "Gillette Stadium",
732
+ eventCity: "Foxborough, MA",
733
+ hidden: true,
734
+ siteId: "TM_CZ"
735
+ }
736
+ },
737
+ Accounts: [
738
+ {
739
+ _id: Math.random(),
740
+ email: "aaaa@aaa.com",
741
+ password: "password123",
742
+ enabled: true,
743
+ tags: ["admin", "amex"]
744
+ },
745
+ {
746
+ _id: Math.random(),
747
+ email: "bbb@bbb.com",
748
+ password: "password123",
749
+ enabled: true,
750
+ tags: ["admin", "amex"]
751
+ },
752
+ {
753
+ _id: Math.random(),
754
+ email: "aaa@bbb.com",
755
+ password: "password123",
756
+ enabled: true,
757
+ tags: ["amex"]
758
+ },
759
+ {
760
+ _id: Math.random(),
761
+ email: "aabb@ccc.com",
762
+ password: "password123",
763
+ enabled: true,
764
+ tags: ["amex"]
765
+ },
766
+ {
767
+ _id: Math.random(),
768
+ email: "aaaabbbbb@cccc.com",
769
+ password: "password123",
770
+ enabled: true,
771
+ tags: ["admin"]
772
+ },
773
+ {
774
+ _id: Math.random(),
775
+ email: "aa@ihbigb.com",
776
+ password: "password123",
777
+ enabled: true,
778
+ tags: ["admin"]
779
+ },
780
+ {
781
+ _id: Math.random(),
782
+ email: "aaaa@aaa.com",
783
+ password: "password123",
784
+ enabled: true,
785
+ tags: ["admin", "amex"]
786
+ },
787
+ {
788
+ _id: Math.random(),
789
+ email: "bbb@bbb.com",
790
+ password: "password123",
791
+ enabled: true,
792
+ tags: ["admin", "amex"]
793
+ },
794
+ {
795
+ _id: Math.random(),
796
+ email: "aaa@bbb.com",
797
+ password: "password123",
798
+ enabled: true,
799
+ tags: ["admin", "amex"]
800
+ },
801
+ {
802
+ _id: Math.random(),
803
+ email: "aabb@ccc.com",
804
+ password: "password123",
805
+ enabled: true,
806
+ tags: ["admin", "amex"]
807
+ },
808
+ {
809
+ _id: Math.random(),
810
+ email: "aaaabbbbb@cccc.com",
811
+ password: "password123",
812
+ enabled: true,
813
+ tags: ["admin", "amex"]
814
+ },
815
+ {
816
+ _id: Math.random(),
817
+ email: "aa@ihbigb.com",
818
+ password: "password123",
819
+ enabled: true,
820
+ tags: ["admin", "amex"]
821
+ },
822
+ {
823
+ _id: Math.random(),
824
+ email: "aaaa@aaa.com",
825
+ password: "password123",
826
+ enabled: true,
827
+ tags: ["admin", "amex"]
828
+ },
829
+ {
830
+ _id: Math.random(),
831
+ email: "bbb@bbb.com",
832
+ password: "password123",
833
+ enabled: true,
834
+ tags: ["admin", "amex"]
835
+ },
836
+ {
837
+ _id: Math.random(),
838
+ email: "aaa@bbb.com",
839
+ password: "password123",
840
+ enabled: true,
841
+ tags: ["admin", "amex"]
842
+ },
843
+ {
844
+ _id: Math.random(),
845
+ email: "aabb@ccc.com",
846
+ password: "password123",
847
+ enabled: true,
848
+ tags: ["admin", "amex"]
849
+ },
850
+ {
851
+ _id: Math.random(),
852
+ email: "aaaabbbbb@cccc.com",
853
+ password: "password123",
854
+ enabled: true,
855
+ tags: ["admin", "amex"]
856
+ },
857
+ {
858
+ _id: Math.random(),
859
+ email: "aa@ihbigb.com",
860
+ password: "password123",
861
+ enabled: true,
862
+ tags: ["admin", "amex"]
863
+ },
864
+ {
865
+ _id: Math.random(),
866
+ email: "aaaa@aaa.com",
867
+ password: "password123",
868
+ enabled: true,
869
+ tags: ["admin", "amex"]
870
+ },
871
+ {
872
+ _id: Math.random(),
873
+ email: "bbb@bbb.com",
874
+ password: "password123",
875
+ enabled: true,
876
+ tags: ["admin", "amex"]
877
+ },
878
+ {
879
+ _id: Math.random(),
880
+ email: "aaa@bbb.com",
881
+ password: "password123",
882
+ enabled: true,
883
+ tags: ["admin", "amex"]
884
+ },
885
+ {
886
+ _id: Math.random(),
887
+ email: "aabb@ccc.com",
888
+ password: "password123",
889
+ enabled: true,
890
+ tags: ["admin", "amex"]
891
+ },
892
+ {
893
+ _id: Math.random(),
894
+ email: "aaaabbbbb@cccc.com",
895
+ password: "password123",
896
+ enabled: true,
897
+ tags: ["admin", "amex"]
898
+ },
899
+ {
900
+ _id: Math.random(),
901
+ email: "aa@ihbigb.com",
902
+ password: "password123",
903
+ enabled: true,
904
+ tags: ["admin", "amex"]
905
+ }
906
+ ],
907
+ Profiles: [
908
+ {
909
+ _id: 1,
910
+ profileName: "Harry Potter",
911
+ cardNumber: "48474638474545",
912
+ expMonth: "12",
913
+ expYear: "28",
914
+ tags: ["admin", "amex"]
915
+ },
916
+ {
917
+ _id: 2,
918
+ profileName: "Draco Malfoy",
919
+ cardNumber: "38474638474545",
920
+ expMonth: "12",
921
+ expYear: "28",
922
+ tags: ["admin", "amex"]
923
+ },
924
+ {
925
+ _id: 3,
926
+ profileName: "Tom Smith",
927
+ cardNumber: "58474638474545",
928
+ expMonth: "12",
929
+ expYear: "28",
930
+ tags: ["admin", "amex"],
931
+ enabled: true
932
+ },
933
+ {
934
+ _id: 1,
935
+ profileName: "Harry Potter",
936
+ cardNumber: "48474638474545",
937
+ expMonth: "12",
938
+ expYear: "28",
939
+ tags: ["admin", "amex"]
940
+ },
941
+ {
942
+ _id: 2,
943
+ profileName: "Draco Malfoy",
944
+ cardNumber: "38474638474545",
945
+ expMonth: "12",
946
+ expYear: "28",
947
+ tags: ["admin", "amex"]
948
+ },
949
+ {
950
+ _id: 3,
951
+ profileName: "Tom Smith",
952
+ cardNumber: "58474638474545",
953
+ expMonth: "12",
954
+ expYear: "28",
955
+ tags: ["admin", "amex"],
956
+ enabled: true
957
+ },
958
+ {
959
+ _id: 1,
960
+ profileName: "Harry Potter",
961
+ cardNumber: "48474638474545",
962
+ expMonth: "12",
963
+ expYear: "28",
964
+ tags: ["admin", "amex"]
965
+ },
966
+ {
967
+ _id: 2,
968
+ profileName: "Draco Malfoy",
969
+ cardNumber: "38474638474545",
970
+ expMonth: "12",
971
+ expYear: "28",
972
+ tags: ["admin", "amex"]
973
+ },
974
+ {
975
+ _id: 3,
976
+ profileName: "Tom Smith",
977
+ cardNumber: "58474638474545",
978
+ expMonth: "12",
979
+ expYear: "28",
980
+ tags: ["admin", "amex"],
981
+ enabled: true
982
+ },
983
+ {
984
+ _id: 1,
985
+ profileName: "Harry Potter",
986
+ cardNumber: "48474638474545",
987
+ expMonth: "12",
988
+ expYear: "28",
989
+ tags: ["admin", "amex"]
990
+ },
991
+ {
992
+ _id: 2,
993
+ profileName: "Draco Malfoy",
994
+ cardNumber: "38474638474545",
995
+ expMonth: "12",
996
+ expYear: "28",
997
+ tags: ["admin", "amex"]
998
+ },
999
+ {
1000
+ _id: 3,
1001
+ profileName: "Tom Smith",
1002
+ cardNumber: "58474638474545",
1003
+ expMonth: "12",
1004
+ expYear: "28",
1005
+ tags: ["admin", "amex"],
1006
+ enabled: true
1007
+ },
1008
+ {
1009
+ _id: 1,
1010
+ profileName: "Harry Potter",
1011
+ cardNumber: "48474638474545",
1012
+ expMonth: "12",
1013
+ expYear: "28",
1014
+ tags: ["admin", "amex"]
1015
+ },
1016
+ {
1017
+ _id: 2,
1018
+ profileName: "Draco Malfoy",
1019
+ cardNumber: "38474638474545",
1020
+ expMonth: "12",
1021
+ expYear: "28",
1022
+ tags: ["admin", "amex"]
1023
+ },
1024
+ {
1025
+ _id: 3,
1026
+ profileName: "Tom Smith",
1027
+ cardNumber: "58474638474545",
1028
+ expMonth: "12",
1029
+ expYear: "28",
1030
+ tags: ["admin", "amex"],
1031
+ enabled: true
1032
+ }
1033
+ ]
1034
+ };