forked from DandelionSprout/adfilt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviantARTQualityArtMagnifier.txt
More file actions
1656 lines (1650 loc) · 153 KB
/
Copy pathDeviantARTQualityArtMagnifier.txt
File metadata and controls
1656 lines (1650 loc) · 153 KB
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Adblock Plus 3.13]
! Title: 🤹♀️ deviantART Quality Art Magnifier
! Version: 28September2023v1-Beta
! Expires: 2 days
! Description: This list makes deviantART focus more on quality custom art, by removing as much as feasible of the horrid leftovers that the site is stuffed with. No more copypaste MS Paint, no more bad takes from the authors' or "characters'" standpoints, no more mega crossovers, no more inflation, no more top 23 rankings, and no more Thomas the Tank Engine. This list could possibly end up saving lives.
! Note: People with weak stomachs are very strongly advised to also add this list's partner list against torture/diaper/liquids/death art at https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt
! Homepage: https://github.com/DandelionSprout/adfilt/blob/master/Wiki/General-info.md#-english
! ——— Very childish behaviour ———
!!! This category includes, but is not necessarily limited to: "Artist reacts to", "Character reacts to", rants, character rankings, cheap character creators (Mugen, Goanimate, Gacha), Teletubbies, "art" that is just asking questions to viewers, kindergarden interiors, copypasted MS Paint stuff in general, strange misspellings in titles, Numberjacks, stolen screenshots, stolen drawings, The Wiggles, users who incorrectly claim you're not allowed to block them, screenshots of search results
www.deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"]):has([href*="/10-characters-" i],[href*="/anti-" i],[href*="/Characters-I-" i],[href*="/Chibi-me-" i],[href*="/Do-you-think-" i],[href*="/Draw-your-" i],[href*="/fav-character-" i],[href*="/I-d-rather-" i],[href*="/i-don-t-support-" i],[href*="/I-m-A-" i],[href*="/i-support-" i],[href*="/I-ve-finally-seen-" i],[href*="/I-ve-started-" i],[href*="/List-of-" i],[href*="/Me-and-" i],[href*="/Me-as-" i],[href*="/Me-in-" i],[href*="/me-loves-" i],[href*="/me-trying-to-" i],[href*="/me-when-" i],[href*="/My-1" i],[href*="/My-20-" i],[href*="/My-8" i],[href*="/My-experience-" i],[href*="/my-newest-" i],[href*="/my-own-" i],[href*="/my-top-" i],[href*="/question-" i][href*=-from- i],[href*="/rant-" i],[href*="/Shows-with-" i],[href*="/Ten-most-" i],[href*="/thoughts-on-" i],[href*="/top-4" i],[href*="/top-5" i],[href*="/top-6" i],[href*="/top-7" i],[href*="/top-8" i],[href*="/top-9" i],[href*="/Triggered-" i],[href*="/TV-shows-" i],[href*="/what-do-you-think-" i],[href*="/what-happened-to-" i],[href*="/Which-character" i],[href*="/who-loves-" i],[href*="/why-are-there-so-many-" i],[href*="/Would-you-" i],[href*="/Your-thoughts-" i],[href*=-and-friends- i],[href*=-bad-like- i],[href*=-birthday-dates- i],[href*=-bonked-on- i],[href*=-bracket- i],[href*=-cringes-over- i],[href*=-daycare- i],[href*=-fav i][href*=-hate i],[href*=-favorite-couple i],[href*=-five-most- i],[href*=-gets-angry- i],[href*=-gets-expelled- i],[href*=-goanimate- i],[href*=-grounded- i],[href*=-has-had-it-with- i],[href*=-home-video- i],[href*=-in-the-style-of- i],[href*=-is-scared-of- i],[href*=-killed-your- i],[href*=-lineup- i],[href*=-mad-at- i],[href*=-mixed-up- i],[href*=-mugen- i],[href*=-naptime- i],[href*=-nice-list- i],[href*=-rant- i],[href*=-ranting- i],[href*=-react-to- i],[href*=-reacts-to- i],[href*=-review- i],[href*=-s-reaction i],[href*=-screencap- i],[href*=-so-do-i- i],[href*=-theif- i],[href*=-this-character- i],[href*=-tierlist i],[href*=-tv-character i],[href*=-ungrounded- i],[href*=-upset-over- i],[href*=-v-e-diagram i],[href*=-vs- i]:not([href*=dan-vs- i]),[href*=-wikis- i],[href*=-wishlist- i],[href*=-worried-about- i],[href*=-you-hate- i],[href*=amazing-alphabet i],[href*=animated-heroines i],[href*=animation-showcase i],[href*=asking-me-about i],[href*=bad-cartoon i],[href*=become-canon i],[href*=best-character i],[href*=best-favorite i],[href*=cartoons-were-good- i],[href*=chaingang i],[href*=character-group i],[href*=character-map- i],[href*=character-spectrum i],[href*=character-tire- i],[href*=characters-response i],[href*=childhood i],[href*=chronices i],[href*=collage i],[href*=charlesws],[href*=controversy i],[href*=cries-over- i],[href*=everything-wrong-with i],[href*=favorite-cartoon i],[href*=favorite-character i],[href*=favorite-kid i],[href*=favorite-show i],[href*=favorite-things i],[href*=favorite-tv- i],[href*=flyscratch],[href*=gacha i],[href*=goes-to-jail i],[href*=harsh-truth i],[href*=headcanon i],[href*=hellfire i],[href*=i-ship-it i],[href*=in-sonic-style i],[href*=jumpscare-reaction i],[href*=kanepony i],[href*=least-favorite i],[href*=most-hated i],[href*=movie-poster i],[href*=my-favorite i],[href*=my-favourite i],[href*=my-first-crossover i],[href*=my-opinion i],[href*=my-ship i],[href*=my-style i],[href*=my-version i],[href*=naughty-list i],[href*=nazi i],[href*=opinions i],[href*=parody-song i],[href*=popular-opinion i],[href*=post-your-own- i],[href*=ranking i],[href*=reactions-to- i],[href*=requst i],[href*=scorecard i],[href*=screenshot i],[href*=ship-it-with- i],[href*=shows-i-like- i],[href*=teletubbies i],[href*=the-shadow-realm i],[href*=this-user-love i],[href*=tier-list i],[href*=title-card i],[href*=title-is-too-long i],[href*=title-too-long- i],[href*=top-1 i],[href*=top-2 i],[href*=top-3 i],[href*=top-ten i],[href*=tornado-spin i]:not([href*=taz i]),[href*=underrated i],[href*=walmart i],[href*=wants-to-remove i],[href*=wedding-request i],[href*=western-animation i],[href*=worst-animat i],[href*=worst-frame- i],[href*=worst-to-best- i],[href*=wrong-series i],[href*=rip-off i],[href*=ripoff i],[href*=knockoff i],[href*="/Me-refuse-" i],[href*="/I-refuse-" i],[href*=-NOOOO],[href*=-became-naked-in- i],[href*="/Is-" i][href*=-pretty- i],[href*="/oddonehere/"],[href*="/Peril-" i],[href*="/Why-do-we-love-" i],[href*=-into-a-base- i],[href*="/unicornsmile/"],[href*=what-do-of- i],[href*=what-do-you-of- i],[href*=-feels-sad-about- i],[href*=needs-more-fanart i],[href*=-toon-sing i],[href*=-favorite-movies- i],[href*=-tv-y- i],[href*="/chloedh1001/" i],[href*="/Who-should-I-" i],[href*="/quantuminnovator/"],[href*="/Philosoraptor-on-" i],[href*=-are-sleeps-with- i],[href*="/breewildcat1997/"],[href*=-is-furious-at- i],[href*=-reaction-to- i],[href*=-that-everyone-likes- i],[href*=-but-I-don-t- i],[href*="/top-0" i],[href*=ways-I-would-fix- i],[href*=-pefers- i],[href*="/Ive-finally-seen-" i],[href*="/I-used-to-" i],[href*=-title-limit- i],[href*=-in-the-nutshell- i],[href*="/linag2005/"],[href*="/10-things-" i],[href*=-devaint- i],[href*=-fictional-characters-to- i],[href*="/Not-opposed-to-" i],[href*=favorite-animated- i],[href*=grinds-my-gears i],[href*="/Favorite-kissing-" i],[href*="/My-name-in-" i],[href*="/I-m-currently-" i],[href*="/amychen803/"],[href*="/My-TV-show" i],[href*="/luiforever/"],[href*="/I-despise-" i],[href*="/I-want-the-" i],[href*="/I-m-an-" i],[href*=-in-awed- i],[href*="/My-30" i],[href*="/My-50" i],[href*="/17chaos/"],[href*=-doesnt-forgive- i],[href*=-finds- i][href*=adorable i],[href*=-any-fans-of- i],[href*=-angers-me- i],[href*=-symphatise-with- i],[href*="/divasaurus/"],[href*=-made-me-sad- i],[href*=hated-character i],[href*="/I-love-this-" i],[href*="/My-thoughts-on-" i],[href*=-I-ship- i],[href*=shipping-inspiration i],[href*=-revange- i],[href*=-questions-these- i],[href*=-stands-up-for- i],[href*=-a-bigger-role-in- i],[href*="/name-a-ship-" i],[href*=-I-want-to-see-on- i],[href*="/cameron33268110/"],[href*=-your-thoughts-on- i],[href*=-I-don-t-ship- i],[href*="/I-don-t-ship-" i],[href*=-otp- i],[href*=mash-up-song i],[href*="/I-ship-" i],[href*="/Why-are-people-" i],[href*=crying-naked i],[href*="/superdavidkart/"],[href*="/I-don-t-like-" i],[href*=shipping-fans i],[href*="/superfoxdeer/"],[href*="/I-prefer-" i],[href*="/Any-thoughts-on-" i],[href*=can-t-make-sense-of- i],[href*="kurisuwriting"],[href*=what-do-you-like-about-],[href*="/sup-fan/"],[href*=-shocked-at- i],[href*=-are-angry-at- i],[href*=-reacts-on- i],[href*="/I-tell-" i],[href*=-is-crying-about- i],[href*=-is-angry-at- i],[href*="/Me-saving-" i],[href*=-fights-off- i],[href*=-to-f-off- i],[href*=-do-you-we-have- i],[href*=-while-she-is-crying- i],[href*=report-card i],[href*="/hueylengyong15/"],[href*=-throws-meatballs-at- i],[href*=-prefers-],[href*="/kraucheunas/"],[href*="/VideoCapture-"],[href*="/I-have-a-crush-on-" i],[href*=reason-you-suck i],[href*=reasons-you-suck i],[href*=-are-not-amused- i],[href*="/frie-ice/"],[href*=numberjacks i],[href*=baby-food i],[href*=counterpants i],[href*="/I-m-glad-" i],[href*="/I-feel-bad-for-" i],[href*=need-more-fanart i],[href*=-and-you-know-what-for- i],[href*="/My-simp-" i],[href*=-look-similar-to-you- i],[href*=-s-inspirations- i],[href*=-haters- i],[href*=-bigger-fanbase- i],[href*=understand-the-hate i],[href*="/Do-you-ship-" i],[href*="/Characters-that-I-" i],[href*="/I-think-these-" i],[href*=-replace i][href*=-scene- i],[href*="/smurfyunderdog/"],[href*=-hates- i],[href*=teletubby i],[href*=-get-angry-at- i],[href*="/234rfc/"],[href*="/What-s-your-opinion-on-"],[href*="/mrlorgin/"],[href*="/cheezitgangsta564/"],[href*=trash-show i],[href*=-rants-on- i],[href*="/logomaxproductions/"],[href*=-honest-thoughts-on- i],[href*=-does-an-epic- i],[href*=cringe-idiot i],[href*=dumb-stupid i],[href*="/My-Yes-" i],[href*="/jdicarlo/"],[href*=favorite-television],[href*="/xxxjavierrpfan2003xx/"],[href*="/If-we-used-a-" i],[href*=-refuses-to-help- i],[href*="/jazzystar123/"],[href*=-that-deserve-worse- i],[href*=-judging-chart- i],[href*="/Best-cartoon-" i],[href*="/Best-cartoons-" i],[href*="/Best-animated-" i],[href*="/Create-your-own-TV-" i],[href*=-good-television- i],[href*="/mryoshi1996/"],[href*="/nayira12/"],[href*=-shows-nowadays- i],[href*=tv-show-chart- i],[href*="/Why-I-hate-" i],[href*="/lh1200/"],[href*=-asks-what-you-think- i],[href*="/berryinthebigcityfan/"],[href*="/blakej2009/"],[href*="/gagetracey02/"],[href*="/jawsandgumballfan24/"],[href*="/liikotuari/"],[href*="/masedog78/"],[href*="/My-crossover-" i],[href*="/sailormonfan/"],[href*=-briefly-has- i],[href*=-deserve-more-screentime- i],[href*=-Doesn-t-like-],[href*=-faces-palms- i],[href*=-is-traumatized-by- i],[href*=-wyrh- i],[href*=Kisekae- i],[href*=-i-like-and-recommend- i],[href*=judgement-chart i],[href*=-characters-I-like- i],[href*=next-ident- i],[href*="/pauliesgirl2018/"],[href*="/Favorite-movie-" i],[href*=-no-list- i],[href*=-hated-show- i],[href*="-1-hated-" i],[href*="/theemperorofhonor/"],[href*=celebrat i][href*=cancel i],[href*="/ptbf2002/"],[href*="/touselinza/"],[href*=animat i][href*=atroci i],[href*="/stick-the-badger/"],[href*="/sydneypie/"],[href*="/mega-poneo/"],[href*="/kirakiradolls/"],[href*="/tigacc/"],[href*=azaleasdoll i],[href*=-grossed-out-by- i],[href*="/animedalek1/"],[href*="/adamhatson/"],[href*="/I-think-both-" i],[href*=-doesnt-ship- i],[href*=-awful-moment- i],[href*="/neon-trainer03/"],[href*="/deceddiolopez/"],[href*="/jackskellington416/"],[href*="/chipmunkraccoonoz/"],[href*=-is-sad-on- i],[href*=-movie-is-better- i],[href*="/which-tv-show" i],[href*=-dislikes-what- i],[href*=-all-star-crossover- i],[href*="/Reaction-to-" i],[href*="/johnfanart101/"],[href*=-you-re-opinion- i],[href*="/jd23hedz/"],[href*="/megacrystalswiftail/"],[href*="/upeopilotjumbo/"],[href*="/stars2017/"],[href*="/All-Stars-Hero" i],[href*=-verse-timeline- i],[href*="/scott910/"],[href*="/nyro1/"],[href*=-that-deserve-sequels- i],[href*="/warriormoonnight/"],[href*=-confesses-his-love-for- i],[href*="/roxyloopsy255/"],[href*=-are-excited-for- i],[href*="/Myself-in-" i],[href*=-crush-list- i],[href*="/lincolnkailanloud01/"],[href*="/Title-to-long-" i],[href*="/agent4ww2/"],[href*="/operapf777/"],[href*="/Poorly-made-" i],[href*=-extra-cursed- i],[href*="/Rage-face-" i],[href*=-hate-modern- i],[href*=-animation-rules- i],[href*=-hate-Teen-Titans-Go- i],[href*=-into-base- i],[href*=-Life- i][href*=-Vent- i],[href*="/glittertiara/" i],[href*="/martialartslover99/" i],[href*="/mlb910/" i],[href*="/My-" i][href*=-universe- i],[href*="/pandraconian-king90/" i],[href*=Characters-that-should- i],[href*=favorite-shipping i],[href*=full-title-in-desc i],[href*=shipping-choices i],[href*=Things-that-should-not- i],[href*="/Soles-of-" i],[href*="/kyragthecat1/"],[href*="/ariavampirerose7/"],[href*="/darkmagicianmon/"],[href*="/levecoli/"],[href*="/matthiamore/"],[href*="/more-10-" i],[href*="/My-ideas-for-" i],[href*="/perualonso/"],[href*=-angered-by- i],[href*=-cn-city i],[href*=-cutest-cartoon- i],[href*=-facepalms-at-what- i],[href*=-joins-the-battle- i],[href*=-needs-more-fan-art- i],[href*=cartoon-network-city i],[href*=cartoon-tv-show i],[href*=thanks-cartoons- i],[href*=titles-are-too-long- i],[href*=top-twelve- i],[href*=worst i][href*=episode i],[href*=year-of-cartoon i],[href*=-edit-comic- i],[href*=-episode-ideas- i],[href*=-film-idea- i],[href*=-is-best-anime- i],[href*=-modified-reboots- i],[href*="/deecat98/"],[href*="/masteryubel/"],[href*="/which-show-do-i-" i],[href*=a-coincidence-on-something i],[href*=big-lipped-alligator-moment i],[href*=demotivational i],[href*=fandom-timeline i],[href*="/aacornsoup/"],[href*="/bear-2/"],[href*="/leosasuke2008/"],[href*="/my-allies-" i],[href*="/pikachu-train/"],[href*="/shellquake/"],[href*="/sweetheart1012/"],[href*="/thecartooniangallery/"],[href*="/thehypercutter/"],[href*="/zelrom/"],[href*=-adaptation-idea i],[href*=-and-scold-at- i],[href*=-crossverse i],[href*=-director-cut- i],[href*=-drawverse- i],[href*=-feels-bad-for- i],[href*=-game-list- i],[href*=-is-a-stand-user- i],[href*=-ost-cover i],[href*=-reboot-ideas- i],[href*=-sad-reaction- i],[href*=-sequel-idea i],[href*="5-ways-I-" i],[href*=battle-fight-idea i],[href*=best-movies-of- i],[href*=children-s-BBC- i],[href*=drake-disapprove i],[href*=fanmade-deathbattle- i],[href*=first-official-poster i],[href*=monsterverse i],[href*=my-parody-of- i],[href*=nostalgia-starter i],[href*=virgin i][href*=chad i],[href*=nice-list-for- i],[href*=-prefers- i][href*=-over- i],[href*=-are-shocked-about- i],[href*="/peanutslegofriends/"],[href*=worst-tv- i],[href*=blank-template i],[href*=watch-blank- i],[href*=-laughs-at-the- i],[href*=-like-dislike- i],[href*=dislikes-ttg i],[href*=dislike-ttg i],[href*=cinematic-adventure i],[href*=-had-a- i][href*=series i],[href*="/fan-poster-" i],[href*="20-most-" i],[href*=fandoms-I-m- i],[href*="/joshuat1306/"],[href*="/dannythegooddeviant/"],[href*="/123riley123/"],[href*="/homersimpson1983/"],[href*="/maverickhunterofligh/"],[href*=-me-as-a- i],[href*="/megatomicbettylover1/"],[href*=-was-terrible- i],[href*=terrfied-of- i],[href*=-why-she-is-in- i],[href*=-yells-at- i],[href*="/alexlover366/"],[href*="/rs307980/"],[href*="/thereedster/"],[href*=my-birthday-picture i],[href*=-varriant- i],[href*="/1200924/"],[href*="/5francis5/"],[href*="/danwind/"],[href*="/alionnamedk/"],[href*="/catwoman225/"],[href*="/My-" i][href*=-fav- i],[href*="/griffinknightavenger/"],[href*="/Who-never-" i],[href*=never-ships- i],[href*=-develops-a-crush-on- i],[href*="/georgiacatcrimson/"],[href*="/Which-" i][href*=-deserves-to-be- i],[href*=-makes-who-sad- i],[href*="/My-beef-with-" i],[href*="/My-recent-attack-" i],[href*=-is-sick-at- i],[href*="/Who-feels-sad-" i],[href*=belong-in-the-trash i],[href*=belongs-in-the-trash i],[href*=-pacifier- i],[href*=-dislikes- i][href*=-loves- i],[href*=-is-not-amused-by- i],[href*=-needs-more-popularity- i],[href*="/darknessawakens13/"],[href*=refuses-to-ship- i],[href*=-plan-on-watching- i],[href*="/Who-comforts-" i],[href*=-doesn-t-ship- i],[href*="/Who-ships-" i],[href*="/Who-refuses-to-" i],[href*="/godzilla2137/"],[href*="/greek1237/"],[href*="/Reasons-I-love-" i],[href*="/guihercharly/"],[href*="/vokoban1/"],[href*=asdventures i],[href*=-lista-dei- i],[href*=semi-motivational i],[href*="6-liked-" i],[href*="/angryobjects/"],[href*="/I-hate-the-" i],[href*="/Honest-opinion-on-" i],[href*="/christianmerrill/"],[href*="/prabowomuhammad23/"],[href*=-made- i][href*=-facepalm- i],[href*="/Who-would-you-cross" i],[href*="/I-love-to-hate-" i],[href*="/candidalva11/"],[href*=best-cartoon-network i],[href*=disney-tv-show i],[href*="/Long-title-" i],[href*=-is-disgusted-at- i],[href*="/katiefan200"],[href*=-shows-you-the- i],[href*="/My-3-" i],[href*="/cartoonsbestever/"],[href*=all-time-favorite i],[href*=best-media-ever i],[href*=cartoon-shows-ever i],[href*=great-show-i- i],[href*=motivation-poster i],[href*=movies-of-all-time i],[href*=my-best-animated i],[href*=shows-of-all-time i],[href*=-says-so-long-to- i],[href*=-babbu- i],[href*="/cmnieto/"],[href*="/nicolefrancesca/"],[href*="/ti-144/"],[href*="/Who-is-moved-by-" i],[href*="/Who-likes-watching-" i],[href*="/Who-Rescues-The-" i],[href*="/zmcdonald09/"],[href*=everyone-dislikes- i],[href*=everyone-loathes- i],[href*=full-title-below i],[href*=parody-cover- i],[href*=proffesional i],[href*=teletubies i],[href*=the-wiggle i],[href*=title-too-below i],[href*=version-poster- i],[href*="/javiergd200"],[href*=-shows-do-you- i],[href*="/read-the-description" i],[href*="/wolwatcher12/"],[href*=best-and-worst-movie i],[href*=married-and-impregnate i],[href*=marries-and-impregnate i],[href*=poster-oficial i],[href*=spongebobfan i],[href*=the-sony-characters i],[href*="/agent4ww1/" i],[href*="/agustinsepulvedave/" i],[href*="/jorballata/" i],[href*="/My-characters-angry" i],[href*="/peanutslego" i],[href*="/tagirovo/" i],[href*=-angry-is- i],[href*=-scream-himself- i],[href*=amamzon i],[href*=my-best-cartoon i],[href*=my-nickelodeon-show i],[href*=my-opinian i],[href*=nickelodeon-war i],[href*=worst-video-game i],[href*=-efect- i],[href*=-in-g-major- i],[href*=-OFICIAL-],[href*="/eddy7454/"],[href*="/mermaidlovertyler/"],[href*="/pokemonmike/"],[href*="/shinjugahan/"],[href*="/thepenguinmaster1/"],[href*="/vicksirenixft/"],[href*="/winxgirl34/"],[href*=-movie-logos- i],[href*=-starz-play- i],[href*="/appleberries22/"],[href*="/melvin764g/"],[href*="/muchtastic2008/"],[href*=BBFC],[href*=edutainment-network i],[href*=endcredits i],[href*=how-to-cleaning i],[href*=how-to-fixing i],[href*=networks-from-19 i],[href*=studios-from-19 i],[href*=studios-from-20 i],[href*=title-is-in-the-description i],[href*=-fave-cartoon i],[href*=-is-not-overrated i],[href*=-was-aired-on- i],[href*="/Bandicam-20" i],[href*="/darkwinghomer/"],[href*="/ehrisbrudt/"],[href*="/mftondeviantart/"],[href*="/trevorhines/"],[href*="/Who-laughs-at-" i],[href*=anime-shows-ever- i],[href*=cartoon-shows-favorite i],[href*=cartoons-that-deserve i],[href*=favoirte i],[href*=least-fave- i],[href*=likes-or-don-t-like i],[href*=little-einsteins i],[href*=movies-ever- i],[href*=my-best-shows- i],[href*=tinky-winky i],[href*=worst-anime i],[href*="/describe" i][href*=in-one-word i],[href*="/I-do-not-ship-" i],[href*="/miahalston/"],[href*="/pharrel3009/"],[href*="/supersonicx2005/"],[href*="/toonfan" i],[href*="/xnansui3770/"],[href*=-had-a-scene-like- i],[href*=-it-his-sister i],[href*=cookie-jar-tv i],[href*=crossoververse i],[href*=describe-this-episode i],[href*=once-a-upon- i],[href*=tiktok-diva i],[href*=which-shipping i],[href*=who-would-voice-them i],[href*=worst-cartoon i],[href*=I-m-starting-to-ship i],[href*=who-should-voice- i],[href*="/madarao123/"],[href*=totally-suck i],[href*="/CN-do" i],[href*="/Nick-keeps-" i],[href*=animation-opener i],[href*=-poaster- i],[href*="/danielandresrojas/"],[href*=characters-who-I-love i],[href*=title-soo-long i],[href*="/gabumonlispector2241/"],[href*=-on-fox-kids i],[href*="/dannyd1997/"],[href*=best-and-worst i],[href*=worst-netflix i],[href*=worst-disney i],[href*=xbox-360 i],[href*=-psvita- i],[href*="/relyoh1234/"],[href*=doodlebop i],[href*=the-cartoon-wiggles i],[href*="/brennacollins/"],[href*="/deangelomywayentfans/"],[href*="/fanbyjazzystar123/"],[href*="/I-dont-ship-" i],[href*="/I-ll-always-have-a-crush-on" i],[href*="/I-voted-for-" i],[href*="/If-" i][href*=-dressed-as- i],[href*="/mblairll/"],[href*="/my-christmas-party" i],[href*="/segacd-32xfanboi/"],[href*=-angry-at- i][href*=crying i],[href*=-angry-with-who- i],[href*=-confession-shocks- i],[href*=-email-punch- i],[href*=-friends-hate- i],[href*=-has-always-bothered-me- i],[href*=-I-do-not-feel-ashamed i],[href*=-is-angry-with- i],[href*=-is-annoyed-by- i],[href*=-is-unamused-by- i],[href*=-laughing-at- i][href*=crying i],[href*=-laughing-at- i][href*=death i],[href*=-less-hate- i],[href*=-loses-trust-in- i],[href*=-made-cameo-in- i],[href*=-MBC3- i],[href*=-need-to-be-hated- i],[href*=-perfers- i],[href*=-RedeTV- i],[href*=-roars-at- i],[href*=-says-leave- i],[href*=-says-no-to- i],[href*=-scene-angers- i],[href*=-tv5- i],[href*=-UK-dubs- i],[href*=-x-SSBU- i],[href*=-you-know-for-kids- i],[href*=about-to-bashed- i],[href*=banned-poster i],[href*=cartoon-shows- i],[href*=characters-I-want-to-see i],[href*=death-battle-idea i],[href*=deserve-some-screentime i],[href*=deserves-more-screen-time i],[href*=despised-character i],[href*=despised-ship i],[href*=doesn-t-accepted i],[href*=massacred-my-boy- i],[href*=naughty-christmas-list i],[href*=nice-christmas-list i],[href*=nice-list-character i],[href*=nintendo-switch-online i],[href*=ruined-nick i],[href*=shitverse i],[href*=shows-i-hate i],[href*=throws-peanuts-at i],[href*=title-in-description i],[href*=title-in-the-description i],[href*=tittle-in-the-description i],[href*=toxic-troll i],[href*=yes-show-list i],[href*="/Nice-list-" i],[href*="/wazzupmyboyz/"],[href*="/wright805/"],[href*="transparents/" i],[href*=-and-dislikes- i],[href*=-in-SVTFOE- i],[href*=-overhated- i],[href*=-rating-bug- i],[href*=-s-crossover-harem i],[href*=-s-favorite-magical-girl i],[href*=-scolds-at- i],[href*=character-elimination i],[href*=disney-channel i][href*=-promo- i],[href*=holiday-dvd i],[href*=movies-are-better i],[href*=pbs-kids-go i],[href*=rite-children-s-tv i],[href*=teletoon-list i],[href*="/heavydaboss/"],[href*="/isathekittypan/"],[href*="/leviarex/"],[href*="/matthewspics9066/"],[href*="/Opinion-on-" i],[href*="/Reacting-to-" i],[href*="/reply-with-" i],[href*="/What-would-you-name-these-" i],[href*=-a-crush-on-who- i],[href*=-hate i][href*=-but-love- i],[href*=-I-crush-on- i],[href*=-I-seen-in-theat i],[href*=-is-about-to-punch i],[href*=-is-outraged-by i],[href*=-screams-at-the- i],[href*=-would-get-along-with- i],[href*="10-couple" i],[href*="13-idiot" i],[href*=all-time-cartoons i],[href*=deviantion i],[href*=hater19 i],[href*=idiots-who-deserve i],[href*=likes-which-male i],[href*=repost-this- i],[href*=scares-the-cartoon i],[href*=superwhymovies i],[href*=tells i][href*=-to-shut-up- i],[href*=who-has-had-enough-of- i],[href*=-did-we-just-saw- i],[href*=character-fav-movie i],[href*=characters-fav-movie i],[href*=clarabellecow2009 i],[href*=coming-on-next- i],[href*="/bigpurplemuppet99/"],[href*="/bunnymund05/"],[href*="/Comment-your-" i],[href*="/diegocoba100/"],[href*="/eladthegreatest/"],[href*="/gordomtairag2001/"],[href*="/idmp/"],[href*="/If-" i][href*=showered-together i],[href*="/othabland/"],[href*="/smashufrontier/"],[href*="/smochdar/"],[href*="/thevideogameteen/"],[href*=-am-i-love-this- i],[href*=-characters-sing- i],[href*=-had-a-falling-out- i],[href*=-is-most-prefer- i],[href*=-not-enough-text- i],[href*=-poster-202 i],[href*=birtaday i],[href*=birtarday i],[href*=birtrday i],[href*=crossover-bestie i],[href*=dislikes i][href*=-but-likes i],[href*=june- i][href*=-annie- i],[href*=save-one-drop-one i],[href*=scenes-remind-me-of- i],[href*=starting-cry- i],[href*=team i][href*=-angry-at- i],[href*=watching-the-trailer-for- i],[href*="/disneyfan" i],[href*="/Read-Desc-9" i],[href*="/Reposted-because-" i],[href*="/Screen-Shot-20" i],[href*="/sebas1974/"],[href*="/Who-excited-to-" i],[href*=-bugrers- i],[href*=-era-wiggles i],[href*=-is-saddened-by- i],[href*=-quote-to- i],[href*=-was-dubbed-in- i],[href*=absolute-trash- i],[href*=ashamed-of-hating- i],[href*=bob-the-builder-style i],[href*=g4merxethan i],[href*=gracelamson2008 i],[href*=jacobstout i],[href*=movies-that-i-m- i],[href*=picture i][href*=byline i],[href*=purpleneko900 i],[href*=saves i][href*=-from-who- i],[href*=schermopname i],[href*=subwooferlabs i],[href*="wiggle/" i],[href*=wiggles-around-the-world i],[href*=wiggles-background i],[href*="/FMK-"],[href*="/overlooker/"],[href*=-assigns-detention-to- i],[href*=-harem-list- i],[href*=-tirelist- i],[href*="20th-century-fox" i][href*=remake i],[href*=marcusperez824 i],[href*=quizblock i],[href*=verse-ship i],[href*=-hate-at- i],[href*="/dvdnart/"],[href*="/heavy-bottom-" i],[href*="/inkuhime" i],[href*="/jadespin/"],[href*="/thenexusonda/"],[href*="/title-in-desc" i],[href*=logomaker i],[href*=s4c i][href*=promo i],[href*=sings-part-of-your-world i],[href*="/Tumblr-" i][href*="-1-" i],[href*="/Tumblr-" i][href*="-4-" i],[href*="/Tumblr-" i][href*="-5-" i],[href*="/Tumblr-" i][href*="-6-" i],[href*="/Tumblr-" i][href*="-400-" i],[href*="/Tumblr-" i][href*="-500-" i],[href*="/Tumblr-" i][href*="-640-" i],[href*="/Tumblr-" i][href*="-1280-" i],[href*="thedisneyand/" i],[href*="/correct-title-" i],[href*=bluescluesfan i],[href*=conorlordofcreation i],[href*=-UK-Audio- i],[href*=castle-rock-entertainment i],[href*=doesn-t-like i][href*=but-love i],[href*=-title-is-long- i],[href*=title-down-to-description i],[href*=kylewithem i],[href*=freedom i][href*="202" i],[href*=-hit- i][href*=-on-the-head- i],[href*=bugbie i],[href*="/school1993/" i],[href*=dtvrocks i],[href*=valleyandfriends i],[href*=devaintart i],[href*=christian35476 i],[href*=-sam-moran- i],[href*=wiggles i][href*=network i],[href*=ewan i][href="2007"],[href*=likes-template i],[href*=-dislikes- i][href*=TV],[href*=interational i],[href*=-likes- i][href*=-dislikes-],[href*=-jim-herson- i],[href*=digiral-art i],[href*=littlekj i],[href*=tvokids i],[href*=weekday i][href*=graphic i],[href*=-tv-grid- i],[href*=kaylor2013 i],[href*=favorite i][href*=animated-shows i],[href*=ssbrandon i],[href*=-go-to-hell- i],[href*=-meme- i],[href*=xxmonicaartsxx i],[href*=-says-yes-to- i],[href*=kayloshiwarrior i],[href*=call i][href*=horrible i],[href*=walt-disney-s-masterpiece i],[href*="/Why-I-m-obsessed-with-" i],[href*=batboy101 i],[href*=-for-blank- i],[href*=scared-blank- i],[href*="/this-" i][href*=-reminds-me-of-this- i],[href*=sponegbob i],[href*=fix-change-or-rewrite i],[href*=joe10 i][href*=miller i],[href*=starshinerapgirl i],[href*="/8-characters-" i],[href*="15432/"],[href*=-laughs-at- i],[href*=rosariomiguel i],[href*=lagovulpesthegentle i],[href*=reacts-about- i],[href*=i-love-these-shows i],[href*=arvin-iranianpuppy i],[href*=powerpup97 i],[href*=-harem i][href*=interest i],[href*=derincik i],[href*=-reflactions- i],[href*=wreny2011 i],[href*=-flet-bad- i],[href*=-to-taken-of- i],[href*=-smiles-at-who- i],[href*="/I-sympathise-with-" i],[href*=the-title-is i][href*=deviation i],[href*=cartoon i][href*=wiggles i],[href*=hate i][href*=-but-like i],[href*=title i][href*=too-long i],[href*=carlosuriel i],[href*="/title-long-" i],[href*=beatlesfangirl i],[href*=takostu i],[href*=-was-horrible- i],[href*=darkmoonanimation i],[href*=friedman i],[href*=-blocked-me- i],[href*=kirbystarwarrior123 i],[href*=dislikes-and-like i],[href*=apperciates i],[href*=shrugs-at-who- i],[href*=er101plus i],[href*=canadian-wiggle i],[href*=d17thw i],[href*=duongdo i],[href*=-is-unhappy-at- i],[href*="/13-digital/" i],[href*=neoduelgx i],[href*=nutbugs2211 i],[href*=denies i][href*=apology i],[href*=arielarias i],[href*=francoraptor i],[href*=-is-shocked-by- i],[href*=-are-shocked-of- i],[href*=-prefers- i][href*=-than- i],[href*=-was-slapped-by- i],[href*=-amazed-at-something i],[href*=pixarlover202 i],[href*=tell i][href*=leave i][href*=alone i],[href*=magicpuss380 i],[href*=I-d-character- i],[href*=staremily46 i],[href*=abc90s i],[href*="wiggles/"],[href*=cartoon-jeff- i],[href*=cartoon-greg- i],[href*=cartoon-anthony- i],[href*=cartoon-murray- i],[href*=zombiethekidrus i],[href*=deadpoolthedeviant i],[href*=aronasani i],[href*=intro i][href*="200"],[href*=tagesschau i],[href*=telegiornale i],[href*=-movies-20 i],[href*=-tv-series-20 i],[href*=bad-things-list i],[href*=dislikes i][href*=and-likes i],[href*="/read-the-title-" i],[href*=-what-template i],[href*=benny49 i],[href*=comedyyeshorrorno i],[href*=-to-stew-it- i],[href*=iloveinflate i],[href*="/Me-reacting-" i],[href*=oscarmarrero i],[href*="/littleprincesscutie/" i],[href*=-tell i][href*=for-five-minute i],[href*=-prefer- i][href*=-than- i],[href*=saucerofperil i],[href*=princessloni08 i],[href*=sanford22 i],[href*=sabreleopard i],[href*=alaxr274 i],[href*=stanleysandbarshark i],[href*=-hate- i][href*=-and-like- i],[href*=-memes- i],[href*=ben10andmixels i],[href*=xxsteamboy i],[href*=nick-bumper- i],[href*=diifferent i],[href*=greg-wiggle i],[href*=aiai4948 i],[href*=aidanpop i],[href*=wiggle-time i],[href*=jasonpictures i],[href*=-as-arch-enemy-of- i],[href*=-are-horrified-at- i],[href*=-calls-who-a- i],[href*=-reminds-of- i],[href*=alquimista4433 i],[href*=whait-a-minute i],[href*=negaboss2000 i],[href*=-facepalms-at- i],[href*=everyone-crying-to- i],[href*=mikkaelaraya2012 i],[href*=-yelling-the- i],[href*=everyone-reacts- i],[href*=isaiah56 i],[href*=lenaedickerson i],[href*=wahyuphrativi i],[href*=satan-awful i],[href*=stuffs-ever- i],[href*=good-and-bad-list i],[href*=I-m-neutral-to- i],[href*=reasons-I-hate i],[href*=tittle i][href*=long i],[href*=nickrewind i],[href*=mrmickeytronic i],[href*=characters-watch i],[href*="/Untitled-0"],[href*="/Untitled-1"],[href*="/Untitled-2"],[href*="/Untitled-3"],[href*="/Untitled-4"],[href*="/Untitled-5"],[href*="/Untitled-6"],[href*="/Untitled-7"],[href*="/Untitled-8"],[href*="/Untitled-9"],[href*="420fan" i],[href*=-i-not-a- i],[href*=-speical- i],[href*=brithday i],[href*=until-it-my- i],[href*=-vore-day- i],[href*="/WhatsApp-image-20" i],[href*=shitpost i],[href*=acid252 i],[href*="/More-requests-for-" i],[href*=valleyyes i],[href*=description i][href*=too-long i],[href*=kidnapeds i],[href*="12tonde" i],[href*=-shocked-about- i],[href*="/ebotizer" i],[href*=inklingboytv i],[href*=dislike i][href*=-like i],[href*=-calls- i][href*=-a-liar i],[href*=piergiorgiosaurus i],[href*=bradleybot i],[href*=dylanfan i],[href*=fanmade-toon i],[href*=hated-show i],[href*=shows-list i],[href*=best-to-worst i],[href*=worst-list i],[href*=media-list i],[href*="/my-personal-thought" i],[href*=worst-shows i],[href*=fan199 i],[href*=-sings-to- i],[href*=-sing-to- i],[href*=-singing-to- i],[href*=cmanuel1 i],[href*=emberjoy i],[href*=horrified-from-seeing i],[href*=feel-free-to-roleplay i],[href*=feel-free-to-rp i])
www.deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"]:has-text(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}/i))
www.deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"]:has-text(/^[0-9a-f]{50}$/i))
deviantart.com##a[data-hook][href*="/art/"][href*="/10-characters-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/anti-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Characters-I-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Chibi-me-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Do-you-think-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Draw-your-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/fav-character-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-d-rather-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/i-don-t-support-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-A-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/i-support-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ve-finally-seen-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ve-started-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/List-of-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-and-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-as-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-in-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/me-loves-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/me-trying-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/me-when-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-1" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-20-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-8" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-experience-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-newest-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-own-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-top-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/question-" i][href*=-from- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/rant-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Shows-with-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Ten-most-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/thoughts-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-4" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-5" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-6" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-7" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-8" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-9" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Triggered-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/TV-shows-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/what-do-you-think-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/what-happened-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Which-character" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/who-loves-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/why-are-there-so-many-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Would-you-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Your-thoughts-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-and-friends- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bad-like- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-birthday-dates- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bonked-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bracket- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-cringes-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-daycare- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fav i][href*=-hate i]
deviantart.com##a[data-hook][href*="/art/"][href*=-favorite-couple i]
deviantart.com##a[data-hook][href*="/art/"][href*=-five-most- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-gets-angry- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-gets-expelled- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-goanimate- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-grounded- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-has-had-it-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-home-video- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-the-style-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-scared-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-killed-your- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-lineup- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-mad-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-mixed-up- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-mugen- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-naptime- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-nice-list- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-rant- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-ranting- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-react-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reacts-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-review- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-s-reaction i]
deviantart.com##a[data-hook][href*="/art/"][href*=-screencap- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-so-do-i- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-theif- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-this-character- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tierlist i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tv-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=-ungrounded- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-upset-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-v-e-diagram i]
deviantart.com##a[data-hook][href*="/art/"][href*=-vs- i]:not([href*=dan-vs- i])
deviantart.com##a[data-hook][href*="/art/"][href*=-wikis- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-wishlist- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-worried-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-you-hate- i]
deviantart.com##a[data-hook][href*="/art/"][href*=amazing-alphabet i]
deviantart.com##a[data-hook][href*="/art/"][href*=animated-heroines i]
deviantart.com##a[data-hook][href*="/art/"][href*=animation-showcase i]
deviantart.com##a[data-hook][href*="/art/"][href*=asking-me-about i]
deviantart.com##a[data-hook][href*="/art/"][href*=bad-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=become-canon i]
deviantart.com##a[data-hook][href*="/art/"][href*=best-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=best-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoons-were-good- i]
deviantart.com##a[data-hook][href*="/art/"][href*=chaingang i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-group i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-map- i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-spectrum i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-tire- i]
deviantart.com##a[data-hook][href*="/art/"][href*=characters-response i]
deviantart.com##a[data-hook][href*="/art/"][href*=childhood i]
deviantart.com##a[data-hook][href*="/art/"][href*=chronices i]
deviantart.com##a[data-hook][href*="/art/"][href*=collage i]
deviantart.com##a[data-hook][href*="/art/"][href*=charlesws]
deviantart.com##a[data-hook][href*="/art/"][href*=controversy i]
deviantart.com##a[data-hook][href*="/art/"][href*=cries-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=everything-wrong-with i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-kid i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-show i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-things i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-tv- i]
deviantart.com##a[data-hook][href*="/art/"][href*=flyscratch]
deviantart.com##a[data-hook][href*="/art/"][href*=gacha i]
deviantart.com##a[data-hook][href*="/art/"][href*=goes-to-jail i]
deviantart.com##a[data-hook][href*="/art/"][href*=harsh-truth i]
deviantart.com##a[data-hook][href*="/art/"][href*=headcanon i]
deviantart.com##a[data-hook][href*="/art/"][href*=hellfire i]
deviantart.com##a[data-hook][href*="/art/"][href*=i-ship-it i]
deviantart.com##a[data-hook][href*="/art/"][href*=in-sonic-style i]
deviantart.com##a[data-hook][href*="/art/"][href*=jumpscare-reaction i]
deviantart.com##a[data-hook][href*="/art/"][href*=kanepony i]
deviantart.com##a[data-hook][href*="/art/"][href*=least-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=most-hated i]
deviantart.com##a[data-hook][href*="/art/"][href*=movie-poster i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-favourite i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-first-crossover i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-opinion i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-ship i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-style i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-version i]
deviantart.com##a[data-hook][href*="/art/"][href*=naughty-list i]
deviantart.com##a[data-hook][href*="/art/"][href*=nazi i]
deviantart.com##a[data-hook][href*="/art/"][href*=opinions i]
deviantart.com##a[data-hook][href*="/art/"][href*=parody-song i]
deviantart.com##a[data-hook][href*="/art/"][href*=popular-opinion i]
deviantart.com##a[data-hook][href*="/art/"][href*=post-your-own- i]
deviantart.com##a[data-hook][href*="/art/"][href*=ranking i]
deviantart.com##a[data-hook][href*="/art/"][href*=reactions-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=requst i]
deviantart.com##a[data-hook][href*="/art/"][href*=scorecard i]
deviantart.com##a[data-hook][href*="/art/"][href*=screenshot i]
deviantart.com##a[data-hook][href*="/art/"][href*=ship-it-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*=shows-i-like- i]
deviantart.com##a[data-hook][href*="/art/"][href*=teletubbies i]
deviantart.com##a[data-hook][href*="/art/"][href*=the-shadow-realm i]
deviantart.com##a[data-hook][href*="/art/"][href*=this-user-love i]
deviantart.com##a[data-hook][href*="/art/"][href*=tier-list i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-card i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-is-too-long i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-too-long- i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-1 i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-2 i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-3 i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-ten i]
deviantart.com##a[data-hook][href*="/art/"][href*=tornado-spin i]:not([href*=taz i])
deviantart.com##a[data-hook][href*="/art/"][href*=underrated i]
deviantart.com##a[data-hook][href*="/art/"][href*=walmart i]
deviantart.com##a[data-hook][href*="/art/"][href*=wants-to-remove i]
deviantart.com##a[data-hook][href*="/art/"][href*=wedding-request i]
deviantart.com##a[data-hook][href*="/art/"][href*=western-animation i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-animat i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-frame- i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-to-best- i]
deviantart.com##a[data-hook][href*="/art/"][href*=wrong-series i]
deviantart.com##a[data-hook][href*="/art/"][href*=rip-off i]
deviantart.com##a[data-hook][href*="/art/"][href*=ripoff i]
deviantart.com##a[data-hook][href*="/art/"][href*=knockoff i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-refuse-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-refuse-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-NOOOO]
deviantart.com##a[data-hook][href*="/art/"][href*=-became-naked-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Is-" i][href*=-pretty- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/oddonehere/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Peril-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Why-do-we-love-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-into-a-base- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/unicornsmile/"]
deviantart.com##a[data-hook][href*="/art/"][href*=what-do-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=what-do-you-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-feels-sad-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=needs-more-fanart i]
deviantart.com##a[data-hook][href*="/art/"][href*=-toon-sing i]
deviantart.com##a[data-hook][href*="/art/"][href*=-favorite-movies- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tv-y- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/chloedh1001/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-should-I-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/quantuminnovator/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Philosoraptor-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-sleeps-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/breewildcat1997/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-furious-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reaction-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-that-everyone-likes- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-but-I-don-t- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-0" i]
deviantart.com##a[data-hook][href*="/art/"][href*=ways-I-would-fix- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-pefers- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Ive-finally-seen-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-used-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-title-limit- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-the-nutshell- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/linag2005/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/10-things-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-devaint- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fictional-characters-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Not-opposed-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-animated- i]
deviantart.com##a[data-hook][href*="/art/"][href*=grinds-my-gears i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Favorite-kissing-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-name-in-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-currently-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/amychen803/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-TV-show" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/luiforever/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-despise-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-want-the-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-an-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-awed- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-30" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-50" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/17chaos/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-doesnt-forgive- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-finds- i][href*=adorable i]
deviantart.com##a[data-hook][href*="/art/"][href*=-any-fans-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-angers-me- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-symphatise-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/divasaurus/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-made-me-sad- i]
deviantart.com##a[data-hook][href*="/art/"][href*=hated-character i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-love-this-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-thoughts-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*=shipping-inspiration i]
deviantart.com##a[data-hook][href*="/art/"][href*=-revange- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-questions-these- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-stands-up-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-a-bigger-role-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/name-a-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-want-to-see-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/cameron33268110/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-your-thoughts-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-don-t-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-don-t-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-otp- i]
deviantart.com##a[data-hook][href*="/art/"][href*=mash-up-song i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Why-are-people-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=crying-naked i]
deviantart.com##a[data-hook][href*="/art/"][href*="/superdavidkart/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-don-t-like-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=shipping-fans i]
deviantart.com##a[data-hook][href*="/art/"][href*="/superfoxdeer/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-prefer-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Any-thoughts-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=can-t-make-sense-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*="kurisuwriting"]
deviantart.com##a[data-hook][href*="/art/"][href*=what-do-you-like-about-]
deviantart.com##a[data-hook][href*="/art/"][href*="/sup-fan/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-shocked-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-angry-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reacts-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-tell-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-crying-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-angry-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-saving-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fights-off- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-to-f-off- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-do-you-we-have- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-while-she-is-crying- i]
deviantart.com##a[data-hook][href*="/art/"][href*=report-card i]
deviantart.com##a[data-hook][href*="/art/"][href*="/hueylengyong15/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-throws-meatballs-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-prefers-]
deviantart.com##a[data-hook][href*="/art/"][href*="/kraucheunas/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/VideoCapture-"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-have-a-crush-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=reason-you-suck i]
deviantart.com##a[data-hook][href*="/art/"][href*=reasons-you-suck i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-not-amused- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/frie-ice/"]
deviantart.com##a[data-hook][href*="/art/"][href*=numberjacks i]
deviantart.com##a[data-hook][href*="/art/"][href*=baby-food i]
deviantart.com##a[data-hook][href*="/art/"][href*=counterpants i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-glad-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-feel-bad-for-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=need-more-fanart i]
deviantart.com##a[data-hook][href*="/art/"][href*=-and-you-know-what-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-simp-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-look-similar-to-you- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-s-inspirations- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-haters- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bigger-fanbase- i]
deviantart.com##a[data-hook][href*="/art/"][href*=understand-the-hate i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Do-you-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Characters-that-I-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-think-these-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-replace i][href*=-scene- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/smurfyunderdog/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-hates- i]
deviantart.com##a[data-hook][href*="/art/"][href*=teletubby i]
deviantart.com##a[data-hook][href*="/art/"][href*=-get-angry-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/234rfc/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/What-s-your-opinion-on-"]
deviantart.com##a[data-hook][href*="/art/"][href*="/mrlorgin/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/cheezitgangsta564/"]
deviantart.com##a[data-hook][href*="/art/"][href*=trash-show i]
deviantart.com##a[data-hook][href*="/art/"][href*=-rants-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/logomaxproductions/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-honest-thoughts-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-does-an-epic- i]
deviantart.com##a[data-hook][href*="/art/"][href*=cringe-idiot i]
deviantart.com##a[data-hook][href*="/art/"][href*=dumb-stupid i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-Yes-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/jdicarlo/"]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-television]
deviantart.com##a[data-hook][href*="/art/"][href*="/xxxjavierrpfan2003xx/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/If-we-used-a-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-refuses-to-help- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/jazzystar123/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-that-deserve-worse- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-judging-chart- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Best-cartoon-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Best-cartoons-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Best-animated-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Create-your-own-TV-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-good-television- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/mryoshi1996/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/nayira12/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-shows-nowadays- i]
deviantart.com##a[data-hook][href*="/art/"][href*=tv-show-chart- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Why-I-hate-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/lh1200/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-asks-what-you-think- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/berryinthebigcityfan/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/blakej2009/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/gagetracey02/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/jawsandgumballfan24/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/liikotuari/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/masedog78/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-crossover-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/sailormonfan/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-briefly-has- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-deserve-more-screentime- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-Doesn-t-like-]
deviantart.com##a[data-hook][href*="/art/"][href*=-faces-palms- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-traumatized-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-wyrh- i]
deviantart.com##a[data-hook][href*="/art/"][href*=Kisekae- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-i-like-and-recommend- i]
deviantart.com##a[data-hook][href*="/art/"][href*=judgement-chart i]
deviantart.com##a[data-hook][href*="/art/"][href*=-characters-I-like- i]
deviantart.com##a[data-hook][href*="/art/"][href*=next-ident- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/pauliesgirl2018/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Favorite-movie-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-no-list- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-hated-show- i]
deviantart.com##a[data-hook][href*="/art/"][href*="-1-hated-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/theemperorofhonor/"]
deviantart.com##a[data-hook][href*="/art/"][href*=celebrat i][href*=cancel i]
deviantart.com##a[data-hook][href*="/art/"][href*="/ptbf2002/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/touselinza/"]
deviantart.com##a[data-hook][href*="/art/"][href*=animat i][href*=atroci i]
deviantart.com##a[data-hook][href*="/art/"][href*="/stick-the-badger/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/sydneypie/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/mega-poneo/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/kirakiradolls/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/tigacc/"]
deviantart.com##a[data-hook][href*="/art/"][href*=azaleasdoll i]
deviantart.com##a[data-hook][href*="/art/"][href*=-grossed-out-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/animedalek1/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/adamhatson/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-think-both-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-doesnt-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-awful-moment- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/neon-trainer03/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/deceddiolopez/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/jackskellington416/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/chipmunkraccoonoz/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-sad-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-movie-is-better- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/which-tv-show" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-dislikes-what- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-all-star-crossover- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Reaction-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/johnfanart101/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-you-re-opinion- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/jd23hedz/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/megacrystalswiftail/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/upeopilotjumbo/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/stars2017/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/All-Stars-Hero" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-verse-timeline- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/scott910/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/nyro1/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-that-deserve-sequels- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/warriormoonnight/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-confesses-his-love-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/roxyloopsy255/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-excited-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Myself-in-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-crush-list- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/lincolnkailanloud01/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Title-to-long-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/agent4ww2/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/operapf777/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Poorly-made-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-extra-cursed- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Rage-face-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-hate-modern- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-animation-rules- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-hate-Teen-Titans-Go- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-into-base- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-Life- i][href*=-Vent- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/glittertiara/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/martialartslover99/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/mlb910/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-" i][href*=-universe- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/pandraconian-king90/" i]
deviantart.com##a[data-hook][href*="/art/"][href*=Characters-that-should- i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-shipping i]
deviantart.com##a[data-hook][href*="/art/"][href*=full-title-in-desc i]
deviantart.com##a[data-hook][href*="/art/"][href*=shipping-choices i]
deviantart.com##a[data-hook][href*="/art/"][href*=Things-that-should-not- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Soles-of-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/kyragthecat1/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/ariavampirerose7/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/darkmagicianmon/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/levecoli/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/matthiamore/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/more-10-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-ideas-for-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/perualonso/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-angered-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-cn-city i]
deviantart.com##a[data-hook][href*="/art/"][href*=-cutest-cartoon- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-facepalms-at-what- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-joins-the-battle- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-needs-more-fan-art- i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoon-network-city i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoon-tv-show i]
deviantart.com##a[data-hook][href*="/art/"][href*=thanks-cartoons- i]
deviantart.com##a[data-hook][href*="/art/"][href*=titles-are-too-long- i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-twelve- i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst i][href*=episode i]
deviantart.com##a[data-hook][href*="/art/"][href*=year-of-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=-edit-comic- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-episode-ideas- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-film-idea- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-best-anime- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-modified-reboots- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/deecat98/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/masteryubel/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/which-show-do-i-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=a-coincidence-on-something i]
deviantart.com##a[data-hook][href*="/art/"][href*=big-lipped-alligator-moment i]
deviantart.com##a[data-hook][href*="/art/"][href*=demotivational i]
deviantart.com##a[data-hook][href*="/art/"][href*=fandom-timeline i]
deviantart.com##a[data-hook][href*="/art/"][href*="/aacornsoup/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/bear-2/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/leosasuke2008/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-allies-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/pikachu-train/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/shellquake/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/sweetheart1012/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/thecartooniangallery/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/thehypercutter/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/zelrom/"]
deviantart.com##a[data-hook][href*="/art/"][href*="5-ways-I-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-adaptation-idea i]
deviantart.com##a[data-hook][href*="/art/"][href*=-and-scold-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-crossverse i]
deviantart.com##a[data-hook][href*="/art/"][href*=-director-cut- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-drawverse- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-feels-bad-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-game-list- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-a-stand-user- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-ost-cover i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reboot-ideas- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-sad-reaction- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-sequel-idea i]
deviantart.com##a[data-hook][href*="/art/"][href*=battle-fight-idea i]
deviantart.com##a[data-hook][href*="/art/"][href*=best-movies-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=children-s-BBC- i]
deviantart.com##a[data-hook][href*="/art/"][href*=drake-disapprove i]
deviantart.com##a[data-hook][href*="/art/"][href*=fanmade-deathbattle- i]
deviantart.com##a[data-hook][href*="/art/"][href*=first-official-poster i]
deviantart.com##a[data-hook][href*="/art/"][href*=monsterverse i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-parody-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=nostalgia-starter i]
deviantart.com##a[data-hook][href*="/art/"][href*=virgin i][href*=chad i]
deviantart.com##a[data-hook][href*="/art/"][href*=nice-list-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-prefers- i][href*=-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-shocked-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/peanutslegofriends/"]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-tv- i]
deviantart.com##a[data-hook][href*="/art/"][href*=blank-template i]
deviantart.com##a[data-hook][href*="/art/"][href*=watch-blank- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-laughs-at-the- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-like-dislike- i]
deviantart.com##a[data-hook][href*="/art/"][href*=dislikes-ttg i]
deviantart.com##a[data-hook][href*="/art/"][href*=dislike-ttg i]
deviantart.com##a[data-hook][href*="/art/"][href*=cinematic-adventure i]
deviantart.com##a[data-hook][href*="/art/"][href*=-had-a- i][href*=series i]
deviantart.com##a[data-hook][href*="/art/"][href*="/fan-poster-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="20-most-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=fandoms-I-m- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/joshuat1306/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/dannythegooddeviant/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/123riley123/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/homersimpson1983/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/maverickhunterofligh/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-me-as-a- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/megatomicbettylover1/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-was-terrible- i]
deviantart.com##a[data-hook][href*="/art/"][href*=terrfied-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-why-she-is-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-yells-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/alexlover366/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/rs307980/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/thereddster/"]
deviantart.com##a[data-hook][href*="/art/"][href*=my-birthday-picture i]
deviantart.com##a[data-hook][href*="/art/"][href*=-varriant- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/1200924/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/5francis5/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/danwind/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/alionnamedk/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/catwoman225/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-" i][href*=-fav- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/griffinknightavenger/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-never-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=never-ships- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-develops-a-crush-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/georgiacatcrimson/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Which-" i][href*=-deserves-to-be- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-makes-who-sad- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-beef-with-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-recent-attack-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-sick-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-feels-sad-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=belong-in-the-trash i]
deviantart.com##a[data-hook][href*="/art/"][href*=belongs-in-the-trash i]
deviantart.com##a[data-hook][href*="/art/"][href*=-pacifier- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-dislikes- i][href*=-loves- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-not-amused-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-needs-more-popularity- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/darknessawakens13/"]
deviantart.com##a[data-hook][href*="/art/"][href*=refuses-to-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-plan-on-watching- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-comforts-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-doesn-t-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-ships-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-refuses-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/godzilla2137/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/greek1237/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Reasons-I-love-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/guihercharly/"]
deviantart.com##a[data-hook][href*="/art/"][href*=asdventures i]
deviantart.com##a[data-hook][href*="/art/"][href*=-lista-dei- i]
deviantart.com##a[data-hook][href*="/art/"][href*=semi-motivational i]
deviantart.com##a[data-hook][href*="/art/"][href*="6-liked-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/angryobjects/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-hate-the-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Honest-opinion-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/christianmerrill/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/prabowomuhammad23/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-made- i][href*=-facepalm- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-would-you-cross" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-love-to-hate-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/candidalva11/"]
deviantart.com##a[data-hook][href*="/art/"][href*=best-cartoon-network i]
deviantart.com##a[data-hook][href*="/art/"][href*=disney-tv-show i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Long-title-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-disgusted-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/katiefan200"]
deviantart.com##a[data-hook][href*="/art/"][href*=-shows-you-the- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-3-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/cartoonsbestever/"]
deviantart.com##a[data-hook][href*="/art/"][href*=all-time-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=best-media-ever i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoon-shows-ever i]
deviantart.com##a[data-hook][href*="/art/"][href*=great-show-i- i]
deviantart.com##a[data-hook][href*="/art/"][href*=motivation-poster i]
deviantart.com##a[data-hook][href*="/art/"][href*=movies-of-all-time i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-best-animated i]
deviantart.com##a[data-hook][href*="/art/"][href*=shows-of-all-time i]
deviantart.com##a[data-hook][href*="/art/"][href*=-says-so-long-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-babbu- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/cmnieto/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/nicolefrancesca/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/ti-144/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-is-moved-by-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-likes-watching-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-Rescues-The-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/zmcdonald09/"]
deviantart.com##a[data-hook][href*="/art/"][href*=everyone-dislikes- i]
deviantart.com##a[data-hook][href*="/art/"][href*=everyone-loathes- i]
deviantart.com##a[data-hook][href*="/art/"][href*=full-title-below i]
deviantart.com##a[data-hook][href*="/art/"][href*=parody-cover- i]
deviantart.com##a[data-hook][href*="/art/"][href*=proffesional i]
deviantart.com##a[data-hook][href*="/art/"][href*=teletubies i]
deviantart.com##a[data-hook][href*="/art/"][href*=the-wiggle i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-too-below i]
deviantart.com##a[data-hook][href*="/art/"][href*=version-poster- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/javiergd200"]
deviantart.com##a[data-hook][href*="/art/"][href*=-shows-do-you- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/read-the-description" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/wolwatcher12/"]
deviantart.com##a[data-hook][href*="/art/"][href*=best-and-worst-movie i]
deviantart.com##a[data-hook][href*="/art/"][href*=married-and-impregnate i]
deviantart.com##a[data-hook][href*="/art/"][href*=marries-and-impregnate i]
deviantart.com##a[data-hook][href*="/art/"][href*=poster-oficial i]
deviantart.com##a[data-hook][href*="/art/"][href*=spongebobfan i]
deviantart.com##a[data-hook][href*="/art/"][href*=the-sony-characters i]
deviantart.com##a[data-hook][href*="/art/"][href*="/agent4ww1/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/agustinsepulvedave/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/jorballata/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-characters-angry" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/peanutslego" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/tagirovo/" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-angry-is- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-scream-himself- i]
deviantart.com##a[data-hook][href*="/art/"][href*=amamzon i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-best-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-nickelodeon-show i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-opinian i]
deviantart.com##a[data-hook][href*="/art/"][href*=nickelodeon-war i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-video-game i]
deviantart.com##a[data-hook][href*="/art/"][href*=-efect- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-g-major- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-OFICIAL-]
deviantart.com##a[data-hook][href*="/art/"][href*="/eddy7454/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/mermaidlovertyler/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/pokemonmike/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/shinjugahan/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/thepenguinmaster1/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/vicksirenixft/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/winxgirl34/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-movie-logos- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-starz-play- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/appleberries22/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/melvin764g/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/muchtastic2008/"]
deviantart.com##a[data-hook][href*="/art/"][href*=BBFC]
deviantart.com##a[data-hook][href*="/art/"][href*=edutainment-network i]
deviantart.com##a[data-hook][href*="/art/"][href*=endcredits i]
deviantart.com##a[data-hook][href*="/art/"][href*=how-to-cleaning i]
deviantart.com##a[data-hook][href*="/art/"][href*=how-to-fixing i]
deviantart.com##a[data-hook][href*="/art/"][href*=networks-from-19 i]
deviantart.com##a[data-hook][href*="/art/"][href*=studios-from-19 i]
deviantart.com##a[data-hook][href*="/art/"][href*=studios-from-20 i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-is-in-the-description i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fave-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-not-overrated i]
deviantart.com##a[data-hook][href*="/art/"][href*=-was-aired-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Bandicam-20" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/darkwinghomer/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/ehrisbrudt/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/mftondeviantart/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/trevorhines/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-laughs-at-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=anime-shows-ever- i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoon-shows-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoons-that-deserve i]
deviantart.com##a[data-hook][href*="/art/"][href*=favoirte i]
deviantart.com##a[data-hook][href*="/art/"][href*=least-fave- i]
deviantart.com##a[data-hook][href*="/art/"][href*=likes-or-don-t-like i]
deviantart.com##a[data-hook][href*="/art/"][href*=little-einsteins i]
deviantart.com##a[data-hook][href*="/art/"][href*=movies-ever- i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-best-shows- i]
deviantart.com##a[data-hook][href*="/art/"][href*=tinky-winky i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-anime i]
deviantart.com##a[data-hook][href*="/art/"][href*="/describe" i][href*=in-one-word i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-do-not-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/miahalston/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/pharrel3009/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/supersonicx2005/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/toonfan" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/xnansui3770/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-had-a-scene-like- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-it-his-sister i]
deviantart.com##a[data-hook][href*="/art/"][href*=cookie-jar-tv i]
deviantart.com##a[data-hook][href*="/art/"][href*=crossoververse i]
deviantart.com##a[data-hook][href*="/art/"][href*=describe-this-episode i]
deviantart.com##a[data-hook][href*="/art/"][href*=once-a-upon- i]
deviantart.com##a[data-hook][href*="/art/"][href*=tiktok-diva i]
deviantart.com##a[data-hook][href*="/art/"][href*=which-shipping i]
deviantart.com##a[data-hook][href*="/art/"][href*=who-would-voice- i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=I-m-starting-to-ship i]
deviantart.com##a[data-hook][href*="/art/"][href*=who-should-voice- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/madarao123/"]
deviantart.com##a[data-hook][href*="/art/"][href*=totally-suck i]
deviantart.com##a[data-hook][href*="/art/"][href*="/CN-do" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Nick-keeps-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=animation-opener i]
deviantart.com##a[data-hook][href*="/art/"][href*=-poaster- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/danielandresrojas/"]
deviantart.com##a[data-hook][href*="/art/"][href*=characters-who-I-love i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-soo-long i]
deviantart.com##a[data-hook][href*="/art/"][href*="/gabumonlispector2241/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-on-fox-kids i]
deviantart.com##a[data-hook][href*="/art/"][href*="/dannyd1997/"]
deviantart.com##a[data-hook][href*="/art/"][href*=best-and-worst i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-netflix i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-disney i]
deviantart.com##a[data-hook][href*="/art/"][href*=xbox-360 i]
deviantart.com##a[data-hook][href*="/art/"][href*=-psvita- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/relyoh1234/"]
deviantart.com##a[data-hook][href*="/art/"][href*=doodlebop i]
deviantart.com##a[data-hook][href*="/art/"][href*=the-cartoon-wiggles i]
deviantart.com##a[data-hook][href*="/art/"][href*="/brennacollins/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/deangelomywayentfans/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/fanbyjazzystar123/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-dont-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ll-always-have-a-crush-on" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-voted-for-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/If-" i][href*=-dressed-as- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/mblairll/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-christmas-party" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/segacd-32xfanboi/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-angry-at- i][href*=crying i]
deviantart.com##a[data-hook][href*="/art/"][href*=-angry-with-who- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-confession-shocks- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-email-punch- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-friends-hate- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-has-always-bothered-me- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-do-not-feel-ashamed i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-angry-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-annoyed-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-unamused-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-laughing-at- i][href*=crying i]
deviantart.com##a[data-hook][href*="/art/"][href*=-laughing-at- i][href*=death i]
deviantart.com##a[data-hook][href*="/art/"][href*=-less-hate- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-loses-trust-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-made-cameo-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-MBC3- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-need-to-be-hated- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-perfers- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-RedeTV- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-roars-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-says-leave- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-says-no-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-scene-angers- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tv5- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-UK-dubs- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-x-SSBU- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-you-know-for-kids- i]
deviantart.com##a[data-hook][href*="/art/"][href*=about-to-bashed- i]
deviantart.com##a[data-hook][href*="/art/"][href*=banned-poster i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoon-shows- i]
deviantart.com##a[data-hook][href*="/art/"][href*=characters-I-want-to-see i]
deviantart.com##a[data-hook][href*="/art/"][href*=death-battle-idea i]
deviantart.com##a[data-hook][href*="/art/"][href*=deserve-some-screentime i]
deviantart.com##a[data-hook][href*="/art/"][href*=deserves-more-screen-time i]
deviantart.com##a[data-hook][href*="/art/"][href*=despised-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=despised-ship i]
deviantart.com##a[data-hook][href*="/art/"][href*=doesn-t-accepted i]
deviantart.com##a[data-hook][href*="/art/"][href*=massacred-my-boy- i]
deviantart.com##a[data-hook][href*="/art/"][href*=naughty-christmas-list i]
deviantart.com##a[data-hook][href*="/art/"][href*=nice-christmas-list i]
deviantart.com##a[data-hook][href*="/art/"][href*=nice-list-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=nintendo-switch-online i]
deviantart.com##a[data-hook][href*="/art/"][href*=ruined-nick i]
deviantart.com##a[data-hook][href*="/art/"][href*=shitverse i]
deviantart.com##a[data-hook][href*="/art/"][href*=shows-i-hate i]
deviantart.com##a[data-hook][href*="/art/"][href*=throws-peanuts-at i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-in-description i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-in-the-description i]
deviantart.com##a[data-hook][href*="/art/"][href*=tittle-in-the-description i]
deviantart.com##a[data-hook][href*="/art/"][href*=toxic-troll i]
deviantart.com##a[data-hook][href*="/art/"][href*=yes-show-list i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Nice-list-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/wazzupmyboyz/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/wright805/"]
deviantart.com##a[data-hook][href*="/art/"][href*="transparents/" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-and-dislikes- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-SVTFOE- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-overhated- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-rating-bug- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-s-crossover-harem i]
deviantart.com##a[data-hook][href*="/art/"][href*=-s-favorite-magical-girl i]
deviantart.com##a[data-hook][href*="/art/"][href*=-scolds-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-elimination i]
deviantart.com##a[data-hook][href*="/art/"][href*=disney-channel i][href*=-promo- i]
deviantart.com##a[data-hook][href*="/art/"][href*=holiday-dvd i]
deviantart.com##a[data-hook][href*="/art/"][href*=movies-are-better i]
deviantart.com##a[data-hook][href*="/art/"][href*=pbs-kids-go i]
deviantart.com##a[data-hook][href*="/art/"][href*=rite-children-s-tv i]
deviantart.com##a[data-hook][href*="/art/"][href*=teletoon-list i]
deviantart.com##a[data-hook][href*="/art/"][href*="/heavydaboss/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/isathekittypan/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/leviarex/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/matthewspics9066/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Opinion-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Reacting-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/reply-with-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/What-would-you-name-these-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-a-crush-on-who- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-hate i][href*=-but-love- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-crush-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-seen-in-theat i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-about-to-punch i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-outraged-by i]
deviantart.com##a[data-hook][href*="/art/"][href*=-screams-at-the- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-would-get-along-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*="10-couple" i]
deviantart.com##a[data-hook][href*="/art/"][href*="13-idiot" i]
deviantart.com##a[data-hook][href*="/art/"][href*=all-time-cartoons i]
deviantart.com##a[data-hook][href*="/art/"][href*=deviantion i]
deviantart.com##a[data-hook][href*="/art/"][href*=hater19 i]
deviantart.com##a[data-hook][href*="/art/"][href*=idiots-who-deserve i]
deviantart.com##a[data-hook][href*="/art/"][href*=likes-which-male i]
deviantart.com##a[data-hook][href*="/art/"][href*=repost-this- i]
deviantart.com##a[data-hook][href*="/art/"][href*=scares-the-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=superwhymovies i]
deviantart.com##a[data-hook][href*="/art/"][href*=tells i][href*=-to-shut-up- i]
deviantart.com##a[data-hook][href*="/art/"][href*=who-has-had-enough-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-did-we-just-saw- i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-fav-movie i]
deviantart.com##a[data-hook][href*="/art/"][href*=characters-fav-movie i]
deviantart.com##a[data-hook][href*="/art/"][href*=clarabellecow2009 i]
deviantart.com##a[data-hook][href*="/art/"][href*=coming-on-next- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/bigpurplemuppet99/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/bunnymund05/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Comment-your-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/diegocoba100/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/eladthegreatest/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/gordomtairag2001/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/idmp/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/If-" i][href*=showered-together i]
deviantart.com##a[data-hook][href*="/art/"][href*="/othabland/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/smashufrontier/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/smochdar/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/thevideogameteen/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-am-i-love-this- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-characters-sing- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-had-a-falling-out- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-most-prefer- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-not-enough-text- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-poster-202 i]
deviantart.com##a[data-hook][href*="/art/"][href*=birtaday i]
deviantart.com##a[data-hook][href*="/art/"][href*=birtarday i]
deviantart.com##a[data-hook][href*="/art/"][href*=birtrday i]
deviantart.com##a[data-hook][href*="/art/"][href*=crossover-bestie i]
deviantart.com##a[data-hook][href*="/art/"][href*=dislikes i][href*=-but-likes i]
deviantart.com##a[data-hook][href*="/art/"][href*=june- i][href*=-annie- i]
deviantart.com##a[data-hook][href*="/art/"][href*=save-one-drop-one i]
deviantart.com##a[data-hook][href*="/art/"][href*=scenes-remind-me-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=starting-cry- i]
deviantart.com##a[data-hook][href*="/art/"][href*=team i][href*=-angry-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=watching-the-trailer-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/disneyfan" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Read-Desc-9" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Reposted-because-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Screen-Shot-20" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/sebas1974/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-excited-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bugrers- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-era-wiggles i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-saddened-by- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-quote-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-was-dubbed-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*=absolute-trash- i]
deviantart.com##a[data-hook][href*="/art/"][href*=ashamed-of-hating- i]
deviantart.com##a[data-hook][href*="/art/"][href*=bob-the-builder-style i]
deviantart.com##a[data-hook][href*="/art/"][href*=g4merxethan i]
deviantart.com##a[data-hook][href*="/art/"][href*=gracelamson2008 i]
deviantart.com##a[data-hook][href*="/art/"][href*=jacobstout i]
deviantart.com##a[data-hook][href*="/art/"][href*=movies-that-i-m- i]
deviantart.com##a[data-hook][href*="/art/"][href*=picture i][href*=byline i]
deviantart.com##a[data-hook][href*="/art/"][href*=purpleneko900 i]
deviantart.com##a[data-hook][href*="/art/"][href*=saves i][href*=-from-who- i]
deviantart.com##a[data-hook][href*="/art/"][href*=schermopname i]
deviantart.com##a[data-hook][href*="/art/"][href*=subwooferlabs i]
deviantart.com##a[data-hook][href*="/art/"][href*="wiggle/" i]
deviantart.com##a[data-hook][href*="/art/"][href*=wiggles-around-the-world i]
deviantart.com##a[data-hook][href*="/art/"][href*=wiggles-background i]
deviantart.com##a[data-hook][href*="/art/"][href*="/FMK-"]
deviantart.com##a[data-hook][href*="/art/"][href*="/overlooker/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-assigns-detention-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-harem-list- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tirelist- i]
deviantart.com##a[data-hook][href*="/art/"][href*="20th-century-fox" i][href*=remake i]
deviantart.com##a[data-hook][href*="/art/"][href*=marcusperez824 i]
deviantart.com##a[data-hook][href*="/art/"][href*=quizblock i]
deviantart.com##a[data-hook][href*="/art/"][href*=verse-ship i]
deviantart.com##a[data-hook][href*="/art/"][href*=-hate-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/dvdnart/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/heavy-bottom-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/inkuhime" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/jadespin/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/thenexusonda/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/title-in-desc" i]
deviantart.com##a[data-hook][href*="/art/"][href*=logomaker i]
deviantart.com##a[data-hook][href*="/art/"][href*=s4c i][href*=promo i]
deviantart.com##a[data-hook][href*="/art/"][href*=sings-part-of-your-world i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-1-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-4-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-5-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-6-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-400-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-500-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-640-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Tumblr-" i][href*="-1280-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="thedisneyand/" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/correct-title-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=bluescluesfan i]
deviantart.com##a[data-hook][href*="/art/"][href*=conorlordofcreation i]
deviantart.com##a[data-hook][href*="/art/"][href*=-UK-Audio- i]
deviantart.com##a[data-hook][href*="/art/"][href*=castle-rock-entertainment i]
deviantart.com##a[data-hook][href*="/art/"][href*=doesn-t-like i][href*=but-love i]
deviantart.com##a[data-hook][href*="/art/"][href*=-title-is-long- i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-down-to-description i]
deviantart.com##a[data-hook][href*="/art/"][href*=kylewithem i]
deviantart.com##a[data-hook][href*="/art/"][href*=freedom i][href*="202" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-hit- i][href*=-on-the-head- i]
deviantart.com##a[data-hook][href*="/art/"][href*=bugbie i]
deviantart.com##a[data-hook][href*="/art/"][href*="/school1993/" i]
deviantart.com##a[data-hook][href*="/art/"][href*=dtvrocks i]
deviantart.com##a[data-hook][href*="/art/"][href*=valleyandfriends i]
deviantart.com##a[data-hook][href*="/art/"][href*=devaintart i]
deviantart.com##a[data-hook][href*="/art/"][href*=christian35476 i]
deviantart.com##a[data-hook][href*="/art/"][href*=-sam-moran- i]
deviantart.com##a[data-hook][href*="/art/"][href*=wiggles i][href*=network i]
deviantart.com##a[data-hook][href*="/art/"][href*=ewan i][href="2007"]
deviantart.com##a[data-hook][href*="/art/"][href*=likes-template i]
deviantart.com##a[data-hook][href*="/art/"][href*=-dislikes- i][href*=TV]
deviantart.com##a[data-hook][href*="/art/"][href*=interational i]
deviantart.com##a[data-hook][href*="/art/"][href*=-likes- i][href*=-dislikes-]
deviantart.com##a[data-hook][href*="/art/"][href*=-jim-herson- i]
deviantart.com##a[data-hook][href*="/art/"][href*=digiral-art i]
deviantart.com##a[data-hook][href*="/art/"][href*=littlekj i]
deviantart.com##a[data-hook][href*="/art/"][href*=tvokids i]
deviantart.com##a[data-hook][href*="/art/"][href*=weekday i][href*=graphic i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tv-grid- i]
deviantart.com##a[data-hook][href*="/art/"][href*=kaylor2013 i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite i][href*=animated-shows i]
deviantart.com##a[data-hook][href*="/art/"][href*=ssbrandon i]
deviantart.com##a[data-hook][href*="/art/"][href*=-go-to-hell- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-meme- i]
deviantart.com##a[data-hook][href*="/art/"][href*=xxmonicaartsxx i]
deviantart.com##a[data-hook][href*="/art/"][href*=-says-yes-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=kayloshiwarrior i]
deviantart.com##a[data-hook][href*="/art/"][href*=call i][href*=horrible i]
deviantart.com##a[data-hook][href*="/art/"][href*=walt-disney-s-masterpiece i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Why-I-m-obsessed-with-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=batboy101 i]
deviantart.com##a[data-hook][href*="/art/"][href*=-for-blank- i]
deviantart.com##a[data-hook][href*="/art/"][href*=scared-blank- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/this-" i][href*=-reminds-me-of-this- i]
deviantart.com##a[data-hook][href*="/art/"][href*=sponegbob i]
deviantart.com##a[data-hook][href*="/art/"][href*=fix-change-or-rewrite i]
deviantart.com##a[data-hook][href*="/art/"][href*=joe10 i][href*=miller i]
deviantart.com##a[data-hook][href*="/art/"][href*=starshinerapgirl i]
deviantart.com##a[data-hook][href*="/art/"][href*="/8-characters-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="15432/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-laughs-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=rosariomiguel i]
deviantart.com##a[data-hook][href*="/art/"][href*=lagovulpesthegentle i]
deviantart.com##a[data-hook][href*="/art/"][href*=reacts-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=i-love-these-shows i]
deviantart.com##a[data-hook][href*="/art/"][href*=arvin-iranianpuppy i]
deviantart.com##a[data-hook][href*="/art/"][href*=powerpup97 i]
deviantart.com##a[data-hook][href*="/art/"][href*=-harem i][href*=interest i]
deviantart.com##a[data-hook][href*="/art/"][href*=derincik i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reflactions- i]
deviantart.com##a[data-hook][href*="/art/"][href*=wreny2011 i]
deviantart.com##a[data-hook][href*="/art/"][href*=-flet-bad- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-to-taken-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-smiles-at-who- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-sympathise-with-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=the-title-is i][href*=deviation i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoon i][href*=wiggles i]
deviantart.com##a[data-hook][href*="/art/"][href*=hate i][href*=-but-like i]
deviantart.com##a[data-hook][href*="/art/"][href*=title i][href*=too-long i]
deviantart.com##a[data-hook][href*="/art/"][href*=carlosuriel i]
deviantart.com##a[data-hook][href*="/art/"][href*="/title-long-" i]