-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
1088 lines (1085 loc) · 39.9 KB
/
data.json
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
{
"Sheers": {
"Blanc": "Essie",
"Private Weekend": "Essie",
"Marshmallow": "Essie",
"Waltz": "Essie",
"Tuck It In My Tux": "Essie",
"Allure": "Essie",
"Pearly White": "Essie",
"Oui Madame": "Essie",
"Show Me The Ring": "Essie",
"Imported Bubbly": "Essie",
"Au Natural": "Essie",
"Fed Up": "Essie",
"Prima Ballerina": "Essie",
"Baby's Breath": "Essie",
"Like Linen": "Essie",
"Limo-Scene": "Essie",
"Ballet Slippers": "Essie",
"Minimalistic": "Essie",
"East Hampton Cottage": "Essie",
"Angel Food": "Essie",
"Sheer Bliss": "Essie",
"Adore-A-Ball": "Essie",
"Starter Wife": "Essie",
"Mademoiselle": "Essie",
"Delicacy": "Essie",
"Vanity Fairest": "Essie",
"Cabi-O-Lait": "Essie",
"Nude Beach": "Essie",
"Blushing Bride": "Essie",
"Sugar Daddy": "Essie",
"Hi Maintenance": "Essie",
"Spaghetti Strap": "Essie",
"Pink-A-Boo": "Essie",
"Pink Glove Service": "Essie",
"Back In The Limo": "Essie"
},
"Pinks": {
"Romper Room": "Essie",
"I Pink I Can": "Essie",
"No Baggage Please": "Essie",
"Curtain Call": "Essie",
"Bbf Best Boyfriend": "Essie",
"Rock Candy": "Essie",
"Fiji": "Essie",
"Tying The Knotie": "Essie",
"Petal Pink": "Essie",
"Muchi Muchi": "Essie",
"Mini How High": "Essie",
"Poppy Art Pink": "Essie",
"French Affair": "Essie",
"Go Ginza": "Essie",
"No Pre-Nup": "Essie",
"Need A Vacation": "Essie",
"Pink About It": "Essie",
"Pink Works": "Essie",
"Pink Diamond": "Essie",
"Pinking About You": "Essie",
"Groove Is In The Heart": "Essie",
"Castaway": "Essie",
"Fondola Gondola": "Essie",
"Innocent": "Essie",
"Eternal Optimist": "Essie",
"Not Just A Pretty Face": "Essie",
"Knockout Pout": "Essie",
"Lovie Dovie": "Essie",
"Boom Boom Room": "Essie",
"Chastity": "Essie",
"Cascade Cool": "Essie",
"Madison Ave-Hue": "Essie",
"My Better Half": "Essie",
"Forget Me Nots": "Essie",
"Off The Shoulder": "Essie",
"Pansy": "Essie",
"Guilty Pleasures": "Essie",
"Status Symbol": "Essie",
"Mod Squad": "Essie",
"Fiesta": "Essie",
"Secret Stash": "Essie",
"Bottle Service": "Essie",
"Tour De Finance": "Essie",
"Fruit Sangria": "Essie",
"Watermelon": "Essie",
"Antique Rose": "Essie",
"Swept Off My Feet": "Essie",
"Jam N' Jelly": "Essie",
"Miami Nice": "Essie",
"Exotic Liras": "Essie",
"Super Bossa Nova": "Essie",
"Brides No Grooms": "Essie",
"Bachelorette Bash": "Essie",
"Splash Of Grenadine": "Essie",
"Pink Happy": "Essie",
"The Girls Are Out": "Essie",
"Too Taboo": "Essie",
"Coachabella": "Essie",
"Big Spender": "Essie",
"Jamaica Me Crazy": "Essie",
"Sure Shot": "Essie",
"The Lace Is On": "Essie",
"Demure Vix": "Essie",
"Lady Like": "Essie",
"Warm Toasty Turtleneck": "Essie",
"Style Hunter": "Essie",
"Bump Up The Pumps": "Essie",
"Hip-Anema": "Essie"
},
"Plums": {
"Meet Me At The Altar": "Essie",
"Flowerista": "Essie",
"Neo Whimsical": "Essie",
"To Buy Or Not To Buy": "Essie",
"Nice Is Nice": "Essie",
"Hubby For Dessert": "Essie",
"St Lucia Lilac": "Essie",
"Lilacism": "Essie",
"Full Steam Ahead": "Essie",
"She's Picture Perfect": "Essie",
"Using My Maiden Name": "Essie",
"Play Date": "Essie",
"Bond With Whomever": "Essie",
"Sittin' Pretty": "Essie",
"Under Where": "Essie",
"No Boundaries": "Essie",
"Foot Loose": "Essie",
"Dj Play That Song": "Essie",
"All Access Pass": "Essie",
"Bahama Mama": "Essie",
"Sole Mate": "Essie",
"Damsel In A Dress": "Essie",
"Sexy Divide": "Essie",
"No More Film": "Essie",
"Angora Cardi": "Essie",
"Island Hopping": "Essie",
"It's Genius": "Essie",
"Swing Velvet": "Essie",
"Sable Collar": "Essie",
"Berry Naughty": "Essie",
"Lacy Not Racy": "Essie"
},
"Reds": {
"Double Breasted Jacket": "Essie",
"Recessionista": "Essie",
"Raisinnuts": "Essie",
"Very Cranberry": "Essie",
"Raspberry": "Essie",
"Plumberry": "Essie",
"Haute In The Heat": "Essie",
"Rose Bowl": "Essie",
"Long Stem Roses": "Essie",
"Wife Goes On": "Essie",
"Sunset Sneaks": "Essie",
"Escapades": "Essie",
"Lollipop": "Essie",
"Fifth Avenue": "Essie",
"Snap Happy": "Essie",
"Lacquered Up": "Essie",
"Bungle Jungle": "Essie",
"Red Nouveau": "Essie",
"Russian Roulette": "Essie",
"Jelly Apple": "Essie",
"Really Red": "Essie",
"First Dance": "Essie",
"Aperitif": "Essie",
"Garnet": "Essie",
"She's Pampered": "Essie",
"Cherry Pop": "Essie",
"Jump In My Jumpsuit": "Essie",
"Jag-U-Are": "Essie",
"Happy Wife Happy Life": "Essie",
"Pouf Daddy": "Essie",
"Fishnet Stockings": "Essie",
"Tiny Wine-Ey": "Essie",
"Forever Yummy": "Essie",
"Twin Sweater Set": "Essie",
"A-List": "Essie",
"Head Mistress": "Essie",
"After Sex": "Essie",
"Size Matters": "Essie",
"Scarlett O'Hara": "Essie",
"Limited Addiction": "Essie",
"Macks": "Essie",
"Wrapped In Rubies": "Essie",
"Up's": "Essie",
"Tomboy No More": "Essie",
"Leading Lady": "Essie",
"Thigh High": "Essie",
"Toggle To The Top": "Essie",
"Bordeaux": "Essie",
"Shearling Darling": "Essie",
"Poor Lil' Rich Girl": "Essie",
"Skirting The Issue": "Essie"
},
"Corals": {
"A Crewed Interest": "Essie",
"Worth The Wait": "Essie",
"Van D'Go": "Essie",
"Shop Till I Drop": "Essie",
"Haute As Hello": "Essie",
"Serial Shopper": "Essie",
"Resort Fling": "Essie",
"Tart Deco": "Essie",
"Chubby Cheeks": "Essie",
"California Coral": "Essie",
"Peach Side Babe": "Essie",
"Cute As A Button": "Essie",
"Carousel Coral": "Essie",
"Sunday Funday": "Essie",
"Come Here": "Essie",
"Peach Daiquiri": "Essie",
"Coral Reef": "Essie",
"Tangerine": "Essie",
"Canyon Coral": "Essie",
"Too Too Hot": "Essie",
"E-Nuf Is E-Nuf": "Essie",
"Ole Caliente": "Essie",
"Geranium": "Essie",
"Clambake": "Essie",
"Meet Me At Sunset": "Essie",
"Fear Or Desire": "Essie",
"Roarrrrange": "Essie",
"Braziliant": "Essie",
"Vermillionaire": "Essie",
"Orange It's Obvious": "Essie",
"Capri": "Essie",
"Saturday Disco Fever": "Essie"
},
"Neutrals": {
"Urban Jungle": "Essie",
"Sandy Beach": "Essie",
"Spin The Bottle": "Essie",
"Topless Barefoot": "Essie",
"Brides To Be": "Essie",
"Mucho Dinero": "Essie",
"Mambo": "Essie",
"Picked Perfect": "Essie",
"All Tied Up": "Essie",
"In Stitches": "Essie",
"Very Structured": "Essie",
"Brownie Points": "Essie",
"Alligator Purse": "Essie",
"Downtown Brown": "Essie",
"Chocolate Cakes": "Essie",
"Partner In Crime": "Essie",
"Decadent Dish": "Essie",
"Little Brown Dress": "Essie",
"Sand Tropez": "Essie",
"Cocktails Coconuts": "Essie",
"Brooch The Subject": "Essie",
"Jazz": "Essie",
"Tea Crumpets": "Essie",
"Perennial Chic": "Essie",
"Buy Me A Cameo": "Essie",
"Glamour Purse": "Essie",
"Over The Knee": "Essie",
"Fierce No Fear": "Essie",
"Mink Muffs": "Essie",
"Hot Coco": "Essie",
"Don't Sweater It": "Essie",
"Merino Cool": "Essie",
"Mochacino": "Essie",
"Take It Outside": "Essie"
},
"Grays": {
"Bangle Jangle": "Essie",
"Playa Del Platinum": "Essie",
"Smokin' Hot": "Essie",
"Master Plan": "Essie",
"Miss Fancy Pants": "Essie",
"Chinchilly": "Essie",
"Cashmere Bathrobe": "Essie",
"Petal Pushers": "Essie",
"Cocktail Bling": "Essie",
"Parka Perfect": "Essie"
},
"Greens": {
"Who Is The Boss": "Essie",
"Absolutely Shore": "Essie",
"Maximillian Strasse Her": "Essie",
"Vested Interest": "Essie",
"Mint Candy Apple": "Essie",
"Fashion Playground": "Essie",
"Turquoise Caicos": "Essie",
"First Timer": "Essie",
"Chillato": "Essie",
"Navigate Her": "Essie",
"The More The Merrier": "Essie",
"Vices Versa": "Essie",
"Vibrant Vibes": "Essie",
"Mojito Madness": "Essie",
"Ruffles Feathers": "Essie",
"Shake Your $$ Maker": "Essie",
"Melody Maker": "Essie",
"Pretty Edgy": "Essie",
"For The Twill Of It": "Essie",
"Sew Psyched": "Essie",
"Fall In Line": "Essie",
"Power Clutch": "Essie",
"Armed Ready": "Essie",
"School Of Hard Rocks": "Essie",
"Going Incognito": "Essie",
"Stylenomics": "Essie",
"The Perfect Cover Up": "Essie",
"Trophy Wife": "Essie"
},
"Blues": {
"Blossom Dandy": "Essie",
"Go Overboard": "Essie",
"Naughty Nautical": "Essie",
"Garden Variety": "Essie",
"I'm Addicted": "Essie",
"Where's My Chauffeur": "Essie",
"In The Cab-Ana": "Essie",
"Borrowed Blue": "Essie",
"Find Me An Oasis": "Essie",
"Barbados Blue": "Essie",
"Strut Your Stuff": "Essie",
"Beach Bum Blu": "Essie",
"Fair Game": "Essie",
"Truth Or Flare": "Essie",
"Coat Azure": "Essie",
"Rock The Boat": "Essie",
"Saltwater Happy": "Essie",
"Bikini So Teeny": "Essie",
"Lapiz Of Luxury": "Essie",
"Avenue Maintain": "Essie",
"Make Some Noise": "Essie",
"Pret-A-Surfer": "Essie",
"Chills Thrills": "Essie",
"Smooth Sailing": "Essie",
"Mezmerised": "Essie",
"Hide Go Chic": "Essie",
"Butler Please": "Essie",
"'Bouncer It's Me'": "Essie",
"Aruba Blue": "Essie",
"Midnight Cami": "Essie",
"Style Cartel": "Essie",
"After School Boy Blazer": "Essie",
"Bobbing For Baubles": "Essie",
"Mind Your Mittens": "Essie"
},
"Deeps": {
"Dive Bar": "Essie",
"Over The Edge": "Essie",
"Licorice": "Essie",
"Devil's Advocate": "Essie",
"Under The Twilight": "Essie",
"Luxedo": "Essie",
"Velvet Voyage": "Essie",
"Carry On": "Essie",
"Material Girl": "Essie",
"Wicked": "Essie",
"Lady Godiva": "Essie"
},
"Metallics": {
"Sequin Sash": "Essie",
"Shifting Power": "Essie",
"Steel-Ing The Scene": "Essie",
"Loophole": "Essie",
"Carnival": "Essie",
"Jiggle Hi Jiggle Low": "Essie",
"Silver Bullions": "Essie",
"Beyond Cozy": "Essie",
"Golden Nuggets": "Essie"
},
"Minnie Mouse": {
"You Moust You Moust": "OPI",
"I’m All Ears": "OPI",
"Nothin’ Mousie ‘Bout It": "OPI",
"The Color of Minnie": "OPI"
},
"Brights": {
"A Grape Fit!": "OPI",
"And This Little Piggy": "OPI",
"Atomic Orange": "OPI",
"Blue My Mind": "OPI",
"Bright Light Big Color": "OPI",
"Brights Power": "OPI",
"Bronzed To Pefection": "OPI",
"Can't Hear Myself Pink!": "OPI",
"Charged Up Cherry": "OPI",
"Clubbing Til Sunrise": "OPI",
"Dating a Royal": "OPI",
"Do You Lilac It?": "OPI",
"Feelin' Hot Hot Hot": "OPI",
"Fiercely Fiona": "OPI",
"Flashbulb Fuchsia": "OPI",
"Gargantuan Green Grape": "OPI",
"Give Me the Moon!": "OPI",
"Green-wich Village": "OPI",
"I Sea You Wear OPI": "OPI",
"I Stop For Red": "OPI",
"In My Back Pocket": "OPI",
"Lemonade Stand By Your Man": "OPI",
"Light My Sapphire": "OPI",
"Miami Beet": "OPI",
"Mod About You": "OPI",
"Mod-ern Girl": "OPI",
"My Car Has Navy-gation": "OPI",
"My Private Jet": "OPI",
"Need Sunglasses?": "OPI",
"No Room for the Blues": "OPI",
"On Pinks & Needles": "OPI",
"On the Same Paige": "OPI",
"OPI Ink": "OPI",
"OPI on Collins Ave": "OPI",
"Over the Taupe": "OPI",
"Pink Before You Leap": "OPI",
"Plugged-in Plum": "OPI",
"Purple with a Purpose": "OPI",
"Shorts Story": "OPI",
"Significant Other Color": "OPI",
"Sit Under the Apple Tree": "OPI",
"Teal the Cows Come Home": "OPI",
"That's Berry Daring": "OPI",
"That's Hot Pink": "OPI",
"The Berry Thought Of You": "OPI",
"The It Color": "OPI",
"Totally Tangerine": "OPI",
"Up Front & Personal": "OPI"
},
"Gwen Stefani": {
"4 in the Morning": "OPI",
"Hey Baby": "OPI",
"I Sing in Color": "OPI",
"In True Stefani Fashion": "OPI",
"Love.Angel.Music.Baby.": "OPI",
"Push and Shove": "OPI"
},
"Ford Mustang": {
"50 Years of Style": "OPI",
"Angel With A Leadfoot": "OPI",
"Girls Love Ponies": "OPI",
"Queen of the Road": "OPI",
"Race Red": "OPI",
"The Sky’s My Limit": "OPI"
},
"MLB Fashion Plate": {
"7th Inning Strrretch": "OPI",
"Girls Love Diamonds": "OPI",
"Love Athletes in Cleats": "OPI",
"Orange You Going to the Game?": "OPI",
"Right Off the Beat": "OPI",
"Short--STOP!": "OPI",
"Umpires Come Out at Night": "OPI"
},
"Mariah Carey": {
"A Butterfly Moment": "OPI",
"Anti-bleak": "OPI",
"Can't Let Go": "OPI",
"Get Your Number": "OPI",
"Pink Yet Lavender": "OPI",
"Sprung": "OPI",
"Stay the Night": "OPI",
"The Impossible": "OPI"
},
"Classic Colors": {
"A Good Man-darin is Hard to Find": "OPI",
"A Rose at Down . . . Broke by Noon": "OPI",
"A True Ab-Original": "OPI",
"A-taupe the Space Needle": "OPI",
"An Affair in Red Square": "OPI",
"Animal-istic": "OPI",
"Aphrodite's Pink Nightie": "OPI",
"Are We There Yet?": "OPI",
"Austin-tatious Turquoise": "OPI",
"Barefoot in Barcelona": "OPI",
"Bastille My Heart": "OPI",
"Be a Dahlia Won't You": "OPI",
"Big Apple Red": "OPI",
"Big Hair… Big Nails": "OPI",
"Birthday Babe": "OPI",
"Black Cherry Chutney": "OPI",
"Black Onyx": "OPI",
"Bling Dynasty": "OPI",
"Bogota Blackberry": "OPI",
"Brand New Skates": "OPI",
"Brisbane Bronze": "OPI",
"Bullish on OPI": "OPI",
"Cajun Shrimp": "OPI",
"California Raspberry": "OPI",
"Cha-ching Cherry": "OPI",
"Charmed By A Snake": "OPI",
"Chick Flick Cherry": "OPI",
"Chocolate Moose": "OPI",
"Chop-Sticking to My Story": "OPI",
"Color So Hot It Berns": "OPI",
"Color to Diner For": "OPI",
"Congeniality is My Middle Name": "OPI",
"Cosmo Not Tonight Honey": "OPI",
"Cozu-Melted the Sun": "OPI",
"Curry Up Don't Be Late": "OPI",
"Didgeridoo Your Nails?": "OPI",
"Dim Sum Plum": "OPI",
"Do You Think I’m Tex-y": "OPI",
"Don’t Mess With OPI": "OPI",
"Dulce de Leche": "OPI",
"Dutch Tulips": "OPI",
"ElePhantastic Pink": "OPI",
"Espresso Your Style": "OPI",
"Fair Drinkum Pinkum": "OPI",
"Fit for a Queensland": "OPI",
"Funky Dunkey": "OPI",
"Get in the Expresso Lane": "OPI",
"Get Me to the Taj On Time": "OPI",
"Give Me Moor!": "OPI",
"Glim Merry Gold Glitter Top Coat": "OPI",
"Glitzerland": "OPI",
"Got the Blues for Red": "OPI",
"Grand Canyon Sunset": "OPI",
"Grape … Set … Match": "OPI",
"Guy Meets Gal-veston": "OPI",
"Happy Anniversary": "OPI",
"Hawaiian Orchid": "OPI",
"Heart of Gold": "OPI",
"Here Today Aragon Tomorrow": "OPI",
"Honk If You Love OPI": "OPI",
"Hot and Spicy": "OPI",
"I Brake for Manicures": "OPI",
"I Eat Mainely Lobster": "OPI",
"I Juggle…Men": "OPI",
"I Vant To Be A-Lone Star": "OPI",
"I'm Indi-a Mood for Love": "OPI",
"I'm Not Really a Waitress": "OPI",
"I'm Suzi and I'm a Chocoholic": "OPI",
"I'm Yours": "OPI",
"In the Spot-Light Pink": "OPI",
"It's My Year": "OPI",
"It's Sheer Luck": "OPI",
"Italian Love Affair": "OPI",
"It’s Totally Fort Worth It": "OPI",
"Jade is the New Black": "OPI",
"Japanese Rose Garden": "OPI",
"Kennebunk-port": "OPI",
"Koala Bear-y": "OPI",
"La Paz-itively Hot": "OPI",
"Lincoln Park After Dark": "OPI",
"Lincoln Park After Midnight": "OPI",
"Log on to Love": "OPI",
"Louvre Me Louvre Me Not": "OPI",
"Love is a Racket": "OPI",
"Lucerne-tainly Look marvelous": "OPI",
"Lucky Lucky Lavender": "OPI",
"Malaga Wine": "OPI",
"Manicurist of Seville": "OPI",
"Mauving to Manitoba": "OPI",
"Meet Me on the Star Ferry": "OPI",
"Midnight in Moscow": "OPI",
"Miso Happy With This Color": "OPI",
"Moon Over Mumbai": "OPI",
"My Address is Hollywood": "OPI",
"My Chihauhua Bites!": "OPI",
"Nomad's Dream": "OPI",
"Not Like the Movies": "OPI",
"OPI Red": "OPI",
"Pamplona Purple": "OPI",
"Pepe’s Purple Passion": "OPI",
"Pink Flamenco": "OPI",
"Plymouth Lox": "OPI",
"Pompeli Purple": "OPI",
"Pros & Bronze": "OPI",
"Red My Fortune Cookie": "OPI",
"Rent": "OPI",
"Road House Blues": "OPI",
"Rosy Mistletoe-Sies": "OPI",
"Royal Flush Blush": "OPI",
"Russian Navy": "OPI",
"Samoan Sand": "OPI",
"San Tan-tonio": "OPI",
"Senorita Rose-alita": "OPI",
"Servin' Up Sparkle": "OPI",
"Ski Teal We Drop": "OPI",
"Skull & Glossbones": "OPI",
"Smok'n in Havana": "OPI",
"So Many Clowns…So Little Time": "OPI",
"Step Right Up!": "OPI",
"Stranger Tides": "OPI",
"Strawberry Margarita": "OPI",
"Suzi Loves Cowboys": "OPI",
"Suzi Says Feng Shui": "OPI",
"Suzi Sells Sushi by the Seashore": "OPI",
"Suzi Skis in the Pyrenees": "OPI",
"Suzi Takes the Wheel": "OPI",
"Swimsuit … Nailed It!": "OPI",
"Tasmanian Devil Made Me Do It": "OPI",
"The One That Got Away": "OPI",
"The Thrill of Brazil": "OPI",
"Thoroughly Modern Millie": "OPI",
"Tickle My France-y": "OPI",
"Tijuana Dace?": "OPI",
"Too Hot Pink to Hold ‘Em": "OPI",
"Uh-oh. Roll Down the Window": "OPI",
"Vanila-Zuela": "OPI",
"William Tell Me About OPI": "OPI",
"Yes I Can-Can": "OPI",
"Yodel Me on My Cell": "OPI",
"Yoga-ta Get this Blue!": "OPI",
"You Don't Know Jacques!": "OPI",
"Your Royal Shine-ness": "OPI",
"Y’all Come Back Ya Hear": "OPI"
},
"Coca Cola": {
"A Grape Affair": "OPI",
"Coca-Cola Red": "OPI",
"Get Cherried Away": "OPI",
"Green on the Runway": "OPI",
"My Signature is “DC”": "OPI",
"Orange You Fantastic!": "OPI",
"Sorry I’m Fizzy Today": "OPI",
"Today I Accomplished Zero": "OPI",
"You’re So Vain-illa": "OPI"
},
"San Francisco": {
"A Piers to Be Tan": "OPI",
"Alcatraz … Rocks": "OPI",
"Dining al Frisco": "OPI",
"Embarca-Dare Ya!": "OPI",
"First Date at the Golden Gate": "OPI",
"Haven't the Foggiest": "OPI",
"I Knead Sour-Dough": "OPI",
"In the Cable Car-Pool Lane": "OPI",
"Incognito in Sausalito": "OPI",
"It's All San Andreas's Fault": "OPI",
"Keeping Suzi at Bay": "OPI",
"Lost on Lombard": "OPI",
"Muir Muir on the Wall": "OPI",
"Peace & Love & OPI": "OPI",
"Wharf! Wharf! Wharf!": "OPI"
},
"Holland": {
"A Roll in the Hague": "OPI",
"Did You 'ear About Van Gogh?": "OPI",
"Dutch 'Ya Just Love OPI?": "OPI",
"Gouda Gouda Two Shoes": "OPI",
"I Don't Give a Rotterdam!": "OPI",
"I Have a Herring Problem": "OPI",
"Kiss Me on My Tulips": "OPI",
"Pedal Faster Suzi": "OPI",
"Red Lights Ahead . . . Where?": "OPI",
"Thanks a Wind Million": "OPI",
"Vampsterdam": "OPI",
"Wooden Shoe Like to Know?": "OPI"
},
"Euro Centrale": {
"A Woman's Prague-ative": "OPI",
"Can't Find My Czechbook": "OPI",
"Hands Off My Kielbasa!": "OPI",
"I Saw…U Saw…We Saw…Warsaw": "OPI",
"My Paprika is Hotter Than Yours!": "OPI",
"My Vampire is Buff": "OPI",
"OPI . . . Eurso Euro": "OPI",
"OY-Another Polish Joke!": "OPI",
"Polka.com": "OPI",
"Suzi's Hungary AGAIN!": "OPI",
"Vant to Bite My Neck?": "OPI",
"You're Such a BudaPest": "OPI"
},
"Mariah Carey Holiday": {
"All I Want For Christmas": "OPI",
"All Sparkly and Gold": "OPI",
"Cute Litter Vixen": "OPI",
"I Snow You Love Me": "OPI",
"My Favorite Ornament": "OPI",
"Ski Slope Sweetie": "OPI",
"Sleigh Ride For Two": "OPI",
"Underneath The Mistletoe": "OPI",
"Visions Of Love": "OPI",
"Warm Me Up": "OPI",
"Wonderous Star": "OPI"
},
"Hawaii": {
"Aloha from OPI": "OPI",
"Do You Take Lei Away?": "OPI",
"Go with the Lava Flow": "OPI",
"Hello Hawaii Ya?": "OPI",
"Is Mai Tai Crooked?": "OPI",
"Just Lanai-ing Around": "OPI",
"Lost My Bikini in Molokini": "OPI",
"My Gecko Does Tricks": "OPI",
"Pineapples Have Peelings Too!": "OPI",
"Suzi Shops & Island Hops": "OPI",
"That's Hula-rious!": "OPI",
"This Color's Making Waves": "OPI"
},
"Soft Shades": {
"Alpine Snow": "OPI",
"Alter Ego": "OPI",
"Bubble Bath": "OPI",
"Chicago Champagne Toast": "OPI",
"Coney Island Cotton Candy": "OPI",
"First Dance": "OPI",
"Funny Bunny": "OPI",
"Getting Acquinted": "OPI",
"Got a Day to Knight": "OPI",
"Heart Throb": "OPI",
"Hearts and Tarts": "OPI",
"Here's to Us": "OPI",
"Hopelessly in Love": "OPI",
"I Think in Pink": "OPI",
"I'll Take the Cake": "OPI",
"Java Mauve-A": "OPI",
"Just Tea-sing": "OPI",
"Kiss On The Chic": "OPI",
"Kyoto Pearl": "OPI",
"Love Letter": "OPI",
"Makes Men Blush": "OPI",
"Mimosas for Mr and Mrs": "OPI",
"No Bees Please": "OPI",
"Not So Bora-Boring Pink": "OPI",
"Oh So Glam": "OPI",
"Otherwise Engaged": "OPI",
"Our Song": "OPI",
"Passion": "OPI",
"Pillow Talk": "OPI",
"Pink-A-Doodle": "OPI",
"Pinking of You": "OPI",
"Princess Rule": "OPI",
"Privacy Please": "OPI",
"Romeo & Joliet": "OPI",
"Room Service": "OPI",
"Rosy Future": "OPI",
"Second Honeymoon": "OPI",
"Serenade": "OPI",
"She's Golden": "OPI",
"Silk Negligee": "OPI",
"Sweet Heart": "OPI",
"Sweet Memories": "OPI",
"Sweet Pie": "OPI",
"Tutti Frutti Tonga": "OPI",
"Who Needs a Prince?": "OPI"
},
"Brazil": {
"AmazON…AmazOFF": "OPI",
"Don't Bossa Nova Me Around": "OPI",
"I Just Can't Cope-acabana": "OPI",
"I Sao Paulo Over There": "OPI",
"Kiss Me I'm Brazilian": "OPI",
"Live.Love.Carnaval": "OPI",
"Next Stop…The Bikini Zone": "OPI",
"OPI Scores a Goal!": "OPI",
"Red Hot Rio": "OPI",
"Taupe-less Beach": "OPI",
"Toucan Do It If You Try": "OPI",
"Where Did Suzi's Man-go?": "OPI"
},
"New York City Ballet": {
"Barre My Soul": "OPI",
"Care to Danse?": "OPI",
"Don't Touch My Tutu!": "OPI",
"My Pointe Exactly": "OPI",
"You Callin' Me a Lyre?": "OPI"
},
"Infinite Shine": {
"Base Coat": "OPI",
"Brains & Bronze": "OPI",
"Can't Be Beet": "OPI",
"Endurance Race To The Finish": "OPI",
"From Here To Eternity": "OPI",
"Get Ryd-of-thym Blues": "OPI",
"Girl Without Limits": "OPI",
"Graplely Admired": "OPI",
"In Pursuit Of Purple": "OPI",
"Indignantly Indigo": "OPI",
"It Never Ends": "OPI",
"Maintaining My Sand-ity": "OPI",
"Never Give Up": "OPI",
"No Stopping Me Now": "OPI",
"Pretty Pink Perserves": "OPI",
"Rasin The Bar": "OPI",
"Relentless Ruby": "OPI",
"Running With The In-Finite Crowd": "OPI",
"Set In Stone": "OPI",
"She Went On And On": "OPI",
"Staying Neutral": "OPI",
"Steel Waters Run Deep": "OPI",
"Strong Coal-ition": "OPI",
"Tanacious Spirit ": "OPI",
"To Infinity & Blue-yond": "OPI",
"To The Finish Lime": "OPI",
"Top Coat": "OPI",
"Unequivocally Crimson": "OPI",
"Unrepentantly Red": "OPI",
"We're In The Black": "OPI",
"Withstands The Test Of Thyme": "OPI",
"You Can Count On It": "OPI"
},
"Sheer Tints": {
"Be Magentale With Me": "OPI",
"Don't Violet Me Down": "OPI",
"I Can Teal You Like Me": "OPI",
"I'm Never Amberrassed": "OPI"
},
"Germany": {
"Berlin There Done That": "OPI",
"Danke-Shiny Red": "OPI",
"Deutsch You Want Me Baby?": "OPI",
"Don’t Pretzel My Buttons": "OPI",
"Don’t Talk Bach To Me": "OPI",
"Every Month is Oktoberfest": "OPI",
"German-icure by OPI": "OPI",
"My Very First Knockwurst": "OPI",
"Nein! Nein! Nein! OK Fine!": "OPI",
"Schnapps Out of It!": "OPI",
"Suzi & the 7 Düsseldorfs": "OPI",
"Unfor-greta-bly Blue": "OPI"
},
"Shatter": {
"Black Shatter": "OPI",
"Blue Shatter": "OPI",
"Gold Shatter": "OPI",
"Navy Shatter": "OPI",
"Pink Shatter": "OPI",
"Red Shatter": "OPI",
"Shatter the Scales": "OPI",
"Silver Shatter": "OPI",
"Sup Bass Shatter": "OPI",
"Turquoise Shatter": "OPI",
"White Shatter": "OPI"
},
"Spotlight on Glitter": {
"Blush Hour": "OPI",
"Chasing Rainbows": "OPI",
"Desperately Seeking Sequins": "OPI",
"I Reached My Gold!": "OPI",
"Rose of Light": "OPI",
"You Pink Too Much": "OPI"
},
"Skyfall James Bond": {
"Bond James Bond": "OPI",
"Is That Silva?": "OPI",
"Moonraker": "OPI",
"Morning Moneypenny": "OPI",
"On Her Majesty's Secret Service": "OPI",
"The Spy Who Loved Me": "OPI"
},
"Spiderman": {
"Call Me Gwen-ever": "OPI",
"Into the Night": "OPI",
"Just Spotted The Lizard": "OPI",
"My Boyfriend Scales Walls": "OPI",
"Number One Nemesis": "OPI",
"Shatter the Scales": "OPI",
"Your Web or Mine?": "OPI"
},
"Nordic": {
"Can’t aFjörd Not To": "OPI",
"Do You Have this Color in Stock-holm?": "OPI",
"Going My Way or Norway?": "OPI",
"How Great is Your Dane?": "OPI",
"Ice-Bergers & Fries": "OPI",
"My Dogsled is a Hybrid": "OPI",
"My Voice is a Little Norse": "OPI",
"OPI with a Nice Finn-ish": "OPI",
"Skating on Thin Ice-Land": "OPI",
"Suzi Has a Swede Tooth": "OPI",
"Thank Glogg It’s Friday!": "OPI",
"Viking in a Vinter Vonderland": "OPI"
},
"50 Shades of Grey": {
"Cement The Deal": "OPI",
"Dark Side Of The Mood": "OPI",
"Embrace The Gray": "OPI",
"My Silk Tie": "OPI",
"Romantically Involved": "OPI",
"Shine For Me": "OPI"
},
"Muppets Most Wanted": {
"Chillin' Like a Villain": "OPI",
"Gaining Mole-mentum": "OPI",
"I Love Applause": "OPI",
"IInt'l Crime Caper": "OPI",
"Kermit Me to Speak": "OPI",
"Let's Do Anything We Want!": "OPI",
"Miss Piggy's Big Number": "OPI",
"Muppets World Tour": "OPI"
},
"Gwen Stefani Holiday": {
"Christmas Gone Plaid": "OPI",
"Cinnamon Sweet": "OPI",
"Comet In The Sky": "OPI",
"Fashion A Bow": "OPI",
"First Class Desires": "OPI",
"I Carol About You": "OPI",
"I'll Tinsel You In": "OPI",
"In A Holidaze": "OPI",
"Just BeClaus": "OPI",
"Kiss Me-Or Elf": "OPI",
"Love Is Hot And Coal": "OPI",
"Plaid About You": "OPI",
"Red Fingers & Mistletoes": "OPI",
"Rollin'in Cashmere": "OPI",
"Sheer To The Top": "OPI",
"Sleight Parking Only": "OPI",
"Snow Globetrotter": "OPI",
"So Elegant": "OPI",
"UnFrost My Heart": "OPI",
"What's Your Point-settia": "OPI"
},
"Designer": {
"Designer Bold": "OPI",
"Designer Classic": "OPI",
"Designer Extravagance": "OPI",
"Designer Glow": "OPI",
"Designer Indulgence": "OPI",
"Designer Lapis": "OPI",
"Designer Luxurious": "OPI",
"Designer Magic": "OPI",
"Designer Mystery": "OPI",
"Designer Opulence": "OPI",
"Designer Pewter": "OPI",
"Designer Radiance": "OPI",
"Designer Reflection": "OPI",
"Designer Reserve": "OPI",
"Designer Titanium": "OPI",
"Designer Top Coat": "OPI",
"Designer Tourmaline": "OPI"
},
"Nicki Minaj": {
"Did It On 'Em": "OPI",
"Sup Bass Shatter": "OPI"
},
"Oz": {
"Don’t Burst My Bubble": "OPI",
"Glints of Glinda": "OPI",
"Lights of Emerald City": "OPI",
"What Wizardry is This?": "OPI",
"When Monkeys Fly!": "OPI",
"Which is Witch?": "OPI"
},
"Neon": {
"Down to the Core-al": "OPI",
"Hotter than You Pink": "OPI",
"Juice Bar Hopping": "OPI",
"Life Gave Me Lemons": "OPI",
"Push & Pur-Pull": "OPI",
"Put a Coat On!": "OPI",
"You are So Outta Lime!": "OPI"
},
"Peanuts": {
"Good Grief!": "OPI",
"To Be or Not To Beagle": "OPI",
"Where's My Blanket???": "OPI",
"Who Are You Calling Bossy": "OPI"
},
"Bond Girls": {
"Honey Ryder": "OPI",
"Jinx": "OPI",
"Pussy Galore": "OPI",
"Solitaire": "OPI",
"Tiffany Case": "OPI",
"Vesper": "OPI"
},
"Pink of Hearts": {
"Pink of Hearts Shatter": "OPI",
"You Glitter Be Good to Me": "OPI"
},
"Bright Nail Lacquers": {
"Teddy Girl": "Butter London",
"Fruit Machine": "Butter London",
"Trout Pout": "Butter London",
"Tiddly": "Butter London",
"Jaffa": "Butter London",
"Macbeth": "Butter London",
"Cake-Hole": "Butter London",
"Primrose Hill Picnic": "Butter London",
"Snog": "Butter London",
"Ladybird": "Butter London",
"Pillar Box Red": "Butter London",
"Cotton Buds": "Butter London",
"Cheeky Chops": "Butter London",
"Cheers!": "Butter London",
"Kip": "Butter London",
"Fiver": "Butter London",
"Artful Dodger": "Butter London",
"Slapper": "Butter London",
"Blagger": "Butter London",
"Giddy Kipper": "Butter London",
"Sprog": "Butter London",
"Molly Coddled": "Butter London",
"Pistol Pink": "Butter London",
"Lovely Jubbly": "Butter London"
},
"Dark Nail Lacquers": {
"Tramp Stamp": "Butter London",
"Ruby Murray": "Butter London",
"La Moss": "Butter London",
"Wallis": "Butter London",
"British Racing Green": "Butter London",
"Stag Do": "Butter London",
"Royal Navy": "Butter London",
"HRH": "Butter London",
"Branwen's Feather": "Butter London",
"Marrow": "Butter London",
"Chimney Sweep": "Butter London",
"Gobsmacked": "Butter London",
"The Black Knight": "Butter London",
"Union Jack Black": "Butter London"
},
"Glitter Nail Lacquers": {