File size: 13,838 Bytes
18a2066
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
{
  "timestamp": 1729631882,
  "total_processed": 474,
  "total_failed": 49,
  "total_elements": 20344,
  "elements_by_class": {
    "link": 14031,
    "button": 3957,
    "input": 319,
    "select": 0,
    "textarea": 27,
    "label": 261,
    "checkbox": 38,
    "radio": 72,
    "dropdown": 614,
    "slider": 15,
    "toggle": 2,
    "menu_item": 863,
    "clickable": 22,
    "icon": 123,
    "image": 0,
    "text": 0
  },
  "elements_by_category": {
    "mostvisited": 19688,
    "web_apps": 205,
    "dev_tools": 157,
    "creative": 79,
    "news": 63,
    "ai_platforms": 152
  },
  "processed_urls": [
    "https://nydailynews.com",
    "https://amazon.es",
    "https://independent.co.uk",
    "https://mediafire.com",
    "https://developers.google.com",
    "https://justjared.com",
    "https://ibm.com",
    "https://telegram.me",
    "https://outlook.com",
    "https://salesforce.com",
    "https://support.google.com",
    "https://www.gov.br",
    "https://hindustantimes.com",
    "https://storage.googleapis.com",
    "https://nasa.gov",
    "https://berkeley.edu",
    "https://unicef.org",
    "https://wandb.ai",
    "https://linktr.ee",
    "https://narod.ru",
    "https://thetimes.co.uk",
    "https://amazon.ca",
    "https://gooyaabitemplates.com",
    "https://trustpilot.com",
    "https://secureserver.net",
    "https://substack.com",
    "https://fb.com",
    "https://mailchimp.com",
    "https://web.whatsapp.com",
    "https://google.co.jp",
    "https://stanford.edu",
    "https://wikia.com",
    "https://sciencemag.org",
    "https://www.yahoo.com",
    "https://upenn.edu",
    "https://terra.com.br",
    "https://theverge.com",
    "https://g.co",
    "https://policies.google.com",
    "https://youtube.com",
    "https://files.wordpress.com",
    "https://gstatic.com",
    "https://ft.com",
    "https://insider.com",
    "https://wp.com",
    "https://sciencedirect.com",
    "https://id.wikipedia.org",
    "https://boston.com",
    "https://fandom.com",
    "https://t.me",
    "https://googleblog.com",
    "https://stores.jp",
    "https://tools.google.com",
    "https://hatena.ne.jp",
    "https://google.co.uk",
    "https://slack.com",
    "https://imageshack.us",
    "https://economist.com",
    "https://buzzfeed.com",
    "https://colab.research.google.com",
    "https://dan.com",
    "https://jsfiddle.net",
    "https://search.yahoo.com",
    "https://giphy.com",
    "https://www.over-blog.com",
    "https://www.photopea.com",
    "https://vice.com",
    "https://googleusercontent.com",
    "https://20minutos.es",
    "https://zendesk.com",
    "https://admin.ch",
    "https://live.com",
    "https://www.pixilart.com",
    "https://yadi.sk",
    "https://qq.com",
    "https://amazon.com",
    "https://ftc.gov",
    "https://android.com",
    "https://www.weebly.com",
    "https://kickstarter.com",
    "https://redbull.com",
    "https://www.canva.com",
    "https://enable-javascript.com",
    "https://lavanguardia.com",
    "https://howstuffworks.com",
    "https://mail.google.com",
    "https://quora.com",
    "https://dropcatch.com",
    "https://forbes.com",
    "https://tmz.com",
    "https://pl.wikipedia.org",
    "https://telegraph.co.uk",
    "https://reg.ru",
    "https://nba.com",
    "https://techcrunch.com",
    "https://ebay.com",
    "https://utexas.edu",
    "https://cbsnews.com",
    "https://news.com.au",
    "https://video.google.com",
    "https://afternic.com",
    "https://4shared.com",
    "https://psychologytoday.com",
    "https://google.de",
    "https://ign.com",
    "https://maps.google.com",
    "https://usgs.gov",
    "https://bigcommerce.com",
    "https://whatsapp.com",
    "https://uol.com.br",
    "https://radiofrance.fr",
    "https://timeweb.ru",
    "https://lefigaro.fr",
    "https://groups.google.com",
    "https://deezer.com",
    "https://addthis.com",
    "https://hp.com",
    "https://springer.com",
    "https://discord.com",
    "https://mayoclinic.org",
    "https://cointernet.com.co",
    "https://dropbox.com",
    "https://francetvinfo.fr",
    "https://rt.com",
    "https://playstation.com",
    "https://nicovideo.jp",
    "https://blog.google",
    "https://pt.wikipedia.org",
    "https://nationalgeographic.com",
    "https://blackberry.com",
    "https://indiatimes.com",
    "https://rambler.ru",
    "https://forms.gle",
    "https://t-online.de",
    "https://www.jetbrains.com",
    "https://netlify.app",
    "https://businessinsider.com",
    "https://nikkei.com",
    "https://ikea.com",
    "https://who.int",
    "https://networkadvertising.org",
    "https://nytimes.com",
    "https://github.com",
    "https://doubleclick.net",
    "https://alexa.com",
    "https://nbcnews.com",
    "https://goo.ne.jp",
    "https://bbc.co.uk",
    "https://shopify.com",
    "https://cpanel.com",
    "https://ietf.org",
    "https://pixabay.com",
    "https://plus.google.com",
    "https://samsung.com",
    "https://huffingtonpost.com",
    "https://gravatar.com",
    "https://newsweek.com",
    "https://ca.gov",
    "https://justgiving.com",
    "https://zoom.us",
    "https://indiegogo.com",
    "https://search.google.com",
    "https://elmundo.es",
    "https://tinyurl.com",
    "https://google.com.br",
    "https://soundcloud.com",
    "https://metro.co.uk",
    "https://istockphoto.com",
    "https://brandbucket.com",
    "https://academia.edu",
    "https://codesandbox.io",
    "https://vistaprint.com",
    "https://en.wikipedia.org",
    "https://bing.com",
    "https://sony.com",
    "https://ok.ru",
    "https://namecheap.com",
    "https://it.wikipedia.org",
    "https://washington.edu",
    "https://photobucket.com",
    "https://myaccount.google.com",
    "https://vimeo.com",
    "https://gofundme.com",
    "https://change.org",
    "https://themeforest.net",
    "https://get.google.com",
    "https://smh.com.au",
    "https://play.google.com",
    "https://spotify.com",
    "https://netvibes.com",
    "https://offset.com",
    "https://rtve.es",
    "https://thesun.co.uk",
    "https://discord.gg",
    "https://espn.com",
    "https://cnn.com",
    "https://bbc.com",
    "https://stackoverflow.com",
    "https://news.google.com",
    "https://dw.com",
    "https://www.figma.com",
    "https://allaboutcookies.org",
    "https://cdc.gov",
    "https://yelp.com",
    "https://liberation.fr",
    "https://ziddu.com",
    "https://aboutads.info",
    "https://www.livejournal.com",
    "https://apple.com",
    "https://mystrikingly.com",
    "https://goo.gl",
    "https://pexels.com",
    "https://www.wix.com",
    "https://gsmarena.com",
    "https://prezi.com",
    "https://webnode.page",
    "https://foursquare.com",
    "https://finance.yahoo.com",
    "https://mit.edu",
    "https://www.dropbox.com",
    "https://thefreedictionary.com",
    "https://workspace.google.com",
    "https://instagram.com",
    "https://unsplash.com",
    "https://time.com",
    "https://calendar.google.com",
    "https://wired.com",
    "https://jhu.edu",
    "https://cnil.fr",
    "https://joomla.org",
    "https://cloudflare.com",
    "https://amazon.co.jp",
    "https://yandex.ru",
    "https://abc.net.au",
    "https://gizmodo.com",
    "https://researchgate.net",
    "https://google.es",
    "https://huffpost.com",
    "https://sina.com.cn",
    "https://ipv4.google.com",
    "https://gmail.com",
    "https://www.canalblog.com",
    "https://twitter.com",
    "https://mega.nz",
    "https://latimes.com",
    "https://eventbrite.com",
    "https://twitch.tv",
    "https://linkedin.com",
    "https://huggingface.co",
    "https://kakao.com",
    "https://es.wikipedia.org",
    "https://weather.com",
    "https://lemonde.fr",
    "https://bandcamp.com",
    "https://doi.org",
    "https://nps.gov",
    "https://surveymonkey.com",
    "https://instructables.com",
    "https://theglobeandmail.com",
    "https://public-api.wordpress.com",
    "https://pinterest.com",
    "https://sedoparking.com",
    "https://loc.gov",
    "https://depositfiles.com",
    "https://statista.com",
    "https://globo.com",
    "https://liveinternet.ru",
    "https://pcmag.com",
    "https://ted.com",
    "https://feedburner.com",
    "https://canada.ca",
    "https://estadao.com.br",
    "https://google.com.tw",
    "https://google.nl",
    "https://amzn.to",
    "https://m.me",
    "https://nginx.org",
    "https://wikihow.com",
    "https://www.bloomberg.com",
    "https://sky.com",
    "https://www.gov.uk",
    "https://issuu.com",
    "https://target.com",
    "https://fr.wikipedia.org",
    "https://home.pl",
    "https://bp1.blogger.com",
    "https://line.me",
    "https://canva.com",
    "https://youtu.be",
    "https://standard.co.uk",
    "https://addtoany.com",
    "https://java.com",
    "https://jstor.org",
    "https://amazon.co.uk",
    "https://hollywoodreporter.com",
    "https://ovh.net",
    "https://unesco.org",
    "https://ap.org",
    "https://flickr.com",
    "https://britannica.com",
    "https://bloomberg.com",
    "https://docs.google.com",
    "https://shutterstock.com",
    "https://de.wikipedia.org",
    "https://sputniknews.com",
    "https://buydomains.com",
    "https://amazon.fr",
    "https://m.wikipedia.org",
    "https://aol.com",
    "https://thenai.org",
    "https://reddit.com",
    "https://com.com",
    "https://focus.de",
    "https://myspace.com",
    "https://cbslocal.com",
    "https://elpais.com",
    "https://lexpress.fr",
    "https://dreamstime.com",
    "https://nature.com",
    "https://pinterest.fr",
    "https://storage.canalblog.com",
    "https://marca.com",
    "https://www.bbc.com",
    "https://scribd.com",
    "https://opera.com",
    "https://adssettings.google.com",
    "https://theatlantic.com",
    "https://bestfreecams.club",
    "https://wa.me",
    "https://mozilla.org",
    "https://europapress.es",
    "https://facebook.com",
    "https://picasa.google.com",
    "https://bitly.com",
    "https://freepik.com",
    "https://theconversation.com",
    "https://ads.google.com",
    "https://photos.google.com",
    "https://mozilla.com",
    "https://plos.org",
    "https://bp0.blogger.com",
    "https://cnbc.com",
    "https://www.google.com",
    "https://google.fr",
    "https://abc.es",
    "https://spiegel.de",
    "https://pbs.org",
    "https://tiktok.com",
    "https://e-monsite.com",
    "https://t.co",
    "https://biblegateway.com",
    "https://walmart.com",
    "https://google.co.th",
    "https://europa.eu",
    "https://reverbnation.com",
    "https://techradar.com",
    "https://wikimedia.org",
    "https://sfgate.com",
    "https://netflix.com",
    "https://interia.pl",
    "https://arxiv.org",
    "https://skype.com",
    "https://detik.com",
    "https://variety.com",
    "https://tvtropes.org",
    "https://sendspace.com",
    "https://amazon.de",
    "https://google.it",
    "https://gnu.org",
    "https://euronews.com",
    "https://ovh.com",
    "https://apnews.com",
    "https://mirror.co.uk",
    "https://histats.com",
    "https://archives.gov",
    "https://youronlinechoices.com",
    "https://www.evernote.com",
    "https://huawei.com",
    "https://hubspot.com",
    "https://www.theverge.com",
    "https://telegra.ph",
    "https://cnet.com",
    "https://sites.google.com",
    "https://biglobe.ne.jp",
    "https://fifa.com",
    "https://bp2.blogger.com",
    "https://foxnews.com",
    "https://nginx.com",
    "https://codepen.io",
    "https://paypal.com",
    "https://creativecommons.org",
    "https://drive.google.com",
    "https://list-manage.com",
    "https://windows.net",
    "https://www.kaggle.com",
    "https://theguardian.com",
    "https://news.yahoo.com",
    "https://softonic.com",
    "https://www.blogger.com",
    "https://picasaweb.google.com",
    "https://office.com",
    "https://cpanel.net",
    "https://about.com",
    "https://last.fm",
    "https://php.net",
    "https://fb.me",
    "https://steampowered.com",
    "https://w3.org",
    "https://oracle.com",
    "https://rakuten.co.jp",
    "https://planalto.gov.br",
    "https://engadget.com",
    "https://usda.gov",
    "https://accounts.google.com",
    "https://newyorker.com",
    "https://scholastic.com",
    "https://translate.google.com",
    "https://intel.com",
    "https://clarin.com",
    "https://draft.blogger.com",
    "https://google.pl",
    "https://code.google.com",
    "https://ig.com.br",
    "https://yahoo.co.jp",
    "https://disqus.com",
    "https://naver.com",
    "https://dailymotion.com",
    "https://ru.wikipedia.org",
    "https://people.com",
    "https://vkontakte.ru",
    "https://nypost.com",
    "https://box.com",
    "https://digg.com",
    "https://www.remove.bg",
    "https://books.google.com",
    "https://google.ru",
    "https://sapo.pt",
    "https://justice.gov",
    "https://abcnews.go.com",
    "https://google.ca",
    "https://abril.com.br",
    "https://slideshare.net",
    "https://bit.ly",
    "https://apache.org",
    "https://mashable.com",
    "https://scmp.com",
    "https://express.co.uk",
    "https://sedo.com",
    "https://aliexpress.com",
    "https://whitehouse.gov",
    "https://archive.org",
    "https://medium.com",
    "https://dailymail.co.uk",
    "https://repubblica.it",
    "https://ja.wikipedia.org",
    "https://plesk.com",
    "https://000webhost.com",
    "https://npr.org",
    "https://ovhcloud.com",
    "https://weibo.com",
    "https://alibaba.com",
    "https://usatoday.com",
    "https://guardian.co.uk",
    "https://vk.com",
    "https://www.wikipedia.org",
    "https://gettyimages.com",
    "https://harvard.edu",
    "https://jupyter.org",
    "https://mail.ru",
    "https://wordpress.org",
    "https://merriam-webster.com",
    "https://webmd.com",
    "https://booking.com",
    "https://cornell.edu"
  ]
}