-
Notifications
You must be signed in to change notification settings - Fork 1
/
links.yaml
2497 lines (2497 loc) · 281 KB
/
links.yaml
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
{/: 'http://www.threadless.com/', /%7B%7Bthis.details.challenge_path%7D%7D/%7B%7Bthis.details.submission_slug%7D%7D: 'http://www.threadless.com/%7B%7Bthis.details.challenge_path%7D%7D/%7B%7Bthis.details.submission_slug%7D%7D',
/%7B%7Bthis.details.vanity_path%7D%7D: 'http://www.threadless.com/%7B%7Bthis.details.vanity_path%7D%7D',
? '//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fthreadless&width=420&height=350&colorscheme=light&show_faces=false&border_color=%23e5e5e5&stream=true&header=false&appId=150814601699174'
: 'http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fthreadless&width=420&height=350&colorscheme=light&show_faces=false&border_color=%23e5e5e5&stream=true&header=false&appId=150814601699174',
/Hulk/: 'http://www.threadless.com/Hulk/', /Hulk/anger-driven-3/: 'http://www.threadless.com/Hulk/anger-driven-3/',
/Hulk/angry_hulk/: 'http://www.threadless.com/Hulk/angry_hulk/', /Hulk/caution-purple-pants/: 'http://www.threadless.com/Hulk/caution-purple-pants/',
/Hulk/come-with-me/: 'http://www.threadless.com/Hulk/come-with-me/', /Hulk/dont-push-my-buttons/: 'http://www.threadless.com/Hulk/dont-push-my-buttons/',
/Hulk/dr-banner-mr-hulk/: 'http://www.threadless.com/Hulk/dr-banner-mr-hulk/', /Hulk/dr-bruce-banner-science-camp/: 'http://www.threadless.com/Hulk/dr-bruce-banner-science-camp/',
/Hulk/epic-monstrous/: 'http://www.threadless.com/Hulk/epic-monstrous/', /Hulk/expand-4/: 'http://www.threadless.com/Hulk/expand-4/',
/Hulk/fracture-2/: 'http://www.threadless.com/Hulk/fracture-2/', /Hulk/gamma-glasses2-2/: 'http://www.threadless.com/Hulk/gamma-glasses2-2/',
/Hulk/gamma-rage-3/: 'http://www.threadless.com/Hulk/gamma-rage-3/', /Hulk/gamma-wrath-2/: 'http://www.threadless.com/Hulk/gamma-wrath-2/',
/Hulk/h-is-for-hulk-2/: 'http://www.threadless.com/Hulk/h-is-for-hulk-2/', /Hulk/hulk-27/: 'http://www.threadless.com/Hulk/hulk-27/',
/Hulk/hulk-in-the-city-3/: 'http://www.threadless.com/Hulk/hulk-in-the-city-3/',
/Hulk/hulk-smash-vase-2/: 'http://www.threadless.com/Hulk/hulk-smash-vase-2/', /Hulk/hulk_mad/: 'http://www.threadless.com/Hulk/hulk_mad/',
/Hulk/hulkbruce/: 'http://www.threadless.com/Hulk/hulkbruce/', /Hulk/hulkward/: 'http://www.threadless.com/Hulk/hulkward/',
/Hulk/indestructible-4/: 'http://www.threadless.com/Hulk/indestructible-4/', /Hulk/inkredible-2/: 'http://www.threadless.com/Hulk/inkredible-2/',
/Hulk/irradiated/: 'http://www.threadless.com/Hulk/irradiated/', /Hulk/lack-of-service-makes-hulk-angry/: 'http://www.threadless.com/Hulk/lack-of-service-makes-hulk-angry/',
/Hulk/legal/: 'http://www.threadless.com/Hulk/legal/', /Hulk/living-in-shadows/: 'http://www.threadless.com/Hulk/living-in-shadows/',
/Hulk/monster-unleashed/: 'http://www.threadless.com/Hulk/monster-unleashed/', /Hulk/r_a_g_e/: 'http://www.threadless.com/Hulk/r_a_g_e/',
/Hulk/rainbloodsmash/: 'http://www.threadless.com/Hulk/rainbloodsmash/', /Hulk/selfcontrol-2/: 'http://www.threadless.com/Hulk/selfcontrol-2/',
/Hulk/shadow-of-destruction/: 'http://www.threadless.com/Hulk/shadow-of-destruction/',
/Hulk/smash-it-3/: 'http://www.threadless.com/Hulk/smash-it-3/', /Hulk/street-hulk-resub/: 'http://www.threadless.com/Hulk/street-hulk-resub/',
'/Hulk/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/Hulk/submissions/?status=closed&sort=&page=1',
/Hulk/why-hulk-cant-have-nice-things-2/: 'http://www.threadless.com/Hulk/why-hulk-cant-have-nice-things-2/',
/TMNT/: 'http://www.threadless.com/TMNT/', /TMNT/ancient-mutant-ninja-turtles/: 'http://www.threadless.com/TMNT/ancient-mutant-ninja-turtles/',
/TMNT/april-bride/: 'http://www.threadless.com/TMNT/april-bride/', /TMNT/best-buds-2/: 'http://www.threadless.com/TMNT/best-buds-2/',
/TMNT/bros-in-a-half-shell/: 'http://www.threadless.com/TMNT/bros-in-a-half-shell/',
/TMNT/caught-in-a-disguise/: 'http://www.threadless.com/TMNT/caught-in-a-disguise/',
/TMNT/chocolate-turtle-power/: 'http://www.threadless.com/TMNT/chocolate-turtle-power/',
/TMNT/doodle-ninja/: 'http://www.threadless.com/TMNT/doodle-ninja/', /TMNT/fearsome-fighting-team/: 'http://www.threadless.com/TMNT/fearsome-fighting-team/',
/TMNT/legal/: 'http://www.threadless.com/TMNT/legal/', /TMNT/midnight-rush/: 'http://www.threadless.com/TMNT/midnight-rush/',
/TMNT/ninja-music/: 'http://www.threadless.com/TMNT/ninja-music/', /TMNT/pizza-express/: 'http://www.threadless.com/TMNT/pizza-express/',
/TMNT/red-moon-stealth-attack/: 'http://www.threadless.com/TMNT/red-moon-stealth-attack/',
/TMNT/return-to-new-york/: 'http://www.threadless.com/TMNT/return-to-new-york/',
/TMNT/sewer-ninja/: 'http://www.threadless.com/TMNT/sewer-ninja/', /TMNT/shadow-warriors/: 'http://www.threadless.com/TMNT/shadow-warriors/',
/TMNT/shredder-vs-splinter-2/: 'http://www.threadless.com/TMNT/shredder-vs-splinter-2/',
/TMNT/sons-of-the-foot-clan/: 'http://www.threadless.com/TMNT/sons-of-the-foot-clan/',
/TMNT/sparring-practice/: 'http://www.threadless.com/TMNT/sparring-practice/', '/TMNT/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/TMNT/submissions/?status=closed&sort=&page=1',
/TMNT/teenage-zombie-ninja-turtles/: 'http://www.threadless.com/TMNT/teenage-zombie-ninja-turtles/',
/TMNT/the-four-ronin/: 'http://www.threadless.com/TMNT/the-four-ronin/', /TMNT/the-masters-apparition-2/: 'http://www.threadless.com/TMNT/the-masters-apparition-2/',
/TMNT/the-shredder-4/: 'http://www.threadless.com/TMNT/the-shredder-4/', /TMNT/totally-radicons/: 'http://www.threadless.com/TMNT/totally-radicons/',
/TMNT/true-origins/: 'http://www.threadless.com/TMNT/true-origins/', /TMNT/two-minutes-for-slashing/: 'http://www.threadless.com/TMNT/two-minutes-for-slashing/',
/TMNT/we-are-brothers/: 'http://www.threadless.com/TMNT/we-are-brothers/', /absolut/: 'http://www.threadless.com/absolut/',
/absolut/the-windy-city/: 'http://www.threadless.com/absolut/the-windy-city/', /ampitup/: 'http://www.threadless.com/ampitup/',
/ampitup/guitar-hero-2/: 'http://www.threadless.com/ampitup/guitar-hero-2/', /ampitup/it-grows-on-trees/: 'http://www.threadless.com/ampitup/it-grows-on-trees/',
/ampitup/legal/: 'http://www.threadless.com/ampitup/legal/', /ampitup/share-the-music/: 'http://www.threadless.com/ampitup/share-the-music/',
'/ampitup/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/ampitup/submissions/?status=closed&sort=&page=1',
/ampitup/the-music-cover/: 'http://www.threadless.com/ampitup/the-music-cover/',
/arcadefire/: 'http://www.threadless.com/arcadefire/', /arcadefire/accidents/: 'http://www.threadless.com/arcadefire/accidents/',
/arcadefire/legal/: 'http://www.threadless.com/arcadefire/legal/', '/arcadefire/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/arcadefire/submissions/?status=closed&sort=&page=1',
/arcadefire/the-half-light-2/: 'http://www.threadless.com/arcadefire/the-half-light-2/',
/arcadefire/trolley-rebell-kids/: 'http://www.threadless.com/arcadefire/trolley-rebell-kids/',
/awkward/: 'http://www.threadless.com/awkward/', /awkward/coming-out-of-your-shell/: 'http://www.threadless.com/awkward/coming-out-of-your-shell/',
/awkward/its-complicated-3/: 'http://www.threadless.com/awkward/its-complicated-3/',
/awkward/legal/: 'http://www.threadless.com/awkward/legal/', /awkward/lunar-letdown/: 'http://www.threadless.com/awkward/lunar-letdown/',
'/awkward/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/awkward/submissions/?status=closed&sort=&page=1',
/awkward/the-awkward-years-2/: 'http://www.threadless.com/awkward/the-awkward-years-2/',
/awkward/unfortunate-ink-stain/: 'http://www.threadless.com/awkward/unfortunate-ink-stain/',
/baby-and-toddler-boys: 'http://www.threadless.com/baby-and-toddler-boys', /baby-and-toddler-girls: 'http://www.threadless.com/baby-and-toddler-girls',
/bands: 'http://www.threadless.com/bands', /bands-that-dont-exist-yet/: 'http://www.threadless.com/bands-that-dont-exist-yet/',
/bands-that-dont-exist-yet/crunch-2/: 'http://www.threadless.com/bands-that-dont-exist-yet/crunch-2/',
/bands-that-dont-exist-yet/legal/: 'http://www.threadless.com/bands-that-dont-exist-yet/legal/',
/bands-that-dont-exist-yet/sky-tiger/: 'http://www.threadless.com/bands-that-dont-exist-yet/sky-tiger/',
'/bands-that-dont-exist-yet/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/bands-that-dont-exist-yet/submissions/?status=closed&sort=&page=1',
/bands-that-dont-exist-yet/time-trap/: 'http://www.threadless.com/bands-that-dont-exist-yet/time-trap/',
/baseballtees/: 'http://www.threadless.com/baseballtees/', /baseballtees/a-hotdogs-worst-nightmare/: 'http://www.threadless.com/baseballtees/a-hotdogs-worst-nightmare/',
/baseballtees/baseball-or-die/: 'http://www.threadless.com/baseballtees/baseball-or-die/',
/baseballtees/baseball-skull/: 'http://www.threadless.com/baseballtees/baseball-skull/',
/baseballtees/baseball-soup/: 'http://www.threadless.com/baseballtees/baseball-soup/',
/baseballtees/baseballs/: 'http://www.threadless.com/baseballtees/baseballs/', /baseballtees/best-catcher/: 'http://www.threadless.com/baseballtees/best-catcher/',
/baseballtees/broken-bones-and-bloody-knuckles/: 'http://www.threadless.com/baseballtees/broken-bones-and-bloody-knuckles/',
/baseballtees/encom-users/: 'http://www.threadless.com/baseballtees/encom-users/',
/baseballtees/fly-ball-2/: 'http://www.threadless.com/baseballtees/fly-ball-2/',
/baseballtees/homerun-swing/: 'http://www.threadless.com/baseballtees/homerun-swing/',
/baseballtees/hot-dogs-2/: 'http://www.threadless.com/baseballtees/hot-dogs-2/',
/baseballtees/it-has-nothing-to-do-with-luck/: 'http://www.threadless.com/baseballtees/it-has-nothing-to-do-with-luck/',
/baseballtees/legal/: 'http://www.threadless.com/baseballtees/legal/', /baseballtees/mudville-9/: 'http://www.threadless.com/baseballtees/mudville-9/',
/baseballtees/predictions-is-not-guaranteed/: 'http://www.threadless.com/baseballtees/predictions-is-not-guaranteed/',
/baseballtees/run-7/: 'http://www.threadless.com/baseballtees/run-7/', /baseballtees/run-home-run/: 'http://www.threadless.com/baseballtees/run-home-run/',
/baseballtees/spaceball-5/: 'http://www.threadless.com/baseballtees/spaceball-5/',
/baseballtees/spirit-of-d-day/: 'http://www.threadless.com/baseballtees/spirit-of-d-day/',
/baseballtees/strike-6/: 'http://www.threadless.com/baseballtees/strike-6/', '/baseballtees/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/baseballtees/submissions/?status=closed&sort=&page=1',
/baseballtees/thanks-dad/: 'http://www.threadless.com/baseballtees/thanks-dad/',
/baseballtees/the-astronauts-biggest-play/: 'http://www.threadless.com/baseballtees/the-astronauts-biggest-play/',
/baseballtees/the-great-bambino/: 'http://www.threadless.com/baseballtees/the-great-bambino/',
/baseballtees/the-struggle-4/: 'http://www.threadless.com/baseballtees/the-struggle-4/',
/baseballtees/third-base/: 'http://www.threadless.com/baseballtees/third-base/',
/baseballtees/tv-disco-ball/: 'http://www.threadless.com/baseballtees/tv-disco-ball/',
/baseballtees/tyrell-corp-replicants/: 'http://www.threadless.com/baseballtees/tyrell-corp-replicants/',
/baseballtees/world-champs/: 'http://www.threadless.com/baseballtees/world-champs/',
/beautiful/: 'http://www.threadless.com/beautiful/', /beautiful/beautiful-inside/: 'http://www.threadless.com/beautiful/beautiful-inside/',
/beautiful/legal/: 'http://www.threadless.com/beautiful/legal/', /beautiful/moc-girl/: 'http://www.threadless.com/beautiful/moc-girl/',
/beautiful/no-ugly-duckling/: 'http://www.threadless.com/beautiful/no-ugly-duckling/',
'/beautiful/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/beautiful/submissions/?status=closed&sort=&page=1',
/beautiful/you-3/: 'http://www.threadless.com/beautiful/you-3/', /beautiful/you-are-awesome/: 'http://www.threadless.com/beautiful/you-are-awesome/',
/beautiful/you-are-so-beautiful-to-me/: 'http://www.threadless.com/beautiful/you-are-so-beautiful-to-me/',
/bicycles/: 'http://www.threadless.com/bicycles/', /bicycles/beyond-the-sunset/: 'http://www.threadless.com/bicycles/beyond-the-sunset/',
/bicycles/bicyclepopsiclebisicle/: 'http://www.threadless.com/bicycles/bicyclepopsiclebisicle/',
/bicycles/i-heart-bicycles/: 'http://www.threadless.com/bicycles/i-heart-bicycles/',
/bicycles/legal/: 'http://www.threadless.com/bicycles/legal/', /bicycles/nature-3-bikes/: 'http://www.threadless.com/bicycles/nature-3-bikes/',
'/bicycles/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/bicycles/submissions/?status=closed&sort=&page=1',
/bicycles/world-of-bike/: 'http://www.threadless.com/bicycles/world-of-bike/', /blackandwhite/: 'http://www.threadless.com/blackandwhite/',
/blackandwhite/after-the-night-comes-dawn/: 'http://www.threadless.com/blackandwhite/after-the-night-comes-dawn/',
/blackandwhite/all-birds-are-black-at-night/: 'http://www.threadless.com/blackandwhite/all-birds-are-black-at-night/',
/blackandwhite/ash-the-lion/: 'http://www.threadless.com/blackandwhite/ash-the-lion/',
/blackandwhite/barcode-invader/: 'http://www.threadless.com/blackandwhite/barcode-invader/',
/blackandwhite/black-knight/: 'http://www.threadless.com/blackandwhite/black-knight/',
/blackandwhite/black-slasher-1/: 'http://www.threadless.com/blackandwhite/black-slasher-1/',
/blackandwhite/black-white-6/: 'http://www.threadless.com/blackandwhite/black-white-6/',
/blackandwhite/california-dreamin/: 'http://www.threadless.com/blackandwhite/california-dreamin/',
/blackandwhite/captured-in-space/: 'http://www.threadless.com/blackandwhite/captured-in-space/',
/blackandwhite/cat-16/: 'http://www.threadless.com/blackandwhite/cat-16/', /blackandwhite/composition-with-black-dots-stripes-and-black/: 'http://www.threadless.com/blackandwhite/composition-with-black-dots-stripes-and-black/',
/blackandwhite/count-pancula/: 'http://www.threadless.com/blackandwhite/count-pancula/',
/blackandwhite/courage-is-what-you-need/: 'http://www.threadless.com/blackandwhite/courage-is-what-you-need/',
/blackandwhite/crop-circles-man-theyre-everywhere/: 'http://www.threadless.com/blackandwhite/crop-circles-man-theyre-everywhere/',
/blackandwhite/dapper-dogs-2/: 'http://www.threadless.com/blackandwhite/dapper-dogs-2/',
/blackandwhite/deep-dream/: 'http://www.threadless.com/blackandwhite/deep-dream/',
/blackandwhite/dream-23/: 'http://www.threadless.com/blackandwhite/dream-23/', /blackandwhite/dripping-4/: 'http://www.threadless.com/blackandwhite/dripping-4/',
/blackandwhite/el-guernica-de-nicasio/: 'http://www.threadless.com/blackandwhite/el-guernica-de-nicasio/',
/blackandwhite/endangered-pirate/: 'http://www.threadless.com/blackandwhite/endangered-pirate/',
/blackandwhite/evil-rock-of-dead/: 'http://www.threadless.com/blackandwhite/evil-rock-of-dead/',
/blackandwhite/first-an-amateur/: 'http://www.threadless.com/blackandwhite/first-an-amateur/',
/blackandwhite/friend-of-the-night/: 'http://www.threadless.com/blackandwhite/friend-of-the-night/',
/blackandwhite/heart-of-stone/: 'http://www.threadless.com/blackandwhite/heart-of-stone/',
/blackandwhite/hello-sunshine-5/: 'http://www.threadless.com/blackandwhite/hello-sunshine-5/',
/blackandwhite/hipster-pirate/: 'http://www.threadless.com/blackandwhite/hipster-pirate/',
/blackandwhite/horse-play/: 'http://www.threadless.com/blackandwhite/horse-play/',
/blackandwhite/idle-chatter/: 'http://www.threadless.com/blackandwhite/idle-chatter/',
/blackandwhite/im-alonetree/: 'http://www.threadless.com/blackandwhite/im-alonetree/',
/blackandwhite/in-flight-3/: 'http://www.threadless.com/blackandwhite/in-flight-3/',
/blackandwhite/it-doesnt-matter-if-youre-black-or-white/: 'http://www.threadless.com/blackandwhite/it-doesnt-matter-if-youre-black-or-white/',
/blackandwhite/la-vampire/: 'http://www.threadless.com/blackandwhite/la-vampire/',
/blackandwhite/legal/: 'http://www.threadless.com/blackandwhite/legal/', /blackandwhite/mecharilla-2/: 'http://www.threadless.com/blackandwhite/mecharilla-2/',
/blackandwhite/mouse-4/: 'http://www.threadless.com/blackandwhite/mouse-4/', /blackandwhite/one-throne-to-rule-them-all/: 'http://www.threadless.com/blackandwhite/one-throne-to-rule-them-all/',
/blackandwhite/pale-rider/: 'http://www.threadless.com/blackandwhite/pale-rider/',
/blackandwhite/penguinception-3/: 'http://www.threadless.com/blackandwhite/penguinception-3/',
/blackandwhite/piano-night/: 'http://www.threadless.com/blackandwhite/piano-night/',
/blackandwhite/piano-panda/: 'http://www.threadless.com/blackandwhite/piano-panda/',
/blackandwhite/piracy-3/: 'http://www.threadless.com/blackandwhite/piracy-3/', /blackandwhite/quoth-the-raven-3/: 'http://www.threadless.com/blackandwhite/quoth-the-raven-3/',
/blackandwhite/ron-swanson/: 'http://www.threadless.com/blackandwhite/ron-swanson/',
/blackandwhite/screw-yer-luck-me-hearty/: 'http://www.threadless.com/blackandwhite/screw-yer-luck-me-hearty/',
/blackandwhite/self-defense/: 'http://www.threadless.com/blackandwhite/self-defense/',
/blackandwhite/shiver-me-tempers/: 'http://www.threadless.com/blackandwhite/shiver-me-tempers/',
/blackandwhite/skeletoile/: 'http://www.threadless.com/blackandwhite/skeletoile/',
/blackandwhite/son-of-a-gun-2/: 'http://www.threadless.com/blackandwhite/son-of-a-gun-2/',
/blackandwhite/squids-up/: 'http://www.threadless.com/blackandwhite/squids-up/',
/blackandwhite/stairway-to-middle-earth/: 'http://www.threadless.com/blackandwhite/stairway-to-middle-earth/',
/blackandwhite/state-of-emergency-shut-me-down/: 'http://www.threadless.com/blackandwhite/state-of-emergency-shut-me-down/',
'/blackandwhite/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/blackandwhite/submissions/?status=closed&sort=&page=1',
/blackandwhite/super-heroine-girlfriend-2/: 'http://www.threadless.com/blackandwhite/super-heroine-girlfriend-2/',
/blackandwhite/swan-4/: 'http://www.threadless.com/blackandwhite/swan-4/', /blackandwhite/temporary-stripe-2/: 'http://www.threadless.com/blackandwhite/temporary-stripe-2/',
/blackandwhite/the-chopper/: 'http://www.threadless.com/blackandwhite/the-chopper/',
/blackandwhite/the-eclipse/: 'http://www.threadless.com/blackandwhite/the-eclipse/',
/blackandwhite/the-ingenious-gentleman-and-his-squire/: 'http://www.threadless.com/blackandwhite/the-ingenious-gentleman-and-his-squire/',
/blackandwhite/the-king-12/: 'http://www.threadless.com/blackandwhite/the-king-12/',
/blackandwhite/the-king-14/: 'http://www.threadless.com/blackandwhite/the-king-14/',
/blackandwhite/the-knight-2/: 'http://www.threadless.com/blackandwhite/the-knight-2/',
/blackandwhite/the-mummy-code/: 'http://www.threadless.com/blackandwhite/the-mummy-code/',
/blackandwhite/the-overlook/: 'http://www.threadless.com/blackandwhite/the-overlook/',
/blackandwhite/tradition/: 'http://www.threadless.com/blackandwhite/tradition/',
/blackandwhite/troubled-couple/: 'http://www.threadless.com/blackandwhite/troubled-couple/',
/blackandwhite/undersea-attack/: 'http://www.threadless.com/blackandwhite/undersea-attack/',
/blackandwhite/walk-the-moon/: 'http://www.threadless.com/blackandwhite/walk-the-moon/',
/blackandwhite/white-on-space-2/: 'http://www.threadless.com/blackandwhite/white-on-space-2/',
/blackandwhite/yes-lycan-speaking/: 'http://www.threadless.com/blackandwhite/yes-lycan-speaking/',
/blackandwhite/yin-yang-lovers/: 'http://www.threadless.com/blackandwhite/yin-yang-lovers/',
/blackandwhite/zebra-wheels/: 'http://www.threadless.com/blackandwhite/zebra-wheels/',
/bravestwarriors/: 'http://www.threadless.com/bravestwarriors/', /bravestwarriors/bravest-bug/: 'http://www.threadless.com/bravestwarriors/bravest-bug/',
/bravestwarriors/catbug-family/: 'http://www.threadless.com/bravestwarriors/catbug-family/',
/bravestwarriors/edgiest-warriors/: 'http://www.threadless.com/bravestwarriors/edgiest-warriors/',
/bravestwarriors/legal/: 'http://www.threadless.com/bravestwarriors/legal/', /bravestwarriors/locally-grown-4/: 'http://www.threadless.com/bravestwarriors/locally-grown-4/',
/bravestwarriors/locally-grown-5/: 'http://www.threadless.com/bravestwarriors/locally-grown-5/',
/bravestwarriors/pansit/: 'http://www.threadless.com/bravestwarriors/pansit/', /bravestwarriors/space-adventurers-2/: 'http://www.threadless.com/bravestwarriors/space-adventurers-2/',
'/bravestwarriors/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/bravestwarriors/submissions/?status=closed&sort=&page=1',
/bravestwarriors/the-bravest-warriors-2/: 'http://www.threadless.com/bravestwarriors/the-bravest-warriors-2/',
/bravestwarriors/the-warriors-on-the-cosmic-stage-2/: 'http://www.threadless.com/bravestwarriors/the-warriors-on-the-cosmic-stage-2/',
/cards/: 'http://www.threadless.com/cards/', /cards/classy-b-day/: 'http://www.threadless.com/cards/classy-b-day/',
/cards/frosty-christmas/: 'http://www.threadless.com/cards/frosty-christmas/', /cards/legal/: 'http://www.threadless.com/cards/legal/',
/cards/only-you-and-my-dog/: 'http://www.threadless.com/cards/only-you-and-my-dog/',
/cards/overlords-celebration/: 'http://www.threadless.com/cards/overlords-celebration/',
'/cards/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/cards/submissions/?status=closed&sort=&page=1',
/cards/you-pretty-fly/: 'http://www.threadless.com/cards/you-pretty-fly/', /cards/youre-like-a-diamond/: 'http://www.threadless.com/cards/youre-like-a-diamond/',
/cart: 'http://www.threadless.com/cart', /cartoon-tv-characters: 'http://www.threadless.com/cartoon-tv-characters',
/cartoon-tv-characters/disneyvillains: 'http://www.threadless.com/cartoon-tv-characters/disneyvillains',
/cartoon-tv-characters/minecraft: 'http://www.threadless.com/cartoon-tv-characters/minecraft',
/cartoon-tv-characters/monsters-inc: 'http://www.threadless.com/cartoon-tv-characters/monsters-inc',
/cartoon-tv-characters/muppets: 'http://www.threadless.com/cartoon-tv-characters/muppets',
/cartoon-tv-characters/nightmarebeforechristmas/: 'http://www.threadless.com/cartoon-tv-characters/nightmarebeforechristmas/',
/cartoon-tv-characters/sesamestreet/: 'http://www.threadless.com/cartoon-tv-characters/sesamestreet/',
/cartoon-tv-characters/tmnt: 'http://www.threadless.com/cartoon-tv-characters/tmnt',
/cartoon-tv-characters/toy-story/: 'http://www.threadless.com/cartoon-tv-characters/toy-story/',
'/catalog/line,marvel/order,new': 'http://www.threadless.com/catalog/line,marvel/order,new',
'/catalog/order,popular/line,threadless': 'http://www.threadless.com/catalog/order,popular/line,threadless',
'/catalog/price,clearance': 'http://www.threadless.com/catalog/price,clearance',
'/catalog/price,clearance/page,11': 'http://www.threadless.com/catalog/price,clearance/page,11',
'/catalog/price,clearance/page,12': 'http://www.threadless.com/catalog/price,clearance/page,12',
'/catalog/price,clearance/page,13': 'http://www.threadless.com/catalog/price,clearance/page,13',
'/catalog/price,clearance/page,2': 'http://www.threadless.com/catalog/price,clearance/page,2',
'/catalog/type,babies': 'http://www.threadless.com/catalog/type,babies', '/catalog/type,babies/page,10': 'http://www.threadless.com/catalog/type,babies/page,10',
'/catalog/type,babies/page,11': 'http://www.threadless.com/catalog/type,babies/page,11',
'/catalog/type,babies/page,2': 'http://www.threadless.com/catalog/type,babies/page,2',
'/catalog/type,babies/page,3': 'http://www.threadless.com/catalog/type,babies/page,3',
'/catalog/type,babies/page,4': 'http://www.threadless.com/catalog/type,babies/page,4',
'/catalog/type,babies/page,5': 'http://www.threadless.com/catalog/type,babies/page,5',
'/catalog/type,babies/page,6': 'http://www.threadless.com/catalog/type,babies/page,6',
'/catalog/type,babies/page,7': 'http://www.threadless.com/catalog/type,babies/page,7',
'/catalog/type,babies/page,8': 'http://www.threadless.com/catalog/type,babies/page,8',
'/catalog/type,babies/page,9': 'http://www.threadless.com/catalog/type,babies/page,9',
'/catalog/type,babies/size,0-3mo': 'http://www.threadless.com/catalog/type,babies/size,0-3mo',
'/catalog/type,babies/size,12-18mo': 'http://www.threadless.com/catalog/type,babies/size,12-18mo',
'/catalog/type,babies/size,18-24mo': 'http://www.threadless.com/catalog/type,babies/size,18-24mo',
'/catalog/type,babies/size,3-6mo': 'http://www.threadless.com/catalog/type,babies/size,3-6mo',
'/catalog/type,babies/size,6-12mo': 'http://www.threadless.com/catalog/type,babies/size,6-12mo',
'/catalog/type,babies/size,All': 'http://www.threadless.com/catalog/type,babies/size,All',
'/catalog/type,girly': 'http://www.threadless.com/catalog/type,girly', '/catalog/type,girly/': 'http://www.threadless.com/catalog/type,girly/',
'/catalog/type,girly/line,select': 'http://www.threadless.com/catalog/type,girly/line,select',
'/catalog/type,girly/page,2': 'http://www.threadless.com/catalog/type,girly/page,2',
'/catalog/type,girly/page,51': 'http://www.threadless.com/catalog/type,girly/page,51',
'/catalog/type,girly/page,52': 'http://www.threadless.com/catalog/type,girly/page,52',
'/catalog/type,girly/page,53': 'http://www.threadless.com/catalog/type,girly/page,53',
'/catalog/type,girly/style,hoodies': 'http://www.threadless.com/catalog/type,girly/style,hoodies',
'/catalog/type,girly/style,other_girly': 'http://www.threadless.com/catalog/type,girly/style,other_girly',
'/catalog/type,girly/style,pullovers': 'http://www.threadless.com/catalog/type,girly/style,pullovers',
'/catalog/type,girly/style,tanks': 'http://www.threadless.com/catalog/type,girly/style,tanks',
'/catalog/type,girly/style,tees': 'http://www.threadless.com/catalog/type,girly/style,tees',
'/catalog/type,guys': 'http://www.threadless.com/catalog/type,guys', '/catalog/type,guys/': 'http://www.threadless.com/catalog/type,guys/',
'/catalog/type,guys/line,select': 'http://www.threadless.com/catalog/type,guys/line,select',
'/catalog/type,guys/line,select/': 'http://www.threadless.com/catalog/type,guys/line,select/',
'/catalog/type,guys/page,2': 'http://www.threadless.com/catalog/type,guys/page,2',
'/catalog/type,guys/page,45': 'http://www.threadless.com/catalog/type,guys/page,45',
'/catalog/type,guys/page,46': 'http://www.threadless.com/catalog/type,guys/page,46',
'/catalog/type,guys/page,47': 'http://www.threadless.com/catalog/type,guys/page,47',
'/catalog/type,guys/style,hoodies': 'http://www.threadless.com/catalog/type,guys/style,hoodies',
'/catalog/type,guys/style,other_guys': 'http://www.threadless.com/catalog/type,guys/style,other_guys',
'/catalog/type,guys/style,pullovers': 'http://www.threadless.com/catalog/type,guys/style,pullovers',
'/catalog/type,guys/style,tanks': 'http://www.threadless.com/catalog/type,guys/style,tanks',
'/catalog/type,guys/style,tees': 'http://www.threadless.com/catalog/type,guys/style,tees',
'/catalog/type,iphone': 'http://www.threadless.com/catalog/type,iphone', '/catalog/type,iphone/page,2': 'http://www.threadless.com/catalog/type,iphone/page,2',
'/catalog/type,iphone/page,28': 'http://www.threadless.com/catalog/type,iphone/page,28',
'/catalog/type,iphone/page,29': 'http://www.threadless.com/catalog/type,iphone/page,29',
'/catalog/type,iphone/page,30': 'http://www.threadless.com/catalog/type,iphone/page,30',
'/catalog/type,kids_mixed_gender/size,10yr': 'http://www.threadless.com/catalog/type,kids_mixed_gender/size,10yr',
'/catalog/type,kids_mixed_gender/size,12yr': 'http://www.threadless.com/catalog/type,kids_mixed_gender/size,12yr',
'/catalog/type,kids_mixed_gender/size,6yr': 'http://www.threadless.com/catalog/type,kids_mixed_gender/size,6yr',
'/catalog/type,kids_mixed_gender/size,8yr': 'http://www.threadless.com/catalog/type,kids_mixed_gender/size,8yr',
'/catalog/type,kids_mixed_gender/size,all': 'http://www.threadless.com/catalog/type,kids_mixed_gender/size,all',
'/catalog/type,lilgirly': 'http://www.threadless.com/catalog/type,lilgirly', '/catalog/type,lilgirly/page,2': 'http://www.threadless.com/catalog/type,lilgirly/page,2',
'/catalog/type,lilgirly/page,3': 'http://www.threadless.com/catalog/type,lilgirly/page,3',
'/catalog/type,lilgirly/page,4': 'http://www.threadless.com/catalog/type,lilgirly/page,4',
'/catalog/type,lilgirly/page,5': 'http://www.threadless.com/catalog/type,lilgirly/page,5',
'/catalog/type,lilgirly/page,6': 'http://www.threadless.com/catalog/type,lilgirly/page,6',
'/catalog/type,lilgirly/size,L': 'http://www.threadless.com/catalog/type,lilgirly/size,L',
'/catalog/type,lilgirly/size,M': 'http://www.threadless.com/catalog/type,lilgirly/size,M',
'/catalog/type,lilgirly/size,S': 'http://www.threadless.com/catalog/type,lilgirly/size,S',
'/catalog/type,lilgirly/size,XL': 'http://www.threadless.com/catalog/type,lilgirly/size,XL',
'/catalog/type,lilgirly/size,XS': 'http://www.threadless.com/catalog/type,lilgirly/size,XS',
'/catalog/type,lilguys': 'http://www.threadless.com/catalog/type,lilguys', '/catalog/type,lilguys/page,10': 'http://www.threadless.com/catalog/type,lilguys/page,10',
'/catalog/type,lilguys/page,2': 'http://www.threadless.com/catalog/type,lilguys/page,2',
'/catalog/type,lilguys/page,3': 'http://www.threadless.com/catalog/type,lilguys/page,3',
'/catalog/type,lilguys/page,4': 'http://www.threadless.com/catalog/type,lilguys/page,4',
'/catalog/type,lilguys/page,5': 'http://www.threadless.com/catalog/type,lilguys/page,5',
'/catalog/type,lilguys/page,6': 'http://www.threadless.com/catalog/type,lilguys/page,6',
'/catalog/type,lilguys/page,7': 'http://www.threadless.com/catalog/type,lilguys/page,7',
'/catalog/type,lilguys/page,8': 'http://www.threadless.com/catalog/type,lilguys/page,8',
'/catalog/type,lilguys/page,9': 'http://www.threadless.com/catalog/type,lilguys/page,9',
'/catalog/type,lilguys/size,L': 'http://www.threadless.com/catalog/type,lilguys/size,L',
'/catalog/type,lilguys/size,M': 'http://www.threadless.com/catalog/type,lilguys/size,M',
'/catalog/type,lilguys/size,S': 'http://www.threadless.com/catalog/type,lilguys/size,S',
'/catalog/type,lilguys/size,XL': 'http://www.threadless.com/catalog/type,lilguys/size,XL',
'/catalog/type,lilguys/size,XS': 'http://www.threadless.com/catalog/type,lilguys/size,XS',
'/catalog/type,toddlers': 'http://www.threadless.com/catalog/type,toddlers', '/catalog/type,toddlers/page,10': 'http://www.threadless.com/catalog/type,toddlers/page,10',
'/catalog/type,toddlers/page,2': 'http://www.threadless.com/catalog/type,toddlers/page,2',
'/catalog/type,toddlers/page,3': 'http://www.threadless.com/catalog/type,toddlers/page,3',
'/catalog/type,toddlers/page,4': 'http://www.threadless.com/catalog/type,toddlers/page,4',
'/catalog/type,toddlers/page,5': 'http://www.threadless.com/catalog/type,toddlers/page,5',
'/catalog/type,toddlers/page,6': 'http://www.threadless.com/catalog/type,toddlers/page,6',
'/catalog/type,toddlers/page,7': 'http://www.threadless.com/catalog/type,toddlers/page,7',
'/catalog/type,toddlers/page,8': 'http://www.threadless.com/catalog/type,toddlers/page,8',
'/catalog/type,toddlers/page,9': 'http://www.threadless.com/catalog/type,toddlers/page,9',
'/catalog/type,toddlers/size,2t': 'http://www.threadless.com/catalog/type,toddlers/size,2t',
'/catalog/type,toddlers/size,3t': 'http://www.threadless.com/catalog/type,toddlers/size,3t',
'/catalog/type,toddlers/size,4t': 'http://www.threadless.com/catalog/type,toddlers/size,4t',
'/catalog/type,toddlers/size,56': 'http://www.threadless.com/catalog/type,toddlers/size,56',
'/catalog/type,walls': 'http://www.threadless.com/catalog/type,walls', '/catalog/type,walls/page,19': 'http://www.threadless.com/catalog/type,walls/page,19',
'/catalog/type,walls/page,2': 'http://www.threadless.com/catalog/type,walls/page,2',
'/catalog/type,walls/page,20': 'http://www.threadless.com/catalog/type,walls/page,20',
'/catalog/type,walls/page,21': 'http://www.threadless.com/catalog/type,walls/page,21',
/causes: 'http://www.threadless.com/causes', /coffee/: 'http://www.threadless.com/coffee/',
/coffee/campfire-coffee/: 'http://www.threadless.com/coffee/campfire-coffee/', /coffee/coffee-splash/: 'http://www.threadless.com/coffee/coffee-splash/',
/coffee/legal/: 'http://www.threadless.com/coffee/legal/', '/coffee/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/coffee/submissions/?status=closed&sort=&page=1',
/coffee/symbio/: 'http://www.threadless.com/coffee/symbio/', /coffee/the-city-of-the-coffee-roasters/: 'http://www.threadless.com/coffee/the-city-of-the-coffee-roasters/',
/colleges/: 'http://www.threadless.com/colleges/', /colleges/legal/: 'http://www.threadless.com/colleges/legal/',
'/colleges/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/colleges/submissions/?status=closed&sort=&page=1',
/crosscultural/: 'http://www.threadless.com/crosscultural/', /crosscultural/100-centaur-do-not-bleach/: 'http://www.threadless.com/crosscultural/100-centaur-do-not-bleach/',
/crosscultural/a-long-time-ago/: 'http://www.threadless.com/crosscultural/a-long-time-ago/',
/crosscultural/and-then-we-sailed-the-seven-seas/: 'http://www.threadless.com/crosscultural/and-then-we-sailed-the-seven-seas/',
/crosscultural/angel-wings/: 'http://www.threadless.com/crosscultural/angel-wings/',
/crosscultural/autumn-leafs/: 'http://www.threadless.com/crosscultural/autumn-leafs/',
/crosscultural/birds-of-a-season/: 'http://www.threadless.com/crosscultural/birds-of-a-season/',
/crosscultural/book-lover-3/: 'http://www.threadless.com/crosscultural/book-lover-3/',
/crosscultural/celtic-woodblock/: 'http://www.threadless.com/crosscultural/celtic-woodblock/',
/crosscultural/coffee-coffee-coffee-2/: 'http://www.threadless.com/crosscultural/coffee-coffee-coffee-2/',
/crosscultural/culture-mash/: 'http://www.threadless.com/crosscultural/culture-mash/',
/crosscultural/ethnic-manic/: 'http://www.threadless.com/crosscultural/ethnic-manic/',
/crosscultural/feathers-fall-2/: 'http://www.threadless.com/crosscultural/feathers-fall-2/',
/crosscultural/folclor-4/: 'http://www.threadless.com/crosscultural/folclor-4/',
/crosscultural/folksy-vikings/: 'http://www.threadless.com/crosscultural/folksy-vikings/',
/crosscultural/friendship-happiness/: 'http://www.threadless.com/crosscultural/friendship-happiness/',
/crosscultural/futuglyphics/: 'http://www.threadless.com/crosscultural/futuglyphics/',
/crosscultural/geomative/: 'http://www.threadless.com/crosscultural/geomative/',
/crosscultural/grandmas-mozes-2/: 'http://www.threadless.com/crosscultural/grandmas-mozes-2/',
/crosscultural/greek-mariology/: 'http://www.threadless.com/crosscultural/greek-mariology/',
/crosscultural/hey-5/: 'http://www.threadless.com/crosscultural/hey-5/', /crosscultural/holy-noodles/: 'http://www.threadless.com/crosscultural/holy-noodles/',
/crosscultural/hunting-seasons/: 'http://www.threadless.com/crosscultural/hunting-seasons/',
/crosscultural/its-snowing-in-the-mountains/: 'http://www.threadless.com/crosscultural/its-snowing-in-the-mountains/',
/crosscultural/legal/: 'http://www.threadless.com/crosscultural/legal/', /crosscultural/los-muertos-2/: 'http://www.threadless.com/crosscultural/los-muertos-2/',
/crosscultural/navajobots/: 'http://www.threadless.com/crosscultural/navajobots/',
/crosscultural/northern-delight/: 'http://www.threadless.com/crosscultural/northern-delight/',
/crosscultural/owl-29/: 'http://www.threadless.com/crosscultural/owl-29/', /crosscultural/paper-lanterns/: 'http://www.threadless.com/crosscultural/paper-lanterns/',
/crosscultural/pattern-revolution/: 'http://www.threadless.com/crosscultural/pattern-revolution/',
/crosscultural/patttern/: 'http://www.threadless.com/crosscultural/patttern/', /crosscultural/pixel-skull/: 'http://www.threadless.com/crosscultural/pixel-skull/',
/crosscultural/pizza-n-paris/: 'http://www.threadless.com/crosscultural/pizza-n-paris/',
/crosscultural/psychedelic-honey/: 'http://www.threadless.com/crosscultural/psychedelic-honey/',
/crosscultural/ptach-wrok-ptaetrn/: 'http://www.threadless.com/crosscultural/ptach-wrok-ptaetrn/',
/crosscultural/rapa-nui-easter-island-as-las-vegas_seamless-repea/: 'http://www.threadless.com/crosscultural/rapa-nui-easter-island-as-las-vegas_seamless-repea/',
/crosscultural/southern-color/: 'http://www.threadless.com/crosscultural/southern-color/',
/crosscultural/submission-kit/: 'http://www.threadless.com/crosscultural/submission-kit/',
/crosscultural/submissions/: 'http://www.threadless.com/crosscultural/submissions/',
/crosscultural/superbug-2/: 'http://www.threadless.com/crosscultural/superbug-2/',
/crosscultural/tasty-patterns/: 'http://www.threadless.com/crosscultural/tasty-patterns/',
/crosscultural/triangles-9/: 'http://www.threadless.com/crosscultural/triangles-9/',
/deadisland/: 'http://www.threadless.com/deadisland/', /deadisland/banoi-island/: 'http://www.threadless.com/deadisland/banoi-island/',
/deadisland/beach-babe/: 'http://www.threadless.com/deadisland/beach-babe/', /deadisland/dmd/: 'http://www.threadless.com/deadisland/dmd/',
/deadisland/greetings-from/: 'http://www.threadless.com/deadisland/greetings-from/',
/deadisland/legal/: 'http://www.threadless.com/deadisland/legal/', /deadisland/level-up-2/: 'http://www.threadless.com/deadisland/level-up-2/',
/deadisland/stran-dead/: 'http://www.threadless.com/deadisland/stran-dead/', '/deadisland/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/deadisland/submissions/?status=closed&sort=&page=1',
/deadisland/the-real-battle-begins/: 'http://www.threadless.com/deadisland/the-real-battle-begins/',
/deadisland/the-surf-is-deader-in/: 'http://www.threadless.com/deadisland/the-surf-is-deader-in/',
/digitaldefenders/: 'http://www.threadless.com/digitaldefenders/', /digitaldefenders/a-secure-site/: 'http://www.threadless.com/digitaldefenders/a-secure-site/',
/digitaldefenders/digital-adventures-2/: 'http://www.threadless.com/digitaldefenders/digital-adventures-2/',
/digitaldefenders/hope-to-a-brighter-future/: 'http://www.threadless.com/digitaldefenders/hope-to-a-brighter-future/',
/digitaldefenders/jungle-time/: 'http://www.threadless.com/digitaldefenders/jungle-time/',
/digitaldefenders/legal/: 'http://www.threadless.com/digitaldefenders/legal/', /digitaldefenders/practice-safe-browsing/: 'http://www.threadless.com/digitaldefenders/practice-safe-browsing/',
/digitaldefenders/predator-becomes-prey/: 'http://www.threadless.com/digitaldefenders/predator-becomes-prey/',
/digitaldefenders/safer-cyber-world/: 'http://www.threadless.com/digitaldefenders/safer-cyber-world/',
'/digitaldefenders/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/digitaldefenders/submissions/?status=closed&sort=&page=1',
/digitaldefenders/the-digital-defender/: 'http://www.threadless.com/digitaldefenders/the-digital-defender/',
/doghoodies/: 'http://www.threadless.com/doghoodies/', /doghoodies/legal/: 'http://www.threadless.com/doghoodies/legal/',
/doghoodies/sniffin-it/: 'http://www.threadless.com/doghoodies/sniffin-it/', '/doghoodies/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/doghoodies/submissions/?status=closed&sort=&page=1',
/doghoodies/tally-ho-2/: 'http://www.threadless.com/doghoodies/tally-ho-2/', /doghoodies/wooofpack/: 'http://www.threadless.com/doghoodies/wooofpack/',
/fallselect2013/: 'http://www.threadless.com/fallselect2013/', /fallselect2013/anchored-down/: 'http://www.threadless.com/fallselect2013/anchored-down/',
/fallselect2013/autumn-unfolds/: 'http://www.threadless.com/fallselect2013/autumn-unfolds/',
/fallselect2013/croquet/: 'http://www.threadless.com/fallselect2013/croquet/', /fallselect2013/face-line/: 'http://www.threadless.com/fallselect2013/face-line/',
/fallselect2013/fall-in-coffee/: 'http://www.threadless.com/fallselect2013/fall-in-coffee/',
/fallselect2013/feallan/: 'http://www.threadless.com/fallselect2013/feallan/', /fallselect2013/feathers-dots/: 'http://www.threadless.com/fallselect2013/feathers-dots/',
/fallselect2013/legal/: 'http://www.threadless.com/fallselect2013/legal/', /fallselect2013/maptupus/: 'http://www.threadless.com/fallselect2013/maptupus/',
/fallselect2013/may-the-workforce-be-with-you/: 'http://www.threadless.com/fallselect2013/may-the-workforce-be-with-you/',
/fallselect2013/squirrel-and-acorn-2/: 'http://www.threadless.com/fallselect2013/squirrel-and-acorn-2/',
'/fallselect2013/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/fallselect2013/submissions/?status=closed&sort=&page=1',
/fallselect2013/the-explorer/: 'http://www.threadless.com/fallselect2013/the-explorer/',
/fallselect2013/the-horseman/: 'http://www.threadless.com/fallselect2013/the-horseman/',
/fallselect2013/thunder-stripe/: 'http://www.threadless.com/fallselect2013/thunder-stripe/',
/fantasticfour/: 'http://www.threadless.com/fantasticfour/', /fantasticfour/4-for-fun/: 'http://www.threadless.com/fantasticfour/4-for-fun/',
/fantasticfour/attack-of-the-fantastic-four/: 'http://www.threadless.com/fantasticfour/attack-of-the-fantastic-four/',
/fantasticfour/fantastic-1-2-3-4/: 'http://www.threadless.com/fantasticfour/fantastic-1-2-3-4/',
/fantasticfour/fantastic-roshambo/: 'http://www.threadless.com/fantasticfour/fantastic-roshambo/',
/fantasticfour/fantasticons/: 'http://www.threadless.com/fantasticfour/fantasticons/',
/fantasticfour/flame-off/: 'http://www.threadless.com/fantasticfour/flame-off/',
/fantasticfour/last-attack/: 'http://www.threadless.com/fantasticfour/last-attack/',
/fantasticfour/legal/: 'http://www.threadless.com/fantasticfour/legal/', /fantasticfour/meanwhile-on-2/: 'http://www.threadless.com/fantasticfour/meanwhile-on-2/',
/fantasticfour/mr-fantastee/: 'http://www.threadless.com/fantasticfour/mr-fantastee/',
'/fantasticfour/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/fantasticfour/submissions/?status=closed&sort=&page=1',
/fantasticfour/the-fantastic-bunch/: 'http://www.threadless.com/fantasticfour/the-fantastic-bunch/',
/fantasticfour/the-fantastic-skyfall/: 'http://www.threadless.com/fantasticfour/the-fantastic-skyfall/',
/fantasticfour/the-powers-of-four-4/: 'http://www.threadless.com/fantasticfour/the-powers-of-four-4/',
/fantasticfour/the_thing-2/: 'http://www.threadless.com/fantasticfour/the_thing-2/',
/forgot/: 'http://www.threadless.com/forgot/', /fosterthepeople/: 'http://www.threadless.com/fosterthepeople/',
/fosterthepeople/king-of-the-city/: 'http://www.threadless.com/fosterthepeople/king-of-the-city/',
/fosterthepeople/legal/: 'http://www.threadless.com/fosterthepeople/legal/', /fosterthepeople/pumped-up-kicks-2/: 'http://www.threadless.com/fosterthepeople/pumped-up-kicks-2/',
/fosterthepeople/riot-wave/: 'http://www.threadless.com/fosterthepeople/riot-wave/',
'/fosterthepeople/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/fosterthepeople/submissions/?status=closed&sort=&page=1',
/fosterthepeople/torches-2/: 'http://www.threadless.com/fosterthepeople/torches-2/',
/fragglerock/: 'http://www.threadless.com/fragglerock/', /fragglerock/appetite-for-radishes/: 'http://www.threadless.com/fragglerock/appetite-for-radishes/',
/fragglerock/king-of-the-universe/: 'http://www.threadless.com/fragglerock/king-of-the-universe/',
/fragglerock/legal/: 'http://www.threadless.com/fragglerock/legal/', /fragglerock/outer-space-post/: 'http://www.threadless.com/fragglerock/outer-space-post/',
'/fragglerock/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/fragglerock/submissions/?status=closed&sort=&page=1',
/greetingcards/: 'http://www.threadless.com/greetingcards/', /greetingcards/flying-colors-2/: 'http://www.threadless.com/greetingcards/flying-colors-2/',
/greetingcards/i-have-butterfies/: 'http://www.threadless.com/greetingcards/i-have-butterfies/',
/greetingcards/legal/: 'http://www.threadless.com/greetingcards/legal/', /greetingcards/only-you-and-my-cat/: 'http://www.threadless.com/greetingcards/only-you-and-my-cat/',
'/greetingcards/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/greetingcards/submissions/?status=closed&sort=&page=1',
/guitars/: 'http://www.threadless.com/guitars/', /guitars/13th-serpent/: 'http://www.threadless.com/guitars/13th-serpent/',
/guitars/legal/: 'http://www.threadless.com/guitars/legal/', '/guitars/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/guitars/submissions/?status=closed&sort=&page=1',
/guitars/swirly-tunes/: 'http://www.threadless.com/guitars/swirly-tunes/', /help: 'https://www.threadless.com/help',
/home-and-kitchen: 'http://www.threadless.com/home-and-kitchen', /impressionism/: 'http://www.threadless.com/impressionism/',
/impressionism/a-robots-impression/: 'http://www.threadless.com/impressionism/a-robots-impression/',
/impressionism/asiatic-lilly/: 'http://www.threadless.com/impressionism/asiatic-lilly/',
/impressionism/black-cat-big-city/: 'http://www.threadless.com/impressionism/black-cat-big-city/',
/impressionism/blair-waldorf-reading-a-novel-b-w/: 'http://www.threadless.com/impressionism/blair-waldorf-reading-a-novel-b-w/',
/impressionism/bloody-sunset/: 'http://www.threadless.com/impressionism/bloody-sunset/',
/impressionism/cosmic-cannonball/: 'http://www.threadless.com/impressionism/cosmic-cannonball/',
/impressionism/cycling-around-paris/: 'http://www.threadless.com/impressionism/cycling-around-paris/',
/impressionism/dark-dancer/: 'http://www.threadless.com/impressionism/dark-dancer/',
/impressionism/during-the-war/: 'http://www.threadless.com/impressionism/during-the-war/',
/impressionism/echoes-etched/: 'http://www.threadless.com/impressionism/echoes-etched/',
/impressionism/espressionism/: 'http://www.threadless.com/impressionism/espressionism/',
/impressionism/feel-fresh/: 'http://www.threadless.com/impressionism/feel-fresh/',
/impressionism/foxy-lady-5/: 'http://www.threadless.com/impressionism/foxy-lady-5/',
/impressionism/free-flying-2/: 'http://www.threadless.com/impressionism/free-flying-2/',
/impressionism/free-your-mind-6/: 'http://www.threadless.com/impressionism/free-your-mind-6/',
/impressionism/frustrations/: 'http://www.threadless.com/impressionism/frustrations/',
/impressionism/gorgeous-poet/: 'http://www.threadless.com/impressionism/gorgeous-poet/',
/impressionism/gustaves-garcon/: 'http://www.threadless.com/impressionism/gustaves-garcon/',
/impressionism/lady-deer-2-2/: 'http://www.threadless.com/impressionism/lady-deer-2-2/',
/impressionism/legal/: 'http://www.threadless.com/impressionism/legal/', /impressionism/mad-world-3/: 'http://www.threadless.com/impressionism/mad-world-3/',
/impressionism/me-neither-2/: 'http://www.threadless.com/impressionism/me-neither-2/',
/impressionism/megi/: 'http://www.threadless.com/impressionism/megi/', /impressionism/melt-4/: 'http://www.threadless.com/impressionism/melt-4/',
/impressionism/night-in-paris/: 'http://www.threadless.com/impressionism/night-in-paris/',
/impressionism/oh-lady-deer/: 'http://www.threadless.com/impressionism/oh-lady-deer/',
/impressionism/raspberry-beret-i-think-i-love-her/: 'http://www.threadless.com/impressionism/raspberry-beret-i-think-i-love-her/',
/impressionism/renaissax/: 'http://www.threadless.com/impressionism/renaissax/',
/impressionism/resting-2/: 'http://www.threadless.com/impressionism/resting-2/',
/impressionism/spotlight-on-design/: 'http://www.threadless.com/impressionism/spotlight-on-design/',
/impressionism/spotting-butterflies/: 'http://www.threadless.com/impressionism/spotting-butterflies/',
/impressionism/stars-in-flight/: 'http://www.threadless.com/impressionism/stars-in-flight/',
/impressionism/submission-kit/: 'http://www.threadless.com/impressionism/submission-kit/',
/impressionism/submissions/: 'http://www.threadless.com/impressionism/submissions/',
/impressionism/the-dream-impression/: 'http://www.threadless.com/impressionism/the-dream-impression/',
/impressionism/the-fox-f/: 'http://www.threadless.com/impressionism/the-fox-f/',
/impressionism/the-harvest-moon/: 'http://www.threadless.com/impressionism/the-harvest-moon/',
/impressionism/the-modern/: 'http://www.threadless.com/impressionism/the-modern/',
/impressionism/the-sea-of-debt/: 'http://www.threadless.com/impressionism/the-sea-of-debt/',
/impressionism/the-woman-in-white-with-guitar/: 'http://www.threadless.com/impressionism/the-woman-in-white-with-guitar/',
/impressionism/the-zebra-2/: 'http://www.threadless.com/impressionism/the-zebra-2/',
/impressionism/theres-only-color-light/: 'http://www.threadless.com/impressionism/theres-only-color-light/',
/impressionism/timely-fashion/: 'http://www.threadless.com/impressionism/timely-fashion/',
/impressionism/untitled-11/: 'http://www.threadless.com/impressionism/untitled-11/',
/impressionism/vincent-van-hubert/: 'http://www.threadless.com/impressionism/vincent-van-hubert/',
/impressionism/vive-le-rock/: 'http://www.threadless.com/impressionism/vive-le-rock/',
/impressionism/when-things-go-up-in-smoke/: 'http://www.threadless.com/impressionism/when-things-go-up-in-smoke/',
/info: 'http://www.threadless.com/info', /info/: 'http://www.threadless.com/info/',
/info/about/: 'http://www.threadless.com/info/about/', /info/blog: 'http://www.threadless.com/info/blog',
/info/blog/: 'http://www.threadless.com/info/blog/', /info/blog/creative: 'http://www.threadless.com/info/blog/creative',
/info/blog/customer-service: 'http://www.threadless.com/info/blog/customer-service',
/info/blog/founder: 'http://www.threadless.com/info/blog/founder', /info/blog/marketing: 'http://www.threadless.com/info/blog/marketing',
/info/blog/news: 'http://www.threadless.com/info/blog/news', /info/blog/press: 'http://www.threadless.com/info/blog/press',
/info/blog/production: 'http://www.threadless.com/info/blog/production', /info/blog/technology: 'http://www.threadless.com/info/blog/technology',
/info/blog/warehouse: 'http://www.threadless.com/info/blog/warehouse', /info/jobs: 'http://www.threadless.com/info/jobs',
/info/jobs/: 'http://www.threadless.com/info/jobs/', /info/privacy: 'http://www.threadless.com/info/privacy',
/info/retail: 'http://www.threadless.com/info/retail', /info/retail/: 'http://www.threadless.com/info/retail/',
/info/terms: 'http://www.threadless.com/info/terms', /iphonecases/: 'http://www.threadless.com/iphonecases/',
/iphonecases/blue-forest/: 'http://www.threadless.com/iphonecases/blue-forest/',
/iphonecases/exploration-2/: 'http://www.threadless.com/iphonecases/exploration-2/',
/iphonecases/generations-dinner-3/: 'http://www.threadless.com/iphonecases/generations-dinner-3/',
/iphonecases/in-moments-of-waiting/: 'http://www.threadless.com/iphonecases/in-moments-of-waiting/',
/iphonecases/legal/: 'http://www.threadless.com/iphonecases/legal/', /iphonecases/pull-2/: 'http://www.threadless.com/iphonecases/pull-2/',
/iphonecases/rorschach-owl-2/: 'http://www.threadless.com/iphonecases/rorschach-owl-2/',
/iphonecases/siren-3/: 'http://www.threadless.com/iphonecases/siren-3/', /iphonecases/smile-13/: 'http://www.threadless.com/iphonecases/smile-13/',
'/iphonecases/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/iphonecases/submissions/?status=closed&sort=&page=1',
/iphonecases/thinking-time/: 'http://www.threadless.com/iphonecases/thinking-time/',
/iphonecases/wolfs-song/: 'http://www.threadless.com/iphonecases/wolfs-song/', /ironman/: 'http://www.threadless.com/ironman/',
/ironman/bleeding-edge-armor-2/: 'http://www.threadless.com/ironman/bleeding-edge-armor-2/',
/ironman/legal/: 'http://www.threadless.com/ironman/legal/', /ironman/powerful-armor/: 'http://www.threadless.com/ironman/powerful-armor/',
/ironman/rocket-3/: 'http://www.threadless.com/ironman/rocket-3/', '/ironman/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/ironman/submissions/?status=closed&sort=&page=1',
/ironman/through-the-clouds/: 'http://www.threadless.com/ironman/through-the-clouds/',
/jekyllandhyde/: 'http://www.threadless.com/jekyllandhyde/', /jekyllandhyde/classics-series-ii/: 'http://www.threadless.com/jekyllandhyde/classics-series-ii/',
/jekyllandhyde/classics-series/: 'http://www.threadless.com/jekyllandhyde/classics-series/',
/jekyllandhyde/dr-orange-mr-apple/: 'http://www.threadless.com/jekyllandhyde/dr-orange-mr-apple/',
/jekyllandhyde/duality-3/: 'http://www.threadless.com/jekyllandhyde/duality-3/',
/jekyllandhyde/legal/: 'http://www.threadless.com/jekyllandhyde/legal/', /jekyllandhyde/now-2/: 'http://www.threadless.com/jekyllandhyde/now-2/',
'/jekyllandhyde/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/jekyllandhyde/submissions/?status=closed&sort=&page=1',
/jekyllandhyde/the-formula-2/: 'http://www.threadless.com/jekyllandhyde/the-formula-2/',
/jekyllandhyde/two-sides/: 'http://www.threadless.com/jekyllandhyde/two-sides/',
/join: 'http://www.threadless.com/join', /kidpresident/: 'http://www.threadless.com/kidpresident/',
/kidpresident/breakdancing-earth/: 'http://www.threadless.com/kidpresident/breakdancing-earth/',
/kidpresident/dancing-robots/: 'http://www.threadless.com/kidpresident/dancing-robots/',
/kidpresident/kid-president-2040/: 'http://www.threadless.com/kidpresident/kid-president-2040/',
/kidpresident/legal/: 'http://www.threadless.com/kidpresident/legal/', '/kidpresident/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/kidpresident/submissions/?status=closed&sort=&page=1',
/kidpresident/the-world-wants-you-to-be-awesome/: 'http://www.threadless.com/kidpresident/the-world-wants-you-to-be-awesome/',
/kids-stuff-sale: 'http://www.threadless.com/kids-stuff-sale', /loftwork/: 'http://www.threadless.com/loftwork/',
/loftwork/against-the-moon/: 'http://www.threadless.com/loftwork/against-the-moon/',
/loftwork/barzilla/: 'http://www.threadless.com/loftwork/barzilla/', /loftwork/dont-let-me-be-misunderstood/: 'http://www.threadless.com/loftwork/dont-let-me-be-misunderstood/',
/loftwork/ganesh-connection-2/: 'http://www.threadless.com/loftwork/ganesh-connection-2/',
/loftwork/hello-10/: 'http://www.threadless.com/loftwork/hello-10/', /loftwork/iconic-friends/: 'http://www.threadless.com/loftwork/iconic-friends/',
/loftwork/im-your-biggest-fan/: 'http://www.threadless.com/loftwork/im-your-biggest-fan/',
/loftwork/japanese-rodeo/: 'http://www.threadless.com/loftwork/japanese-rodeo/',
/loftwork/kabuki-abe/: 'http://www.threadless.com/loftwork/kabuki-abe/', /loftwork/konnichiwa-2/: 'http://www.threadless.com/loftwork/konnichiwa-2/',
/loftwork/legal/: 'http://www.threadless.com/loftwork/legal/', /loftwork/peace-to-meet-you/: 'http://www.threadless.com/loftwork/peace-to-meet-you/',
/loftwork/submission-19/: 'http://www.threadless.com/loftwork/submission-19/', '/loftwork/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/loftwork/submissions/?status=closed&sort=&page=1',
/loftwork/the-great-difference/: 'http://www.threadless.com/loftwork/the-great-difference/',
/loftwork/the-rising-sunset/: 'http://www.threadless.com/loftwork/the-rising-sunset/',
/loftwork/the-tourist/: 'http://www.threadless.com/loftwork/the-tourist/', /loftwork/ukiyo-e-hipster/: 'http://www.threadless.com/loftwork/ukiyo-e-hipster/',
/login: 'http://www.threadless.com/login', /login/: 'https://www.threadless.com/login/',
/made: 'http://www.threadless.com/made', /made/aaron-jay/: 'http://www.threadless.com/made/aaron-jay/',
/made/anna-maria-jung: 'http://www.threadless.com/made/anna-maria-jung', /made/brian-cook: 'http://www.threadless.com/made/brian-cook',
/made/edno-pereira-jr: 'http://www.threadless.com/made/edno-pereira-jr', /made/eric-fan: 'http://www.threadless.com/made/eric-fan',
/made/fatheed: 'http://www.threadless.com/made/fatheed', /made/fleck: 'http://www.threadless.com/made/fleck',
/made/glenn-jones: 'http://www.threadless.com/made/glenn-jones', /made/gumbolimbo: 'http://www.threadless.com/made/gumbolimbo',
/made/ilovedoodle: 'http://www.threadless.com/made/ilovedoodle', /made/jaco-haasbroek: 'http://www.threadless.com/made/jaco-haasbroek',
/made/jeremyville: 'http://www.threadless.com/made/jeremyville', /made/jublin: 'http://www.threadless.com/made/jublin',
/made/katie-campbell/: 'http://www.threadless.com/made/katie-campbell/', /made/kevin-tong: 'http://www.threadless.com/made/kevin-tong',
/made/lora-zombie: 'http://www.threadless.com/made/lora-zombie', /made/mary-kate-mcdevitt: 'http://www.threadless.com/made/mary-kate-mcdevitt',
/made/mathiole: 'http://www.threadless.com/made/mathiole', /made/meg-hunt: 'http://www.threadless.com/made/meg-hunt',
/made/mitch-loidolt: 'http://www.threadless.com/made/mitch-loidolt', /made/murraymullet: 'http://www.threadless.com/made/murraymullet',
/made/nestor-gomez: 'http://www.threadless.com/made/nestor-gomez', /made/radiomode: 'http://www.threadless.com/made/radiomode',
/made/sirmitchell: 'http://www.threadless.com/made/sirmitchell', /made/sonmi: 'http://www.threadless.com/made/sonmi',
/made/studiofolk: 'http://www.threadless.com/made/studiofolk', /made/will-bryant: 'http://www.threadless.com/made/will-bryant',
/make: 'http://www.threadless.com/make', /make/: 'http://www.threadless.com/make/',
/make/better: 'http://www.threadless.com/make/better', /make/crosscultural/add/: 'http://www.threadless.com/make/crosscultural/add/',
/make/idea: 'http://www.threadless.com/make/idea', /make/impressionism/add/: 'http://www.threadless.com/make/impressionism/add/',
/make/more: 'http://www.threadless.com/make/more', /make/musicforrelief/add/: 'http://www.threadless.com/make/musicforrelief/add/',
/make/nsft/add/: 'http://www.threadless.com/make/nsft/add/', /make/past/: 'http://www.threadless.com/make/past/',
/make/riotfest/add/: 'http://www.threadless.com/make/riotfest/add/', /make/submit: 'http://www.threadless.com/make/submit',
/make/submit/: 'http://www.threadless.com/make/submit/', /make/threadless/add/: 'http://www.threadless.com/make/threadless/add/',
/marvel-superheroes: 'http://www.threadless.com/marvel-superheroes', /marvel-superheroes/iron-man: 'http://www.threadless.com/marvel-superheroes/iron-man',
/marvel-superheroes/spiderman: 'http://www.threadless.com/marvel-superheroes/spiderman',
/mickey/: 'http://www.threadless.com/mickey/', /mickey/a-peace-propaganda/: 'http://www.threadless.com/mickey/a-peace-propaganda/',
/mickey/burning-the-midnight-oil/: 'http://www.threadless.com/mickey/burning-the-midnight-oil/',
/mickey/celebration-2/: 'http://www.threadless.com/mickey/celebration-2/', /mickey/chesse-2/: 'http://www.threadless.com/mickey/chesse-2/',
/mickey/fantasia-brooms/: 'http://www.threadless.com/mickey/fantasia-brooms/', /mickey/forever-young-3/: 'http://www.threadless.com/mickey/forever-young-3/',
/mickey/legal/: 'http://www.threadless.com/mickey/legal/', /mickey/mickey-1928/: 'http://www.threadless.com/mickey/mickey-1928/',
/mickey/mickey-gets-art-schooled/: 'http://www.threadless.com/mickey/mickey-gets-art-schooled/',
/mickey/missin/: 'http://www.threadless.com/mickey/missin/', /mickey/modern-mickey-2/: 'http://www.threadless.com/mickey/modern-mickey-2/',
/mickey/mouse-3/: 'http://www.threadless.com/mickey/mouse-3/', /mickey/must-be-this-tall-to-ride/: 'http://www.threadless.com/mickey/must-be-this-tall-to-ride/',
/mickey/planning-the-future/: 'http://www.threadless.com/mickey/planning-the-future/',
/mickey/please-stand-by-2/: 'http://www.threadless.com/mickey/please-stand-by-2/',
/mickey/pluto-is-a-dog/: 'http://www.threadless.com/mickey/pluto-is-a-dog/', /mickey/quarter-of-mickey/: 'http://www.threadless.com/mickey/quarter-of-mickey/',
/mickey/steamboat-mickey-2/: 'http://www.threadless.com/mickey/steamboat-mickey-2/',
'/mickey/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/mickey/submissions/?status=closed&sort=&page=1',
/mickey/theres-a-new-magician-in-town/: 'http://www.threadless.com/mickey/theres-a-new-magician-in-town/',
/mickey/true-friendship/: 'http://www.threadless.com/mickey/true-friendship/', /monstersinc/: 'http://www.threadless.com/monstersinc/',
/monstersinc/child-alert/: 'http://www.threadless.com/monstersinc/child-alert/',
/monstersinc/i-love-monsters/: 'http://www.threadless.com/monstersinc/i-love-monsters/',
/monstersinc/legal/: 'http://www.threadless.com/monstersinc/legal/', /monstersinc/mike-wazowski-9/: 'http://www.threadless.com/monstersinc/mike-wazowski-9/',
'/monstersinc/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/monstersinc/submissions/?status=closed&sort=&page=1',
/monstersinc/which-door/: 'http://www.threadless.com/monstersinc/which-door/', /musicforrelief/: 'http://www.threadless.com/musicforrelief/',
/musicforrelief/a-warriors-stare/: 'http://www.threadless.com/musicforrelief/a-warriors-stare/',
/musicforrelief/abstract-lion/: 'http://www.threadless.com/musicforrelief/abstract-lion/',
/musicforrelief/all-creatures-great-and-small-make-up-the-forest/: 'http://www.threadless.com/musicforrelief/all-creatures-great-and-small-make-up-the-forest/',
/musicforrelief/amazon-99/: 'http://www.threadless.com/musicforrelief/amazon-99/',
/musicforrelief/animal-tree/: 'http://www.threadless.com/musicforrelief/animal-tree/',
/musicforrelief/bear-up/: 'http://www.threadless.com/musicforrelief/bear-up/', /musicforrelief/blue-kaa/: 'http://www.threadless.com/musicforrelief/blue-kaa/',
/musicforrelief/cloudy-owl/: 'http://www.threadless.com/musicforrelief/cloudy-owl/',
/musicforrelief/coming-up-roses/: 'http://www.threadless.com/musicforrelief/coming-up-roses/',
/musicforrelief/country-rat/: 'http://www.threadless.com/musicforrelief/country-rat/',
/musicforrelief/creature-of-the-forest/: 'http://www.threadless.com/musicforrelief/creature-of-the-forest/',
/musicforrelief/deer-nature-3/: 'http://www.threadless.com/musicforrelief/deer-nature-3/',
/musicforrelief/eagle-is-in-me/: 'http://www.threadless.com/musicforrelief/eagle-is-in-me/',
/musicforrelief/electro-deer-2/: 'http://www.threadless.com/musicforrelief/electro-deer-2/',
/musicforrelief/eyes-on-you-2/: 'http://www.threadless.com/musicforrelief/eyes-on-you-2/',
/musicforrelief/fireflies-6/: 'http://www.threadless.com/musicforrelief/fireflies-6/',
/musicforrelief/humming-bird-2/: 'http://www.threadless.com/musicforrelief/humming-bird-2/',
/musicforrelief/insectia/: 'http://www.threadless.com/musicforrelief/insectia/',
/musicforrelief/irises-in-forest/: 'http://www.threadless.com/musicforrelief/irises-in-forest/',
/musicforrelief/jungle-blues/: 'http://www.threadless.com/musicforrelief/jungle-blues/',
/musicforrelief/kudu/: 'http://www.threadless.com/musicforrelief/kudu/', /musicforrelief/lady-deer/: 'http://www.threadless.com/musicforrelief/lady-deer/',
/musicforrelief/leave-me-2/: 'http://www.threadless.com/musicforrelief/leave-me-2/',
/musicforrelief/legal/: 'http://www.threadless.com/musicforrelief/legal/', /musicforrelief/mr-zebra/: 'http://www.threadless.com/musicforrelief/mr-zebra/',
/musicforrelief/mrigottama/: 'http://www.threadless.com/musicforrelief/mrigottama/',
/musicforrelief/music-of-the-forest/: 'http://www.threadless.com/musicforrelief/music-of-the-forest/',
/musicforrelief/nature-reflected/: 'http://www.threadless.com/musicforrelief/nature-reflected/',
/musicforrelief/night-vision-2-2/: 'http://www.threadless.com/musicforrelief/night-vision-2-2/',
/musicforrelief/night-vision-3/: 'http://www.threadless.com/musicforrelief/night-vision-3/',
/musicforrelief/our-forest-friends/: 'http://www.threadless.com/musicforrelief/our-forest-friends/',
/musicforrelief/panda-iscoolskull/: 'http://www.threadless.com/musicforrelief/panda-iscoolskull/',
/musicforrelief/quilted-forest/: 'http://www.threadless.com/musicforrelief/quilted-forest/',
/musicforrelief/save-pandas/: 'http://www.threadless.com/musicforrelief/save-pandas/',
/musicforrelief/she-wolf-4/: 'http://www.threadless.com/musicforrelief/she-wolf-4/',
/musicforrelief/sister-bear/: 'http://www.threadless.com/musicforrelief/sister-bear/',
/musicforrelief/sketch-of-nature/: 'http://www.threadless.com/musicforrelief/sketch-of-nature/',
/musicforrelief/song-of-the-forest/: 'http://www.threadless.com/musicforrelief/song-of-the-forest/',
/musicforrelief/submission-kit/: 'http://www.threadless.com/musicforrelief/submission-kit/',
/musicforrelief/submissions/: 'http://www.threadless.com/musicforrelief/submissions/',
/musicforrelief/the-elk/: 'http://www.threadless.com/musicforrelief/the-elk/', /musicforrelief/the-owls-are-not-what-they-seem/: 'http://www.threadless.com/musicforrelief/the-owls-are-not-what-they-seem/',
/musicforrelief/thieves-in-the-night/: 'http://www.threadless.com/musicforrelief/thieves-in-the-night/',
/musicforrelief/tiger-22/: 'http://www.threadless.com/musicforrelief/tiger-22/',
/musicforrelief/unlikely-home/: 'http://www.threadless.com/musicforrelief/unlikely-home/',
/musicforrelief/water-colour-dragonfly/: 'http://www.threadless.com/musicforrelief/water-colour-dragonfly/',
/musicforrelief/we-are-the-forest/: 'http://www.threadless.com/musicforrelief/we-are-the-forest/',
/musicforrelief/wild-wolf-3/: 'http://www.threadless.com/musicforrelief/wild-wolf-3/',
/musicforrelief/winter-fox/: 'http://www.threadless.com/musicforrelief/winter-fox/',
/musicforrelief/woodland-fart/: 'http://www.threadless.com/musicforrelief/woodland-fart/',
/newartists/: 'http://www.threadless.com/newartists/', /newartists/legal/: 'http://www.threadless.com/newartists/legal/',
/newartists/stop-please/: 'http://www.threadless.com/newartists/stop-please/', '/newartists/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/newartists/submissions/?status=closed&sort=&page=1',
/nightmare: 'http://www.threadless.com/nightmare', /nsft/: 'http://www.threadless.com/nsft/',
/nsft/legal/: 'http://www.threadless.com/nsft/legal/', /nsft/submission-kit/: 'http://www.threadless.com/nsft/submission-kit/',
/nsft/submissions/: 'http://www.threadless.com/nsft/submissions/', /nsft/the-last-man/: 'http://www.threadless.com/nsft/the-last-man/',
/oddcouples/: 'http://www.threadless.com/oddcouples/', /oddcouples/a-tragic-end-to-the-story/: 'http://www.threadless.com/oddcouples/a-tragic-end-to-the-story/',
/oddcouples/fishing-trip-roman-pirate/: 'http://www.threadless.com/oddcouples/fishing-trip-roman-pirate/',
/oddcouples/legal/: 'http://www.threadless.com/oddcouples/legal/', /oddcouples/ninja-vs-balloon-dogs/: 'http://www.threadless.com/oddcouples/ninja-vs-balloon-dogs/',
/oddcouples/potatocat/: 'http://www.threadless.com/oddcouples/potatocat/', /oddcouples/rain-bros/: 'http://www.threadless.com/oddcouples/rain-bros/',
/oddcouples/science-meets-legend/: 'http://www.threadless.com/oddcouples/science-meets-legend/',
/oddcouples/square-the-space-up/: 'http://www.threadless.com/oddcouples/square-the-space-up/',
'/oddcouples/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/oddcouples/submissions/?status=closed&sort=&page=1',
/oddcouples/the-chosen-one/: 'http://www.threadless.com/oddcouples/the-chosen-one/',
/oddcouples/the-hound-of-baker-street/: 'http://www.threadless.com/oddcouples/the-hound-of-baker-street/',
/oddcouples/the-quantum-buddies/: 'http://www.threadless.com/oddcouples/the-quantum-buddies/',
/oddcouples/you-messed-with-the-wrong-fields/: 'http://www.threadless.com/oddcouples/you-messed-with-the-wrong-fields/',
/oddcouples/zombie-supremacy/: 'http://www.threadless.com/oddcouples/zombie-supremacy/',
/orderstatus: 'https://www.threadless.com/orderstatus', /orderstatus/: 'http://www.threadless.com/orderstatus/',
/originalmonsters/: 'http://www.threadless.com/originalmonsters/', /originalmonsters/away-we-go/: 'http://www.threadless.com/originalmonsters/away-we-go/',
/originalmonsters/el-diablo/: 'http://www.threadless.com/originalmonsters/el-diablo/',
/originalmonsters/grumpy-cat-monster/: 'http://www.threadless.com/originalmonsters/grumpy-cat-monster/',
/originalmonsters/he-with-the-peculiar-voice/: 'http://www.threadless.com/originalmonsters/he-with-the-peculiar-voice/',
/originalmonsters/hellbat/: 'http://www.threadless.com/originalmonsters/hellbat/',
/originalmonsters/it-wasnt-the-zombies/: 'http://www.threadless.com/originalmonsters/it-wasnt-the-zombies/',
/originalmonsters/legal/: 'http://www.threadless.com/originalmonsters/legal/', /originalmonsters/monster-king-2/: 'http://www.threadless.com/originalmonsters/monster-king-2/',
/originalmonsters/monsters-ball/: 'http://www.threadless.com/originalmonsters/monsters-ball/',
/originalmonsters/parasite-4/: 'http://www.threadless.com/originalmonsters/parasite-4/',
/originalmonsters/rakshasa/: 'http://www.threadless.com/originalmonsters/rakshasa/',
/originalmonsters/revenge-of-the-peel/: 'http://www.threadless.com/originalmonsters/revenge-of-the-peel/',
/originalmonsters/sleepy-head-2/: 'http://www.threadless.com/originalmonsters/sleepy-head-2/',
/originalmonsters/social-media-monster-2/: 'http://www.threadless.com/originalmonsters/social-media-monster-2/',
/originalmonsters/social-media-monster-3/: 'http://www.threadless.com/originalmonsters/social-media-monster-3/',
'/originalmonsters/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/originalmonsters/submissions/?status=closed&sort=&page=1',
/originalmonsters/swamp-thing/: 'http://www.threadless.com/originalmonsters/swamp-thing/',
/originalmonsters/the-great-white-stallion/: 'http://www.threadless.com/originalmonsters/the-great-white-stallion/',
/originalmonsters/the-king-6/: 'http://www.threadless.com/originalmonsters/the-king-6/',
/originalmonsters/the-thesaurus/: 'http://www.threadless.com/originalmonsters/the-thesaurus/',
/otherstuff: 'http://www.threadless.com/otherstuff', /oxymorons/: 'http://www.threadless.com/oxymorons/',
/oxymorons/99-done/: 'http://www.threadless.com/oxymorons/99-done/', /oxymorons/a-peaceful-hell/: 'http://www.threadless.com/oxymorons/a-peaceful-hell/',
/oxymorons/a-sad-smile/: 'http://www.threadless.com/oxymorons/a-sad-smile/', /oxymorons/adult_children/: 'http://www.threadless.com/oxymorons/adult_children/',
/oxymorons/bad-luck-4/: 'http://www.threadless.com/oxymorons/bad-luck-4/', /oxymorons/beautiful-disaster/: 'http://www.threadless.com/oxymorons/beautiful-disaster/',
/oxymorons/beware-8/: 'http://www.threadless.com/oxymorons/beware-8/', /oxymorons/bombing-for-peace-2/: 'http://www.threadless.com/oxymorons/bombing-for-peace-2/',
/oxymorons/butt-headbutt-2/: 'http://www.threadless.com/oxymorons/butt-headbutt-2/',
/oxymorons/catfish-11/: 'http://www.threadless.com/oxymorons/catfish-11/', /oxymorons/clearly-confused-2/: 'http://www.threadless.com/oxymorons/clearly-confused-2/',
/oxymorons/clearly-confused-clearly-misunderstood/: 'http://www.threadless.com/oxymorons/clearly-confused-clearly-misunderstood/',
/oxymorons/clearly-misunderstood/: 'http://www.threadless.com/oxymorons/clearly-misunderstood/',
/oxymorons/co_spicuously-abse_t/: 'http://www.threadless.com/oxymorons/co_spicuously-abse_t/',
/oxymorons/conspicuous-absence/: 'http://www.threadless.com/oxymorons/conspicuous-absence/',
/oxymorons/disgustingly-beautiful/: 'http://www.threadless.com/oxymorons/disgustingly-beautiful/',
/oxymorons/drawing-a-blank/: 'http://www.threadless.com/oxymorons/drawing-a-blank/',
/oxymorons/elephant-egg/: 'http://www.threadless.com/oxymorons/elephant-egg/', /oxymorons/eureh-eeeuuurrh/: 'http://www.threadless.com/oxymorons/eureh-eeeuuurrh/',
/oxymorons/even-odds/: 'http://www.threadless.com/oxymorons/even-odds/', /oxymorons/fancy-rat/: 'http://www.threadless.com/oxymorons/fancy-rat/',
/oxymorons/freedom-bound/: 'http://www.threadless.com/oxymorons/freedom-bound/',
/oxymorons/freezer-burn-3/: 'http://www.threadless.com/oxymorons/freezer-burn-3/',
/oxymorons/fuzzy-logic/: 'http://www.threadless.com/oxymorons/fuzzy-logic/', /oxymorons/giant-bonsai-2/: 'http://www.threadless.com/oxymorons/giant-bonsai-2/',
/oxymorons/heavy-diet/: 'http://www.threadless.com/oxymorons/heavy-diet/', /oxymorons/holy-shit/: 'http://www.threadless.com/oxymorons/holy-shit/',
/oxymorons/holy-war-2/: 'http://www.threadless.com/oxymorons/holy-war-2/', /oxymorons/jumbo-shimp/: 'http://www.threadless.com/oxymorons/jumbo-shimp/',
/oxymorons/just-act-natural/: 'http://www.threadless.com/oxymorons/just-act-natural/',
/oxymorons/lead-balloon/: 'http://www.threadless.com/oxymorons/lead-balloon/', /oxymorons/legal/: 'http://www.threadless.com/oxymorons/legal/',
/oxymorons/less-is-more-6/: 'http://www.threadless.com/oxymorons/less-is-more-6/',
/oxymorons/little-metropolis/: 'http://www.threadless.com/oxymorons/little-metropolis/',
/oxymorons/living-dead-is-pretty-ugly/: 'http://www.threadless.com/oxymorons/living-dead-is-pretty-ugly/',
/oxymorons/living-death/: 'http://www.threadless.com/oxymorons/living-death/', /oxymorons/oddly-even/: 'http://www.threadless.com/oxymorons/oddly-even/',
/oxymorons/oxymoron-organized-mess/: 'http://www.threadless.com/oxymorons/oxymoron-organized-mess/',
/oxymorons/peace-through-superior-firepower/: 'http://www.threadless.com/oxymorons/peace-through-superior-firepower/',
/oxymorons/pg13-horror-2/: 'http://www.threadless.com/oxymorons/pg13-horror-2/',
/oxymorons/pretty-ugly-2/: 'http://www.threadless.com/oxymorons/pretty-ugly-2/',
/oxymorons/quiet-storm-2/: 'http://www.threadless.com/oxymorons/quiet-storm-2/',
/oxymorons/rock-me-amadeus/: 'http://www.threadless.com/oxymorons/rock-me-amadeus/',
/oxymorons/rough-embrace/: 'http://www.threadless.com/oxymorons/rough-embrace/',
/oxymorons/same-difference-3/: 'http://www.threadless.com/oxymorons/same-difference-3/',
/oxymorons/seasick-pelican-2/: 'http://www.threadless.com/oxymorons/seasick-pelican-2/',
/oxymorons/seriously-funny-3/: 'http://www.threadless.com/oxymorons/seriously-funny-3/',
/oxymorons/submissions/: 'http://www.threadless.com/oxymorons/submissions/', /oxymorons/sun-shower/: 'http://www.threadless.com/oxymorons/sun-shower/',
/oxymorons/sweet-sorrow/: 'http://www.threadless.com/oxymorons/sweet-sorrow/', /oxymorons/the-greatest-time/: 'http://www.threadless.com/oxymorons/the-greatest-time/',
/oxymorons/the-sound-of-silence/: 'http://www.threadless.com/oxymorons/the-sound-of-silence/',
/oxymorons/tough-marshmallow/: 'http://www.threadless.com/oxymorons/tough-marshmallow/',
/oxymorons/virtual-reality-2/: 'http://www.threadless.com/oxymorons/virtual-reality-2/',
/oxymorons/voluntary-imprisonment/: 'http://www.threadless.com/oxymorons/voluntary-imprisonment/',
/oxymorons/voodoo-science/: 'http://www.threadless.com/oxymorons/voodoo-science/',
/oxymorons/work-party/: 'http://www.threadless.com/oxymorons/work-party/', /oxymorons/yolo-skeleton/: 'http://www.threadless.com/oxymorons/yolo-skeleton/',
/path/: 'http://www.threadless.com/path/', /path/barry-the-sloth/: 'http://www.threadless.com/path/barry-the-sloth/',
/path/bo-chan/: 'http://www.threadless.com/path/bo-chan/', /path/bunnies-2/: 'http://www.threadless.com/path/bunnies-2/',
/path/catstickers/: 'http://www.threadless.com/path/catstickers/', /path/classic-expression-from-me/: 'http://www.threadless.com/path/classic-expression-from-me/',
/path/depressed-animals/: 'http://www.threadless.com/path/depressed-animals/', /path/dogs-say-it-all/: 'http://www.threadless.com/path/dogs-say-it-all/',
/path/food-2/: 'http://www.threadless.com/path/food-2/', /path/hello-we-are-smartphone-monsters/: 'http://www.threadless.com/path/hello-we-are-smartphone-monsters/',
/path/hoot-hoot-7/: 'http://www.threadless.com/path/hoot-hoot-7/', /path/legal/: 'http://www.threadless.com/path/legal/',
/path/living-dead/: 'http://www.threadless.com/path/living-dead/', /path/mittens-doogie/: 'http://www.threadless.com/path/mittens-doogie/',
/path/retro-faces/: 'http://www.threadless.com/path/retro-faces/', /path/roro-rocket/: 'http://www.threadless.com/path/roro-rocket/',
'/path/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/path/submissions/?status=closed&sort=&page=1',
/path/typography-haircut/: 'http://www.threadless.com/path/typography-haircut/',
/path/wild-animals-2/: 'http://www.threadless.com/path/wild-animals-2/', /pick: 'http://www.threadless.com/pick',
/pick/: 'http://www.threadless.com/pick/', /pick/bestee: 'http://www.threadless.com/pick/bestee',
/pick/bestee/2007: 'http://www.threadless.com/pick/bestee/2007', /pick/bestee/2008: 'http://www.threadless.com/pick/bestee/2008',
/pick/bestee/2009: 'http://www.threadless.com/pick/bestee/2009', /pick/bestee/2010: 'http://www.threadless.com/pick/bestee/2010',
/pick/bestee/rules/: 'http://www.threadless.com/pick/bestee/rules/', /pick/critique: 'http://www.threadless.com/pick/critique',
/pick/score: 'http://www.threadless.com/pick/score', /pick/score/: 'http://www.threadless.com/pick/score/',
/pick/submissions: 'http://www.threadless.com/pick/submissions', /plainwhitets/: 'http://www.threadless.com/plainwhitets/',
/plainwhitets/bloom-under-the-sunlight/: 'http://www.threadless.com/plainwhitets/bloom-under-the-sunlight/',
/plainwhitets/bouquet-final-2/: 'http://www.threadless.com/plainwhitets/bouquet-final-2/',
/plainwhitets/breaking-free-2/: 'http://www.threadless.com/plainwhitets/breaking-free-2/',
/plainwhitets/hollywood-dreams/: 'http://www.threadless.com/plainwhitets/hollywood-dreams/',
/plainwhitets/just-duet/: 'http://www.threadless.com/plainwhitets/just-duet/', /plainwhitets/legal/: 'http://www.threadless.com/plainwhitets/legal/',
/plainwhitets/monstrous-murder-mystery/: 'http://www.threadless.com/plainwhitets/monstrous-murder-mystery/',
/plainwhitets/natural-disaster-lyrics-with-little-help-from-the-/: 'http://www.threadless.com/plainwhitets/natural-disaster-lyrics-with-little-help-from-the-/',
/plainwhitets/ninja-ate-my-sandwich/: 'http://www.threadless.com/plainwhitets/ninja-ate-my-sandwich/',
/plainwhitets/nom-de-plume/: 'http://www.threadless.com/plainwhitets/nom-de-plume/',
/plainwhitets/plain-white-tv/: 'http://www.threadless.com/plainwhitets/plain-white-tv/',
/plainwhitets/rock-mimes/: 'http://www.threadless.com/plainwhitets/rock-mimes/',
'/plainwhitets/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/plainwhitets/submissions/?status=closed&sort=&page=1',
/plainwhitets/the-empty-jar-of-fireflies/: 'http://www.threadless.com/plainwhitets/the-empty-jar-of-fireflies/',
/plainwhitets/the-party-cup/: 'http://www.threadless.com/plainwhitets/the-party-cup/',
/play: 'http://www.threadless.com/play', /play/: 'http://www.threadless.com/play/',
/play/forum: 'http://www.threadless.com/play/forum', /play/forum/: 'http://www.threadless.com/play/forum/',
/play/forum/artdesign: 'http://www.threadless.com/play/forum/artdesign', /play/forum/artdesign/: 'http://www.threadless.com/play/forum/artdesign/',
/play/forum/everything: 'http://www.threadless.com/play/forum/everything', /play/forum/everything/: 'http://www.threadless.com/play/forum/everything/',
/play/forum/general: 'http://www.threadless.com/play/forum/general', /play/forum/general/: 'http://www.threadless.com/play/forum/general/',
/play/forum/post/: 'http://www.threadless.com/play/forum/post/', /play/forum/projects: 'http://www.threadless.com/play/forum/projects',
/play/forum/projects/: 'http://www.threadless.com/play/forum/projects/', /play/forum/tipstricks: 'http://www.threadless.com/play/forum/tipstricks',
/play/forum/tipstricks/: 'http://www.threadless.com/play/forum/tipstricks/', /play/geekystuff: 'http://www.threadless.com/play/geekystuff',
/play/geekystuff/: 'http://www.threadless.com/play/geekystuff/', /play/icecreamsocial: 'http://www.threadless.com/play/icecreamsocial',
/play/icecreamsocial/: 'http://www.threadless.com/play/icecreamsocial/', /play/stories: 'http://www.threadless.com/play/stories',
/play/teev: 'http://www.threadless.com/play/teev', /play/threadspotting: 'http://www.threadless.com/play/threadspotting',
/powertank/: 'http://www.threadless.com/powertank/', /powertank/animal-yogis/: 'http://www.threadless.com/powertank/animal-yogis/',
/powertank/bve/: 'http://www.threadless.com/powertank/bve/', /powertank/jumping-wires/: 'http://www.threadless.com/powertank/jumping-wires/',
/powertank/legal/: 'http://www.threadless.com/powertank/legal/', /powertank/mirror-tank/: 'http://www.threadless.com/powertank/mirror-tank/',
/powertank/six-pack-patties/: 'http://www.threadless.com/powertank/six-pack-patties/',
'/powertank/submissions/?status=closed&sort=&page=1': 'http://www.threadless.com/powertank/submissions/?status=closed&sort=&page=1',
/privacypolicy: 'https://www.threadless.com/privacypolicy', /product/%7B%7Bthis.details.productid%7D%7D/%7B%7Bthis.details.product_slug%7D%7D: 'http://www.threadless.com/product/%7B%7Bthis.details.productid%7D%7D/%7B%7Bthis.details.product_slug%7D%7D',
/product/1000/Runnin_Rhino: 'http://www.threadless.com/product/1000/Runnin_Rhino',
/product/1041/Fox_And_Hare: 'http://www.threadless.com/product/1041/Fox_And_Hare',
/product/1056/Hitchhiker: 'http://www.threadless.com/product/1056/Hitchhiker', /product/1107/The_League_of_Cliche_Evil_SuperVillains: 'http://www.threadless.com/product/1107/The_League_of_Cliche_Evil_SuperVillains',
/product/114/Flowers_in_the_Attic: 'http://www.threadless.com/product/114/Flowers_in_the_Attic',
/product/1160/Birds_Of_A_Feather: 'http://www.threadless.com/product/1160/Birds_Of_A_Feather',
/product/1181/Its_Always_Midnight_Somewhere: 'http://www.threadless.com/product/1181/Its_Always_Midnight_Somewhere',
/product/1237/Everything_Will_Be_Alright: 'http://www.threadless.com/product/1237/Everything_Will_Be_Alright',
/product/1241/I_Got_Another_Whale: 'http://www.threadless.com/product/1241/I_Got_Another_Whale',
/product/1274/Hey_Mr_Blue_Sky: 'http://www.threadless.com/product/1274/Hey_Mr_Blue_Sky',
/product/1293/Uprising: 'http://www.threadless.com/product/1293/Uprising', /product/1324/Le_Romantique: 'http://www.threadless.com/product/1324/Le_Romantique',
/product/1325/Field_Study_01: 'http://www.threadless.com/product/1325/Field_Study_01',
/product/1344/Fail: 'http://www.threadless.com/product/1344/Fail', /product/1353/Someday: 'http://www.threadless.com/product/1353/Someday',
/product/1354/Mister_Mittens_Big_Adventure: 'http://www.threadless.com/product/1354/Mister_Mittens_Big_Adventure',
/product/1371/The_Future_In_The_Past: 'http://www.threadless.com/product/1371/The_Future_In_The_Past',
/product/1372/Complementary_Colors: 'http://www.threadless.com/product/1372/Complementary_Colors',
/product/1377/Foam_Monster_In_Emotional_Reunion_With_Severed_Limb: 'http://www.threadless.com/product/1377/Foam_Monster_In_Emotional_Reunion_With_Severed_Limb',
/product/1379/AV: 'http://www.threadless.com/product/1379/AV', /product/1399/Two_Detectives_One_Crime_Scene_One_Thief: 'http://www.threadless.com/product/1399/Two_Detectives_One_Crime_Scene_One_Thief',
/product/1443/Colorblind: 'http://www.threadless.com/product/1443/Colorblind', /product/1450/When_Pandas_Attack: 'http://www.threadless.com/product/1450/When_Pandas_Attack',
/product/1460/Family: 'http://www.threadless.com/product/1460/Family', /product/1488/Beastly_Planet: 'http://www.threadless.com/product/1488/Beastly_Planet',
/product/1505/Infamous_Mishaps_Throughout_History: 'http://www.threadless.com/product/1505/Infamous_Mishaps_Throughout_History',
/product/1514/Occupational_Hazard: 'http://www.threadless.com/product/1514/Occupational_Hazard',
/product/1536/Call_of_the_Wild: 'http://www.threadless.com/product/1536/Call_of_the_Wild',
/product/1559/Dont_Trust_In_Cute_Bunnies: 'http://www.threadless.com/product/1559/Dont_Trust_In_Cute_Bunnies',
/product/1584/Playin_In_The_Sprinkler: 'http://www.threadless.com/product/1584/Playin_In_The_Sprinkler',
/product/1588/Eating_Brains_Throwing_Shapes: 'http://www.threadless.com/product/1588/Eating_Brains_Throwing_Shapes',
/product/1589/Friday_I_m_In_Love: 'http://www.threadless.com/product/1589/Friday_I_m_In_Love',
/product/1595/The_Squid_vs_The_Whale: 'http://www.threadless.com/product/1595/The_Squid_vs_The_Whale',
/product/1601/Im_Like_a_Bird: 'http://www.threadless.com/product/1601/Im_Like_a_Bird',
/product/1602/Catastrophe: 'http://www.threadless.com/product/1602/Catastrophe',
/product/162/Sad_Psycho: 'http://www.threadless.com/product/162/Sad_Psycho', /product/1699/Mystique: 'http://www.threadless.com/product/1699/Mystique',
/product/1700/Endless_Trees: 'http://www.threadless.com/product/1700/Endless_Trees',
/product/1701/Planes: 'http://www.threadless.com/product/1701/Planes', /product/1702/Cherry_Branches: 'http://www.threadless.com/product/1702/Cherry_Branches',
/product/1709/Chicken_Egg: 'http://www.threadless.com/product/1709/Chicken_Egg',
/product/1710/Shopper_Bag: 'http://www.threadless.com/product/1710/Shopper_Bag',
/product/1711/Round_One: 'http://www.threadless.com/product/1711/Round_One', /product/1712/Hit_for_Six: 'http://www.threadless.com/product/1712/Hit_for_Six',
/product/1713/Waves: 'http://www.threadless.com/product/1713/Waves', /product/1714/Doesn_t: 'http://www.threadless.com/product/1714/Doesn_t',
/product/1725/West_Side_Rumble: 'http://www.threadless.com/product/1725/West_Side_Rumble',
/product/1726/The_Meaning_of_Life: 'http://www.threadless.com/product/1726/The_Meaning_of_Life',
/product/1741/Hunting_Ducks: 'http://www.threadless.com/product/1741/Hunting_Ducks',
/product/1759/Kill_Monotony: 'http://www.threadless.com/product/1759/Kill_Monotony',
/product/1770/No_Sweets: 'http://www.threadless.com/product/1770/No_Sweets', /product/1779/The_Gaming_Revolution: 'http://www.threadless.com/product/1779/The_Gaming_Revolution',
/product/1782/Dayoff: 'http://www.threadless.com/product/1782/Dayoff', /product/1784/As_Fast_As_I_Can: 'http://www.threadless.com/product/1784/As_Fast_As_I_Can',
/product/1791/Conservation_Status: 'http://www.threadless.com/product/1791/Conservation_Status',
/product/1794/Dive_With_Me: 'http://www.threadless.com/product/1794/Dive_With_Me',
/product/1805/Sea_Beard: 'http://www.threadless.com/product/1805/Sea_Beard', /product/1811/Let_Go: 'http://www.threadless.com/product/1811/Let_Go',
/product/1818/Lets_Get_Physical: 'http://www.threadless.com/product/1818/Lets_Get_Physical',
/product/1820/HOT_CHICKS_ON_WOLVES: 'http://www.threadless.com/product/1820/HOT_CHICKS_ON_WOLVES',
/product/1829/Flamenco: 'http://www.threadless.com/product/1829/Flamenco', /product/1830/The_Invisible_Gentleman: 'http://www.threadless.com/product/1830/The_Invisible_Gentleman',
/product/1838/Magic_Mushrooms: 'http://www.threadless.com/product/1838/Magic_Mushrooms',
/product/1858/HEARTLESS: 'http://www.threadless.com/product/1858/HEARTLESS', /product/187/I_Park_Like_an_Idiot: 'http://www.threadless.com/product/187/I_Park_Like_an_Idiot',
/product/1922/Coexistence: 'http://www.threadless.com/product/1922/Coexistence',
/product/1931/The_Composition: 'http://www.threadless.com/product/1931/The_Composition',
/product/1940/Guess_Who: 'http://www.threadless.com/product/1940/Guess_Who', /product/1941/Missing: 'http://www.threadless.com/product/1941/Missing',
/product/1942/The_Sin: 'http://www.threadless.com/product/1942/The_Sin', /product/1953/Blooming: 'http://www.threadless.com/product/1953/Blooming',
/product/1963/I_Love_Fairy_Tales: 'http://www.threadless.com/product/1963/I_Love_Fairy_Tales',
/product/1991/Lysergsaurediethylamid: 'http://www.threadless.com/product/1991/Lysergsaurediethylamid',
/product/2000/Sky_Thief: 'http://www.threadless.com/product/2000/Sky_Thief', /product/2021/Say_Hello_to_My_Little_Friends: 'http://www.threadless.com/product/2021/Say_Hello_to_My_Little_Friends',
/product/2029/Juliet: 'http://www.threadless.com/product/2029/Juliet', /product/2034/Self_Portrait: 'http://www.threadless.com/product/2034/Self_Portrait',
/product/2036/Friends_Forever: 'http://www.threadless.com/product/2036/Friends_Forever',
/product/204/Emotional_Trip: 'http://www.threadless.com/product/204/Emotional_Trip',
/product/2047/Alt_of_Ctrl: 'http://www.threadless.com/product/2047/Alt_of_Ctrl',
/product/2054/So_Long_Old_World: 'http://www.threadless.com/product/2054/So_Long_Old_World',
/product/2059/The_Horde: 'http://www.threadless.com/product/2059/The_Horde', /product/2060/Use_Your_Brain: 'http://www.threadless.com/product/2060/Use_Your_Brain',
/product/2077/The_Optimist: 'http://www.threadless.com/product/2077/The_Optimist',
/product/2080/Storm: 'http://www.threadless.com/product/2080/Storm', /product/2094/Weve_Got_Some_Work_To_Do_Now: 'http://www.threadless.com/product/2094/Weve_Got_Some_Work_To_Do_Now',
/product/2105/I_Love_Rainy_Days: 'http://www.threadless.com/product/2105/I_Love_Rainy_Days',
/product/2107/101_Cameras: 'http://www.threadless.com/product/2107/101_Cameras',
/product/2114/Stop_Tea_Time: 'http://www.threadless.com/product/2114/Stop_Tea_Time',
/product/2122/Why_Is_an_Owl_Smart: 'http://www.threadless.com/product/2122/Why_Is_an_Owl_Smart',
/product/2124/The_Milky_Way: 'http://www.threadless.com/product/2124/The_Milky_Way',
/product/2135/Memento_Mori: 'http://www.threadless.com/product/2135/Memento_Mori',
/product/2153/Its_Toile_About_You: 'http://www.threadless.com/product/2153/Its_Toile_About_You',
/product/2171/AW3SOM3_F1GHT1: 'http://www.threadless.com/product/2171/AW3SOM3_F1GHT1',
/product/2180/The_Beach: 'http://www.threadless.com/product/2180/The_Beach', /product/2195/Power_to_the_Mushroom: 'http://www.threadless.com/product/2195/Power_to_the_Mushroom',
/product/2201/Space_and_Time: 'http://www.threadless.com/product/2201/Space_and_Time',
/product/2220/Neverending_Challenge: 'http://www.threadless.com/product/2220/Neverending_Challenge',
/product/2230/Its_a_Hard_Life: 'http://www.threadless.com/product/2230/Its_a_Hard_Life',
/product/2235/Fishermans_Find: 'http://www.threadless.com/product/2235/Fishermans_Find',
/product/2243/Tech_Support: 'http://www.threadless.com/product/2243/Tech_Support',
/product/2247/Forgot_to_Study: 'http://www.threadless.com/product/2247/Forgot_to_Study',
/product/2251/The_Choir_of_Antarctica: 'http://www.threadless.com/product/2251/The_Choir_of_Antarctica',
/product/2254/Kite_Parkour: 'http://www.threadless.com/product/2254/Kite_Parkour',
/product/2256/Real_Peanuts: 'http://www.threadless.com/product/2256/Real_Peanuts',
/product/2260/8Bit_Blues: 'http://www.threadless.com/product/2260/8Bit_Blues', /product/2260/8_Bit_Blues: 'http://www.threadless.com/product/2260/8_Bit_Blues',
/product/2280/Zombie_at_Tiffanys: 'http://www.threadless.com/product/2280/Zombie_at_Tiffanys',
/product/2281/My_Other_Ride_Is_a_Light_Cycle: 'http://www.threadless.com/product/2281/My_Other_Ride_Is_a_Light_Cycle',
/product/2287/Know_Your_Dinosaurs: 'http://www.threadless.com/product/2287/Know_Your_Dinosaurs',
/product/2288/The_King: 'http://www.threadless.com/product/2288/The_King', /product/2319/Tactical_Diversion: 'http://www.threadless.com/product/2319/Tactical_Diversion',
/product/2321/Red_Series_Battle_Cry: 'http://www.threadless.com/product/2321/Red_Series_Battle_Cry',
/product/2322/Renaissance_Rocks: 'http://www.threadless.com/product/2322/Renaissance_Rocks',
/product/2336/Photographer: 'http://www.threadless.com/product/2336/Photographer',
/product/2342/Estocade: 'http://www.threadless.com/product/2342/Estocade', /product/2357/MMXIII: 'http://www.threadless.com/product/2357/MMXIII',
/product/2365/Zombies_in_Wonderland: 'http://www.threadless.com/product/2365/Zombies_in_Wonderland',
/product/2367/Do_a_Barrel_Roll: 'http://www.threadless.com/product/2367/Do_a_Barrel_Roll',
/product/2371/Don_t_Care_Bears: 'http://www.threadless.com/product/2371/Don_t_Care_Bears',
/product/2371/Dont_Care_Bears: 'http://www.threadless.com/product/2371/Dont_Care_Bears',
/product/2376/A_Walk_in_the_Clouds: 'http://www.threadless.com/product/2376/A_Walk_in_the_Clouds',
/product/2397/The_Birdie_Tree: 'http://www.threadless.com/product/2397/The_Birdie_Tree',
/product/2404/Sheepy_Clouds: 'http://www.threadless.com/product/2404/Sheepy_Clouds',
/product/2416/WAKE: 'http://www.threadless.com/product/2416/WAKE', /product/2417/Khaki_Kickflip: 'http://www.threadless.com/product/2417/Khaki_Kickflip',
/product/2422/Lost_in_My_Dreams: 'http://www.threadless.com/product/2422/Lost_in_My_Dreams',
/product/2429/Water_Balloons: 'http://www.threadless.com/product/2429/Water_Balloons',
/product/2437/Into_the_Sea: 'http://www.threadless.com/product/2437/Into_the_Sea',
/product/2438/Nature_Photography: 'http://www.threadless.com/product/2438/Nature_Photography',
/product/2443/Mucha_Lucha: 'http://www.threadless.com/product/2443/Mucha_Lucha',
/product/2444/Map_to_Ghost_Town: 'http://www.threadless.com/product/2444/Map_to_Ghost_Town',
/product/2451/Plaidapus: 'http://www.threadless.com/product/2451/Plaidapus', /product/2461/A_Happy_Place: 'http://www.threadless.com/product/2461/A_Happy_Place',
/product/2463/SWEDISH_BIKINI_WEREWOLF_DESTRUCTION_UNIT: 'http://www.threadless.com/product/2463/SWEDISH_BIKINI_WEREWOLF_DESTRUCTION_UNIT',
/product/2474/The_Ocean_of_Story: 'http://www.threadless.com/product/2474/The_Ocean_of_Story',
/product/2525/The_Unexpected_Guest: 'http://www.threadless.com/product/2525/The_Unexpected_Guest',
/product/2528/Food_Pyramid: 'http://www.threadless.com/product/2528/Food_Pyramid',
/product/2529/The_Threadless_Book: 'http://www.threadless.com/product/2529/The_Threadless_Book',
/product/2536/Owls_of_the_Nile: 'http://www.threadless.com/product/2536/Owls_of_the_Nile',
/product/2541/B25_Waterbombers: 'http://www.threadless.com/product/2541/B25_Waterbombers',
/product/2542/Kiwi_Anatomy: 'http://www.threadless.com/product/2542/Kiwi_Anatomy',
/product/255/Calling_Home: 'http://www.threadless.com/product/255/Calling_Home',
/product/2559/House_Brawl: 'http://www.threadless.com/product/2559/House_Brawl',
/product/2568/Toast: 'http://www.threadless.com/product/2568/Toast', /product/2575/The_Daywalker: 'http://www.threadless.com/product/2575/The_Daywalker',
/product/2576/Smoke_Break: 'http://www.threadless.com/product/2576/Smoke_Break',
/product/2581/Love_Is_In_the_Air: 'http://www.threadless.com/product/2581/Love_Is_In_the_Air',
/product/2597/Join_the_Awesome: 'http://www.threadless.com/product/2597/Join_the_Awesome',
/product/2604/Technicolour_Rex: 'http://www.threadless.com/product/2604/Technicolour_Rex',
/product/2607/The_Visitor: 'http://www.threadless.com/product/2607/The_Visitor',
/product/2609/Storytellers: 'http://www.threadless.com/product/2609/Storytellers',
/product/261/What_Would_Macgyver_Do: 'http://www.threadless.com/product/261/What_Would_Macgyver_Do',
/product/2611/Threadless_Special_Edition_Book: 'http://www.threadless.com/product/2611/Threadless_Special_Edition_Book',
/product/2636/Tyrannosaurus_RAD: 'http://www.threadless.com/product/2636/Tyrannosaurus_RAD',
/product/2640/Optimust: 'http://www.threadless.com/product/2640/Optimust', /product/2641/The_Curse_of_the_Care_Were: 'http://www.threadless.com/product/2641/The_Curse_of_the_Care_Were',
/product/2644/Peacock_at_Night: 'http://www.threadless.com/product/2644/Peacock_at_Night',
/product/2646/The_All_Seeing_Eye: 'http://www.threadless.com/product/2646/The_All_Seeing_Eye',
/product/2655/Amazin_Cat: 'http://www.threadless.com/product/2655/Amazin_Cat', /product/2670/Personal_Mono: 'http://www.threadless.com/product/2670/Personal_Mono',
/product/2717/Happy_Ever_After: 'http://www.threadless.com/product/2717/Happy_Ever_After',
/product/2722/Recycling: 'http://www.threadless.com/product/2722/Recycling', /product/2725/Xylosaurus: 'http://www.threadless.com/product/2725/Xylosaurus',
/product/2736/Duck_in_Training: 'http://www.threadless.com/product/2736/Duck_in_Training',
/product/2746/Maths: 'http://www.threadless.com/product/2746/Maths', /product/2751/The_Pianist: 'http://www.threadless.com/product/2751/The_Pianist',
/product/2756/Elephant: 'http://www.threadless.com/product/2756/Elephant', /product/2763/Owls_Trees_and_Keys: 'http://www.threadless.com/product/2763/Owls_Trees_and_Keys',
/product/2766/The_Horde: 'http://www.threadless.com/product/2766/The_Horde', /product/2772/Untitled_Impossible: 'http://www.threadless.com/product/2772/Untitled_Impossible',
/product/2776/Under_the_Sunset: 'http://www.threadless.com/product/2776/Under_the_Sunset',
/product/2778/Mister_Mittens_Big_Adventure: 'http://www.threadless.com/product/2778/Mister_Mittens_Big_Adventure',
/product/2784/Peace_and_Love: 'http://www.threadless.com/product/2784/Peace_and_Love',
/product/2828/Many_Hands: 'http://www.threadless.com/product/2828/Many_Hands', /product/2834/Thumbper: 'http://www.threadless.com/product/2834/Thumbper',
/product/2836/Rebuild_Japan: 'http://www.threadless.com/product/2836/Rebuild_Japan',
/product/2862/Pop_It: 'http://www.threadless.com/product/2862/Pop_It', /product/2863/Freed: 'http://www.threadless.com/product/2863/Freed',
/product/2864/Let_s_Plant: 'http://www.threadless.com/product/2864/Let_s_Plant',
/product/2875/Piano_Skyline: 'http://www.threadless.com/product/2875/Piano_Skyline',
/product/2876/Rorschach: 'http://www.threadless.com/product/2876/Rorschach', /product/2880/Sounds_Of_The_Ocean: 'http://www.threadless.com/product/2880/Sounds_Of_The_Ocean',
/product/2887/A_Spectacular_Sunset: 'http://www.threadless.com/product/2887/A_Spectacular_Sunset',
/product/2889/Now_in_EyePopping_3D: 'http://www.threadless.com/product/2889/Now_in_EyePopping_3D',
/product/2892/Bad_Memories: 'http://www.threadless.com/product/2892/Bad_Memories',
/product/2896/The_Friendly_Spirit: 'http://www.threadless.com/product/2896/The_Friendly_Spirit',
/product/2898/Recently_Deceased: 'http://www.threadless.com/product/2898/Recently_Deceased',
/product/2899/Doctor_Hoo: 'http://www.threadless.com/product/2899/Doctor_Hoo', /product/2902/Business_Man: 'http://www.threadless.com/product/2902/Business_Man',
/product/2903/Sugar_Skull: 'http://www.threadless.com/product/2903/Sugar_Skull',
/product/2937/A_Book_Lover: 'http://www.threadless.com/product/2937/A_Book_Lover',
/product/2938/Pop_Culture_Clash: 'http://www.threadless.com/product/2938/Pop_Culture_Clash',
/product/2949/Maw: 'http://www.threadless.com/product/2949/Maw', /product/2950/A_Happy_Slice_of_Life: 'http://www.threadless.com/product/2950/A_Happy_Slice_of_Life',
/product/2954/Architecture_101: 'http://www.threadless.com/product/2954/Architecture_101',
/product/2959/Sunny_Leo: 'http://www.threadless.com/product/2959/Sunny_Leo', /product/2960/Infinity_Space: 'http://www.threadless.com/product/2960/Infinity_Space',
/product/2964/Lonely_Traveller: 'http://www.threadless.com/product/2964/Lonely_Traveller',
/product/2966/NMKL: 'http://www.threadless.com/product/2966/NMKL', /product/2968/TARDamask: 'http://www.threadless.com/product/2968/TARDamask',
/product/2974/Classic_Gamer: 'http://www.threadless.com/product/2974/Classic_Gamer',
/product/2976/Nobody_Likes_A_Showoff: 'http://www.threadless.com/product/2976/Nobody_Likes_A_Showoff',
/product/2991/Rose_Marry: 'http://www.threadless.com/product/2991/Rose_Marry', /product/2995/Skate_Til_You_Die: 'http://www.threadless.com/product/2995/Skate_Til_You_Die',
/product/3007/Vitamin: 'http://www.threadless.com/product/3007/Vitamin', /product/3013/The_Woods_Belong_To_Me: 'http://www.threadless.com/product/3013/The_Woods_Belong_To_Me',
/product/3016/Hugs_Keep_Us_Alive: 'http://www.threadless.com/product/3016/Hugs_Keep_Us_Alive',
/product/3029/Water_Water/: 'http://www.threadless.com/product/3029/Water_Water/',
/product/3033/The_Blind_Conscience/: 'http://www.threadless.com/product/3033/The_Blind_Conscience/',
/product/3034/Together_Again: 'http://www.threadless.com/product/3034/Together_Again',
/product/3043/Stickem_Up: 'http://www.threadless.com/product/3043/Stickem_Up', /product/3051/Manus_Creatura: 'http://www.threadless.com/product/3051/Manus_Creatura',
/product/3060/Sushi: 'http://www.threadless.com/product/3060/Sushi', /product/3061/URL_LINK: 'http://www.threadless.com/product/3061/URL_LINK',
/product/3062/Lost_Translation: 'http://www.threadless.com/product/3062/Lost_Translation',
/product/3063/Lights_Out: 'http://www.threadless.com/product/3063/Lights_Out', /product/3064/Know_Your_Submarines: 'http://www.threadless.com/product/3064/Know_Your_Submarines',
/product/3069/Tools_of_the_Trade: 'http://www.threadless.com/product/3069/Tools_of_the_Trade',
/product/3070/Infinity_MPG: 'http://www.threadless.com/product/3070/Infinity_MPG',
/product/3088/Ugly_Summer_Sweater: 'http://www.threadless.com/product/3088/Ugly_Summer_Sweater',
/product/3090/Perfect_Timing: 'http://www.threadless.com/product/3090/Perfect_Timing',
/product/3092/A_Guide_to_Being_a_Pirate: 'http://www.threadless.com/product/3092/A_Guide_to_Being_a_Pirate',
/product/3100/The_Emperor: 'http://www.threadless.com/product/3100/The_Emperor',
/product/3110/Beer_Pong: 'http://www.threadless.com/product/3110/Beer_Pong', /product/3112/Wherever_the_Wind_Blows: 'http://www.threadless.com/product/3112/Wherever_the_Wind_Blows',
/product/3113/BShirt: 'http://www.threadless.com/product/3113/BShirt', /product/3115/Sound_of_the_Dark: 'http://www.threadless.com/product/3115/Sound_of_the_Dark',
/product/3118/Memory_Fades_but_the_Love_Remains/: 'http://www.threadless.com/product/3118/Memory_Fades_but_the_Love_Remains/',
/product/3120/Muppetational_Mosaic: 'http://www.threadless.com/product/3120/Muppetational_Mosaic',
/product/3122/Listening_to_My_Song: 'http://www.threadless.com/product/3122/Listening_to_My_Song',
/product/3125/Discover_Yourself: 'http://www.threadless.com/product/3125/Discover_Yourself',
/product/3128/Daisy: 'http://www.threadless.com/product/3128/Daisy', /product/3130/Metal_Fan: 'http://www.threadless.com/product/3130/Metal_Fan',
/product/3133/Funkalicious: 'http://www.threadless.com/product/3133/Funkalicious',
/product/3134/Foam_Monster_in_Emotional_Reunion: 'http://www.threadless.com/product/3134/Foam_Monster_in_Emotional_Reunion',
/product/3135/Juliet: 'http://www.threadless.com/product/3135/Juliet', /product/3138/Ghost_and_Darkness: 'http://www.threadless.com/product/3138/Ghost_and_Darkness',
/product/3141/I_Will_Support_You: 'http://www.threadless.com/product/3141/I_Will_Support_You',
/product/3142/Midnight_Worker: 'http://www.threadless.com/product/3142/Midnight_Worker',
/product/3146/Stego_soar: 'http://www.threadless.com/product/3146/Stego_soar', /product/3148/C2/: 'http://www.threadless.com/product/3148/C2/',
/product/3182/Don_t_Squeeze_Me_I_ll_Fart: 'http://www.threadless.com/product/3182/Don_t_Squeeze_Me_I_ll_Fart',
/product/3182/Dont_Squeeze_Me_Ill_Fart: 'http://www.threadless.com/product/3182/Dont_Squeeze_Me_Ill_Fart',
/product/3183/BMO: 'http://www.threadless.com/product/3183/BMO', /product/3187/What_I_Know_About_the_USA: 'http://www.threadless.com/product/3187/What_I_Know_About_the_USA',
/product/3195/BYE: 'http://www.threadless.com/product/3195/BYE', /product/3210/Heroes_Within/: 'http://www.threadless.com/product/3210/Heroes_Within/',
/product/3213/Dangerous_Game: 'http://www.threadless.com/product/3213/Dangerous_Game',
/product/3219/Natural_Instinct: 'http://www.threadless.com/product/3219/Natural_Instinct',
/product/3220/Everyone_Poops: 'http://www.threadless.com/product/3220/Everyone_Poops',
/product/3221/This_is_Not_My_Time_Machine: 'http://www.threadless.com/product/3221/This_is_Not_My_Time_Machine',
/product/3228/GMOS_OMG/: 'http://www.threadless.com/product/3228/GMOS_OMG/', /product/3232/Aliens_Gave_My_Cat_a_Beard: 'http://www.threadless.com/product/3232/Aliens_Gave_My_Cat_a_Beard',
/product/3237/Quick_Brown_Fox: 'http://www.threadless.com/product/3237/Quick_Brown_Fox',
/product/3241/Secret_Garden: 'http://www.threadless.com/product/3241/Secret_Garden',
/product/3244/Worlds_Greatest_Exaggerator_: 'http://www.threadless.com/product/3244/Worlds_Greatest_Exaggerator_',
/product/3249/Horror_Tales_: 'http://www.threadless.com/product/3249/Horror_Tales_',
/product/3254/Ramenses_Return: 'http://www.threadless.com/product/3254/Ramenses_Return',
/product/3255/To_Rip: 'http://www.threadless.com/product/3255/To_Rip', /product/3258/Owltical_Illusion: 'http://www.threadless.com/product/3258/Owltical_Illusion',
/product/3269/Galaxy_Tunes: 'http://www.threadless.com/product/3269/Galaxy_Tunes',
/product/3272/The_Deadliest_Sharks_of_All_Time: 'http://www.threadless.com/product/3272/The_Deadliest_Sharks_of_All_Time',
/product/3273/After_All: 'http://www.threadless.com/product/3273/After_All', /product/3280/Frida_s_Garden: 'http://www.threadless.com/product/3280/Frida_s_Garden',
/product/3281/Mr_Cloud_s_New_Scarf: 'http://www.threadless.com/product/3281/Mr_Cloud_s_New_Scarf',
/product/3282/Yeah_Attitude: 'http://www.threadless.com/product/3282/Yeah_Attitude',
/product/3283/The_Emancipation: 'http://www.threadless.com/product/3283/The_Emancipation',
/product/3284/LOVE: 'http://www.threadless.com/product/3284/LOVE', /product/3285/Juliet: 'http://www.threadless.com/product/3285/Juliet',
/product/3307/Four_Spirits_: 'http://www.threadless.com/product/3307/Four_Spirits_',
/product/3311/Words_Create_Worlds/: 'http://www.threadless.com/product/3311/Words_Create_Worlds/',
/product/3314/Ring_Pull: 'http://www.threadless.com/product/3314/Ring_Pull', /product/3316/War_Games: 'http://www.threadless.com/product/3316/War_Games',
/product/3317/Electric_Jellyfish: 'http://www.threadless.com/product/3317/Electric_Jellyfish',
/product/3318/Yeah: 'http://www.threadless.com/product/3318/Yeah', /product/3319/So_Long_Old_World: 'http://www.threadless.com/product/3319/So_Long_Old_World',
/product/3320/Spacebar: 'http://www.threadless.com/product/3320/Spacebar', /product/3321/Liquid_Shot: 'http://www.threadless.com/product/3321/Liquid_Shot',
/product/3322/Living_In_Harmony: 'http://www.threadless.com/product/3322/Living_In_Harmony',
/product/3323/Sugar_Skull: 'http://www.threadless.com/product/3323/Sugar_Skull',
/product/3324/Big_Cats: 'http://www.threadless.com/product/3324/Big_Cats', /product/3325/Birds_of_a_Feather: 'http://www.threadless.com/product/3325/Birds_of_a_Feather',
/product/3326/Now_Panic_and_Freak_Out: 'http://www.threadless.com/product/3326/Now_Panic_and_Freak_Out',
/product/3327/I_Got_Another_Whale: 'http://www.threadless.com/product/3327/I_Got_Another_Whale',
/product/3328/Electric_Jellyfish: 'http://www.threadless.com/product/3328/Electric_Jellyfish',
/product/3329/Yeah: 'http://www.threadless.com/product/3329/Yeah', /product/3332/Voyages_Over_Edinburgh: 'http://www.threadless.com/product/3332/Voyages_Over_Edinburgh',
/product/3338/To_Venice: 'http://www.threadless.com/product/3338/To_Venice', /product/3341/So_Long_Old_World: 'http://www.threadless.com/product/3341/So_Long_Old_World',
/product/3345/Fryderyk: 'http://www.threadless.com/product/3345/Fryderyk', /product/3346/Spacebar: 'http://www.threadless.com/product/3346/Spacebar',
/product/3347/Liquid_Shot: 'http://www.threadless.com/product/3347/Liquid_Shot',
/product/3354/Sport_Your_Stache/: 'http://www.threadless.com/product/3354/Sport_Your_Stache/',
/product/3359/Your_Love_Keeps_Lifting_Me: 'http://www.threadless.com/product/3359/Your_Love_Keeps_Lifting_Me',
/product/3360/Gonzo_Floating: 'http://www.threadless.com/product/3360/Gonzo_Floating',
/product/3361/Muppet_Alphabet: 'http://www.threadless.com/product/3361/Muppet_Alphabet',
/product/3362/Muppets_TakeChicago: 'http://www.threadless.com/product/3362/Muppets_TakeChicago',
/product/3363/_The_Paintbow_Connection: 'http://www.threadless.com/product/3363/_The_Paintbow_Connection',
/product/3364/The_Lovers_The_Dreamers_and_Me: 'http://www.threadless.com/product/3364/The_Lovers_The_Dreamers_and_Me',
/product/3365/Animal_Inside: 'http://www.threadless.com/product/3365/Animal_Inside',
/product/3366/_3_x_3_Friendship: 'http://www.threadless.com/product/3366/_3_x_3_Friendship',
/product/3367/_Healing_and_Smiling: 'http://www.threadless.com/product/3367/_Healing_and_Smiling',
/product/3368/Muppetbook: 'http://www.threadless.com/product/3368/Muppetbook', /product/3369/Its_Time_to_Raise_the_Curtain: 'http://www.threadless.com/product/3369/Its_Time_to_Raise_the_Curtain',
/product/3370/Epic_Adventure: 'http://www.threadless.com/product/3370/Epic_Adventure',
/product/3371/Friendship_Trust: 'http://www.threadless.com/product/3371/Friendship_Trust',
/product/3372/Friendship_Totem_Pole: 'http://www.threadless.com/product/3372/Friendship_Totem_Pole',
/product/3373/Muppets_Cry_Out: 'http://www.threadless.com/product/3373/Muppets_Cry_Out',
/product/3374/Muppet_Letter_Party: 'http://www.threadless.com/product/3374/Muppet_Letter_Party',
/product/3375/The_Circle_of_Laffs: 'http://www.threadless.com/product/3375/The_Circle_of_Laffs',
/product/3376/You_Call_That_a_Pocket: 'http://www.threadless.com/product/3376/You_Call_That_a_Pocket',
/product/3377/Reunion_Tour: 'http://www.threadless.com/product/3377/Reunion_Tour',
/product/3378/Together_Reaching_For_The_Star: 'http://www.threadless.com/product/3378/Together_Reaching_For_The_Star',
/product/3379/Being_Green: 'http://www.threadless.com/product/3379/Being_Green',
/product/3380/Living_In_Harmony: 'http://www.threadless.com/product/3380/Living_In_Harmony',
/product/3381/Sugar_Skull: 'http://www.threadless.com/product/3381/Sugar_Skull',
/product/3382/Big_Cats: 'http://www.threadless.com/product/3382/Big_Cats', /product/3383/Birds_Of_A_Feather: 'http://www.threadless.com/product/3383/Birds_Of_A_Feather',
/product/3384/War_Games: 'http://www.threadless.com/product/3384/War_Games', /product/3385/Now_Panic_and_Freak_Out: 'http://www.threadless.com/product/3385/Now_Panic_and_Freak_Out',
/product/3390/My_Playground_: 'http://www.threadless.com/product/3390/My_Playground_',
/product/3392/Rock_Paper_Scissors_Recycled: 'http://www.threadless.com/product/3392/Rock_Paper_Scissors_Recycled',
/product/3394/Jumping_Tape: 'http://www.threadless.com/product/3394/Jumping_Tape',
/product/3395/I_Dont_Care_What_Science_Says: 'http://www.threadless.com/product/3395/I_Dont_Care_What_Science_Says',
/product/3396/Bare_Necessity: 'http://www.threadless.com/product/3396/Bare_Necessity',
/product/3398/Electric_Jellyfish: 'http://www.threadless.com/product/3398/Electric_Jellyfish',
/product/3399/Yeah: 'http://www.threadless.com/product/3399/Yeah', /product/3400/So_Long_Old_World: 'http://www.threadless.com/product/3400/So_Long_Old_World',
/product/3401/Spacebar: 'http://www.threadless.com/product/3401/Spacebar', /product/3402/Liquid_Shot: 'http://www.threadless.com/product/3402/Liquid_Shot',
/product/3403/Living_In_Harmony: 'http://www.threadless.com/product/3403/Living_In_Harmony',
/product/3404/Sugar_Skull: 'http://www.threadless.com/product/3404/Sugar_Skull',
/product/3405/Big_Cats: 'http://www.threadless.com/product/3405/Big_Cats', /product/3406/Birds_Of_A_Feather: 'http://www.threadless.com/product/3406/Birds_Of_A_Feather',
/product/3407/War_Games: 'http://www.threadless.com/product/3407/War_Games', /product/3408/Now_Panic_and_Freak_Out: 'http://www.threadless.com/product/3408/Now_Panic_and_Freak_Out',
/product/3409/I_Got_Another_Whale: 'http://www.threadless.com/product/3409/I_Got_Another_Whale',
/product/3412/Electric_Jellyfish: 'http://www.threadless.com/product/3412/Electric_Jellyfish',
/product/3413/Yeah: 'http://www.threadless.com/product/3413/Yeah', /product/3414/So_Long_Old_World: 'http://www.threadless.com/product/3414/So_Long_Old_World',
/product/3415/Spacebar: 'http://www.threadless.com/product/3415/Spacebar', /product/3416/Liquid_Shot: 'http://www.threadless.com/product/3416/Liquid_Shot',
/product/3417/Living_In_Harmony: 'http://www.threadless.com/product/3417/Living_In_Harmony',
/product/3418/Sugar_Skull: 'http://www.threadless.com/product/3418/Sugar_Skull',
/product/3419/Big_Cats: 'http://www.threadless.com/product/3419/Big_Cats', /product/342/Cookie_Loves_Milk: 'http://www.threadless.com/product/342/Cookie_Loves_Milk',
/product/3420/Birds_Of_A_Feather: 'http://www.threadless.com/product/3420/Birds_Of_A_Feather',
/product/3421/War_Games: 'http://www.threadless.com/product/3421/War_Games', /product/3422/Now_Panic_and_Freak_Out: 'http://www.threadless.com/product/3422/Now_Panic_and_Freak_Out',
/product/3423/I_Got_Another_Whale: 'http://www.threadless.com/product/3423/I_Got_Another_Whale',
/product/3431/Vampire_Orthodontics: 'http://www.threadless.com/product/3431/Vampire_Orthodontics',
/product/3432/Now_Panic_And_Freak_Out: 'http://www.threadless.com/product/3432/Now_Panic_And_Freak_Out',
/product/3433/Hi_5: 'http://www.threadless.com/product/3433/Hi_5', /product/3439/Light_Painter: 'http://www.threadless.com/product/3439/Light_Painter',
/product/3440/The_Nature_Of_Problems: 'http://www.threadless.com/product/3440/The_Nature_Of_Problems',
/product/3444/Hidden_Panda_Hill: 'http://www.threadless.com/product/3444/Hidden_Panda_Hill',
/product/3445/The_Three_Trials: 'http://www.threadless.com/product/3445/The_Three_Trials',
/product/3450/In_the_Belly_of_a_Beast: 'http://www.threadless.com/product/3450/In_the_Belly_of_a_Beast',
/product/3451/Bad_Tempered_Rodents: 'http://www.threadless.com/product/3451/Bad_Tempered_Rodents',
/product/3452/Peace_Within/: 'http://www.threadless.com/product/3452/Peace_Within/',
/product/3457/Doom_Regatta: 'http://www.threadless.com/product/3457/Doom_Regatta',
/product/3458/Hard_Job: 'http://www.threadless.com/product/3458/Hard_Job', /product/3462/Sing_A_Song_of_Freedom: 'http://www.threadless.com/product/3462/Sing_A_Song_of_Freedom',
/product/3473/Almost_Home: 'http://www.threadless.com/product/3473/Almost_Home',
/product/3477/Tell_My_Wife_I_Love_Her_Very_Much_She_Knows: 'http://www.threadless.com/product/3477/Tell_My_Wife_I_Love_Her_Very_Much_She_Knows',
/product/3481/The_Start_of_Something_: 'http://www.threadless.com/product/3481/The_Start_of_Something_',