-
Notifications
You must be signed in to change notification settings - Fork 0
/
SalesAtRisk_Public.twb
3497 lines (3496 loc) · 224 KB
/
SalesAtRisk_Public.twb
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
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20192.19.0515.1630 -->
<workbook original-version='18.1' source-build='2019.2.0 (20192.19.0515.1630)' source-platform='win' version='18.1' xml:base='https://public.tableau.com' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<SheetIdentifierTracking ignorable='true' predowngraded='true' />
<SortTagCleanup />
<WindowsPersistSimpleIdentifiers />
<ZoneBackgroundTransparency />
</document-format-change-manifest>
<repository-location id='SalesAtRisk_Public' path='/workbooks' revision='1.3' />
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource hasconnection='false' inline='true' name='Parameters' version='18.1'>
<aliases enabled='yes' />
<column caption='Top Customers' datatype='integer' name='[Parameter 1]' param-domain-type='range' role='measure' type='quantitative' value='5'>
<calculation class='tableau' formula='5' />
<range granularity='5' max='20' min='5' />
</column>
<column caption='Profit Bin Size' datatype='integer' name='[Parameter 2]' param-domain-type='range' role='measure' type='quantitative' value='200'>
<calculation class='tableau' formula='200' />
<range granularity='50' max='200' min='50' />
</column>
</datasource>
<datasource caption='Sample - Superstore' inline='true' name='Sample - Superstore (copy)' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection name='Sample - Superstoreleaf'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='C:/Users/DavidSM/Documents/My Tableau Repository/Datasources/2019.2/en_GB-EU/Sample - Superstore.xls' interpretationMode='0' password='' server='' validate='no' workgroup-auth-mode='as-is' />
</named-connection>
</named-connections>
<relation connection='Sample - Superstoreleaf' name='Orders$' table='[Orders$]' type='table'>
<columns gridOrigin='A1:U9995:no:A1:U9995:0' header='yes' outcome='6'>
<column datatype='integer' name='Row ID' ordinal='0' />
<column datatype='string' name='Order ID' ordinal='1' />
<column datatype='date' name='Order Date' ordinal='2' />
<column datatype='date' name='Ship Date' ordinal='3' />
<column datatype='string' name='Ship Mode' ordinal='4' />
<column datatype='string' name='Customer ID' ordinal='5' />
<column datatype='string' name='Customer Name' ordinal='6' />
<column datatype='string' name='Segment' ordinal='7' />
<column datatype='string' name='Country' ordinal='8' />
<column datatype='string' name='City' ordinal='9' />
<column datatype='string' name='State' ordinal='10' />
<column datatype='integer' name='Postal Code' ordinal='11' />
<column datatype='string' name='Region' ordinal='12' />
<column datatype='string' name='Product ID' ordinal='13' />
<column datatype='string' name='Category' ordinal='14' />
<column datatype='string' name='Sub-Category' ordinal='15' />
<column datatype='string' name='Product Name' ordinal='16' />
<column datatype='real' name='Sales' ordinal='17' />
<column datatype='integer' name='Quantity' ordinal='18' />
<column datatype='real' name='Discount' ordinal='19' />
<column datatype='real' name='Profit' ordinal='20' />
</columns>
</relation>
<refresh increment-key='' incremental-updates='false' />
<metadata-records>
<metadata-record class='column'>
<remote-name>Row ID</remote-name>
<remote-type>20</remote-type>
<local-name>[Row ID]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Row ID</remote-alias>
<ordinal>0</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Order ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Order ID]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Order ID</remote-alias>
<ordinal>1</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Order Date</remote-name>
<remote-type>7</remote-type>
<local-name>[Order Date]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Order Date</remote-alias>
<ordinal>2</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"DATE"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Ship Date</remote-name>
<remote-type>7</remote-type>
<local-name>[Ship Date]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Ship Date</remote-alias>
<ordinal>3</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"DATE"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Ship Mode</remote-name>
<remote-type>130</remote-type>
<local-name>[Ship Mode]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Ship Mode</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Customer ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Customer ID]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Customer ID</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Customer Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Customer Name]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Customer Name</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Segment</remote-name>
<remote-type>130</remote-type>
<local-name>[Segment]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Segment</remote-alias>
<ordinal>7</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Country</remote-name>
<remote-type>130</remote-type>
<local-name>[Country]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Country</remote-alias>
<ordinal>8</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>City</remote-name>
<remote-type>130</remote-type>
<local-name>[City]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>City</remote-alias>
<ordinal>9</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>State</remote-name>
<remote-type>130</remote-type>
<local-name>[State]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>State</remote-alias>
<ordinal>10</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Postal Code</remote-name>
<remote-type>20</remote-type>
<local-name>[Postal Code]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Postal Code</remote-alias>
<ordinal>11</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Region</remote-name>
<remote-type>130</remote-type>
<local-name>[Region]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Region</remote-alias>
<ordinal>12</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Product ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Product ID]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Product ID</remote-alias>
<ordinal>13</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Category</remote-name>
<remote-type>130</remote-type>
<local-name>[Category]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Category</remote-alias>
<ordinal>14</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Sub-Category</remote-name>
<remote-type>130</remote-type>
<local-name>[Sub-Category]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Sub-Category</remote-alias>
<ordinal>15</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Product Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Product Name]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Product Name</remote-alias>
<ordinal>16</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RGB_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Sales</remote-name>
<remote-type>5</remote-type>
<local-name>[Sales]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Sales</remote-alias>
<ordinal>17</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quantity</remote-name>
<remote-type>20</remote-type>
<local-name>[Quantity]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Quantity</remote-alias>
<ordinal>18</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Discount</remote-name>
<remote-type>5</remote-type>
<local-name>[Discount]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Discount</remote-alias>
<ordinal>19</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Profit</remote-name>
<remote-type>5</remote-type>
<local-name>[Profit]</local-name>
<parent-name>[Orders$]</parent-name>
<remote-alias>Profit</remote-alias>
<ordinal>20</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Orders$]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>0</attribute>
<attribute datatype='string' name='gridOrigin'>"A1:U9995:no:A1:U9995:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>6</attribute>
</attributes>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column caption='Sales at Risk' datatype='real' name='[Calculation_1809321175088971778]' role='measure' type='quantitative'>
<calculation class='tableau' formula='IF ATTR([federated.16fbjih143m6id1d00imf1ti3pg5].[Status]) = '3' THEN SUM([Sales]) END' />
</column>
<column caption='Profit Ratio' datatype='real' default-format='p0%' name='[Calculation_5571209093911105]' role='measure' type='quantitative'>
<calculation class='tableau' formula='SUM([Profit])/SUM([Sales])' scope-isolation='false' />
</column>
<column datatype='string' name='[City]' role='dimension' semantic-role='[City].[Name]' type='nominal' />
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='string' hidden='true' name='[Customer ID]' role='dimension' type='nominal' />
<column datatype='string' name='[Customer Name]' role='dimension' type='nominal' />
<column aggregation='Avg' datatype='real' default-format='p0%' name='[Discount]' role='measure' type='quantitative' />
<column datatype='integer' name='[Number of Records]' role='measure' type='quantitative' user:auto-column='numrec'>
<calculation class='tableau' formula='1' />
</column>
<column datatype='integer' default-format='*00000' name='[Postal Code]' role='dimension' semantic-role='[ZipCode].[Name]' type='ordinal' />
<column datatype='string' hidden='true' name='[Product ID]' role='dimension' type='nominal' />
<column caption='Manufacturer' datatype='string' name='[Product Name (group)]' role='dimension' type='nominal'>
<calculation class='categorical-bin' column='[Product Name]' new-bin='true'>
<bin default-name='false' value='"3D Systems"'>
<value>"3D Systems Cube Printer, 2nd Generation, Magenta"</value>
<value>"3D Systems Cube Printer, 2nd Generation, White"</value>
</bin>
<bin default-name='false' value='"3M"'>
<value>"3M Hangers With Command Adhesive"</value>
<value>"3M Office Air Cleaner"</value>
<value>"3M Organizer Strips"</value>
<value>"3M Polarizing Light Filter Sleeves"</value>
<value>"3M Polarizing Task Lamp with Clamp Arm, Light Gray"</value>
<value>"3M Replacement Filter for Office Air Cleaner for 20' x 33' Room"</value>
</bin>
<bin default-name='false' value='"Acco"'>
<value>"Acco 3-Hole Punch"</value>
<value>"Acco 6 Outlet Guardian Basic Surge Suppressor"</value>
<value>"Acco 6 Outlet Guardian Premium Plus Surge Suppressor"</value>
<value>"Acco 6 Outlet Guardian Premium Surge Suppressor"</value>
<value>"Acco 6 Outlet Guardian Standard Surge Suppressor"</value>
<value>"Acco 7-Outlet Masterpiece Power Center, Wihtout Fax/Phone Line Protection"</value>
<value>"Acco Banker's Clasps, 5 3/4\"-Long"</value>
<value>"Acco Clips to Go Binder Clips, 24 Clips in Two Sizes"</value>
<value>"Acco D-Ring Binder w/DublLock"</value>
<value>"Acco Data Flex Cable Posts For Top & Bottom Load Binders, 6\" Capacity"</value>
<value>"Acco Economy Flexible Poly Round Ring Binder"</value>
<value>"Acco Expandable Hanging Binders"</value>
<value>"Acco Flexible ACCOHIDE Square Ring Data Binder, Dark Blue, 11 1/2\" X 14\" 7/8\""</value>
<value>"Acco Four Pocket Poly Ring Binder with Label Holder, Smoke, 1\""</value>
<value>"Acco Glide Clips"</value>
<value>"Acco Hanging Data Binders"</value>
<value>"Acco Hot Clips Clips to Go"</value>
<value>"Acco Perma 2700 Stacking Storage Drawers"</value>
<value>"Acco Perma 3000 Stacking Storage Drawers"</value>
<value>"Acco Perma 4000 Stacking Storage Drawers"</value>
<value>"Acco Pressboard Covers with Storage Hooks, 14 7/8\" x 11\", Dark Blue"</value>
<value>"Acco Pressboard Covers with Storage Hooks, 14 7/8\" x 11\", Executive Red"</value>
<value>"Acco Pressboard Covers with Storage Hooks, 14 7/8\" x 11\", Light Blue"</value>
<value>"Acco Pressboard Covers with Storage Hooks, 9 1/2\" x 11\", Executive Red"</value>
<value>"Acco PRESSTEX Data Binder with Storage Hooks, Dark Blue, 14 7/8\" X 11\""</value>
<value>"Acco PRESSTEX Data Binder with Storage Hooks, Dark Blue, 9 1/2\" X 11\""</value>
<value>"Acco PRESSTEX Data Binder with Storage Hooks, Light Blue, 9 1/2\" X 11\""</value>
<value>"Acco Recycled 2\" Capacity Laser Printer Hanging Data Binders"</value>
<value>"Acco Side-Punched Conventional Columnar Pads"</value>
<value>"Acco Six-Outlet Power Strip, 4' Cord Length"</value>
<value>"Acco Smartsocket Color-Coded Six-Outlet AC Adapter Model Surge Protectors"</value>
<value>"Acco Smartsocket Table Surge Protector, 6 Color-Coded Adapter Outlets"</value>
<value>"Acco Suede Grain Vinyl Round Ring Binder"</value>
<value>"Acco Translucent Poly Ring Binders"</value>
</bin>
<bin default-name='false' value='"ACCOHIDE"'>
<value>"ACCOHIDE 3-Ring Binder, Blue, 1\""</value>
<value>"ACCOHIDE Binder by Acco"</value>
<value>"Accohide Poly Flexible Ring Binders"</value>
</bin>
<bin default-name='false' value='"Acme"'>
<value>"Acme 10\" Easy Grip Assistive Scissors"</value>
<value>"Acme 8\" Straight Scissors"</value>
<value>"Acme Box Cutter Scissors"</value>
<value>"Acme Design Line 8\" Stainless Steel Bent Scissors w/Champagne Handles, 3-1/8\" Cut"</value>
<value>"Acme Design Stainless Steel Bent Scissors"</value>
<value>"Acme Elite Stainless Steel Scissors"</value>
<value>"Acme Forged Steel Scissors with Black Enamel Handles"</value>
<value>"Acme Galleria Hot Forged Steel Scissors with Colored Handles"</value>
<value>"Acme Hot Forged Carbon Steel Scissors with Nickel-Plated Handles, 3 7/8\" Cut, 8\"L"</value>
<value>"Acme Kleen Earth Office Shears"</value>
<value>"Acme Kleencut Forged Steel Scissors"</value>
<value>"Acme Office Executive Series Stainless Steel Trimmers"</value>
<value>"Acme Preferred Stainless Steel Scissors"</value>
<value>"Acme Rosewood Handle Letter Opener"</value>
<value>"Acme Serrated Blade Letter Opener"</value>
<value>"Acme Softgrip Scissors"</value>
<value>"Acme Stainless Steel Office Snips"</value>
<value>"Acme Tagit Stainless Steel Antibacterial Scissors"</value>
<value>"Acme Titanium Bonded Scissors"</value>
<value>"Acme Value Line Scissors"</value>
</bin>
<bin default-name='false' value='"Adams"'>
<value>"Adams \"While You Were Out\" Message Pads"</value>
<value>"Adams Phone Message Book, 200 Message Capacity, 8 1/16” x 11”"</value>
<value>"Adams Phone Message Book, Professional, 400 Message Capacity, 5 3/6” x 11”"</value>
<value>"Adams Telephone Message Book W/Dividers/Space For Phone Numbers, 5 1/4\"X8 1/2\", 200/Messages"</value>
<value>"Adams Telephone Message Book W/Dividers/Space For Phone Numbers, 5 1/4\"X8 1/2\", 300/Messages"</value>
<value>"Adams Telephone Message Book w/Frequently-Called Numbers Space, 400 Messages per Book"</value>
<value>"Adams Telephone Message Books, 5 1/4” x 11”"</value>
<value>"Adams Write n' Stick Phone Message Book, 11\" X 5 1/4\", 200 Messages"</value>
<value>"Spiral Phone Message Books with Labels by Adams"</value>
</bin>
<bin default-name='false' value='"Advantus"'>
<value>"Advantus 10-Drawer Portable Organizer, Chrome Metal Frame, Smoke Drawers"</value>
<value>"Advantus Employee of the Month Certificate Frame, 11 x 13-1/2"</value>
<value>"Advantus Map Pennant Flags and Round Head Tacks"</value>
<value>"Advantus Motivational Note Cards"</value>
<value>"Advantus Panel Wall Acrylic Frame"</value>
<value>"Advantus Panel Wall Certificate Holder - 8.5x11"</value>
<value>"Advantus Plastic Paper Clips"</value>
<value>"Advantus Push Pins"</value>
<value>"Advantus Push Pins, Aluminum Head"</value>
<value>"Advantus Rolling Drawer Organizers"</value>
<value>"Advantus Rolling Storage Box"</value>
<value>"Advantus SlideClip Paper Clips"</value>
<value>"Advantus T-Pin Paper Clips"</value>
</bin>
<bin default-name='false' value='"Akro"'>
<value>"Akro Stacking Bins"</value>
<value>"Akro-Mils 12-Gallon Tote"</value>
</bin>
<bin default-name='false' value='"Alliance"'>
<value>"Alliance Big Bands Rubber Bands, 12/Pack"</value>
<value>"Alliance Rubber Bands"</value>
<value>"Alliance Super-Size Bands, Assorted Sizes"</value>
<value>"Sterling Rubber Bands by Alliance"</value>
</bin>
<bin default-name='false' value='"Ampad"'>
<value>"Ampad \#10 Peel & Seel Holiday Envelopes"</value>
<value>"Ampad Evidence Wirebond Steno Books, 6\" x 9\""</value>
<value>"Ampad Gold Fibre Wirebound Steno Books, 6\" x 9\", Gregg Ruled"</value>
<value>"Ampad Phone Message Book, Recycled, 400 Message Capacity, 5 ¾” x 11”"</value>
<value>"Ampad Poly Cover Wirebound Steno Book, 6\" x 9\" Assorted Colors, Gregg Ruled"</value>
</bin>
<bin default-name='false' value='"Angle-D"'>
<value>"Angle-D Binders with Locking Rings, Label Holders"</value>
<value>"Angle-D Ring Binders"</value>
</bin>
<bin default-name='false' value='"Anker"'>
<value>"Anker 24W Portable Micro USB Car Charger"</value>
<value>"Anker 36W 4-Port USB Wall Charger Travel Power Adapter for iPhone 5s 5c 5"</value>
<value>"Anker Astro 15000mAh USB Portable Charger"</value>
<value>"Anker Astro Mini 3000mAh Ultra-Compact Portable Charger"</value>
<value>"Anker Ultra-Slim Mini Bluetooth 3.0 Wireless Keyboard"</value>
<value>"Anker Ultrathin Bluetooth Wireless Keyboard Aluminum Cover with Stand"</value>
</bin>
<bin default-name='false' value='"Apple"'>
<value>"Apple EarPods with Remote and Mic"</value>
<value>"Apple iPhone 5"</value>
<value>"Apple iPhone 5C"</value>
<value>"Apple iPhone 5S"</value>
</bin>
<bin default-name='false' value='"Array"'>
<value>"Array Memo Cubes"</value>
<value>"Array Parchment Paper, Assorted Colors"</value>
</bin>
<bin default-name='false' value='"AT&T"'>
<value>"AT&T 1070 Corded Phone"</value>
<value>"AT&T 1080 Corded phone"</value>
<value>"AT&T 1080 Phone"</value>
<value>"AT&T 17929 Lendline Telephone"</value>
<value>"AT&T 841000 Phone"</value>
<value>"AT&T CL2909"</value>
<value>"AT&T CL82213"</value>
<value>"AT&T CL83451 4-Handset Telephone"</value>
<value>"AT&T EL51110 DECT"</value>
<value>"AT&T SB67148 SynJ"</value>
<value>"AT&T TR1909W"</value>
</bin>
<bin default-name='false' value='"Ativa"'>
<value>"Ativa D5772 2-Line 5.8GHz Digital Expandable Corded/Cordless Phone System with Answering & Caller ID/Call Waiting, Black/Silver"</value>
<value>"Ativa MDM8000 8-Sheet Micro-Cut Shredder"</value>
<value>"Ativa V4110MDD Micro-Cut Shredder"</value>
</bin>
<bin default-name='false' value='"Atlantic"'>
<value>"Atlantic Metals Mobile 2-Shelf Bookcases, Custom Colors"</value>
<value>"Atlantic Metals Mobile 3-Shelf Bookcases, Custom Colors"</value>
<value>"Atlantic Metals Mobile 4-Shelf Bookcases, Custom Colors"</value>
<value>"Atlantic Metals Mobile 5-Shelf Bookcases, Custom Colors"</value>
</bin>
<bin default-name='false' value='"Avanti"'>
<value>"Avanti 1.7 Cu. Ft. Refrigerator"</value>
<value>"Avanti 4.4 Cu. Ft. Refrigerator"</value>
</bin>
<bin default-name='false' value='"Avaya"'>
<value>"Avaya 4621SW VoIP phone"</value>
<value>"Avaya 5410 Digital phone"</value>
<value>"Avaya 5420 Digital phone"</value>
<value>"Avaya IP Phone 1140E VoIP phone"</value>
</bin>
<bin default-name='false' value='"Avery"'>
<value>"Avery 05222 Permanent Self-Adhesive File Folder Labels for Typewriters, on Rolls, White, 250/Roll"</value>
<value>"Avery 3 1/2\" Diskette Storage Pages, 10/Pack"</value>
<value>"Avery 4027 File Folder Labels for Dot Matrix Printers, 5000 Labels per Box, White"</value>
<value>"Avery 473"</value>
<value>"Avery 474"</value>
<value>"Avery 475"</value>
<value>"Avery 476"</value>
<value>"Avery 477"</value>
<value>"Avery 478"</value>
<value>"Avery 479"</value>
<value>"Avery 48"</value>
<value>"Avery 480"</value>
<value>"Avery 481"</value>
<value>"Avery 482"</value>
<value>"Avery 483"</value>
<value>"Avery 484"</value>
<value>"Avery 485"</value>
<value>"Avery 486"</value>
<value>"Avery 487"</value>
<value>"Avery 488"</value>
<value>"Avery 489"</value>
<value>"Avery 49"</value>
<value>"Avery 490"</value>
<value>"Avery 491"</value>
<value>"Avery 492"</value>
<value>"Avery 493"</value>
<value>"Avery 494"</value>
<value>"Avery 495"</value>
<value>"Avery 496"</value>
<value>"Avery 497"</value>
<value>"Avery 498"</value>
<value>"Avery 499"</value>
<value>"Avery 5"</value>
<value>"Avery 50"</value>
<value>"Avery 500"</value>
<value>"Avery 501"</value>
<value>"Avery 502"</value>
<value>"Avery 503"</value>
<value>"Avery 504"</value>
<value>"Avery 505"</value>
<value>"Avery 506"</value>
<value>"Avery 507"</value>
<value>"Avery 508"</value>
<value>"Avery 509"</value>
<value>"Avery 51"</value>
<value>"Avery 510"</value>
<value>"Avery 511"</value>
<value>"Avery 512"</value>
<value>"Avery 513"</value>
<value>"Avery 514"</value>
<value>"Avery 515"</value>
<value>"Avery 516"</value>
<value>"Avery 517"</value>
<value>"Avery 518"</value>
<value>"Avery 519"</value>
<value>"Avery 52"</value>
<value>"Avery 520"</value>
<value>"Avery Address/Shipping Labels for Typewriters, 4\" x 2\""</value>
<value>"Avery Arch Ring Binders"</value>
<value>"Avery Binder Labels"</value>
<value>"Avery Binding System Hidden Tab Executive Style Index Sets"</value>
<value>"Avery Durable Binders"</value>
<value>"Avery Durable Plastic 1\" Binders"</value>
<value>"Avery Durable Poly Binders"</value>
<value>"Avery Durable Slant Ring Binders"</value>
<value>"Avery Durable Slant Ring Binders With Label Holder"</value>
<value>"Avery Durable Slant Ring Binders, No Labels"</value>
<value>"Avery File Folder Labels"</value>
<value>"Avery Flip-Chart Easel Binder, Black"</value>
<value>"Avery Fluorescent Highlighter Four-Color Set"</value>
<value>"Avery Framed View Binder, EZD Ring (Locking), Navy, 1 1/2\""</value>
<value>"Avery Hanging File Binders"</value>
<value>"Avery Heavy-Duty EZD Binder With Locking Rings"</value>
<value>"Avery Heavy-Duty EZD View Binder with Locking Rings"</value>
<value>"Avery Hi-Liter Comfort Grip Fluorescent Highlighter, Yellow Ink"</value>
<value>"Avery Hi-Liter EverBold Pen Style Fluorescent Highlighters, 4/Pack"</value>
<value>"Avery Hi-Liter Fluorescent Desk Style Markers"</value>
<value>"Avery Hi-Liter GlideStik Fluorescent Highlighter, Yellow Ink"</value>
<value>"Avery Hi-Liter Pen Style Six-Color Fluorescent Set"</value>
<value>"Avery Hi-Liter Smear-Safe Highlighters"</value>
<value>"Avery Hidden Tab Dividers for Binding Systems"</value>
<value>"Avery Hole Reinforcements"</value>
<value>"Avery Legal 4-Ring Binder"</value>
<value>"Avery Metallic Poly Binders"</value>
<value>"Avery Non-Stick Binders"</value>
<value>"Avery Non-Stick Heavy Duty View Round Locking Ring Binders"</value>
<value>"Avery Personal Creations Heavyweight Cards"</value>
<value>"Avery Poly Binder Pockets"</value>
<value>"Avery Premier Heavy-Duty Binder with Round Locking Rings"</value>
<value>"Avery Printable Repositionable Plastic Tabs"</value>
<value>"Avery Recycled Flexi-View Covers for Binding Systems"</value>
<value>"Avery Reinforcements for Hole-Punch Pages"</value>
<value>"Avery Round Ring Poly Binders"</value>
<value>"Avery Self-Adhesive Photo Pockets for Polaroid Photos"</value>
<value>"Avery Trapezoid Extra Heavy Duty 4\" Binders"</value>
<value>"Avery Trapezoid Ring Binder, 3\" Capacity, Black, 1040 sheets"</value>
<value>"Avery Triangle Shaped Sheet Lifters, Black, 2/Pack"</value>
<value>"Avery White Multi-Purpose Labels"</value>
<value>"Black Avery Memo-Size 3-Ring Binder, 5 1/2\" x 8 1/2\""</value>
</bin>
<bin default-name='false' value='"Balt"'>
<value>"Balt Solid Wood Rectangular Table"</value>
<value>"Balt Solid Wood Round Tables"</value>
<value>"Balt Split Level Computer Training Table"</value>
</bin>
<bin default-name='false' value='"Barricks"'>
<value>"Barricks 18\" x 48\" Non-Folding Utility Table with Bottom Storage Shelf"</value>
<value>"Barricks Non-Folding Utility Table with Steel Legs, Laminate Tops"</value>
</bin>
<bin default-name='false' value='"Belkin"'>
<value>"Belkin 19\" Center-Weighted Shelf, Gray"</value>
<value>"Belkin 19\" Vented Equipment Shelf, Black"</value>
<value>"Belkin 325VA UPS Surge Protector, 6'"</value>
<value>"Belkin 5 Outlet SurgeMaster Power Centers"</value>
<value>"Belkin 6 Outlet Metallic Surge Strip"</value>
<value>"Belkin 7 Outlet SurgeMaster II"</value>
<value>"Belkin 7 Outlet SurgeMaster Surge Protector with Phone Protection"</value>
<value>"Belkin 7-Outlet SurgeMaster Home Series"</value>
<value>"Belkin 8 Outlet Surge Protector"</value>
<value>"Belkin 8 Outlet SurgeMaster II Gold Surge Protector"</value>
<value>"Belkin 8 Outlet SurgeMaster II Gold Surge Protector with Phone Protection"</value>
<value>"Belkin 8-Outlet Premiere SurgeMaster II Surge Protectors"</value>
<value>"Belkin F5C206VTEL 6 Outlet Surge"</value>
<value>"Belkin F8E887 USB Wired Ergonomic Keyboard"</value>
<value>"Belkin F9G930V10-GRY 9 Outlet Surge"</value>
<value>"Belkin F9H710-06 7 Outlet SurgeMaster Surge Protector"</value>
<value>"Belkin F9M820V08 8 Outlet Surge"</value>
<value>"Belkin F9S820V06 8 Outlet Surge"</value>
<value>"Belkin Grip Candy Sheer Case / Cover for iPhone 5 and 5S"</value>
<value>"Belkin iPhone and iPad Lightning Cable"</value>
<value>"Belkin OmniView SE Rackmount Kit"</value>
<value>"Belkin Premiere Surge Master II 8-outlet surge protector"</value>
<value>"Belkin QODE FastFit Bluetooth Keyboard"</value>
<value>"Belkin SportFit Armband For iPhone 5s/5c, Fuchsia"</value>
<value>"Belkin Standard 104 key USB Keyboard"</value>
</bin>
<bin default-name='false' value='"Berol"'>
<value>"Berol Giant Pencil Sharpener"</value>
</bin>
<bin default-name='false' value='"Bestar"'>
<value>"Bestar Classic Bookcase"</value>
</bin>
<bin default-name='false' value='"Bevis"'>
<value>"Bevis 36 x 72 Conference Tables"</value>
<value>"Bevis 44 x 96 Conference Tables"</value>
<value>"Bevis Boat-Shaped Conference Table"</value>
<value>"Bevis Oval Conference Table, Walnut"</value>
<value>"Bevis Rectangular Conference Tables"</value>
<value>"Bevis Round Bullnose 29\" High Table Top"</value>
<value>"Bevis Round Conference Room Tables and Bases"</value>
<value>"Bevis Round Conference Table Top & Single Column Base"</value>
<value>"Bevis Round Conference Table Top, X-Base"</value>
<value>"Bevis Steel Folding Chairs"</value>
<value>"Bevis Traditional Conference Table Top, Plinth Base"</value>
</bin>
<bin default-name='false' value='"BIC"'>
<value>"BIC Brite Liner Grip Highlighters"</value>
<value>"BIC Brite Liner Grip Highlighters, Assorted, 5/Pack"</value>
<value>"BIC Brite Liner Highlighters"</value>
<value>"BIC Brite Liner Highlighters, Chisel Tip"</value>
<value>"BIC Liqua Brite Liner"</value>
</bin>
<bin default-name='false' value='"Binney & Smith"'>
<value>"Binney & Smith Crayola Metallic Colored Pencils, 8-Color Set"</value>
<value>"Binney & Smith Crayola Metallic Crayons, 16-Color Pack"</value>
<value>"Binney & Smith inkTank Desk Highlighter, Chisel Tip, Yellow, 12/Box"</value>
<value>"Binney & Smith inkTank Erasable Desk Highlighter, Chisel Tip, Yellow, 12/Box"</value>
<value>"Binney & Smith inkTank Erasable Pocket Highlighter, Chisel Tip, Yellow"</value>
</bin>
<bin default-name='false' value='"Bionaire"'>
<value>"Bionaire 99.97\% HEPA Air Cleaner"</value>
<value>"Bionaire Personal Warm Mist Humidifier/Vaporizer"</value>
</bin>
<bin default-name='false' value='"Boston"'>
<value>"Boston 1645 Deluxe Heavier-Duty Electric Pencil Sharpener"</value>
<value>"Boston 16701 Slimline Battery Pencil Sharpener"</value>
<value>"Boston 16750 Black Compact Battery Pencil Sharpener"</value>
<value>"Boston 16765 Mini Stand Up Battery Pencil Sharpener"</value>
<value>"Boston 16801 Nautilus Battery Pencil Sharpener"</value>
<value>"Boston 1730 StandUp Electric Pencil Sharpener"</value>
<value>"Boston 1799 Powerhouse Electric Pencil Sharpener"</value>
<value>"Boston 1827 Commercial Additional Cutter, Drive Gear & Gear Rack for 1606"</value>
<value>"Boston 1900 Electric Pencil Sharpener"</value>
<value>"Boston 19500 Mighty Mite Electric Pencil Sharpener"</value>
<value>"Boston Electric Pencil Sharpener, Model 1818, Charcoal Black"</value>
<value>"Boston Heavy-Duty Trimline Electric Pencil Sharpeners"</value>
<value>"Boston Home & Office Model 2000 Electric Pencil Sharpeners"</value>
<value>"Boston KS Multi-Size Manual Pencil Sharpener"</value>
<value>"Boston Model 1800 Electric Pencil Sharpener, Gray"</value>
<value>"BOSTON Model 1800 Electric Pencil Sharpeners, Putty/Woodgrain"</value>
<value>"BOSTON Ranger \#55 Pencil Sharpener, Black"</value>
<value>"Boston School Pro Electric Pencil Sharpener, 1670"</value>
</bin>
<bin default-name='false' value='"Bretford"'>
<value>"Bretford “Just In Time” Height-Adjustable Multi-Task Work Tables"</value>
<value>"Bretford CR4500 Series Slim Rectangular Table"</value>
<value>"Bretford CR8500 Series Meeting Room Furniture"</value>
<value>"Bretford Rectangular Conference Table Tops"</value>
</bin>
<bin default-name='false' value='"Brother"'>
<value>"Brother DCP1000 Digital 3 in 1 Multifunction Machine"</value>
<value>"Brother IntelliFAX-2840 Laser Fax"</value>
<value>"Brother IntelliFAX-5750e Plain Paper Fax Machine"</value>
<value>"Brother MFC-9340CDW LED All-In-One Printer, Copier Scanner"</value>
<value>"Brother MFC-J470DW Inkjet All-In-One Printer, Copier, Scanner"</value>
</bin>
<bin default-name='false' value='"Bulldog"'>
<value>"Bulldog Table or Wall-Mount Pencil Sharpener"</value>
<value>"Bulldog Vacuum Base Pencil Sharpener"</value>
</bin>
<bin default-name='false' value='"Bush"'>
<value>"Bush Advantage Collection Racetrack Conference Table"</value>
<value>"Bush Advantage Collection Round Conference Table"</value>
<value>"Bush Andora Bookcase, Maple/Graphite Gray Finish"</value>
<value>"Bush Andora Conference Table, Maple/Graphite Gray Finish"</value>
<value>"Bush Birmingham Collection Bookcase, Dark Cherry"</value>
<value>"Bush Cubix Collection Bookcases, Fully Assembled"</value>
<value>"Bush Cubix Conference Tables, Fully Assembled"</value>
<value>"Bush Heritage Pine Collection 5-Shelf Bookcase, Albany Pine Finish, *Special Order"</value>
<value>"Bush Mission Pointe Library"</value>
<value>"Bush Saratoga Collection 5-Shelf Bookcase, Hanover Cherry, *Special Order"</value>
<value>"Bush Somerset Collection Bookcase"</value>
<value>"Bush Westfield Collection Bookcases, Dark Cherry Finish"</value>
<value>"Bush Westfield Collection Bookcases, Medium Cherry Finish"</value>
</bin>
<bin default-name='false' value='"C-Line"'>
<value>"C-Line Cubicle Keepers Polyproplyene Holder w/Velcro Back, 8-1/2x11, 25/Bx"</value>
<value>"C-Line Cubicle Keepers Polyproplyene Holder With Velcro Backings"</value>
<value>"C-Line Magnetic Cubicle Keepers, Clear Polypropylene"</value>
<value>"C-Line Peel & Stick Add-On Filing Pockets, 8-3/4 x 5-1/8, 10/Pack"</value>
</bin>
<bin default-name='false' value='"Canon"'>
<value>"Canon Color ImageCLASS MF8580Cdw Wireless Laser All-In-One Printer, Copier, Scanner"</value>
<value>"Canon Image Class D660 Copier"</value>
<value>"Canon imageCLASS 2200 Advanced Copier"</value>
<value>"Canon Imageclass D680 Copier / Fax"</value>
<value>"Canon imageCLASS MF7460 Monochrome Digital Laser Multifunction Copier"</value>
<value>"Canon PC-428 Personal Copier"</value>
<value>"Canon PC1060 Personal Laser Copier"</value>
<value>"Canon PC1080F Personal Copier"</value>
<value>"Canon PC170 Desktop Personal Copier"</value>
<value>"Canon PC940 Copier"</value>
</bin>
<bin default-name='false' value='"Cardinal"'>
<value>"Cardinal EasyOpen D-Ring Binders"</value>
<value>"Cardinal Hold-It CD Pocket"</value>
<value>"Cardinal Holdit Business Card Pockets"</value>
<value>"Cardinal Holdit Data Disk Pockets"</value>
<value>"Cardinal HOLDit! Binder Insert Strips,Extra Strips"</value>
<value>"Cardinal Poly Pocket Divider Pockets for Ring Binders"</value>
<value>"Cardinal Slant-D Ring Binder, Heavy Gauge Vinyl"</value>
<value>"Cardinal Slant-D Ring Binders"</value>
</bin>
<bin default-name='false' value='"Carina"'>
<value>"Carina 42\"Hx23 3/4\"W Media Storage Unit"</value>
<value>"Carina Double Wide Media Storage Towers in Natural & Black"</value>
<value>"Carina Media Storage Towers in Natural & Black"</value>
<value>"Carina Mini System Audio Rack, Model AR050B"</value>
</bin>
<bin default-name='false' value='"Chromcraft"'>
<value>"Chromcraft 48\" x 96\" Racetrack Double Pedestal Table"</value>
<value>"Chromcraft Bull-Nose Wood 48\" x 96\" Rectangular Conference Tables"</value>
<value>"Chromcraft Bull-Nose Wood Oval Conference Tables & Bases"</value>
<value>"Chromcraft Bull-Nose Wood Round Conference Table Top, Wood Base"</value>
<value>"Chromcraft Rectangular Conference Tables"</value>
<value>"Chromcraft Round Conference Tables"</value>
</bin>
<bin default-name='false' value='"Cisco"'>
<value>"Cisco 7975G IP Phone"</value>
<value>"Cisco 8961 IP Phone Charcoal"</value>
<value>"Cisco 8x8 Inc. 6753i IP Business Phone System"</value>
<value>"Cisco 9971 IP Video Phone Charcoal"</value>
<value>"Cisco CP-7936 Unified IP Conference Station Phone"</value>
<value>"Cisco CP-7937G Unified IP Conference Station Phone"</value>
<value>"Cisco Desktop Collaboration Experience DX650 IP Video Phone"</value>
<value>"Cisco IP Phone 7961G VoIP phone - Dark gray"</value>
<value>"Cisco IP Phone 7961G-GE VoIP phone"</value>
<value>"Cisco Small Business SPA 502G VoIP phone"</value>
<value>"Cisco SPA 501G IP Phone"</value>
<value>"Cisco SPA 502G IP Phone"</value>
<value>"Cisco SPA112 2 Port Phone Adapter"</value>
<value>"Cisco SPA301"</value>
<value>"Cisco SPA508G"</value>
<value>"Cisco SPA525G2 5-Line IP Phone"</value>
<value>"Cisco SPA525G2 IP Phone - Wireless"</value>
<value>"Cisco TelePresence System EX90 Videoconferencing Unit"</value>
<value>"Cisco Unified IP Phone 7945G VoIP phone"</value>
</bin>
<bin default-name='false' value='"ClearOne"'>
<value>"ClearOne CHATAttach 160 - speaker phone"</value>
<value>"ClearOne Communications CHAT 70 OC Speaker Phone"</value>
</bin>
<bin default-name='false' value='"Clearsounds"'>
<value>"Clearsounds A400"</value>
<value>"ClearSounds CSC500 Amplified Spirit Phone Corded phone"</value>
</bin>
<bin default-name='false' value='"Crayola"'>
<value>"Crayola Anti Dust Chalk, 12/Pack"</value>
<value>"Crayola Colored Pencils"</value>
</bin>
<bin default-name='false' value='"Cubify"'>
<value>"Cubify CubeX 3D Printer Double Head Print"</value>
<value>"Cubify CubeX 3D Printer Triple Head Print"</value>
</bin>
<bin default-name='false' value='"Dana"'>
<value>"Dana Fluorescent Magnifying Lamp, White, 36\""</value>
<value>"Dana Halogen Swing-Arm Architect Lamp"</value>
<value>"Dana Swing-Arm Lamps"</value>
</bin>
<bin default-name='false' value='"DAX"'>
<value>"DAX Black Cherry Wood-Tone Poster Frame"</value>
<value>"DAX Charcoal/Nickel-Tone Document Frame, 5 x 7"</value>
<value>"Dax Clear Box Frame"</value>
<value>"DAX Clear Channel Poster Frame"</value>
<value>"DAX Contemporary Wood Frame with Silver Metal Mat, Desktop, 11 x 14 Size"</value>
<value>"DAX Copper Panel Document Frame, 5 x 7 Size"</value>
<value>"DAX Cubicle Frames - 8x10"</value>
<value>"DAX Cubicle Frames, 8-1/2 x 11"</value>
<value>"DAX Executive Solid Wood Document Frame, Desktop or Hang, Mahogany, 5 x 7"</value>
<value>"DAX Metal Frame, Desktop, Stepped-Edge"</value>
<value>"DAX Natural Wood-Tone Poster Frame"</value>
<value>"DAX Solid Wood Frames"</value>
<value>"DAX Two-Tone Rosewood/Black Document Frame, Desktop, 5 x 7"</value>
<value>"DAX Two-Tone Silver Metal Document Frame"</value>
<value>"DAX Value U-Channel Document Frames, Easel Back"</value>
<value>"DAX Wood Document Frame"</value>
<value>"DAX Wood Document Frame."</value>
</bin>
<bin default-name='false' value='"Decoflex"'>
<value>"Decoflex Hanging Personal Folder File"</value>
<value>"Decoflex Hanging Personal Folder File, Blue"</value>
</bin>
<bin default-name='false' value='"Deflect-o"'>
<value>"Deflect-o DuraMat Antistatic Studded Beveled Mat for Medium Pile Carpeting"</value>
<value>"Deflect-o DuraMat Lighweight, Studded, Beveled Mat for Low Pile Carpeting"</value>
<value>"Deflect-o EconoMat Nonstudded, No Bevel Mat"</value>
<value>"Deflect-o EconoMat Studded, No Bevel Mat for Low Pile Carpeting"</value>
<value>"Deflect-o Glass Clear Studded Chair Mats"</value>
<value>"Deflect-O Glasstique Clear Desk Accessories"</value>
<value>"Deflect-o RollaMat Studded, Beveled Mat for Medium Pile Carpeting"</value>
<value>"Deflect-o SuperTray Unbreakable Stackable Tray, Letter, Black"</value>
</bin>
<bin default-name='false' value='"Dixon"'>
<value>"Dixon My First Ticonderoga Pencil, \#2"</value>
<value>"DIXON Oriole Pencils"</value>
<value>"Dixon Prang Watercolor Pencils, 10-Color Set with Brush"</value>
<value>"Dixon Ticonderoga Core-Lock Colored Pencils"</value>
<value>"Dixon Ticonderoga Core-Lock Colored Pencils, 48-Color Set"</value>
<value>"DIXON Ticonderoga Erasable Checking Pencils"</value>
<value>"Dixon Ticonderoga Erasable Colored Pencil Set, 12-Color"</value>
<value>"Dixon Ticonderoga Maple Cedar Pencil, \#2"</value>
<value>"Dixon Ticonderoga Pencils"</value>
</bin>
<bin default-name='false' value='"DMI"'>
<value>"DMI Arturo Collection Mission-style Design Wood Chair"</value>
<value>"DMI Eclipse Executive Suite Bookcases"</value>
</bin>
<bin default-name='false' value='"DXL"'>
<value>"DXL Angle-View Binders with Locking Rings by Samsill"</value>
<value>"DXL Angle-View Binders with Locking Rings, Black"</value>
</bin>
<bin default-name='false' value='"Eldon"'>
<value>"Eldon \"L\" Workstation Diamond Chairmat"</value>
<value>"Eldon 100 Class Desk Accessories"</value>
<value>"Eldon 200 Class Desk Accessories"</value>
<value>"Eldon 200 Class Desk Accessories, Black"</value>
<value>"Eldon 200 Class Desk Accessories, Burgundy"</value>
<value>"Eldon 200 Class Desk Accessories, Smoke"</value>
<value>"Eldon 300 Class Desk Accessories, Black"</value>
<value>"Eldon 400 Class Desk Accessories, Black Carbon"</value>
<value>"Eldon 500 Class Desk Accessories"</value>
<value>"Eldon Advantage Chair Mats for Low to Medium Pile Carpets"</value>
<value>"Eldon Advantage Foldable Chair Mats for Low Pile Carpets"</value>
<value>"Eldon Antistatic Chair Mats for Low to Medium Pile Carpets"</value>
<value>"Eldon Base for stackable storage shelf, platinum"</value>
<value>"Eldon Cleatmat Chair Mats for Medium Pile Carpets"</value>
<value>"Eldon Cleatmat Plus Chair Mats for High Pile Carpets"</value>
<value>"Eldon ClusterMat Chair Mat with Cordless Antistatic Protection"</value>
<value>"Eldon Delta Triangular Chair Mat, 52\" x 58\", Clear"</value>
<value>"Eldon Econocleat Chair Mats for Low Pile Carpets"</value>
<value>"Eldon Executive Woodline II Cherry Finish Desk Accessories"</value>
<value>"Eldon Executive Woodline II Desk Accessories, Mahogany"</value>
<value>"Eldon Expressions Desk Accessory, Wood Pencil Holder, Oak"</value>
<value>"Eldon Expressions Desk Accessory, Wood Photo Frame, Mahogany"</value>
<value>"Eldon Expressions Mahogany Wood Desk Collection"</value>
<value>"Eldon Expressions Punched Metal & Wood Desk Accessories, Black & Cherry"</value>
<value>"Eldon Expressions Punched Metal & Wood Desk Accessories, Pewter & Cherry"</value>
<value>"Eldon Expressions Wood and Plastic Desk Accessories, Cherry Wood"</value>
<value>"Eldon Expressions Wood and Plastic Desk Accessories, Oak"</value>
<value>"Eldon Expressions Wood Desk Accessories, Oak"</value>
<value>"Eldon File Chest Portable File"</value>
<value>"Eldon Fold 'N Roll Cart System"</value>
<value>"Eldon Gobal File Keepers"</value>
<value>"Eldon Image Series Black Desk Accessories"</value>
<value>"Eldon Image Series Desk Accessories, Burgundy"</value>
<value>"Eldon Imàge Series Desk Accessories, Clear"</value>
<value>"Eldon Image Series Desk Accessories, Ebony"</value>
<value>"Eldon Jumbo ProFile Portable File Boxes Graphite/Black"</value>
<value>"Eldon Mobile Mega Data Cart Mega Stackable Add-On Trays"</value>
<value>"Eldon Pizzaz Desk Accessories"</value>
<value>"Eldon Portable Mobile Manager"</value>
<value>"Eldon ProFile File 'N Store Portable File Tub Letter/Legal Size Black"</value>
<value>"Eldon Radial Chair Mat for Low to Medium Pile Carpets"</value>
<value>"Eldon Regeneration Recycled Desk Accessories, Black"</value>
<value>"Eldon Regeneration Recycled Desk Accessories, Smoke"</value>
<value>"Eldon Shelf Savers Cubes and Bins"</value>
<value>"Eldon Simplefile Box Office"</value>
<value>"Eldon Spacemaker Box, Quick-Snap Lid, Clear"</value>
<value>"Eldon Stackable Tray, Side-Load, Legal, Smoke"</value>
<value>"Eldon Wave Desk Accessories"</value>
</bin>
<bin default-name='false' value='"Electrix"'>
<value>"Electrix 20W Halogen Replacement Bulb for Zoom-In Desk Lamp"</value>
<value>"Electrix Architect's Clamp-On Swing Arm Lamp, Black"</value>
<value>"Electrix Fluorescent Magnifier Lamps & Weighted Base"</value>
<value>"Electrix Halogen Magnifier Lamp"</value>
<value>"Electrix Incandescent Magnifying Lamp, Black"</value>
</bin>
<bin default-name='false' value='"Enermax"'>