-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharte_MOMA.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 1.
2254 lines (2254 loc) · 404 KB
/
arte_MOMA.csv
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
"";"title";"artist";"artist_bio";"artist_birth_year";"artist_death_year";"num_artists";"n_female_artists";"n_male_artists";"artist_gender";"year_acquired";"year_created";"circumference_cm";"depth_cm";"diameter_cm";"height_cm";"length_cm";"width_cm";"seat_height_cm";"purchase";"gift";"exchange";"classification";"department"
"1";"Rope and People, I";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1936;1935;NA;NA;NA;104,8;NA;74,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"2";"Fire in the Evening";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1970;1929;NA;NA;NA;33,8;NA;33,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"3";"Portrait of an Equilibrist";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1966;1927;NA;NA;NA;60,3;NA;36,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"4";"Guitar";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1955;1919;NA;NA;NA;215,9;NA;78,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"5";"Grandmother";"Arthur Dove";"(American, 1880-1946)";1880;1946;1;0;1;"Male";1939;1925;NA;NA;NA;50,8;NA;54;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"6";"""M'Amenez-y""";"Francis Picabia";"(French, 1879-1953)";1879;1953;1;0;1;"Male";1968;1919;NA;NA;NA;129,2;NA;89,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"7";"Untitled";"Blinky Palermo";"(German, 1943-1977)";1943;1977;1;0;1;"Male";1997;1970;NA;NA;NA;200;NA;200;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"8";"Daylight Savings Time";"Pierre Roy";"(French, 1880-1950)";1880;1950;1;0;1;"Male";1931;1929;NA;NA;NA;54,6;NA;38,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"9";"The Bather";"Paul Cézanne";"(French, 1839-1906)";1839;1906;1;0;1;"Male";1934;1885;NA;NA;NA;127;NA;96,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"10";"Syntheses of Naples";"Enrico Prampolini";"(Italian, 1894-1956)";1894;1956;1;0;1;"Male";1941;1930;NA;NA;NA;100;NA;100,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"11";"Two Rabbis";"Jankel Adler";"(Polish, 1895-1949)";1895;1949;1;0;1;"Male";1949;1942;NA;NA;NA;86;NA;112,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"12";"The Flame and the Diver";"Jean Bazaine";"(French, 1904-2001)";1904;2001;1;0;1;"Male";1957;1953;NA;NA;NA;194,9;NA;129,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"13";"Girl Wading";"Elmer Bischoff";"(American, 1916-1991)";1916;1991;1;0;1;"Male";1960;1959;NA;NA;NA;209,8;NA;172;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"14";"Painting, 4";"Vasudeo S. Gaitonde";"(Indian, 1924-2001)";1924;2001;1;0;1;"Male";1963;1962;NA;NA;NA;101,6;NA;126,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"15";"The Voice";"Barnett Newman";"(American, 1905-1970)";1905;1970;1;0;1;"Male";1968;1950;NA;NA;NA;244,1;NA;268;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"16";"Plums on a Plate";"Preston Dickinson";"(American, 1889-1930)";1889;1930;1;0;1;"Male";1931;1926;NA;NA;NA;35,6;NA;50,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"17";"Composition in White, Black, and Red";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1937;1936;NA;NA;NA;102,2;NA;104,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"18";"Girl before a Mirror";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1937;1932;NA;NA;NA;162,3;NA;130,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"19";"Transparency";"James Edward Davis";"(American, 1901-1974)";1901;1974;1;0;1;"Male";1945;1944;NA;NA;NA;35,6;NA;51,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"20";"Woman with a Mandolin";"Georges Braque";"(French, 1882-1963)";1882;1963;1;0;1;"Male";1948;1937;NA;NA;NA;130,2;NA;97,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"21";"The Fitting";"Francisco Borčs";"(Spanish, 1898-1972)";1898;1972;1;0;1;"Male";1949;1934;NA;NA;NA;184,8;NA;220,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"22";"Murder in the Jungle";"Wilson Bigaud";"(Haitian, 1931-2010)";1931;2010;1;0;1;"Male";1951;1950;NA;NA;NA;60,6;NA;75,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"23";"Chief";"Franz Kline";"(American, 1910-1962)";1910;1962;1;0;1;"Male";1951;1950;NA;NA;NA;148,3;NA;186,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"24";"Panel for Edwin R. Campbell No. 3";"Vasily Kandinsky";"(French, born Russia. 1866-1944)";1866;1944;1;0;1;"Male";1954;1914;NA;NA;NA;162,5;NA;92,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"25";"Delight";"Hans Hofmann";"(American, born Germany. 1880-1966)";1880;1966;1;0;1;"Male";1956;1947;NA;NA;NA;126,9;NA;101,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"26";"Portrait of Jacob Meyer de Haan";"Paul Gauguin";"(French, 1848-1903)";1848;1903;1;0;1;"Male";1958;1889;NA;NA;NA;79,6;NA;51,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"27";"Nell and Jeremy Sandford";"John Randall Bratby";"(British, 1928-1992)";1928;1992;1;0;1;"Male";1959;1957;NA;NA;NA;197,7;NA;234;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"28";"Plumb Line in Yellow";"Jean McEwen";"(Canadian, 1923-1999)";1923;1999;1;0;1;"Male";1962;1961;NA;NA;NA;152,8;NA;152,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"29";"Woman in Striped Dress";"James Francis Gill";"(American, born 1934)";1934;NA;1;0;1;"Male";1963;1962;NA;NA;NA;101,4;NA;76,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"30";"Small Figure on Blue";"Michael Gross";"(Israeli, 1920-2004)";1920;2004;1;0;1;"Male";1965;1964;NA;NA;NA;50,1;NA;40,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"31";"Red and Blue";"Check Boterf";"(American, born 1934)";1934;NA;1;0;1;"Male";1969;1968;NA;96,8;NA;220,9;NA;118;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"32";"White #19";"Glenn Ligon";"(American, born 1960)";1960;NA;1;0;1;"Male";1996;1994;NA;NA;NA;213,4;NA;152,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"33";"House by the Railroad";"Edward Hopper";"(American, 1882-1967)";1882;1967;1;0;1;"Male";1930;1925;NA;NA;NA;61;NA;73,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"34";"Dr. Mayer-Hermann";"Otto Dix";"(German, 1891-1969)";1891;1969;1;0;1;"Male";1932;1926;NA;NA;NA;149,2;NA;99,0601981204;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"35";"Near Avenue A";"Niles Spencer";"(American, 1893-1952)";1893;1952;1;0;1;"Male";1937;1933;NA;NA;NA;76,8;NA;102,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"36";"Self-Portrait with Cropped Hair";"Frida Kahlo";"(Mexican, 1907-1954)";1907;1954;1;1;0;"Female";1943;1940;NA;NA;NA;40;NA;27,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"37";"Panel for Edwin R. Campbell No. 1";"Vasily Kandinsky";"(French, born Russia. 1866-1944)";1866;1944;1;0;1;"Male";1954;1914;NA;NA;NA;162,5;NA;80;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"38";"SUM, 2";"Alfonso Ossorio";"(American, born The Philipines. 1916-1990)";1916;1990;1;0;1;"Male";1961;1959;NA;NA;NA;243,2;NA;121,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"39";"Poltergeist";"Charles Hinman";"(American, born 1932)";1932;NA;1;0;1;"Male";1965;1964;NA;41,5;NA;250,7;NA;156,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"40";"Generative Painting: Black, Red, Orange";"Eduardo A. MacEntyre";"(Argentine, 1929-2014)";1929;2014;1;0;1;"Male";1967;1965;NA;NA;NA;164,9;NA;150,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"41";"Doorstop";"James Rosenquist";"(American, 1933-2017)";1933;2017;1;0;1;"Male";1996;1963;NA;42,5;NA;152,7;NA;213;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"42";"Seated Nude";"Bernard Karfiol";"(American, born Hungary. 1886-1952)";1886;1952;1;0;1;"Male";1930;1929;NA;NA;NA;101,6;NA;76,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"43";"Proletarian Victim";"David Alfaro Siqueiros";"(Mexican, 1896-1974)";1896;1974;1;0;1;"Male";1938;1933;NA;NA;NA;205,8;NA;120,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"44";"The Verdigris Goblet";"Emilio Pettoruti";"(Argentine, 1892-1971)";1892;1971;1;0;1;"Male";1943;1934;NA;NA;NA;54,9;NA;46;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"45";"Red Votive Lights";"Loren MacIver";"(American, 1909-1998)";1909;1998;1;1;0;"Female";1945;1943;NA;NA;NA;50,8;NA;65,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"46";"I See Again in Memory My Dear Udnie";"Francis Picabia";"(French, 1879-1953)";1879;1953;1;0;1;"Male";1954;1914;NA;NA;NA;250,2;NA;198,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"47";"Number 5-58";"Nassos Daphnis";"(American, born Greece. 1914-2010)";1914;2010;1;0;1;"Male";1959;1958;NA;NA;NA;162,7;NA;109,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"48";"Divided Hour";"Antonio Corpora";"(Italian, born Tunis. 1909-2004)";1909;2004;1;0;1;"Male";1960;1958;NA;NA;NA;145,9;NA;113,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"49";"Self-Portrait";"Vincent Canadé";"(American, 1879-1961)";1879;1961;1;0;1;"Male";1936;1926;NA;NA;NA;47,3;NA;35,6;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"50";"Edge of August";"Mark Tobey";"(American, 1890-1976)";1890;1976;1;0;1;"Male";1954;1953;NA;NA;NA;121,9;NA;71,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"51";"Enamored Tomcat";"Leonardo Cremonini";"(Italian, 1925-2010)";1925;2010;1;0;1;"Male";1955;1952;NA;NA;NA;58,7;NA;45,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"52";"Big Red";"Sam Francis";"(American, 1923-1994)";1923;1994;1;0;1;"Male";1958;1953;NA;NA;NA;303,2;NA;194;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"53";"The Tree";"Agnes Martin";"(American, born Canada. 1912-2004)";1912;2004;1;1;0;"Female";1965;1964;NA;NA;NA;182,8;NA;182,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"54";"Turnsole";"Kenneth Noland";"(American, 1924-2010)";1924;2010;1;0;1;"Male";1968;1961;NA;NA;NA;239;NA;239;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"55";"Untitled";"Cy Twombly";"(American, 1928-2011)";1928;2011;1;0;1;"Male";1969;1968;NA;NA;NA;172,8;NA;216;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"56";"Achrome";"Piero Manzoni";"(Italian, 1933-1963)";1933;1963;1;0;1;"Male";1999;1960;NA;NA;NA;41;NA;61;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"57";"Homestead";"Thomas Hart Benton";"(American, 1889-1975)";1889;1975;1;0;1;"Male";1938;1934;NA;NA;NA;63,5;NA;86,4;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"58";"Self-Portrait";"John Kane";"(American, born Scotland. 1860-1934)";1860;1934;1;0;1;"Male";1939;1929;NA;NA;NA;91,8;NA;68,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"59";"Departure";"Max Beckmann";"(German, 1884-1950)";1884;1950;1;0;1;"Male";1942;1932;NA;NA;NA;215,3;NA;115,3;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"60";"The New Rich";"Antonio Ruiz";"(Mexican, 1897-1964)";1897;1964;1;0;1;"Male";1943;1941;NA;NA;NA;32,1;NA;42,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"61";"The Angel Kidnappers";"Julio Castellanos";"(Mexican, 1905-1947)";1905;1947;1;0;1;"Male";1944;1943;NA;NA;NA;57,5;NA;94,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"62";"Execution (First Version)";"Balcomb Greene";"(American, 1904-1990)";1904;1990;1;0;1;"Male";1950;1948;NA;NA;NA;101,3;NA;75,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"63";"L'Estaque";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1951;1906;NA;NA;NA;35,3;NA;45,1;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"64";"Blast, I";"Adolph Gottlieb";"(American, 1903-1974)";1903;1974;1;0;1;"Male";1958;1957;NA;NA;NA;228,7;NA;114,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"65";"First Theme";"Burgoyne Diller";"(American, 1906-1965)";1906;1965;1;0;1;"Male";1958;1942;NA;NA;NA;106,6;NA;106,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"66";"Shinnecock Canal";"Grace Hartigan";"(American, 1922-2008)";1922;2008;1;1;0;"Female";1960;1957;NA;NA;NA;229,8;NA;193;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"67";"Shimmering Substance";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1968;1946;NA;NA;NA;76,3;NA;61,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"68";"Pettys Bright";"Larry Zox";"(American, 1936-2006)";1936;2006;1;0;1;"Male";1969;1968;NA;NA;NA;198,1;NA;364,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"69";"The Bride";"Hyman Bloom";"(American, born Latvia. 1913-2009)";1913;2009;1;0;1;"Male";1942;1941;NA;NA;NA;51,1;NA;126,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"70";"Still Life";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1949;1899;NA;NA;NA;46;NA;38,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"71";"Rainbow Rampage";"Lee Gatch";"(American, 1902-1968)";1902;1968;1;0;1;"Male";1951;1950;NA;NA;NA;71,1;NA;101,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"72";"Street Light";"Giacomo Balla";"(Italian, 1871-1958)";1871;1958;1;0;1;"Male";1954;1910;NA;NA;NA;174,7;NA;114,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"73";"Painting";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1956;1954;NA;NA;NA;160,6;NA;152,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"74";"Construction";"Richard Lindner";"(American, born Germany. 1901-1978)";1901;1978;1;0;1;"Male";1963;1962;NA;9,5;NA;29,9;NA;33;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"75";"The Mosque";"Ibrahim El-Salahi";"(Sudanese, born 1930)";1930;NA;1;0;1;"Male";1965;1964;NA;NA;NA;30,7;NA;46;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"76";"One: Number 31, 1950";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1968;1950;NA;NA;NA;269,5;NA;530,8;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"77";"The Red Studio";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1949;1911;NA;NA;NA;181;NA;219,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"78";"Family Portrait, II";"Florine Stettheimer";"(American, 1871-1944)";1871;1944;1;1;0;"Female";1956;1933;NA;NA;NA;117,4;NA;164;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"79";"Target with Four Faces";"Jasper Johns";"(American, born 1930)";1930;NA;1;0;1;"Male";1958;1955;NA;NA;NA;66;NA;66;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"80";"Hudson River School Series, 32";"James Jarvaise";"(American, born 1925)";1925;NA;1;0;1;"Male";1960;1957;NA;NA;NA;152,5;NA;121,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"81";"The Yellow Star";"Carl-Henning Pedersen";"(Danish, 1913-1993)";1913;1993;1;0;1;"Male";1961;1952;NA;NA;NA;124;NA;102,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"82";"B-171";"Tadasky (Tadasuke Kuwayama)";"(American, born Japan 1935)";1935;NA;1;0;1;"Male";1965;1964;NA;NA;NA;38,4;NA;38,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"83";"Visa";"Stuart Davis";"(American, 1892-1964)";1892;1964;1;0;1;"Male";1953;1951;NA;NA;NA;101,6;NA;132,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"84";"Florida Bark";"Ida E. Fischer";"(American, born Austria.1883-1956)";1883;1956;1;1;0;"Female";1955;1951;NA;NA;NA;40,7;NA;30,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"85";"Aru 6";"Willi Baumeister";"(German, 1889-1955)";1889;1955;1;0;1;"Male";1956;1955;NA;NA;NA;129,9;NA;99,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"86";"Green Target";"Jasper Johns";"(American, born 1930)";1930;NA;1;0;1;"Male";1958;1955;NA;NA;NA;152,4;NA;152,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"87";"Laocoön";"Robert Goodnough";"(American, 1917-2010)";1917;2010;1;0;1;"Male";1959;1958;NA;NA;NA;168,4;NA;137,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"88";"Running White";"Ellsworth Kelly";"(American, 1923-2015)";1923;2015;1;0;1;"Male";1960;1959;NA;NA;NA;223,6;NA;172,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"89";"Number 1";"Max Schnitzler";"(American, born Poland. 1903-1999)";1903;1999;1;0;1;"Male";1961;1955;NA;NA;NA;167,3;NA;126,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"90";"Trouble in Frisco";"Fletcher Martin";"(American, 1904-1979)";1904;1979;1;0;1;"Male";1939;1938;NA;NA;NA;76,2;NA;91,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"91";"Ouro Preto: St. John's Eve";"Alberto da Veiga Guignard";"(Brazilian, 1895-1962)";1895;1962;1;0;1;"Male";1943;1942;NA;NA;NA;80;NA;60;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"92";"The Vision";"Theora Hamblett";"(American, 1895-1977)";1895;1977;1;1;0;"Female";1955;1954;NA;NA;NA;45,4;NA;121,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"93";"The Park";"Gustav Klimt";"(Austrian, 1862-1918)";1862;1918;1;0;1;"Male";1957;1910;NA;NA;NA;110,4;NA;110,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"94";"White Numbers";"Jasper Johns";"(American, born 1930)";1930;NA;1;0;1;"Male";1958;1957;NA;NA;NA;86,5;NA;71,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"95";"Seamstress";"Raphael Soyer";"(American, born Russia.1899-1987)";1899;1987;1;0;1;"Male";1961;1956;NA;NA;NA;76,2;NA;61,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"96";"South Truro Church";"Morris Kantor";"(American, born Russia. 1896-1974)";1896;1974;1;0;1;"Male";1936;1934;NA;NA;NA;61,3;NA;68,6;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"97";"Still Life I";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1939;1922;NA;NA;NA;37,8;NA;46;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"98";"River Bathers";"Grace Hartigan";"(American, 1922-2008)";1922;2008;1;1;0;"Female";1954;1953;NA;NA;NA;176,2;NA;225,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"99";"Exit the Ballets Russes";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1958;1914;NA;NA;NA;136,5;NA;100,3;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"100";"Still Life II";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1939;1922;NA;NA;NA;38,1;NA;45,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"101";"Three Children";"Arbit Blatas";"(American, born Lithuania. 1908-1999)";1908;1999;1;0;1;"Male";1940;1938;NA;NA;NA;99,7;NA;34,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"102";"Napoleon in the Wilderness";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1942;1941;NA;NA;NA;46,3;NA;38,1;NA;TRUE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"103";"The Farm";"Rafael Moreno";"(Cuban, born Spain. 1887-1955)";1887;1955;1;0;1;"Male";1944;1943;NA;NA;NA;99,1;NA;198,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"104";"Tower and Tank";"Herman Rose";"(American, 1909-2007)";1909;2007;1;0;1;"Male";1949;1947;NA;NA;NA;38,1;NA;33;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"105";"Street, Dresden";"Ernst Ludwig Kirchner";"(German, 1880-1938)";1880;1938;1;0;1;"Male";1951;1908;NA;NA;NA;150,5;NA;200,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"106";"Pierrot";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1952;1918;NA;NA;NA;92,7;NA;73;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"107";"Woman with a Daffodil";"Lucian Freud";"(British, born Germany. 1922-2011)";1922;2011;1;0;1;"Male";1953;1945;NA;NA;NA;23,8;NA;14,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"108";"Rest in Air";"James McGarrell";"(American, born 1930)";1930;NA;1;0;1;"Male";1960;1958;NA;NA;NA;121,5;NA;151,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"109";"Reclining Nude";"Amedeo Modigliani";"(Italian, 1884-1920)";1884;1920;1;0;1;"Male";1950;1919;NA;NA;NA;72,4;NA;116,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"110";"Night Fishing at Antibes";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1952;1939;NA;NA;NA;205,8;NA;345,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"111";"Vocal Fabric of the Singer Rosa Silber";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1955;1922;NA;NA;NA;62,3;NA;52,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"112";"Gray Relief on Black";"Antoni Tŕpies";"(Spanish, 1923-2012)";1923;2012;1;0;1;"Male";1961;1959;NA;NA;NA;194,6;NA;170;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"113";"Untitled";"Francis Al˙s";"(Belgian, born 1959)";1959;NA;1;0;1;"Male";1999;1994;NA;NA;NA;120,0152;NA;188,2779;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"114";"Apples in the Hay";"Walt Kuhn";"(American, 1877-1949)";1877;1949;1;0;1;"Male";1936;1932;NA;NA;NA;76,2;NA;101,6;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"115";"Composition in Oval with Color Planes 1";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1950;1914;NA;NA;NA;107,6;NA;78,8;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"116";"Port of Hamburg";"Oskar Kokoschka";"(Austrian, 1886-1980)";1886;1980;1;0;1;"Male";1956;1951;NA;NA;NA;90,8;NA;120,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"117";"Spook Tree";"Armando Morales Sequeira";"(Nicaraguan, 1927-2011)";1927;2011;1;0;1;"Male";1956;1956;NA;NA;NA;130;NA;57,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"118";"Painterly Architectonic";"Lyubov Popova";"(Russian, 1889-1924)";1889;1924;1;1;0;"Female";1958;1917;NA;NA;NA;80;NA;98;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"119";"Threatened Game";"Ger Lataster";"(Dutch, 1920-2012)";1920;2012;1;0;1;"Male";1959;1956;NA;NA;NA;121,9;NA;172,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"120";"Jake at the New Viet Huong";"Elizabeth Peyton";"(American, born 1965)";1965;NA;1;1;0;"Female";2000;1995;NA;NA;NA;40,6;NA;30,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"121";"The Artist's Mother";"Alberto Giacometti";"(Swiss, 1901-1966)";1901;1966;1;0;1;"Male";1953;1950;NA;NA;NA;89,9;NA;61;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"122";"Personage, with Yellow Ochre and White";"Robert Motherwell";"(American, 1915-1991)";1915;1991;1;0;1;"Male";1957;1947;NA;NA;NA;182,8;NA;137;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"123";"Ondho";"Victor Vasarely";"(French, born Hungary 1908-1997)";1908;1997;1;0;1;"Male";1961;1956;NA;NA;NA;220;NA;180,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"124";"Pines and Rocks (Fontainebleau?)";"Paul Cézanne";"(French, 1839-1906)";1839;1906;1;0;1;"Male";1934;1897;NA;NA;NA;81,3;NA;65,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"125";"Christina's World";"Andrew Wyeth";"(American, 1917-2009)";1917;2009;1;0;1;"Male";1949;1948;NA;NA;NA;81,9;NA;121,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"126";"The Empire of Light, II";"René Magritte";"(Belgian, 1898-1967)";1898;1967;1;0;1;"Male";1951;1950;NA;NA;NA;78,8;NA;99,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"127";"The Spherical Roof Around our Tribe (Revolvers)";"Roberto Matta";"(Chilean, 1911-2002)";1911;2002;1;0;1;"Male";1954;1952;NA;NA;NA;199,7;NA;294,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"128";"Lady in a Park";"August Macke";"(German, 1887-1914)";1887;1914;1;0;1;"Male";1956;1914;NA;NA;NA;97,8;NA;58,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"129";"Faust, I";"Jan Müller";"(American, born Germany. 1922-1958)";1922;1958;1;0;1;"Male";1957;1956;NA;NA;NA;173;NA;304,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"130";"Bather";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1936;1909;NA;NA;NA;92,7;NA;74;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"131";"Workers and Paintings";"Honoré Sharrer";"(American, 1920-2009)";1920;2009;1;1;0;"Female";1944;1943;NA;NA;NA;29,5;NA;94;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"132";"Dragon Fruit";"Roberto Ossaye";"(Guatemalan, 1927-1954)";1927;1954;1;0;1;"Male";1957;1953;NA;NA;NA;32,7;NA;47,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"133";"Constanza";"George McNeil";"(American, 1908-1995)";1908;1995;1;0;1;"Male";1959;1958;NA;NA;NA;121,6;NA;121,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"134";"Still Life with Ginger Jar, Sugar Bowl, and Oranges";"Paul Cézanne";"(French, 1839-1906)";1839;1906;1;0;1;"Male";1934;1902;NA;NA;NA;60,6;NA;73,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"135";"The Geranium";"Max Weber";"(American, born Russia. 1881-1961)";1881;1961;1;0;1;"Male";1944;1911;NA;NA;NA;101,3;NA;81,9;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"136";"Still Life -- Glove and Newspaper";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1955;1921;NA;NA;NA;116,8;NA;89,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"137";"Z II";"László Moholy-Nagy";"(American, born Hungary. 1895-1946)";1895;1946;1;0;1;"Male";1956;1925;NA;NA;NA;95,4;NA;75,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"138";"Mother and Child";"Abraham Rattner";"(American, 1893-1978)";1893;1978;1;0;1;"Male";1940;1938;NA;NA;NA;73;NA;100;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"139";"Fugue";"John Tunnard";"(British, 1900-1971)";1900;1971;1;0;1;"Male";1943;1938;NA;NA;NA;61;NA;86,7;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"140";"The Two Musicians";"Max Weber";"(American, born Russia. 1881-1961)";1881;1961;1;0;1;"Male";1944;1917;NA;NA;NA;101,9;NA;76,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"141";"Cwn Tryfan Rock";"John Piper";"(British, 1903-1992)";1903;1992;1;0;1;"Male";1951;1950;NA;NA;NA;63,8;NA;76,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"142";"Two Russians";"Emil Nolde";"(German, 1867-1956)";1867;1956;1;0;1;"Male";1954;1915;NA;NA;NA;73,4;NA;90;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"143";"Landscape with Yellow Nudes";"Otto Mueller";"(German, 1874-1930)";1874;1930;1;0;1;"Male";1955;1919;NA;NA;NA;70,2;NA;90,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"144";"A Good Circular God";"Jeanne Reynal";"(American, 1903-1983)";1903;1983;1;1;0;"Female";1951;1948;NA;2,5;NA;94;NA;61,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"145";"Color Form Sychromy (Eidos)";"Morgan Russell";"(American, 1886-1953)";1886;1953;1;0;1;"Male";1951;1922;NA;NA;NA;36,8;NA;27;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"146";"No. 16 (Red, Brown, and Black)";"Mark Rothko";"(American, born Russia (now Latvia). 1903-1970)";1903;1970;1;0;1;"Male";1959;1958;NA;NA;NA;270,8;NA;297,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"147";"Still Life with Apples";"Paul Cézanne";"(French, 1839-1906)";1839;1906;1;0;1;"Male";1934;1895;NA;NA;NA;68,6;NA;92,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"148";"Nursery";"Stanley Spencer";"(British, 1891-1959)";1891;1959;1;0;1;"Male";1940;1936;NA;NA;NA;76,5;NA;91,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"149";"Dalmatian Scene";"Antonio Zoran Music";"(Italian, 1909-2005)";1909;2005;1;0;1;"Male";1953;1951;NA;NA;NA;54,3;NA;73;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"150";"Murtsphde, 570";"Iaroslav Serpan";"(French, born Czechoslovakia. 1922-1976)";1922;1976;1;0;1;"Male";1959;1957;NA;NA;NA;146;NA;113,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"151";"Golden Tension";"Will Barnet";"(American, 1911-2012)";1911;2012;1;0;1;"Male";1960;1959;NA;NA;NA;162,5;NA;101,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"152";"Flower Festival: Feast of Santa Anita";"Diego Rivera";"(Mexican, 1886-1957)";1886;1957;1;0;1;"Male";1936;1931;NA;NA;NA;199,3;NA;162,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"153";"Painting";"Pierre Soulages";"(French, born 1919)";1919;NA;1;0;1;"Male";1959;1956;NA;NA;NA;150,5;NA;195;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"154";"On the Beach (Double Self-Portrait)";"Christian Bérard";"(French, 1902-1949)";1902;1949;1;0;1;"Male";1960;1933;NA;NA;NA;80,8;NA;116,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"155";"City Walls";"Niles Spencer";"(American, 1893-1952)";1893;1952;1;0;1;"Male";1936;1921;NA;NA;NA;100;NA;73;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"156";"Jean Cocteau";"Christian Bérard";"(French, 1902-1949)";1902;1949;1;0;1;"Male";1940;1928;NA;NA;NA;65,1;NA;54;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"157";"Washington Crossing the Delaware";"Larry Rivers";"(American, 1923-2002)";1923;2002;1;0;1;"Male";1955;1953;NA;NA;NA;212,4;NA;283,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"158";"Number 3, 1954";"Myron Stout";"(American, 1908-1987)";1908;1987;1;0;1;"Male";1959;1954;NA;NA;NA;50,9;NA;40,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"159";"Family Picture";"Max Beckmann";"(German, 1884-1950)";1884;1950;1;0;1;"Male";1935;1920;NA;NA;NA;65,1;NA;101;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"160";"Self-Portrait";"Oskar Kokoschka";"(Austrian, 1886-1980)";1886;1980;1;0;1;"Male";1940;1913;NA;NA;NA;81,6;NA;49,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"161";"Forest Blizzard";"Jean-Paul Riopelle";"(Canadian, 1923-2002)";1923;2002;1;0;1;"Male";1954;1953;NA;NA;NA;170,5;NA;254,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"162";"The Shutters";"Giuseppe Guerreschi";"(Italian, 1929-1985)";1929;1985;1;0;1;"Male";1957;1956;NA;NA;NA;179,9;NA;109,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"163";"Kabuki";"Kumi Sugaď";"(Japanese, 1919-1996)";1919;1996;1;0;1;"Male";1959;1958;NA;NA;NA;145,8;NA;113,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"164";"Painting";"Modest Cuixart";"(Spanish, 1925-2001)";1925;2001;1;0;1;"Male";1960;1958;NA;NA;NA;225;NA;130,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"165";"Biker";"Susan Rothenberg";"(American, born 1945)";1945;NA;1;1;0;"Female";1986;1985;NA;NA;NA;188,3;NA;175,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"166";"Untitled (6.8.84)";"Oliver Jackson";"(American, born 1935)";1935;NA;1;0;1;"Male";1989;1984;NA;NA;NA;275;NA;242,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"167";"Expectation";"Richard Oelze";"(German, 1900-1981)";1900;1981;1;0;1;"Male";1940;1935;NA;NA;NA;81,6;NA;100,6;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"168";"Sounds in the Rock";"Theodoros Stamos";"(American, 1922-1997)";1922;1997;1;0;1;"Male";1947;1946;NA;NA;NA;122,2;NA;72,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"169";"Space";"Antoni Tŕpies";"(Spanish, 1923-2012)";1923;2012;1;0;1;"Male";1959;1956;NA;NA;NA;194,6;NA;170;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"170";"Two Apples a Lemon and a Pear June 30 1985";"Donald Sultan";"(American, born 1951)";1951;NA;1;0;1;"Male";1986;1985;NA;NA;NA;123,2;NA;123,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"171";"Benny and Mary Ellen Andrews";"Alice Neel";"(American, 1900-1984)";1900;1984;1;1;0;"Female";1988;1972;NA;NA;NA;152,4;NA;127;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"172";"Trash and Trashcan";"Neil Jenney";"(American, born 1945)";1945;NA;1;0;1;"Male";1989;1970;NA;NA;NA;148,6;NA;141,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"173";"The World War had caused a great shortage in Northern industry and also citizens of foreign countries were returning home";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4801;NA;45,7201;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"174";"In many of the communities the Negro press was read continually because of its attitude and its encouragement of the movement";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"175";"Another of the social causes of the migrants' leaving was that at times they did not feel safe, or it was not the best thing to be found on the streets late at night. They were arrested on the slightest provocation";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"176";"Child labor and a lack of education was one of the other reasons for people wishing to leave their homes";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"177";"And people all over the South began to discuss this great movement";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"178";"The labor agent who had been sent South by Northern industry was a very familiar person in the Negro counties";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"179";"In every home people who had not gone North met and tried to decide if they should go North or not";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"180";"The railroad stations in the South were crowded with people leaving for the North";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;0;NA;30,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"181";"The Negro press was also influential in urging the people to leave the South";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"182";"They arrived in great numbers into Chicago, the gateway of the West";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;0;NA;30,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"183";"They also worked in large numbers on the railroad";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"184";"The Negro was the largest source of labor to be found after all others had been exhausted";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"185";"The migrants arrived in great numbers";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"186";"They also made it very difficult for migrants leaving the South. They often went to railroad stations and arrested the Negroes wholesale, which in turn made them miss their train";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"187";"Living conditions were better in the North";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;0;NA;30,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"188";"Industries attempted to board their labor in quarters that were oftentimes very unhealthy. Labor camps were numerous";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"189";"Housing for the Negroes was a very difficult problem";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"190";"Race riots were very numerous all over the North because of the antagonism that was caused between the Negro and white workers. Many of these riots occurred because the Negro was used as a strike breaker in many of the Northern industries";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"191";"One of the largest race riots occurred in East St. Louis";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"192";"One of the main forms of social and recreational activities in which the migrants indulged occurred in the church";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"193";"Among one of the last groups to leave the South was the Negro professional who was forced to follow his clientele to make a living";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"194";"In the North the Negro had better educational facilities";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;30,4800609601;NA;45,7200914402;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"195";"The trains were packed continually with migrants";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"196";"And the migrants kept coming";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;0;NA;30,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"197";"They did not always leave because they were promised work in the North. Many of them left because of Southern conditions, one of them being great floods that ruined the crops, and therefore they were unable to make a living where they were";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"198";"They were very poor";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;0;NA;30,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"199";"The railroad stations were at times so over-packed with people leaving that special guards had to be called in to keep order";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;0;NA;30,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"200";"Among the social conditions that existed which was partly the cause of the migration was the injustice done to the Negroes in the courts";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"201";"Although the Negro was used to lynching, he found this an opportune time for him to leave where one had occurred";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"202";"The migration gained in momentum";"Jacob Lawrence";"(American, 1917-2000)";1917;2000;1;0;1;"Male";1942;1940;NA;NA;NA;45,7200914402;NA;30,4800609601;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"203";"Painting";"Nicolas de Staël";"(French, 1914-1955)";1914;1955;1;0;1;"Male";1951;1947;NA;NA;NA;195,6;NA;97,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"204";"Kenneth Fearing";"Alice Neel";"(American, 1900-1984)";1900;1984;1;1;0;"Female";1988;1935;NA;NA;NA;76,5;NA;66;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"205";"Parade";"Peter Blume";"(American, 1906-1992)";1906;1992;1;0;1;"Male";1935;1930;NA;NA;NA;125,1;NA;143,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"206";"Dance";"Maria Helena Vieira da Silva";"(French, born Portugal. 1908-1992)";1908;1992;1;1;0;"Female";1954;1938;NA;NA;NA;49,5;NA;150,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"207";"Painting";"Wols (A. O. Wolfgang Schulze)";"(German, 1913-1951)";1913;1951;1;0;1;"Male";1956;1946;NA;NA;NA;81;NA;81,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"208";"Italian Landscape";"Arthur B. Davies";"(American, 1862-1928)";1862;1928;1;0;1;"Male";1934;1925;NA;NA;NA;66,4;NA;101,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"209";"The Cock";"Mariano (Mariano Rodríguez)";"(Cuban, 1912-1990)";1912;1990;1;0;1;"Male";1942;1941;NA;NA;NA;74,3;NA;63,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"210";"Two Persons at a Table";"Raoul Ubac";"(Belgian, born Germany, 1910-1985)";1910;1985;1;0;1;"Male";1951;1950;NA;NA;NA;129,5;NA;73;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"211";"Woman by a Window";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1956;1956;NA;NA;NA;162;NA;130;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"212";"Amerika VIII";"Tim Rollins, K.O.S. (Kids of Survival), Angel Abreu, Jose Burges, Robert Delgado, George Garces, Richard Lulo, Nelson Montes, José Parissi, Carlos Rivera, Annette Rosado, Nelson Ricardo Savinon";"(American, 1955-2017) (founded 1982) (American, born 1974) (American, born 1971) (American, born 1971) (American, born 1972) (American, 1971-1988) (American, born 1972) (American, born 1968) (American, born 1971) (American, born 1972) (American, born 1971)";1955;2017;10;1;9;NA;1988;1986;NA;NA;NA;175,6;NA;426,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"213";"The Wine Press";"Arthur B. Davies";"(American, 1862-1928)";1862;1928;1;0;1;"Male";1934;1918;NA;NA;NA;81,9;NA;61,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"214";"The Wheel";"Jack Tworkov";"(American, born Poland. 1900-1982)";1900;1982;1;0;1;"Male";1954;1953;NA;NA;NA;137,2;NA;127;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"215";"Untitled";"Raymond Parker";"(American, 1922-1990)";1922;1990;1;0;1;"Male";1960;1960;NA;NA;NA;182,5;NA;218,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"216";"Winter Scene";"Alex Katz";"(American, born 1927)";1927;NA;1;0;1;"Male";1991;1951;NA;NA;NA;61;NA;60,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"217";"The Day the Bosque Froze Over";"Clara McDonald Williamson";"(American, 1875-1976)";1875;1976;1;1;0;"Female";1954;1953;NA;NA;NA;50,8;NA;71,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"218";"Saintpaulia";"William Ronald";"(Canadian, 1926-1998)";1926;1998;1;0;1;"Male";1957;1956;NA;NA;NA;122;NA;132,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"219";"Violin and Grapes";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1960;1912;NA;NA;NA;60,9601;NA;50,8001;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"220";"Listen to Living";"Roberto Matta";"(Chilean, 1911-2002)";1911;2002;1;0;1;"Male";1942;1941;NA;NA;NA;74,9;NA;94,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"221";"The Rope Dancer Accompanies Herself with Her Shadows";"Man Ray (Emmanuel Radnitzky)";"(American, 1890-1976)";1890;1976;1;0;1;"Male";1954;1916;NA;NA;NA;132,1;NA;186,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"222";"Red Head, Blue Body";"Meret Oppenheim";"(Swiss, 1913-1985)";1913;1985;1;1;0;"Female";1991;1936;NA;NA;NA;80,3;NA;80,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"223";"The Fallen Fig";"Theodoros Stamos";"(American, 1922-1997)";1922;1997;1;0;1;"Male";1955;1949;NA;NA;NA;121,9;NA;65,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"224";"Abstract Forms";"Antoine Pevsner";"(French, born Russia. 1886-1962)";1886;1962;1;0;1;"Male";1936;1913;NA;NA;NA;43,8;NA;34,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"225";"Bear Cat";"Sarai Sherman";"(American, born 1922)";1922;NA;1;1;0;"Female";1960;1959;NA;NA;NA;100,3;NA;69,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"226";"No More Games";"Benny Andrews";"(American, 1930-2006)";1930;2006;1;0;1;"Male";1971;1970;NA;NA;NA;256,2;NA;126,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"227";"Rayonist Composition: Domination of Red";"Mikhail Larionov";"(Russian, 1881-1964)";1881;1964;1;0;1;"Male";1936;1912;NA;NA;NA;52,7;NA;72,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"228";"A, C And D From Group/And";"Dorothea Rockburne";"(American, born Canada 1932)";1932;NA;1;1;0;"Female";1971;1970;NA;112;NA;422,8;NA;641,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"229";"The Tents of Judea";"Mordecai Ardon";"(Israeli, born Poland. 1896-1992)";1896;1992;1;0;1;"Male";1952;1950;NA;NA;NA;80,9;NA;100;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"230";"Tree of Paradise";"Séraphine Louis";"(French, 1864-1942)";1864;1942;1;1;0;"Female";1970;1928;NA;NA;NA;194,9;NA;130,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"231";"George Biddle Playing the Flute";"Alexander Brook";"(American, 1898-1980)";1898;1980;1;0;1;"Male";1935;1929;NA;NA;NA;102,6;NA;76,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"232";"No. 10";"Mark Rothko";"(American, born Russia (now Latvia). 1903-1970)";1903;1970;1;0;1;"Male";1952;1950;NA;NA;NA;229,6;NA;145,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"233";"G.U.--G.U. Well";"Alan Shields";"(American,1944-2005)";1944;2005;1;0;1;"Male";1971;1969;NA;NA;NA;296;NA;434,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"234";"The Boat";"Peter Blume";"(American, 1906-1992)";1906;1992;1;0;1;"Male";1952;1929;NA;NA;NA;51,1;NA;61,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"235";"Series of 9, Number 2";"Paul Burlin";"(American, 1886-1969)";1886;1969;1;0;1;"Male";1971;1969;NA;NA;NA;139,3;NA;124;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"236";"Untitled";"Bruce Boice";"(American, born 1941)";1941;NA;1;0;1;"Male";1975;1974;NA;NA;NA;80;NA;233,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"237";"Proposition Number 1";"Allan D'Arcangelo";"(American, 1930-1998)";1930;1998;1;0;1;"Male";1971;1966;NA;NA;NA;203,4;NA;203,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"238";"Signs III";"Hedda Sterne";"(American, born Romania 1910-2011)";1910;NA;1;1;0;"Female";1997;1981;NA;NA;NA;152,4;NA;101,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"239";"Visual Dynamics";"Toni Costa";"(Italian, 1935-2013)";1935;2013;1;0;1;"Male";1965;1963;NA;8,9;NA;143,8;NA;143,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"240";"Whiteness 6";"Richard Tuttle";"(American, born 1941)";1941;NA;1;0;1;"Male";1997;1994;NA;6,9;NA;201,9;NA;182,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"241";"Number 17";"Wojciech Fangor";"(Polish, 1922-2015)";1922;2015;1;0;1;"Male";1965;1963;NA;NA;NA;100,1;NA;100,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"242";"Ring-A-Lingling";"Richard Smith";"(British, 1931-2016)";1931;2016;1;0;1;"Male";1971;1966;NA;43,2;NA;213,4;NA;213,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"243";"Still Life with Three Puppies";"Paul Gauguin";"(French, 1848-1903)";1848;1903;1;0;1;"Male";1952;1888;NA;NA;NA;91,8;NA;62,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"244";"Untitled";"Marcos Grigorian";"(Iranian (naturalized American), born Russia. 1924-2007)";1924;2007;1;0;1;"Male";1965;1963;NA;NA;NA;84,9;NA;80,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"245";"The Poet Max Herrmann-Neisse";"George Grosz";"(American, born Germany. 1893-1959)";1893;1959;1;0;1;"Male";1952;1927;NA;NA;NA;59,4;NA;74;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"246";"Mural Painting";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1965;1924;NA;NA;NA;180,3;NA;79,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"247";"The Moon and the Earth";"Paul Gauguin";"(French, 1848-1903)";1848;1903;1;0;1;"Male";1934;1893;NA;NA;NA;114,3;NA;62,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"248";"Painting";"Hans Hartung";"(French, born Germany. 1904-1989)";1904;1989;1;0;1;"Male";1952;1948;NA;NA;NA;97,2;NA;146;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"249";"Blue Field, III";"Lothar Quinte";"(German, 1923-2000)";1923;2000;1;0;1;"Male";1965;1963;NA;NA;NA;130,5;NA;100,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"250";"Relational Painting";"Fritz Glarner";"(American, born Switzerland. 1899-1972)";1899;1972;1;0;1;"Male";1949;1947;NA;NA;NA;109,5;NA;107,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"251";"Untitled";"Mohsen Vaziri Moghaddam";"(Iranian, born 1924)";1924;NA;1;0;1;"Male";1965;1962;NA;NA;NA;99,9;NA;180,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"252";"Dover, New Jersey";"Israel Litwak";"(American, born Ukraine. 1867-1952)";1867;1952;1;0;1;"Male";1949;1947;NA;NA;NA;55,9;NA;81,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"253";"Three Musicians";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1969;1921;NA;NA;NA;200,7;NA;222,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"254";"The Knife";"André Marchand";"(French, 1907-1997)";1907;1997;1;0;1;"Male";1952;NA;NA;NA;NA;46;NA;54,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"255";"Mercatale Still Life";"William Bailey";"(American, born 1930)";1930;NA;1;0;1;"Male";1981;1981;NA;NA;NA;76,2;NA;101,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"256";"The Song of the Vowels";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1970;1966;NA;NA;NA;366;NA;114,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"257";"Number 20";"Bradley Walker Tomlin";"(American, 1899-1953)";1899;1953;1;0;1;"Male";1952;1949;NA;NA;NA;218,5;NA;203,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"258";"Red Star";"Red Grooms";"(American, born 1937)";1937;NA;1;0;1;"Male";1981;1980;NA;27,9;NA;89,7;NA;129,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"259";"Georges Braque";"René Robert Bouché";"(American, 1905-1963)";1905;1963;1;0;1;"Male";1961;1957;NA;NA;NA;114,5;NA;86,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"260";"Tomb";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1981;1978;NA;NA;NA;198,4;NA;187,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"261";"The 14th of July at Le Havre";"Raoul Dufy";"(French, 1877-1953)";1877;1953;1;0;1;"Male";1995;1907;NA;NA;NA;81;NA;50,2;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"262";"Wednesday, Dec. 12, 1979";"On Kawara";"(Japanese, 1933-2014)";1933;NA;1;0;1;"Male";1981;1979;NA;NA;NA;46,4;NA;62,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"263";"Harlem River";"Preston Dickinson";"(American, 1889-1930)";1889;1930;1;0;1;"Male";1935;1928;NA;NA;NA;41;NA;51,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"264";"Number XIV";"Jorge Damiani";"(Uruguayan, born Italy 1931)";1931;NA;1;0;1;"Male";1961;1960;NA;NA;NA;101,5;NA;60,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"265";"Monday, Dec. 17, 1979";"On Kawara";"(Japanese, 1933-2014)";1933;NA;1;0;1;"Male";1981;1979;NA;NA;NA;46,2;NA;61,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"266";"White Curve VII";"Ellsworth Kelly";"(American, 1923-2015)";1923;2015;1;0;1;"Male";1995;1976;NA;NA;NA;233,7;NA;233,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"267";"Beard of Uncertain Returns";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1961;1959;NA;NA;NA;116,1;NA;89,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"268";"Tuesday, Dec. 18, 1979";"On Kawara";"(Japanese, 1933-2014)";1933;NA;1;0;1;"Male";1981;1979;NA;NA;NA;46,3;NA;61,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"269";"States of Mind I: The Farewells";"Umberto Boccioni";"(Italian, 1882-1916)";1882;1916;1;0;1;"Male";1979;1911;NA;NA;NA;70,5;NA;96,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"270";"Double Sitting";"Richard Artschwager";"(American, 1923-2013)";1923;2013;1;0;1;"Male";1991;1988;NA;NA;NA;191,5;NA;172,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"271";"Child with Doll";"Otto Dix";"(German, 1891-1969)";1891;1969;1;0;1;"Male";1935;1928;NA;NA;NA;74,3;NA;38,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"272";"The Vertigo of Eros";"Roberto Matta";"(Chilean, 1911-2002)";1911;2002;1;0;1;"Male";1944;1944;NA;NA;NA;195,6;NA;251,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"273";"The Mirror";"Richard Lindner";"(American, born Germany. 1901-1978)";1901;1978;1;0;1;"Male";1961;1958;NA;NA;NA;100;NA;65;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"274";"States of Mind II: Those Who Go";"Umberto Boccioni";"(Italian, 1882-1916)";1882;1916;1;0;1;"Male";1979;1911;NA;NA;NA;70,8;NA;95,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"275";"Dead Trees with Firs";"Milton Avery";"(American, 1885-1965)";1885;1965;1;0;1;"Male";1991;1944;NA;NA;NA;76,5;NA;91,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"276";"Lake George, Coat and Red";"Georgia O'Keeffe";"(American, 1887-1986)";1887;1986;1;1;0;"Female";1995;1919;NA;NA;NA;69,5;NA;59,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"277";"Americans in Paris";"Guy Pčne du Bois";"(American, 1884-1958)";1884;1958;1;0;1;"Male";1935;1927;NA;NA;NA;73;NA;92,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"278";"Evening Storm, Schoodic, Maine";"Marsden Hartley";"(American, 1877-1943)";1877;1943;1;0;1;"Male";1943;1942;NA;NA;NA;76,2;NA;101,6;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"279";"Composition";"Virginia Admiral";"(American, 1915-2000)";1915;2000;1;1;0;"Female";1944;1942;NA;NA;NA;91,4;NA;86,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"280";"States of Mind III: Those Who Stay";"Umberto Boccioni";"(Italian, 1882-1916)";1882;1916;1;0;1;"Male";1979;1911;NA;NA;NA;70,8;NA;95,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"281";"Red Wing, Number 1 from the Form Space series";"Leon Polk Smith";"(American, 1906-1996)";1906;1996;1;0;1;"Male";1981;1979;NA;NA;NA;123,2;NA;457,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"282";"Still Life";"Georg Baselitz";"(German, born 1938)";1938;NA;1;0;1;"Male";1991;1976;NA;NA;NA;250,2;NA;200,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"283";"André Derain";"Balthus (Baltusz Klossowski de Rola)";"(French, 1908-2001)";1908;2001;1;0;1;"Male";1944;1936;NA;NA;NA;112,7;NA;72,4;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"284";"The Promenade";"Pierre Bonnard";"(French, 1867-1947)";1867;1947;1;0;1;"Male";1991;1894;NA;NA;NA;147,3;NA;180,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"285";"The Flying Dutchman";"Jimmy Ernst";"(American, 1920-1984)";1920;1984;1;0;1;"Male";1943;1942;NA;NA;NA;50,8;NA;46;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"286";"Barber Shop";"Cundo Bermúdez";"(Cuban, 1914-2008)";1914;2008;1;0;1;"Male";1944;1942;NA;NA;NA;63,8;NA;53,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"287";"The Large Trees";"Georges Braque";"(French, 1882-1963)";1882;1963;1;0;1;"Male";1991;1906;NA;NA;NA;80;NA;70,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"288";"Still Life with Fruit Dish";"Paul Cézanne";"(French, 1839-1906)";1839;1906;1;0;1;"Male";1991;1879;NA;NA;NA;46,4;NA;54,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"289";"Emergency Room";"Robert Colescott";"(American, 1925-2009)";1925;2009;1;0;1;"Male";1991;1989;NA;NA;NA;229;NA;289,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"290";"Time Expired";"Vern Blosum";"(American, 1936-2017)";1936;2017;1;0;1;"Male";1963;1962;NA;NA;NA;95,1;NA;70,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"291";"Abstraction Blue";"Georgia O'Keeffe";"(American, 1887-1986)";1887;1986;1;1;0;"Female";1979;1927;NA;NA;NA;102,1;NA;76;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"292";"Untitled";"Eva Hesse";"(American, born Germany. 1936-1970)";1936;1970;1;1;0;"Female";1991;1960;NA;NA;NA;41,2;NA;40,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"293";"Marilyn";"James Francis Gill";"(American, born 1934)";1934;NA;1;0;1;"Male";1963;1962;NA;NA;NA;121,9;NA;91,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"294";"Untitled";"Eva Hesse";"(American, born Germany. 1936-1970)";1936;1970;1;1;0;"Female";1991;1960;NA;NA;NA;45,7;NA;38,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"295";"Broadway Boogie Woogie";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1943;1942;NA;NA;NA;127;NA;127;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"296";"A Time for Fear";"Jimmy Ernst";"(American, 1920-1984)";1920;1984;1;0;1;"Male";1950;1949;NA;NA;NA;60,6;NA;50,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"297";"Inscription 4026 B.C.";"Enrico Donati";"(American, born Italy. 1909-2008)";1909;2008;1;0;1;"Male";1962;1962;NA;NA;NA;152,5;NA;126,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"298";"Three Heads with the Word ""Black""";"Lester F. Johnson";"(American, 1919-2010)";1919;2010;1;0;1;"Male";1963;1962;NA;NA;NA;153;NA;198,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"299";"Cathedral";"Hans Hofmann";"(American, born Germany. 1880-1966)";1880;1966;1;0;1;"Male";1991;1959;NA;NA;NA;188;NA;122;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"300";"Two Heads";"Jean (Hans) Arp";"(French, born Germany (Alsace). 1886-1966)";1886;1966;1;0;1;"Male";1936;1927;NA;NA;NA;35;NA;27;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"301";"Man-Men: Mirror";"Robert Hansen";"(American, 1924-2013)";1924;2013;1;0;1;"Male";1962;1959;NA;NA;NA;116,7;NA;182,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"302";"Sweet Cathy's Song (For Cathy Elzea)";"Joan Snyder";"(American, born 1940)";1940;NA;1;1;0;"Female";1979;1978;NA;NA;NA;198,1;NA;365,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"303";"Lita";"Alex Katz";"(American, born 1927)";1927;NA;1;0;1;"Male";1991;1964;NA;NA;NA;152,4;NA;153;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"304";"Western Air";"Robert Motherwell";"(American, 1915-1991)";1915;1991;1;0;1;"Male";1950;1946;NA;NA;NA;182,9;NA;137,2;NA;TRUE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"305";"The Meeting";"Richard Lindner";"(American, born Germany. 1901-1978)";1901;1978;1;0;1;"Male";1962;1953;NA;NA;NA;152,4;NA;182,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"306";"Yellow Asymmetry";"Guido Molinari";"(Canadian, 1933-2004)";1933;2004;1;0;1;"Male";1963;1959;NA;NA;NA;152,1;NA;122;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"307";"Composition";"Jean Hélion";"(French, 1904-1987)";1904;1987;1;0;1;"Male";1937;1936;NA;NA;NA;99,7;NA;80,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"308";"Harlequin";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1950;1915;NA;NA;NA;183,5;NA;105,1;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"309";"Chronic Hollow";"Ida Applebroog";"(American, born 1929)";1929;NA;1;1;0;"Female";1989;1989;NA;NA;NA;240;NA;295;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"310";"Rider (Untitled VII)";"Willem de Kooning";"(American, born the Netherlands. 1904-1997)";1904;1997;1;0;1;"Male";1991;1985;NA;NA;NA;177,8;NA;203,2;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"311";"Number 1A, 1948";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1950;1948;NA;NA;NA;172,7;NA;264,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"312";"Oompalik";"Maurice Sievan";"(American, born Ukraine. 1898-1981)";1898;1981;1;0;1;"Male";1963;1962;NA;NA;NA;175,4;NA;150,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"313";"Mama, Papa Is Wounded!";"Yves Tanguy";"(American, born France. 1900-1955)";1900;1955;1;0;1;"Male";1936;1927;NA;NA;NA;92,1;NA;73;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"314";"Descent from the Cross";"Roger van Rogger";"(Belgian, 1914-1983)";1914;1983;1;0;1;"Male";1950;1946;NA;NA;NA;145,1;NA;210,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"315";"Music (Sketch)";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1962;1907;NA;NA;NA;73,4;NA;60,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"316";"Purple Fill";"Morris Louis";"(American, 1912-1962)";1912;1962;1;0;1;"Male";1991;1962;NA;NA;NA;221;NA;69,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"317";"Woman with Pineapple";"Rufino Tamayo";"(Mexican, 1899-1991)";1899;1991;1;0;1;"Male";1943;1941;NA;NA;NA;101,6;NA;76,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"318";"Father D'Arcy";"Elsa Schmid";"(American, born Germany. 1897-1970)";1897;1970;1;1;0;"Female";1950;1948;NA;NA;NA;79,4;NA;44,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"319";"Clown";"Georges Rouault";"(French, 1871-1958)";1871;1958;1;0;1;"Male";1973;1912;NA;NA;NA;89,8;NA;68,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"320";"Great American Nude, 2";"Tom Wesselmann";"(American, 1931-2004)";1931;2004;1;0;1;"Male";1963;1961;NA;NA;NA;151,5;NA;120,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"321";"Bed";"Robert Rauschenberg";"(American, 1925-2008)";1925;2008;1;0;1;"Male";1989;1955;NA;20,32;NA;191,1;NA;80;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"322";"Interior with a Young Girl (Girl Reading)";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1991;1905;NA;NA;NA;72,7;NA;59,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"323";"Fishes";"Amelia Peláez Del Casal";"(Cuban, 1896-1968)";1896;1968;1;1;0;"Female";1944;1943;NA;NA;NA;115,6;NA;89,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"324";"Autumn Landscape";"Maurice de Vlaminck";"(French, 1876-1958)";1876;1958;1;0;1;"Male";1973;1905;NA;NA;NA;46,2;NA;55,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"325";"Thanksgiving Turkey";"Joan Brown";"(American, 1938-1990)";1938;1990;1;1;0;"Female";1960;1959;NA;NA;NA;121,5;NA;121,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"326";"The Reservoir, Horta de Ebro";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1991;1909;NA;NA;NA;61,5;NA;51,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"327";"The She-Wolf";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1944;1943;NA;NA;NA;106,4;NA;170,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"328";"Painting";"Harry Zolotow";"(American, born Ukraine. 1888-1963)";1888;1963;1;0;1;"Male";1947;1946;NA;NA;NA;137,8;NA;101,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"329";"Seated Bather";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1950;1930;NA;NA;NA;163,2;NA;129,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"330";"Jacob's Ladder";"Helen Frankenthaler";"(American, 1928-2011)";1928;2011;1;1;0;"Female";1960;1957;NA;NA;NA;287,9;NA;177,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"331";"Abstract Painting, Red";"Ad Reinhardt";"(American, 1913-1967)";1913;1967;1;0;1;"Male";1991;1952;NA;NA;NA;274,3;NA;101,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"332";"Still Life";"Juan Gris";"(Spanish, 1887-1927)";1887;1927;1;0;1;"Male";1958;1917;NA;NA;NA;73;NA;99,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"333";"Landscape, 47";"Natalia Goncharova";"(Russian, 1881-1962)";1881;1962;1;1;0;"Female";1937;1912;NA;NA;NA;54,6;NA;46,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"334";"Meditation on an Oak Leaf";"André Masson";"(French, 1896-1987)";1896;1987;1;0;1;"Male";1950;1942;NA;NA;NA;101,6;NA;83,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"335";"A Bedroom in Venice";"Sean Scully";"(American, born Ireland 1945)";1945;NA;1;0;1;"Male";1991;1988;NA;NA;NA;243,8;NA;304,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"336";"The Sea (Marine)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1936;1928;NA;NA;NA;55,9;NA;47;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"337";"Still Life with Fish, II";"Bernard Buffet";"(French, 1928-1999)";1928;1999;1;0;1;"Male";1950;1949;NA;NA;NA;41,6;NA;85,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"338";"Orange Grove at Night";"Renato Guttuso";"(Italian, 1912-1987)";1912;1987;1;0;1;"Male";1958;1957;NA;NA;NA;140,6;NA;230,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"339";"Perpetual Possibility";"Knud Merrild";"(American, born Denmark.1894-1954)";1894;1954;1;0;1;"Male";1960;1942;NA;NA;NA;50,8;NA;41,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"340";"Opus 217. Against the Enamel of a Background Rhythmic with Beats and Angles, Tones, and Tints, Portrait of M. Félix Fénéon in 1890";"Paul Signac";"(French, 1863-1935)";1863;1935;1;0;1;"Male";1991;1890;NA;NA;NA;73,5;NA;92,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"341";"Interior with a Violin Case";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1934;1918;NA;NA;NA;73;NA;60;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"342";"The Anxious Journey";"Giorgio de Chirico";"(Italian, born Greece. 1888-1978)";1888;1978;1;0;1;"Male";1950;1913;NA;NA;NA;74,3;NA;106,7;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"343";"Anna Zborowska";"Amedeo Modigliani";"(Italian, 1884-1920)";1884;1920;1;0;1;"Male";1934;1917;NA;NA;NA;130,2;NA;81,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"344";"The Nostalgia of the Infinite";"Giorgio de Chirico";"(Italian, born Greece. 1888-1978)";1888;1978;1;0;1;"Male";1936;1912;NA;NA;NA;135,2;NA;64,8;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"345";"Lita Curtain Star [Lita Hornick]";"Andy Warhol";"(American, 1928-1987)";1928;1987;1;0;1;"Male";1991;1968;NA;NA;NA;68,6;NA;68,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"346";"Agony";"Arshile Gorky";"(American, born Armenia. 1904-1948)";1904;1948;1;0;1;"Male";1950;1947;NA;NA;NA;101,6;NA;128,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"347";"Nocturnal Encounters";"Joseph Mellor Hanson";"(British, 1900-1963)";1900;1963;1;0;1;"Male";1950;1949;NA;NA;NA;89,2;NA;115,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"348";"Number 172";"Miguel Ocampo";"(Argentine, born 1922)";1922;NA;1;0;1;"Male";1958;1957;NA;NA;NA;54;NA;81;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"349";"Homestead";"John Kane";"(American, born Scotland. 1860-1934)";1860;1934;1;0;1;"Male";1935;1929;NA;NA;NA;61;NA;68,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"350";"Equals Infinity";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1950;1932;NA;NA;NA;51,4;NA;68,3;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"351";"The King";"Kurt Seligmann";"(American, 1900-1962)";1900;1962;1;0;1;"Male";1960;1960;NA;NA;NA;61,4;NA;50,7;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"352";"EM 2 (Telephone Picture)";"László Moholy-Nagy";"(American, born Hungary. 1895-1946)";1895;1946;1;0;1;"Male";1971;1923;NA;NA;NA;47,5;NA;30,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"353";"Green Still Life";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1934;1914;NA;NA;NA;59,7;NA;79,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"354";"EM 3 (Telephone Picture)";"László Moholy-Nagy";"(American, born Hungary. 1895-1946)";1895;1946;1;0;1;"Male";1971;1923;NA;NA;NA;24;NA;15;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"355";"Dead Fowl";"Chaim Soutine";"(French, 1893-1943)";1893;1943;1;0;1;"Male";1958;1924;NA;NA;NA;110,4;NA;81,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"356";"Five Split Bottles: White on White";"Roy Adzak";"(British, 1927-1987)";1927;1987;1;0;1;"Male";1967;1965;NA;7,2;NA;73;NA;115,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"357";"The Charnel House";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1971;1944;NA;NA;NA;199,8;NA;250,1;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"358";"Lunar Landscape";"Albert Tucker";"(Australian, 1914-1999)";1914;1999;1;0;1;"Male";1958;1957;NA;NA;NA;95,6;NA;130,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"359";"Anthracite Minuet";"Gene Davis";"(American, 1920-1985)";1920;1985;1;0;1;"Male";1967;1966;NA;NA;NA;236,4;NA;231,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"360";"The Hunter (Catalan Landscape)";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1936;1923;NA;NA;NA;64,8;NA;100,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"361";"Subway";"Genichiro Inokuma";"(Japanese, 1902-1993)";1902;1993;1;0;1;"Male";1967;1966;NA;NA;NA;203,8;NA;127,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"362";"Head";"Benjamin Kopman";"(American, born Russia. 1887-1965)";1887;1965;1;0;1;"Male";1935;1929;NA;NA;NA;58,1;NA;46;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"363";"Walken's Ridge";"Jake Berthot";"(American, 1939-2014)";1939;2014;1;0;1;"Male";1976;1975;NA;NA;NA;152,1;NA;213,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"364";"Number 40";"Forrest Bess";"(American, 1911-1977)";1911;1977;1;0;1;"Male";1982;1949;NA;NA;NA;26,6700533401;NA;34,2900685801;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"365";"The Ruin";"Benjamin Kopman";"(American, born Russia. 1887-1965)";1887;1965;1;0;1;"Male";1935;1930;NA;NA;NA;65,1;NA;92,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"366";"Cottage Porch, Peaked Hill";"Edwin Dickinson";"(American, 1891-1978)";1891;1978;1;0;1;"Male";1961;1932;NA;NA;NA;66,4;NA;76,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"367";"Painting";"Louis Cane";"(French, born 1943)";1943;NA;1;0;1;"Male";1976;1975;NA;NA;NA;243,4;NA;331,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"368";"Harlequinade";"Albert Bloch";"(American, 1882-1961)";1882;1961;1;0;1;"Male";1982;1911;NA;NA;NA;91,4;NA;118,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"369";"Adversaries";"Richard Bosman";"(Australian, born India 1944)";1944;NA;1;0;1;"Male";1982;1981;NA;NA;NA;183;NA;106,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"370";"Number 11: A Presence";"Richard Pousette-Dart";"(American, 1916-1992)";1916;1992;1;0;1;"Male";1950;1949;NA;NA;NA;63,8;NA;53,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"371";"Fishing Boats, Collioure";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1958;1905;NA;NA;NA;38,2;NA;46,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"372";"That Which Will Be";"Joan Josep Tharrats";"(Spanish, 1918-2001)";1918;2001;1;0;1;"Male";1961;1961;NA;NA;NA;130;NA;96,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"373";"The Last Haitian Night of King Christophe";"Eugene Fernandez Granell";"(Spanish, 1912-2001)";1912;2001;1;0;1;"Male";1962;1960;NA;NA;NA;76,3;NA;107;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"374";"Towards Disappearance, II";"Sam Francis";"(American, 1923-1994)";1923;1994;1;0;1;"Male";1976;1957;NA;NA;NA;275,6;NA;319,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"375";"Hands";"David Alfaro Siqueiros";"(Mexican, 1896-1974)";1896;1974;1;0;1;"Male";1950;1949;NA;NA;NA;122,2;NA;100;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"376";"The Intellectual";"Arthur Dove";"(American, 1880-1946)";1880;1946;1;0;1;"Male";1958;1925;NA;NA;NA;43;NA;18,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"377";"Dinnertime";"Édouard Vuillard";"(French, 1868-1940)";1868;1940;1;0;1;"Male";1961;1889;NA;NA;NA;71,8;NA;92,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"378";"Sherwin Williams Chevy";"Ralph Goings";"(American, born 1928)";1928;NA;1;0;1;"Male";1976;1975;NA;NA;NA;111,5;NA;157,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"379";"Childbirth";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1982;1944;NA;NA;NA;99,8;NA;80,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"380";"Figure in Rain";"Rico Lebrun";"(American, born Italy. 1900-1964)";1900;1964;1;0;1;"Male";1950;1949;NA;NA;NA;121,9;NA;76,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"381";"My Grandparents, My Parents, and I (Family Tree)";"Frida Kahlo";"(Mexican, 1907-1954)";1907;1954;1;1;0;"Female";1976;1936;NA;NA;NA;30,7;NA;34,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"382";"Road near L'Estaque";"Georges Braque";"(French, 1882-1963)";1882;1963;1;0;1;"Male";1943;1908;NA;NA;NA;60,3;NA;50,2;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"383";"Contrast of Forms";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1958;1913;NA;NA;NA;100,3;NA;81,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"384";"The Kill";"André Masson";"(French, 1896-1987)";1896;1987;1;0;1;"Male";1976;1944;NA;NA;NA;55,2;NA;67,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"385";"Untitled [Suite ""Blancs""]";"Simon Hantaď";"(French, born Hungary. 1922-2008)";1922;2008;1;0;1;"Male";1982;1973;NA;NA;NA;305,3;NA;466,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"386";"Fallen Angel";"Paul Burlin";"(American, 1886-1969)";1886;1969;1;0;1;"Male";1943;1943;NA;NA;NA;32,8;NA;40,8;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"387";"Double Metamorphosis, II";"Agam (Yaacov Agam)";"(Israeli, born 1928)";1928;NA;1;0;1;"Male";1965;1964;NA;NA;NA;269,2;NA;401,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"388";"The Princess";"Leonard French";"(Australian, born 1928)";1928;NA;1;0;1;"Male";1966;1965;NA;NA;NA;122,4;NA;152,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"389";"The Big N";"Al Held";"(American, 1928-2005)";1928;2005;1;0;1;"Male";1973;1964;NA;NA;NA;275,2;NA;274,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"390";"Between the Clock and the Bed";"Jasper Johns";"(American, born 1930)";1930;NA;1;0;1;"Male";1981;1981;NA;NA;NA;183,4;NA;320,9931;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"391";"""#7 - 1967""";"Peter Young";"(American, born 1940)";1940;NA;1;0;1;"Male";1976;1967;NA;NA;NA;274,5;NA;274,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"392";"Untitled";"Donald Judd";"(American, 1928-1994)";1928;1994;1;0;1;"Male";1982;1961;NA;NA;NA;182,9;NA;121,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"393";"The Rape";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1958;1920;NA;NA;NA;23,8;NA;32,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"394";"Equivocation";"Ben Cunningham (Benjamin Frazier Cunningham)";"(American, 1904-1975)";1904;1975;1;0;1;"Male";1965;1964;NA;NA;NA;65,9;NA;65,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"395";"Flag";"Jasper Johns";"(American, born 1930)";1930;NA;1;0;1;"Male";1973;1954;NA;NA;NA;107,3;NA;153,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"396";"Castle Garden";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1982;1931;NA;NA;NA;67,2;NA;54,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"397";"Hand of Mercy";"Piero Dorazio";"(Italian, 1927-2005)";1927;2005;1;0;1;"Male";1965;1963;NA;NA;NA;162,6;NA;130,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"398";"Family Circle";"Ronald Markman";"(American, born 1931)";1931;NA;1;0;1;"Male";1966;1965;NA;NA;NA;124;NA;143,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"399";"(Untitled)";"Franz Kline";"(American, 1910-1962)";1910;1962;1;0;1;"Male";1973;1959;NA;NA;NA;117,2;NA;117,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"400";"Pirate (Untitled II)";"Willem de Kooning";"(American, born the Netherlands. 1904-1997)";1904;1997;1;0;1;"Male";1982;1981;NA;NA;NA;223,4;NA;194,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"401";"Elizabeth";"Chuck Close";"(American, born 1940)";1940;NA;1;0;1;"Male";1990;1989;NA;NA;NA;182,9;NA;152,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"402";"The Senate";"William Gropper";"(American, 1897-1977)";1897;1977;1;0;1;"Male";1936;1935;NA;NA;NA;63,8;NA;84,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"403";"Actress Dressing";"Eugenie Baizerman";"(American, born Poland. 1899-1949)";1899;1949;1;1;0;"Female";1961;1945;NA;NA;NA;115,7;NA;86,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"404";"White Quipus";"Jorge Eielson";"(Peruvian, 1924-2006)";1924;2006;1;0;1;"Male";1965;1964;NA;NA;NA;95,2;NA;150,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"405";"14th Street Series Number 9";"Mark Lancaster";"(British, born 1938)";1938;NA;1;0;1;"Male";1973;1972;NA;NA;NA;87;NA;127,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"406";"Evening Song";"Robert Kushner";"(American, born 1949)";1949;NA;1;0;1;"Male";1982;1981;NA;NA;NA;265,6;NA;441;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"407";"Gourds";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1935;1915;NA;NA;NA;65,1;NA;80,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"408";"Pomegranate";"Pamela Bianco";"(American, born England. 1906-1994)";1906;1994;1;1;0;"Female";1961;1957;NA;NA;NA;76,3;NA;60,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"409";"The Ohio Gang";"R. B. Kitaj";"(American, 1932-2007)";1932;2007;1;0;1;"Male";1965;1964;NA;NA;NA;183,1;NA;183,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"410";"Mao";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1982;1972;NA;NA;NA;362,5857251715;NA;311,1506223012;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"411";"The Unity of Life and Death";"Otto Freundlich";"(German, 1878-1943)";1878;1943;1;0;1;"Male";1990;1936;NA;NA;NA;118,1;NA;90,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"412";"Gourds";"Seiji Chokai";"(Japanese, 1902-1972)";1902;1972;1;0;1;"Male";1958;1950;NA;NA;NA;65,1;NA;53,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"413";"The Open Scene";"Jane Wilson";"(American, 1924-2015)";1924;2015;1;1;0;"Female";1960;1960;NA;NA;NA;153,3;NA;203,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"414";"Broken Blossom";"Gandy Brodie";"(American, 1925-1975)";1925;1975;1;0;1;"Male";1961;1960;NA;NA;NA;65,1;NA;92,3;NA;TRUE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"415";"Tragic Space";"Karel Appel";"(Dutch, 1921-2006)";1921;2006;1;0;1;"Male";1975;1959;NA;NA;NA;114,6;NA;150,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"416";"Dis Pair";"Elizabeth Murray";"(American, 1940-2007)";1940;2007;1;1;0;"Female";1990;1989;NA;NA;NA;311,1;NA;328,3;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"417";"Figure";"André Masson";"(French, 1896-1987)";1896;1987;1;0;1;"Male";1973;1926;NA;NA;NA;46,1;NA;26,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"418";"Napalm Elegy TA 3";"Rudolf Baranik";"(American, 1920-1998)";1920;1998;1;0;1;"Male";1975;1973;NA;NA;NA;121,9;NA;121,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"419";"The Evil Genius of a King";"Giorgio de Chirico";"(Italian, born Greece. 1888-1978)";1888;1978;1;0;1;"Male";1936;1914;NA;NA;NA;61;NA;50,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"420";"Separate Objects";"Zbigniew Makowski";"(Polish, born 1930)";1930;NA;1;0;1;"Male";1965;1963;NA;NA;NA;81,3;NA;100;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"421";"Flowing Phalanx";"Francis Celentano";"(American, born 1928)";1928;NA;1;0;1;"Male";1966;1965;NA;NA;NA;86,5;NA;117,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"422";"Cienfuegos";"Gastone Novelli";"(Italian, 1925-1968)";1925;1968;1;0;1;"Male";1973;1968;NA;NA;NA;351,1;NA;201,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"423";"The Adieu, III";"Ger van Elk";"(Dutch, 1941-2014)";1941;2014;1;0;1;"Male";1975;1974;NA;4,4;NA;99,2;NA;92,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"424";"Non-Objective Painting";"Aleksandr Rodchenko";"(Russian, 1891-1956)";1891;1956;1;0;1;"Male";1936;1919;NA;NA;NA;84,5;NA;71,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"425";"The Silent Valley of Sunrise";"Romare Bearden";"(American, 1911-1988)";1911;1988;1;0;1;"Male";1960;1959;NA;NA;NA;147,5;NA;106,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"426";"Red Form on Red Background";"Horia Damian";"(French, born Romania 1922)";1922;NA;1;0;1;"Male";1961;1960;NA;NA;NA;145,9;NA;129,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"427";"Iron Bridges at Asničres";"Émile Bernard";"(French, 1868-1941)";1868;1941;1;0;1;"Male";1962;1887;NA;NA;NA;45,9;NA;54,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"428";"Duplex";"Oli Sihvonen";"(American, 1921-1991)";1921;1991;1;0;1;"Male";1965;1963;NA;NA;NA;142,4;NA;132;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"429";"Untitled";"Arnold Schmidt";"(American, 1930-1993)";1930;1993;1;0;1;"Male";1966;1965;NA;NA;NA;122,1;NA;244,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"430";"Willemite's Vision";"Jules Olitski";"(American, born Russia.1922-2007)";1922;2007;1;0;1;"Male";1973;1972;NA;NA;NA;250,2;NA;531,1;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"431";"Leonardo's Lady";"Audrey Flack";"(American, born 1931)";1931;NA;1;1;0;"Female";1975;1974;NA;NA;NA;188;NA;203,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"432";"Non-Objective Painting no. 80 (Black on Black)";"Aleksandr Rodchenko";"(Russian, 1891-1956)";1891;1956;1;0;1;"Male";1936;1918;NA;NA;NA;81,9;NA;79,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"433";"Agony";"Jorge Damiani";"(Uruguayan, born Italy 1931)";1931;NA;1;0;1;"Male";1958;1956;NA;NA;NA;194,3;NA;120;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"434";"Joë Bousquet in Bed";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1961;1947;NA;NA;NA;146,3;NA;114;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"435";"When to Relax?";"Roland Dorcély";"(Haitian, born 1930)";1930;NA;1;0;1;"Male";1958;1958;NA;NA;NA;91,5;NA;125;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"436";"Business Prospers";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1962;1961;NA;NA;NA;165,1;NA;220;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"437";"Number 2, 1964";"Walter Zehringer";"(German, born 1940)";1940;NA;1;0;1;"Male";1965;1964;NA;3,9;NA;80,1;NA;80,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"438";"The World Is a Story (Mundus est Fabula)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1961;1959;NA;NA;NA;130,1;NA;162,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"439";"Studio with Plaster Head";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1964;1925;NA;NA;NA;97,9;NA;131,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"440";"Folded";"Robyn Denny";"(British, 1930-2014)";1930;2014;1;0;1;"Male";1966;1965;NA;NA;NA;213;NA;182,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"441";"Woman with Three Hairs Surrounded by Birds in the Night";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1973;1972;NA;NA;NA;243,5;NA;168,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"442";"View of Notre Dame";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1975;1914;NA;NA;NA;147,3;NA;94,3;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"443";"Clockwork in the Sky";"Alfred Jensen";"(American, born Guatemala of Danish parents. 1903-1981)";1903;1981;1;0;1;"Male";1960;1959;NA;NA;NA;182,7;NA;117;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"444";"Torso, III";"Leon Golub";"(American, 1922-2004)";1922;2004;1;0;1;"Male";1961;1960;NA;NA;NA;160,2;NA;99,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"445";"The Red Baron";"Nicholas Krushenick";"(American, 1929-1999)";1929;1999;1;0;1;"Male";1967;1967;NA;NA;NA;244,2;NA;191,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"446";"In Black and White No. 2 (Africa)";"Robert Motherwell";"(American, 1915-1991)";1915;1991;1;0;1;"Male";1984;1975;NA;NA;NA;183,3;NA;408,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"447";"Still Life and Landscape";"Agustín Fernández";"(Cuban, 1928-2006)";1928;2006;1;0;1;"Male";1958;1956;NA;NA;NA;122;NA;140;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"448";"King Solomon's Ring";"Ahmed Yacoubi";"(Moroccan and American, 1928-1985)";1928;1985;1;0;1;"Male";1966;1963;NA;NA;NA;73;NA;59,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"449";"""#1 - 1966""";"Peter Young";"(American, born 1940)";1940;NA;1;0;1;"Male";1975;1966;NA;NA;NA;107;NA;296,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"450";"Atoll Sun";"Kenneth Noland";"(American, 1924-2010)";1924;2010;1;0;1;"Male";1984;1968;NA;NA;NA;228,5;NA;731;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"451";"The World Cow";"Franz Marc";"(German, 1880-1916)";1880;1916;1;0;1;"Male";1988;1913;NA;NA;NA;70,8;NA;141,3;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"452";"Sawtooth Falls";"Arnold Friedman";"(American, 1879-1946)";1879;1946;1;0;1;"Male";1946;1945;NA;NA;NA;91,8;NA;75,9;NA;TRUE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"453";"The Baker's Dream";"Zvi Gali";"(Israeli, 1924-1961)";1924;1961;1;0;1;"Male";1958;1956;NA;NA;NA;133,6;NA;44,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"454";"Simultaneous Contrasts";"James Henry Daugherty";"(American, 1889-1974)";1889;1974;1;0;1;"Male";1969;1918;NA;NA;NA;90,8;NA;102,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"455";"Icebox Number 9";"Peter Saul";"(American, born 1934)";1934;NA;1;0;1;"Male";1999;1963;NA;NA;NA;159,7;NA;190,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"456";"Don't Cry Mother";"Philip Evergood";"(American, 1901-1973)";1901;1973;1;0;1;"Male";1944;1938;NA;NA;NA;66;NA;45,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"457";"Painting";"Pierre Soulages";"(French, born 1919)";1919;NA;1;0;1;"Male";1984;1948;NA;NA;NA;193,4;NA;129,1;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"458";"Glorious Techniculture";"Richard Hamilton";"(British, 1922-2011)";1922;2011;1;0;1;"Male";1999;1961;NA;2,5;NA;122,9;NA;122,9;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"459";"Why Did He Do It?";"Jim Nutt";"(American, born 1938)";1938;NA;1;0;1;"Male";1999;1967;NA;4,1;NA;154,3;NA;93,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"460";"Egg Beater, V";"Stuart Davis";"(American, 1892-1964)";1892;1964;1;0;1;"Male";1945;1930;NA;NA;NA;127,3;NA;81,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"461";"Men Taking Banana Beer to Bridge by Night";"Sam Joseph Ntiro";"(Tanzanian, 1923-1993)";1923;1993;1;0;1;"Male";1960;1956;NA;NA;NA;40,9;NA;50,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"462";"Essential Surface, Eye";"Octave Landuyt";"(Belgian, born 1922)";1922;NA;1;0;1;"Male";1961;1960;NA;NA;NA;130,5;NA;160,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"463";"Cut Meringues";"Wayne Thiebaud";"(American, born 1920)";1920;NA;1;0;1;"Male";1962;1961;NA;NA;NA;40,6;NA;50,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"464";"Bookworms Harvest";"Robert Rauschenberg";"(American, 1925-2008)";1925;2008;1;0;1;"Male";1999;1998;NA;NA;NA;247,6;NA;154,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"465";"Studio V";"Georges Braque";"(French, 1882-1963)";1882;1963;1;0;1;"Male";2000;1949;NA;NA;NA;147,0028;NA;176,5304;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"466";"Pottery, Number 9";"Evert Lundquist";"(Swedish, 1904-1994)";1904;1994;1;0;1;"Male";1961;1949;NA;NA;NA;117;NA;105;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"467";"Untitled (Asheville Citizen)";"Robert Rauschenberg";"(American, 1925-2008)";1925;2008;1;0;1;"Male";1999;1952;NA;NA;NA;188;NA;72,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"468";"Girl with Bare Shoulders";"Gwen John";"(British, 1876-1939)";1876;1939;1;1;0;"Female";1958;1909;NA;NA;NA;43,4;NA;26;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"469";"Explorers, Burke and Wills";"Albert Tucker";"(Australian, 1914-1999)";1914;1999;1;0;1;"Male";1960;1960;NA;NA;NA;122,1;NA;156,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"470";"The Piano Lesson";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1946;1916;NA;NA;NA;245,1;NA;212,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"471";"Painting, 1";"Frans Krajcberg";"(Brazilian, born Poland. 1921-2017)";1921;2017;1;0;1;"Male";1958;1957;NA;NA;NA;91,6;NA;73;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"472";"Port-en-Bessin, Entrance to the Harbor";"Georges-Pierre Seurat";"(French, 1859-1891)";1859;1891;1;0;1;"Male";1934;1888;NA;NA;NA;54,9;NA;65,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"473";"Celadon";"Gregory Amenoff";"(American, born 1948)";1948;NA;1;0;1;"Male";1985;1985;NA;NA;NA;254,3;NA;254,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"474";"Michelle";"Malcolm Morley";"(American, born Great Britain 1931)";1931;NA;1;0;1;"Male";1995;1992;NA;NA;NA;202,6;NA;265,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"475";"Country Fair";"Pierre Roy";"(French, 1880-1950)";1880;1950;1;0;1;"Male";1940;1930;NA;NA;NA;41;NA;33;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"476";"Poplars";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1947;1900;NA;NA;NA;41,3;NA;32,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"477";"Purification by Fire";"Octave Landuyt";"(Belgian, born 1922)";1922;NA;1;0;1;"Male";1958;1957;NA;NA;NA;121,7;NA;91;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"478";"Giving Birth Astride a Grave";"Frank Bowling";"(Guyanese, born 1936)";1936;NA;1;0;1;"Male";1974;1973;NA;NA;NA;183,5;NA;122,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"479";"The Bodyguard";"Bruno Ceccobelli";"(Italian, born 1952)";1952;NA;1;0;1;"Male";1985;1982;NA;51,3;NA;350,6;NA;231,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"480";"Before and After";"Andy Warhol";"(American, 1928-1987)";1928;1987;1;0;1;"Male";1995;1961;NA;NA;NA;137,2;NA;177,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"481";"Horned Forms";"Graham Sutherland";"(British, 1903-1980)";1903;1980;1;0;1;"Male";1946;1944;NA;NA;NA;99,7;NA;80,9;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"482";"St. Elmo's Fire";"Enrico Donati";"(American, born Italy. 1909-2008)";1909;2008;1;0;1;"Male";1947;1944;NA;NA;NA;92,7;NA;72,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"483";"Léautaud, Redskin-Sorcerer";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1985;1946;NA;NA;NA;92,1;NA;73;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"484";"Venice, I";"Ernest Fiene";"(American, born Germany. 1894-1965)";1894;1965;1;0;1;"Male";1940;1932;NA;NA;NA;19,7;NA;28,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"485";"The Dessert";"Milton Avery";"(American, 1885-1965)";1885;1965;1;0;1;"Male";1951;1939;NA;NA;NA;71,4;NA;91,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"486";"Icarus Descended";"Richard Lytle";"(American, born 1935)";1935;NA;1;0;1;"Male";1958;1958;NA;NA;NA;158,4;NA;178,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"487";"The Glory of the Kings";"Erol (Erol Akyavas)";"(Turkish, 1932-1999)";1932;1999;1;0;1;"Male";1961;1959;NA;NA;NA;121,8;NA;214;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"488";"Live's";"Gilbert & George, Gilbert Proesch, George Passmore";"(British) (British, born Italy 1943) (British, born 1942)";NA;NA;3;0;3;NA;1985;1984;NA;NA;NA;242,7;NA;353;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"489";"Still Life with Flowers";"Juan Gris";"(Spanish, 1887-1927)";1887;1927;1;0;1;"Male";1947;1912;NA;NA;NA;112,1;NA;70,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"490";"Them and Us";"Neil Jenney";"(American, born 1945)";1945;NA;1;0;1;"Male";1985;1969;NA;8,9;NA;154,9;NA;342,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"491";"Grapes";"Juan Gris";"(Spanish, 1887-1927)";1887;1927;1;0;1;"Male";1947;1913;NA;NA;NA;92,1;NA;60;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"492";"Lucky Strike";"Stuart Davis";"(American, 1892-1964)";1892;1964;1;0;1;"Male";1951;1921;NA;NA;NA;84,5;NA;45,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"493";"New Moon, New York";"George Ault";"(American, 1891-1948)";1891;1948;1;0;1;"Male";1957;1945;NA;NA;NA;71,1;NA;50,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"494";"Elegy to the Spanish Republic, 54";"Robert Motherwell";"(American, 1915-1991)";1915;1991;1;0;1;"Male";1961;1957;NA;NA;NA;178;NA;229;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"495";"Alkahest E";"Gary Stephan";"(American, born 1942)";1942;NA;1;0;1;"Male";1974;1973;NA;NA;NA;144,8;NA;234,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"496";"The False Mirror";"René Magritte";"(Belgian, 1898-1967)";1898;1967;1;0;1;"Male";1937;1929;NA;NA;NA;54;NA;80,9;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"497";"The Passing Scene";"Jack Levine";"(American, 1915-2010)";1915;2010;1;0;1;"Male";1942;1941;NA;NA;NA;121,9;NA;75,6;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"498";"Aspiration, Op. 145";"Thomas Wilfred";"(American, born Denmark. 1889-1968)";1889;1968;1;0;1;"Male";1961;1955;NA;NA;NA;48,9;NA;38,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"499";"Cloth Octagonal, 2";"Richard Tuttle";"(American, born 1941)";1941;NA;1;0;1;"Male";1974;1967;NA;NA;NA;145,2;NA;136,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"500";"Four Color Frame Painting Number 11";"Robert Mangold";"(American, born 1937)";1937;NA;1;0;1;"Male";1985;1985;NA;NA;NA;240,8;NA;175,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"501";"Forms and Red";"A. E. Gallatin";"(American, 1881-1952)";1881;1952;1;0;1;"Male";1951;1949;NA;NA;NA;76,2;NA;58,4;NA;TRUE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"502";"Composition 9";"Manolo Millares";"(Spanish, 1926-1972)";1926;1972;1;0;1;"Male";1958;1957;NA;NA;NA;70,2;NA;135,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"503";"Attendant";"Robert Ryman";"(American, born 1930)";1930;NA;1;0;1;"Male";1985;1984;NA;5,4;NA;131,8;NA;119,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"504";"Rhythm of a Russian Dance";"Theo van Doesburg (Christian Emil Marie Küpper)";"(Dutch, 1883-1931)";1883;1931;1;0;1;"Male";1946;1918;NA;NA;NA;135,9;NA;61,6;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"505";"Untitled";"Robert Ryman";"(American, born 1930)";1930;NA;1;0;1;"Male";1985;1961;NA;NA;NA;27,3;NA;26,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"506";"Christmas Eve";"John Atherton";"(American, 1900-1952)";1900;1952;1;0;1;"Male";1942;1941;NA;NA;NA;76,8;NA;88,9;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"507";"The Double Dream of Spring";"Giorgio de Chirico";"(Italian, born Greece. 1888-1978)";1888;1978;1;0;1;"Male";1957;1915;NA;NA;NA;56,2;NA;54,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"508";"Untitled";"Claude Viallat";"(French, born 1936)";1936;NA;1;0;1;"Male";1985;1979;NA;NA;NA;347,3;NA;182,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"509";"Natural History: Form within Rock";"Charles Seliger";"(American, 1926-2009)";1926;2009;1;0;1;"Male";1947;1946;NA;NA;NA;63,5;NA;76,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"510";"The Pool";"Larry Rivers";"(American, 1923-2002)";1923;2002;1;0;1;"Male";1958;1956;NA;NA;NA;262,5;NA;235,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"511";"Kerby (After Hogarth) Useful Knowledge";"David Hockney";"(British, born 1937)";1937;NA;1;0;1;"Male";1977;1975;NA;NA;NA;182,9;NA;152,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"512";"The Skaters";"Jewett Campbell";"(American, 1912-1999)";1912;1999;1;0;1;"Male";1942;1940;NA;NA;NA;43,2;NA;35,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"513";"Giorgione Book";"Karl Knaths";"(American, 1891-1971)";1891;1971;1;0;1;"Male";1944;1941;NA;NA;NA;101,6;NA;50,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"514";"Red Sheep";"Irving Kriesberg";"(American, 1919-2009)";1919;2009;1;0;1;"Male";1951;1951;NA;NA;NA;121,9;NA;106,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"515";"Woman Carrying Grasses";"Patrick Scott";"(Irish, 1921-2014)";1921;2014;1;0;1;"Male";1958;1958;NA;NA;NA;50,8;NA;38,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"516";"Interior, Mother and Sister of the Artist";"Édouard Vuillard";"(French, 1868-1940)";1868;1940;1;0;1;"Male";1934;1893;NA;NA;NA;46,3;NA;56,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"517";"Big Julie";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1945;1945;NA;NA;NA;111,8;NA;127,3;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"518";"Red and Blue Disks";"Frantisek Kupka";"(Czech, 1871-1957)";1871;1957;1;0;1;"Male";1951;1911;NA;NA;NA;100;NA;73;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"519";"Man";"Ben Shahn";"(American, born Lithuania. 1898-1969)";1898;1969;1;0;1;"Male";1958;1946;NA;NA;NA;58,1;NA;41,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"520";"Danger on the Stairs";"Pierre Roy";"(French, 1880-1950)";1880;1950;1;0;1;"Male";1935;1927;NA;NA;NA;91,4;NA;60;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"521";"Abraham Lincoln, the Great Emancipator, Pardons the Sentry";"Horace Pippin";"(American, 1888-1946)";1888;1946;1;0;1;"Male";1977;1942;NA;NA;NA;60,9;NA;76,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"522";"Madame Derain in Green";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1942;1907;NA;NA;NA;73;NA;60;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"523";"Abstract Painting";"Ad Reinhardt";"(American, 1913-1967)";1913;1967;1;0;1;"Male";1977;1963;NA;NA;NA;152,4;NA;152,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"524";"Farmhouse Window and Door";"Georgia O'Keeffe";"(American, 1887-1986)";1887;1986;1;1;0;"Female";1945;1929;NA;NA;NA;101,6;NA;76,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"525";"Chain Reaction";"Knud Merrild";"(American, born Denmark.1894-1954)";1894;1954;1;0;1;"Male";1951;1947;NA;NA;NA;44,5;NA;34,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"526";"Axes";"Susan Rothenberg";"(American, born 1945)";1945;NA;1;1;0;"Female";1977;1976;NA;NA;NA;164,2;NA;266,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"527";"Bucks County Barn";"Charles Sheeler";"(American, 1883-1965)";1883;1965;1;0;1;"Male";1935;1932;NA;NA;NA;60,6;NA;75,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"528";"Boots";"Marsden Hartley";"(American, 1877-1943)";1877;1943;1;0;1;"Male";1942;1941;NA;NA;NA;71,4;NA;56,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"529";"I and the Village";"Marc Chagall";"(French, born Belarus. 1887-1985)";1887;1985;1;0;1;"Male";1945;1911;NA;NA;NA;192,1;NA;151,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"530";"Mystical Crucifixion";"Heinrich Campendonk";"(German, 1889-1957)";1889;1957;1;0;1;"Male";1953;1926;NA;NA;NA;44,5;NA;38,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"531";"Still Life with Liqueur Bottle";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1951;1909;NA;NA;NA;81,6;NA;65,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"532";"""Ex Act""";"John Covert";"(American, 1882-1960)";1882;1960;1;0;1;"Male";1953;1919;NA;NA;NA;59;NA;64,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"533";"Landscape";"Marcel Duchamp";"(American, born France. 1887-1968)";1887;1968;1;0;1;"Male";1953;1911;NA;NA;NA;46,3;NA;61,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"534";"Creavit Deus Hominem (Synchromy Number 3: Color Counterpoint)";"Morgan Russell";"(American, 1886-1953)";1886;1953;1;0;1;"Male";1951;1913;NA;NA;NA;30,2;NA;26;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"535";"Section 4";"Giuseppe Capogrossi";"(Italian, 1900-1972)";1900;1972;1;0;1;"Male";1955;1953;NA;NA;NA;218,1;NA;98,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"536";"Cock Fight";"René Vincent";"(Haitian, born 1911)";1911;NA;1;0;1;"Male";1944;1940;NA;NA;NA;45,7;NA;66;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"537";"Grove Group I";"Brice Marden";"(American, born 1938)";1938;NA;1;0;1;"Male";1973;1972;NA;NA;NA;182,8;NA;274,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"538";"Goya Series: And";"John Baldessari";"(American, born 1931)";1931;NA;1;0;1;"Male";1998;1997;NA;NA;NA;190,5;NA;152,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"539";"Election Night";"Jack Levine";"(American, 1915-2010)";1915;2010;1;0;1;"Male";1955;1954;NA;NA;NA;160,3;NA;184,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"540";"Chatham VI: Red Blue";"Ellsworth Kelly";"(American, 1923-2015)";1923;2015;1;0;1;"Male";1998;1971;NA;NA;NA;290,8;NA;259,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"541";"Birds above the Forest (Oiseaux au-dessus de la foręt)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1976;1929;NA;NA;NA;80,6;NA;64,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"542";"Composition with Red, Blue, Black, Yellow, and Gray";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1957;1921;NA;NA;NA;76;NA;52,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"543";"Sky-Eye";"David Deutsch";"(American, born 1943)";1943;NA;1;0;1;"Male";1986;1985;NA;7,9;NA;46;NA;213,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"544";"Still Life with Chinese Tea Pot";"Max Weber";"(American, born Russia. 1881-1961)";1881;1961;1;0;1;"Male";1935;1925;NA;NA;NA;50,8;NA;61,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"545";"Elegy to the Spanish Republic, 108";"Robert Motherwell";"(American, 1915-1991)";1915;1991;1;0;1;"Male";1970;1965;NA;NA;NA;208,2;NA;351,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"546";"Shinjuku Pleasure District, Tokyo II";"Yvonne Jacquette";"(American, born 1934)";1934;NA;1;1;0;"Female";1986;1985;NA;NA;NA;194,3;NA;234,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"547";"Houses at Night";"Karl Schmidt-Rottluff";"(German, 1884-1976)";1884;1976;1;0;1;"Male";1957;1912;NA;NA;NA;95,6;NA;87,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"548";"The Serenity of the Scholar";"Giorgio de Chirico";"(Italian, born Greece. 1888-1978)";1888;1978;1;0;1;"Male";1997;1914;NA;NA;NA;130,1;NA;72,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"549";"Pastorale (Rhythms)";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1945;1927;NA;NA;NA;69,3;NA;52,4;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"550";"Find a Way";"Sidney Goodman";"(American, 1936-2013)";1936;2013;1;0;1;"Male";1962;1961;NA;NA;NA;95,7;NA;154,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"551";"Study";"Ernest Trova";"(American, 1927-2009)";1927;2009;1;0;1;"Male";1962;1960;NA;NA;NA;50,8;NA;40,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"552";"Pharisees";"Karl Schmidt-Rottluff";"(German, 1884-1976)";1884;1976;1;0;1;"Male";1955;1912;NA;NA;NA;75,9;NA;102,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"553";"Quiet Sign";"Fritz Winter";"(German, 1905-1976)";1905;1976;1;0;1;"Male";1955;1953;NA;NA;NA;114,3;NA;146;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"554";"The Persistence of Memory";"Salvador Dalí";"(Spanish, 1904-1989)";1904;1989;1;0;1;"Male";1934;1931;NA;NA;NA;24,1;NA;33;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"555";"Still Life in Red";"Amelia Peláez Del Casal";"(Cuban, 1896-1968)";1896;1968;1;1;0;"Female";1942;1938;NA;NA;NA;69,3;NA;85,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"556";"Chasuble";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1955;1950;NA;0;NA;91,4401828804;NA;137,1602743205;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"557";"GHOSTS. Composed of GHOST (de Chirico: The Enigma of the Day), GHOST (Hopper: House by the Railroad), GHOST (Magritte: The Menaced Assasin)";"Sophie Calle";"(French, born 1953)";1953;NA;1;1;0;"Female";1992;1991;NA;NA;NA;233,7;NA;210,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"558";"The Tranquility of Previous Existence";"Walter Quirt";"(American, 1902-1968)";1902;1968;1;0;1;"Male";1942;1941;NA;NA;NA;61,3;NA;81,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"559";"Dutch Interior (I)";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1945;1928;NA;NA;NA;91,8;NA;73;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"560";"Chasuble";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1955;1950;NA;0;NA;129,5402590805;NA;193,0403860808;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"561";"The Organ of Cause & Effect";"Richard Artschwager";"(American, 1923-2013)";1923;2013;1;0;1;"Male";1996;1981;NA;28,3;NA;177,2;NA;207;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"562";"The Vases";"Amédée Ozenfant";"(French, 1886-1966)";1886;1966;1;0;1;"Male";1945;1925;NA;NA;NA;130,5;NA;97,5;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"563";"Chasuble";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1955;1950;NA;0;NA;119,3802387605;NA;177,8003556007;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"564";"Animals";"Rufino Tamayo";"(Mexican, 1899-1991)";1899;1991;1;0;1;"Male";1942;1941;NA;NA;NA;76,5;NA;101,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"565";"Interior with Mobile";"Roy Lichtenstein";"(American, 1923-1997)";1923;1997;1;0;1;"Male";1992;1992;NA;NA;NA;330,2;NA;434,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"566";"American Landscape";"Charles Sheeler";"(American, 1883-1965)";1883;1965;1;0;1;"Male";1934;1930;NA;NA;NA;61;NA;78,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"567";"Vertical Sequence, Op. 137";"Thomas Wilfred";"(American, born Denmark. 1889-1968)";1889;1968;1;0;1;"Male";1942;1941;NA;NA;NA;38,7;NA;39,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"568";"Acadia";"Maurice Prendergast";"(American, 1859-1924)";1859;1924;1;0;1;"Male";1945;1922;NA;NA;NA;80,6;NA;95,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"569";"Down to Earth";"Gilbert & George, Gilbert Proesch, George Passmore";"(British) (British, born Italy 1943) (British, born 1942)";NA;NA;3;0;3;NA;1996;1989;NA;NA;NA;75,6;NA;63,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"570";"The First Communication";"Attilio Salemme";"(American, 1911-1955)";1911;1955;1;0;1;"Male";1945;1943;NA;NA;NA;33;NA;50,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"571";"Propellers";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1953;1918;NA;NA;NA;80,9;NA;65,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"572";"Proun 19D";"El Lissitzky";"(Russian, 1890-1941)";1890;1941;1;0;1;"Male";1953;1920;NA;NA;NA;97,5;NA;97,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"573";"Composition with Still Life";"Edwin Dickinson";"(American, 1891-1978)";1891;1978;1;0;1;"Male";1952;1933;NA;NA;NA;246,4;NA;197,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"574";"Amulet for a Yellow Landscape";"Mordecai Ardon";"(Israeli, born Poland. 1896-1992)";1896;1992;1;0;1;"Male";1967;1966;NA;NA;NA;96,8;NA;128,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"575";"The Passage from Virgin to Bride";"Marcel Duchamp";"(American, born France. 1887-1968)";1887;1968;1;0;1;"Male";1945;1912;NA;NA;NA;59,4;NA;54;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"576";"Nostalgia of Space";"Oscar Domínguez";"(French, born Spain. 1906-1957)";1906;1957;1;0;1;"Male";1952;1939;NA;NA;NA;73;NA;91,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"577";"Silvered Circle";"Jose Antonio Fernández-Muro";"(Argentine, born Spain, 1920)";1920;NA;1;0;1;"Male";1963;1962;NA;NA;NA;173;NA;126,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"578";"Man with a Guitar";"Georges Braque";"(French, 1882-1963)";1882;1963;1;0;1;"Male";1945;1911;NA;NA;NA;116,2;NA;80,9;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"579";"Voyager's Return";"Adolph Gottlieb";"(American, 1903-1974)";1903;1974;1;0;1;"Male";1946;1946;NA;NA;NA;96,2;NA;75,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"580";"German Landscape";"Elmer Schooley";"(American, 1916-2007)";1916;2007;1;0;1;"Male";1963;1962;NA;NA;NA;76,4;NA;91,8;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"581";"""Ma Jolie""";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1945;1911;NA;NA;NA;100;NA;64,5;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"582";"Card Player";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1945;1913;NA;NA;NA;108;NA;89,5;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"583";"The Baluster";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1952;1925;NA;NA;NA;129,5;NA;97,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"584";"Tableau I: Lozenge with Four Lines and Gray";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1953;1926;NA;NA;NA;113,6652;NA;111,7602;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"585";"""Untitled""";"Felix Gonzalez-Torres";"(American, born Cuba. 1957-1996)";1957;1996;1;0;1;"Male";1996;1991;NA;NA;NA;317,5;NA;690,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"586";"Étienne-Martin";"Karel Appel";"(Dutch, 1921-2006)";1921;2006;1;0;1;"Male";1966;1956;NA;NA;NA;195,1;NA;130,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"587";"April 24, 1990";"On Kawara";"(Japanese, 1933-2014)";1933;NA;1;0;1;"Male";1996;1990;NA;NA;NA;46,4;NA;61;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"588";"Ride to the Vistula";"Anselm Kiefer";"(German, born 1945)";1945;NA;1;0;1;"Male";1996;1980;NA;NA;NA;129,9;NA;170,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"589";"May Day";"Armando Pizzinato";"(Italian, 1910-2004)";1910;2004;1;0;1;"Male";1952;1948;NA;NA;NA;79,7;NA;115,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"590";"Full Fathom Five";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1952;1947;NA;NA;NA;129,2;NA;76,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"591";"Wall with Inscriptions";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1966;1945;NA;NA;NA;99,7;NA;81;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"592";"The Last Supper";"Andy Warhol";"(American, 1928-1987)";1928;1987;1;0;1;"Male";1994;1986;NA;NA;NA;302,9;NA;668,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"593";"Composition July";"Alan Reynolds";"(British, 1926-2014)";1926;2014;1;0;1;"Male";1952;1952;NA;NA;NA;76,2;NA;121,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"594";"Magic Box";"Alan Davie";"(British, 1920-2014)";1920;2014;1;0;1;"Male";1956;1955;NA;NA;NA;152,2;NA;122;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"595";"Berkeley, 46";"Richard Diebenkorn";"(American, 1922-1993)";1922;1993;1;0;1;"Male";1973;1955;NA;NA;NA;149,6;NA;157,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"596";"Color and Monochrome - Line and Structure";"Agam (Yaacov Agam)";"(Israeli, born 1928)";1928;NA;1;0;1;"Male";1987;1962;NA;NA;NA;65,7;NA;62,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"597";"Three Women";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1942;1921;NA;NA;NA;183,5;NA;251,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"598";"Silence";"Georges Ribemont-Dessaignes";"(French, 1884-1974)";1884;1974;1;0;1;"Male";1953;1915;NA;NA;NA;92,1;NA;73,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"599";"Pompeii";"William Baziotes";"(American, 1912-1963)";1912;1963;1;0;1;"Male";1956;1955;NA;NA;NA;152,4;NA;121,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"600";"Trojan Gates";"Helen Frankenthaler";"(American, 1928-2011)";1928;2011;1;1;0;"Female";1956;1955;NA;NA;NA;182,9;NA;124,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"601";"To the Rendezvous of Friends (The Friends Become Flowers, Snakes, and Frogs) (Au rendez-vous des amis [Les amis se transforment en fleurs, en serpents, et en grenouilles])";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1973;1928;NA;NA;NA;129,8;NA;161,9;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"602";"Avrutun";"Brice Marden";"(American, born 1938)";1938;NA;1;0;1;"Male";1996;1971;NA;NA;NA;182,9;NA;91,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"603";"Astronomical Experiment";"Attilio Salemme";"(American, 1911-1955)";1911;1955;1;0;1;"Male";1952;1945;NA;NA;NA;76,2;NA;101,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"604";"Boy in a Red Vest";"Paul Cézanne";"(French, 1839-1906)";1839;1906;1;0;1;"Male";1955;1888;NA;NA;NA;81,2;NA;65;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"605";"Portrait of a Dog";"Eric Fischl";"(American, born 1948)";1948;NA;1;0;1;"Male";1987;1987;NA;NA;NA;287;NA;433,7;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"606";"Vine";"Brice Marden";"(American, born 1938)";1938;NA;1;0;1;"Male";1996;1992;NA;6,35;NA;243,8405;NA;260,3505;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"607";"Antechamber to Inner Sanctum";"Attilio Salemme";"(American, 1911-1955)";1911;1955;1;0;1;"Male";1952;1950;NA;NA;NA;71,1;NA;101,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"608";"Portuguese Market";"Sonia Delaunay-Terk";"(French, born Ukraine. 1885-1979)";1885;1979;1;1;0;"Female";1955;1915;NA;NA;NA;90,5;NA;90,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"609";"Intimate Lighting: Late October, Five O'Clock";"Robert Natkin";"(American, 1930-2010)";1930;2010;1;0;1;"Male";1973;1972;NA;NA;NA;243,8;NA;223,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"610";"The Day of the Locust";"Malcolm Morley";"(American, born Great Britain 1931)";1931;NA;1;0;1;"Male";1987;1977;NA;NA;NA;239,3;NA;199,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"611";"Modjesko, Soprano Singer";"Kees van Dongen";"(French, 1877-1968)";1877;1968;1;0;1;"Male";1955;1908;NA;NA;NA;100;NA;81,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"612";"Painting";"John Levee";"(American, 1924-2017)";1924;2017;1;0;1;"Male";1956;1954;NA;NA;NA;162;NA;129,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"613";"Untitled";"Janet Sobel";"(American, born Ukraine. 1894-1968)";1894;1968;1;1;0;"Female";1987;1946;NA;NA;NA;45,5;NA;35,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"614";"Promenade";"Christian Bérard";"(French, 1902-1949)";1902;1949;1;0;1;"Male";1942;1928;NA;NA;NA;41;NA;27;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"615";"London Bridge";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1951;1906;NA;NA;NA;66;NA;99,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"616";"Life Full of Holes";"Robin Winters";"(American, born 1950)";1950;NA;1;0;1;"Male";1987;1986;NA;NA;NA;183,2;NA;152,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"617";"Portrait of Joseph Roulin";"Vincent van Gogh";"(Dutch, 1853-1890)";1853;1890;1;0;1;"Male";1989;1889;NA;NA;NA;64,5;NA;55,2;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"618";"Untitled";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1996;1971;NA;NA;NA;236,9;NA;177,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"619";"Painting 95B";"Gérard Schneider";"(French, born Switzerland.1896-1986)";1896;1986;1;0;1;"Male";1956;1955;NA;NA;NA;146,3;NA;114,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"620";"For the Feast of Christ the King";"Alfred Manessier";"(French, 1911-1993)";1911;1993;1;0;1;"Male";1966;1952;NA;NA;NA;200,5;NA;150;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"621";"Untitled";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1996;1969;NA;NA;NA;150,2;NA;125,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"622";"Montjoie Saint Denis!";"Georges Mathieu";"(French, 1921-2012)";1921;2012;1;0;1;"Male";1955;1954;NA;NA;NA;375;NA;90,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"623";"Personages";"Enrique Zańartu";"(Chilean, born France. 1921-2000)";1921;2000;1;0;1;"Male";1956;1956;NA;NA;NA;99;NA;81,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"624";"Crucifix";"Thomas Chimes";"(American, 1921-2009)";1921;2009;1;0;1;"Male";1963;1961;NA;NA;NA;91,5;NA;91,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"625";"Self-Portrait at 2,719,997";"Jonathan Borofsky";"(American, born 1942)";1942;NA;1;0;1;"Male";1982;1981;NA;647,7;NA;350,5;NA;266;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"626";"Menschkin";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1996;1972;NA;NA;NA;100,3;NA;80;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"627";"Goldfish and Sculpture";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1955;1912;NA;NA;NA;116,2;NA;100,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"628";"Untitled, Number 5";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1996;1988;NA;8,9;NA;213,4;NA;115,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"629";"Girl Attacked by a Strange Bird";"Rufino Tamayo";"(Mexican, 1899-1991)";1899;1991;1;0;1;"Male";1955;1947;NA;NA;NA;177,8;NA;127,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"630";"Flowers by the Sea";"Fairfield Porter";"(American, 1907-1975)";1907;1975;1;0;1;"Male";1966;1965;NA;NA;NA;50,6;NA;49,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"631";"Head";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1992;1977;NA;NA;NA;176,8;NA;215,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"632";"The Goat Wagon";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1996;1992;NA;NA;NA;218,4;NA;299,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"633";"Dance (I)";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1963;1909;NA;NA;NA;259,7;NA;390,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"634";"Birth of a Personage";"Emilio Rodríguez Larraín";"(Peruvian, 1928-2015)";1928;2015;1;0;1;"Male";1966;1965;NA;NA;NA;200;NA;142;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"635";"Untitled";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1992;1969;NA;NA;NA;75,8;NA;81,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"636";"Untitled";"Robert Ryman";"(American, born 1930)";1930;NA;1;0;1;"Male";1996;1965;NA;NA;NA;28,6;NA;28,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"637";"Convert";"Robert Ryman";"(American, born 1930)";1930;NA;1;0;1;"Male";1996;1988;NA;NA;NA;182,9;NA;182,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"638";"The Subway";"José Clemente Orozco";"(Mexican, 1883-1949)";1883;1949;1;0;1;"Male";1935;1928;NA;NA;NA;41;NA;56,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"639";"First Light";"Joseph Stella";"(American, 1877-1946)";1877;1946;1;0;1;"Male";1966;1928;NA;NA;NA;41,3;NA;41,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"640";"No!";"Gino De Dominicis";"(Italian, 1947-1998)";1947;1998;1;0;1;"Male";1982;1981;NA;NA;NA;276,9;NA;195,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"641";"Untitled";"Joseph Glasco";"(American, 1925-1996)";1925;1996;1;0;1;"Male";1982;1982;NA;NA;NA;152,6;NA;297,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"642";"Untitled";"Ronald Bladen";"(American, 1918-1988)";1918;1988;1;0;1;"Male";1992;1960;NA;NA;NA;244,5;NA;183,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"643";"Blue/Black Five-Panel Zone Painting";"Robert Mangold";"(American, born 1937)";1937;NA;1;0;1;"Male";1999;1998;NA;NA;NA;228,3;NA;167,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"644";"Factum II";"Robert Rauschenberg";"(American, 1925-2008)";1925;2008;1;0;1;"Male";1999;1957;NA;NA;NA;155,9;NA;90,2;NA;TRUE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"645";"South Orange";"Ralph Humphrey";"(American, 1932-1990)";1932;1990;1;0;1;"Male";1982;1981;NA;17,8;NA;145;NA;187;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"646";"Self-Portrait";"Jacques Villon";"(French, 1875-1963)";1875;1963;1;0;1;"Male";1992;1950;NA;NA;NA;39,4;NA;26;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"647";"Collective Suicide";"David Alfaro Siqueiros";"(Mexican, 1896-1974)";1896;1974;1;0;1;"Male";1937;1936;NA;NA;NA;124,5;NA;182,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"648";"Unmade Bed";"Joe Goode";"(American, born 1937)";1937;NA;1;0;1;"Male";1993;1968;NA;NA;NA;153,5;NA;153;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"649";"Winter";"Eugene Berman";"(American, born Russia. 1899-1972)";1899;1972;1;0;1;"Male";1937;1929;NA;NA;NA;91,8;NA;73;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"650";"Portrait of a Man in a Late Nineteenth-Century Frame";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1972;1950;NA;NA;NA;96,2;NA;80;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"651";"Parachiffre XLIV";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1977;1975;NA;NA;NA;68,6;NA;98,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"652";"Progression 49";"Nedo Mion Ferrario";"(Venezuelan, born Italy. 1926-2001)";1926;2001;1;0;1;"Male";1972;1970;NA;5,7;NA;118,4;NA;68,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"653";"I am an American... Uneasy Dreams";"Katherine Porter";"(American, born 1941)";1941;NA;1;1;0;"Female";1982;1981;NA;NA;NA;231,3;NA;231,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"654";"The Red Sea";"Anselm Kiefer";"(German, born 1945)";1945;NA;1;0;1;"Male";1985;1984;NA;NA;NA;278,8;NA;425,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"655";"End of the Street";"Onofrio A. Pacenza";"(Argentine, 1904-1971)";1904;1971;1;0;1;"Male";1942;1936;NA;NA;NA;84,8;NA;105,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"656";"Schwenk";"Fairfield Porter";"(American, 1907-1975)";1907;1975;1;0;1;"Male";1972;1959;NA;NA;NA;57,3;NA;78,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"657";"Gaea";"Lee Krasner";"(American, 1908-1984)";1908;1984;1;1;0;"Female";1977;1966;NA;NA;NA;175,3;NA;318,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"658";"Welkom";"Frank Stella";"(American, born 1936)";1936;NA;1;0;1;"Male";1982;1982;NA;160,1;NA;242;NA;237,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"659";"The Studio";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1935;1927;NA;NA;NA;149,9;NA;231,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"660";"Color Perspective";"Jacques Villon";"(French, 1875-1963)";1875;1963;1;0;1;"Male";1953;1922;NA;NA;NA;73;NA;60;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"661";"Robbe-Grillet Cleansing Every Object in Sight";"Mark Tansey";"(American, born 1949)";1949;NA;1;0;1;"Male";1982;1981;NA;NA;NA;182,9;NA;183,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"662";"Russet";"Morris Louis";"(American, 1912-1962)";1912;1962;1;0;1;"Male";1977;1958;NA;NA;NA;235,6;NA;441,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"663";"Self-Portrait";"Chuck Close";"(American, born 1940)";1940;NA;1;0;1;"Male";2000;1997;NA;NA;NA;259,1;NA;213,4;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"664";"Great American Nude, 47";"Tom Wesselmann";"(American, 1931-2004)";1931;2004;1;0;1;"Male";1982;1963;NA;NA;NA;121,9202;NA;165,4178;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"665";"Mint";"Robert Rauschenberg";"(American, 1925-2008)";1925;2008;1;0;1;"Male";1977;1974;NA;NA;NA;198,1;NA;116,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"666";"Apache (Man on Horseback)";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1875;NA;NA;NA;25,0826;NA;32,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"667";"Landscape, Milpa Alta";"Jean Charlot";"(American, born France. 1898-1979)";1898;1979;1;0;1;"Male";1937;1924;NA;NA;NA;27,9;NA;35,6;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"668";"Apache (Man on Horseback II)";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1875;NA;NA;NA;23,1775;NA;32,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"669";"Apparition";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1905;NA;NA;NA;66,9926;NA;40;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"670";"Trees in Bičvres";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1900;NA;NA;NA;61,3;NA;50,4826;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"671";"Extinction of Useless Lights";"Yves Tanguy";"(American, born France. 1900-1955)";1900;1955;1;0;1;"Male";1935;1927;NA;NA;NA;92,1;NA;65,4;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"672";"Trees in the Blue Sky";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1883;NA;NA;NA;30,2;NA;24,4475;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"673";"Fishing Boat";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1875;NA;NA;NA;16,8275;NA;21,9075;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"674";"The Conquest of the Air";"Roger de La Fresnaye";"(French, 1885-1925)";1885;1925;1;0;1;"Male";1947;1913;NA;NA;NA;235,9;NA;195,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"675";"The Chariot of Apollo";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1912;NA;NA;NA;99,6952;NA;74,9301;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"676";"Space Modulator L3";"László Moholy-Nagy";"(American, born Hungary. 1895-1946)";1895;1946;1;0;1;"Male";1947;1936;NA;NA;NA;43,8;NA;48,6;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"677";"On the Art of Writing. On the Writing of Art";"Marcel Broodthaers";"(Belgian, 1924-1976)";1924;1976;1;0;1;"Male";1991;1968;NA;NA;NA;59,7;NA;107,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"678";"Jacob and the Angel";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1907;NA;NA;NA;47;NA;41,5926;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"679";"The Gates of the City, Nightfall";"Eugene Berman";"(American, born Russia. 1899-1972)";1899;1972;1;0;1;"Male";1947;1937;NA;NA;NA;76,8;NA;102,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"680";"Memory of Oceania";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1968;1952;NA;NA;NA;284,4;NA;286,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"681";"Composition: Flowers without a Vase";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1905;NA;NA;NA;20,6375;NA;20,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"682";"Composition VIII (The Cow)";"Theo van Doesburg (Christian Emil Marie Küpper)";"(Dutch, 1883-1931)";1883;1931;1;0;1;"Male";1948;1918;NA;NA;NA;37,5;NA;63,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"683";"Untitled";"Robert Beauchamp";"(American, 1923-1995)";1923;1995;1;0;1;"Male";1962;1962;NA;NA;NA;170,2;NA;208,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"684";"Smoker, 1 (Mouth, 12)";"Tom Wesselmann";"(American, 1931-2004)";1931;2004;1;0;1;"Male";1968;1967;NA;NA;NA;276,6;NA;216;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"685";"Wildflowers in a Long Neck Vase";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1912;NA;NA;NA;65,4051;NA;50,4826;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"686";"Rayonist Composition";"Mikhail Larionov";"(Russian, 1881-1964)";1881;1964;1;0;1;"Male";1991;1912;NA;NA;NA;50,2;NA;43,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"687";"Seated Man";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1910;NA;NA;NA;21,9075;NA;23,495;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"688";"Woman";"Ivan Le Lorraine Albright";"(American, 1897-1983)";1897;1983;1;0;1;"Male";1948;1928;NA;NA;NA;83,8;NA;55,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"689";"Spring Blossoms";"René Brô";"(French, 1930-1987)";1930;1987;1;0;1;"Male";1962;1962;NA;NA;NA;64,7;NA;81;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"690";"The Blind Swimmer (Nageur aveugle)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1968;1934;NA;NA;NA;92,3;NA;73,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"691";"The Birth of Venus";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1912;NA;NA;NA;143,1928;NA;62,5476;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"692";"Painting";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1937;1933;NA;NA;NA;174;NA;196,2;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"693";"Dwarf";"William Baziotes";"(American, 1912-1963)";1912;1963;1;0;1;"Male";1947;1947;NA;NA;NA;106,7;NA;91,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"694";"Painting";"Francis Bacon";"(British, born Ireland. 1909-1992)";1909;1992;1;0;1;"Male";1948;1946;NA;NA;NA;197,8;NA;132,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"695";"Hummingbird";"Sally Hazelet Drummond";"(American, born 1924)";1924;NA;1;1;0;"Female";1962;1961;NA;NA;NA;30,4;NA;30,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"696";"The Fishes";"Marcel Broodthaers";"(Belgian, 1924-1976)";1924;1976;1;0;1;"Male";1978;1975;NA;NA;NA;79,4;NA;99,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"697";"Landscape at Daybreak";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1872;NA;NA;NA;38,4;NA;55,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"698";"Painting";"Patrick Henry Bruce";"(American, 1881-1936)";1881;1936;1;0;1;"Male";1978;1929;NA;NA;NA;60,3;NA;92,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"699";"Watchtower";"Sigmar Polke";"(German, 1941-2010)";1941;2010;1;0;1;"Male";1991;1984;NA;NA;NA;300;NA;224,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"700";"Landscape";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1900;NA;NA;NA;38,7351;NA;55,5626;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"701";"One Painting in Four Elements for One Wall";"Daniel Buren";"(French, born 1938)";1938;NA;1;0;1;"Male";1978;1969;NA;NA;NA;51,4;NA;101;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"702";"Mouth";"Arnulf Rainer";"(Austrian, born 1929)";1929;NA;1;0;1;"Male";1991;1973;NA;NA;NA;166,4;NA;120,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"703";"Rocky Peak";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1875;NA;NA;NA;24,765;NA;33,0201;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"704";"Untitled (Portrait of Henry de Montherlant)";"Gerhard Richter";"(German, born 1932)";1932;NA;1;0;1;"Male";1991;1971;NA;NA;NA;70,2;NA;55,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"705";"Profile";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1895;NA;NA;NA;50,5;NA;38,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"706";"Passing";"Alex Katz";"(American, born 1927)";1927;NA;1;0;1;"Male";1978;1962;NA;NA;NA;182,2;NA;202,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"707";"Jumbo";"Edward Ruscha";"(American, born 1937)";1937;NA;1;0;1;"Male";1991;1986;NA;NA;NA;208,6;NA;249,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"708";"The Rocky Slope";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1875;NA;NA;NA;25,0826;NA;32,7026;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"709";"Painting, II";"Pierre Clerk";"(Canadian, born U.S.A. 1928)";1928;NA;1;0;1;"Male";1956;1955;NA;NA;NA;79,8;NA;94,9;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"710";"The Chain";"Bedri Rahmi";"(Turkish, 1913-1975)";1913;1975;1;0;1;"Male";1962;1962;NA;NA;NA;35,8;NA;121;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"711";"Summation";"Arshile Gorky";"(American, born Armenia. 1904-1948)";1904;1948;1;0;1;"Male";1969;1947;NA;NA;NA;202,1;NA;258,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"712";"Orange Car Crash Fourteen Times";"Andy Warhol";"(American, 1928-1987)";1928;1987;1;0;1;"Male";1991;1963;NA;NA;NA;268,9;NA;208,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"713";"Landscape with Rocks, near Royan";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1875;NA;NA;NA;21,2;NA;26,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"714";"Funeral of the Anarchist Galli";"Carlo Carrŕ";"(Italian, 1881-1966)";1881;1966;1;0;1;"Male";1948;1910;NA;NA;NA;198,7;NA;259,1;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"715";"The Last Civil War Veteran";"Larry Rivers";"(American, 1923-2002)";1923;2002;1;0;1;"Male";1962;1959;NA;NA;NA;209,6;NA;162,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"716";"Untitled";"Christopher Wool";"(American, born 1955)";1955;NA;1;0;1;"Male";1991;1990;NA;NA;NA;274,3;NA;182,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"717";"Rocks on the Beach";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1883;NA;NA;NA;26;NA;36,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"718";"Two Scotswomen";"Robert Colquhoun";"(British, 1914-1962)";1914;1962;1;0;1;"Male";1948;1946;NA;NA;NA;122,9;NA;91,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"719";"Fires";"Robert Kabak";"(American, born 1930)";1930;NA;1;0;1;"Male";1956;1956;NA;NA;NA;29,8;NA;91,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"720";"Painting Number 2";"Franz Kline";"(American, 1910-1962)";1910;1962;1;0;1;"Male";1969;1954;NA;NA;NA;204,3;NA;271,7805435611;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"721";"The Black Sun";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1900;NA;NA;NA;32,3851;NA;23,8125;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"722";"Composition: Horse and Figures";"Arshile Gorky";"(American, born Armenia. 1904-1948)";1904;1948;1;0;1;"Male";1950;1928;NA;NA;NA;87;NA;110,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"723";"Number 3 (Untitled)";"Lee Krasner";"(American, 1908-1984)";1908;1984;1;1;0;"Female";1969;1951;NA;NA;NA;209,5;NA;146,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"724";"The Three Fates";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1900;NA;NA;NA;32,4;NA;23,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"725";"Painting";"Willem de Kooning";"(American, born the Netherlands. 1904-1997)";1904;1997;1;0;1;"Male";1948;1948;NA;NA;NA;108,3;NA;142,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"726";"Underwater Vision";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1910;NA;NA;NA;93,3;NA;74,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"727";"1/2 W Series";"Robert Mangold";"(American, born 1937)";1937;NA;1;0;1;"Male";1969;1968;NA;NA;NA;122,6;NA;122,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"728";"The Window";"Odilon Redon";"(French, 1840-1916)";1840;1916;1;0;1;"Male";2000;1907;NA;NA;NA;81;NA;61,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"729";"Vir Heroicus Sublimis";"Barnett Newman";"(American, 1905-1970)";1905;1970;1;0;1;"Male";1971;1950;NA;NA;NA;242,2;NA;541,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"730";"Echo: Number 25, 1951";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1969;1951;NA;NA;NA;233,4;NA;218,4;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"731";"Vitebsk-Harar";"Enzo Cucchi";"(Italian, born 1949)";1949;NA;1;0;1;"Male";1990;1984;NA;40,6;NA;289,6;NA;549,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"732";"Composition in Brown and Gray";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1950;1913;NA;NA;NA;85,7;NA;75,6;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"733";"The Japanese Footbridge";"Claude Monet";"(French, 1840-1926)";1840;1926;1;0;1;"Male";1956;1920;NA;NA;NA;89,5;NA;116,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"734";"Ring";"Ron Davis";"(American, born 1937)";1937;NA;1;0;1;"Male";1969;1968;NA;NA;NA;143,4;NA;345,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"735";"Truncated View of the Broekzijder Mill on the Gein, Wings Facing West";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1950;1902;NA;NA;NA;30,2;NA;38,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"736";"Number 11";"Stanley Twardowicz";"(American, 1917-2008)";1917;2008;1;0;1;"Male";1956;1955;NA;NA;NA;182,9;NA;127;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"737";"Double-Bar, Grey (Green Line)";"Jo Baer";"(American, born 1929)";1929;NA;1;1;0;"Female";1983;1968;NA;NA;NA;91,9;NA;99;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"738";"Hudson";"Ralph Humphrey";"(American, 1932-1990)";1932;1990;1;0;1;"Male";1969;1968;NA;NA;NA;202,6;NA;204,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"739";"The Living Room";"Balthus (Baltusz Klossowski de Rola)";"(French, 1908-2001)";1908;2001;1;0;1;"Male";1983;1942;NA;NA;NA;114,8;NA;146,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"740";"Abstract Painting";"Ad Reinhardt";"(American, 1913-1967)";1913;1967;1;0;1;"Male";1969;1957;NA;NA;NA;274,3;NA;101,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"741";"Qualm";"James Brooks";"(American, 1906-1992)";1906;1992;1;0;1;"Male";1956;1954;NA;NA;NA;154,9;NA;144,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"742";"The Menaced Assassin";"René Magritte";"(Belgian, 1898-1967)";1898;1967;1;0;1;"Male";1966;1927;NA;NA;NA;150,4;NA;195,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"743";"Two Edges";"Barnett Newman";"(American, 1905-1970)";1905;1970;1;0;1;"Male";1990;1948;NA;NA;NA;121,9;NA;91,4;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"744";"Suprematist Composition: Airplane Flying";"Kazimir Malevich";"(Russian, born Ukraine. 1878-1935)";1878;1935;1;0;1;"Male";1935;1915;NA;NA;NA;58,1;NA;48,3;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"745";"Night Windows";"Edward Hopper";"(American, 1882-1967)";1882;1967;1;0;1;"Male";1940;1928;NA;NA;NA;73,7;NA;86,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"746";"Number 3";"Kenzo Okada";"(American, 1902-1982)";1902;1982;1;0;1;"Male";1954;1953;NA;NA;NA;165,4;NA;147;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"747";"Flowers in a Vase";"Frederick Papsdorf";"(American, 1887-1978)";1887;1978;1;0;1;"Male";1940;1940;NA;NA;NA;46,3;NA;36,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"748";"The Yellow Book";"Afro (Afro Basaldella)";"(Italian, 1912-1976)";1912;1976;1;0;1;"Male";1957;1952;NA;NA;NA;127;NA;151,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"749";"Flute Player";"Reuven Rubin";"(Israeli, born Romania. 1893-1974)";1893;1974;1;0;1;"Male";1940;1938;NA;NA;NA;81,3;NA;65,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"750";"The Dream";"Henri Rousseau";"(French, 1844-1910)";1844;1910;1;0;1;"Male";1954;1910;NA;NA;NA;204,5;NA;298,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"751";"The Riot";"Umberto Boccioni";"(Italian, 1882-1916)";1882;1916;1;0;1;"Male";1957;1911;NA;NA;NA;50,5;NA;50,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"752";"Woman in a Red Hat";"Robert MacBryde";"(British, 1913-1966)";1913;1966;1;0;1;"Male";1948;1947;NA;NA;NA;127;NA;72,4;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"753";"Natalie Paley";"Pavel Tchelitchew";"(American, born Russia. 1898-1957)";1898;1957;1;0;1;"Male";1954;1931;NA;NA;NA;81,3;NA;54;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"754";"Incident 13 R";"Edmondo Bacci";"(Italian, 1913-1978)";1913;1978;1;0;1;"Male";1956;1953;NA;NA;NA;83,1;NA;142,9;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"755";"The Nun";"Otto Dix";"(German, 1891-1969)";1891;1969;1;0;1;"Male";1988;1914;NA;NA;NA;70,2;NA;52,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"756";"Study for Portrait VII";"Francis Bacon";"(British, born Ireland. 1909-1992)";1909;1992;1;0;1;"Male";1956;1953;NA;NA;NA;152,3;NA;117;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"757";"Nova";"Howard Mehring";"(American, 1931-1978)";1931;1978;1;0;1;"Male";1966;1965;NA;NA;NA;215,5;NA;178;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"758";"Self-Portrait with a Cigarette";"Max Beckmann";"(German, 1884-1950)";1884;1950;1;0;1;"Male";1956;1923;NA;NA;NA;60,2;NA;40,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"759";"Lejos de Socorro";"Edward Corbett";"(American, 1919-1971)";1919;1971;1;0;1;"Male";1957;1957;NA;NA;NA;122,1;NA;127,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"760";"Pullet";"Luis Fernando Benedit";"(Argentine, 1937-2011)";1937;2011;1;0;1;"Male";1964;1963;NA;NA;NA;80;NA;60,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"761";"Of Previous Dissipations";"Ree Morton";"(American, 1936-1977)";1936;1977;1;1;0;"Female";1988;1974;NA;16,5;NA;104,1;NA;17,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"762";"Two Children Are Threatened by a Nightingale (Deux Enfants sont menacés par un rossignol)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1937;1924;NA;11,4;NA;69,8;NA;57,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"763";"The Good Samaritan";"Eugene Berman";"(American, born Russia. 1899-1972)";1899;1972;1;0;1;"Male";1956;1930;NA;NA;NA;92,1;NA;73,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"764";"Seven Minus Twenty-One Equals Seven";"Marina Stern";"(American, 1928-2017)";1928;2017;1;1;0;"Female";1966;1966;NA;NA;NA;127,5;NA;127,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"765";"Portrait of Annette";"Alberto Giacometti";"(Swiss, 1901-1966)";1901;1966;1;0;1;"Male";1983;1949;NA;NA;NA;50,2;NA;36,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"766";"OOF";"Edward Ruscha";"(American, born 1937)";1937;NA;1;0;1;"Male";1988;1962;NA;NA;NA;181,5;NA;170,2;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"767";"Boris Blai";"Franklin Chenault Watkins";"(American, 1894-1972)";1894;1972;1;0;1;"Male";1939;1938;NA;NA;NA;101,6;NA;88,9;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"768";"Composition C";"Piet Mondrian";"(Dutch, 1872-1944)";1872;1944;1;0;1;"Male";1948;1920;NA;NA;NA;60,3;NA;61;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"769";"Winter";"Sandra Blow";"(British, 1925-2006)";1925;2006;1;1;0;"Female";1956;1956;NA;NA;NA;91,5;NA;152,6;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"770";"Uprising";"Lyonel Feininger";"(American, 1871-1956)";1871;1956;1;0;1;"Male";1964;1910;NA;NA;NA;104,4;NA;95,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"771";"Standing Figure";"Alberto Giacometti";"(Swiss, 1901-1966)";1901;1966;1;0;1;"Male";1983;1949;NA;NA;NA;73;NA;15,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"772";"Verdure";"Stefan Knapp";"(British, born Poland. 1921-1996)";1921;1996;1;0;1;"Male";1957;1950;NA;2,2;NA;157,2;NA;89,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"773";"Viaduct";"Lyonel Feininger";"(American, 1871-1956)";1871;1956;1;0;1;"Male";1944;1920;NA;NA;NA;100,9;NA;85,7;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"774";"Manhattan, I";"Lyonel Feininger";"(American, 1871-1956)";1871;1956;1;0;1;"Male";1964;1940;NA;NA;NA;100,5;NA;80,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"775";"Battle of Fishes";"André Masson";"(French, 1896-1987)";1896;1987;1;0;1;"Male";1937;1926;NA;NA;NA;36,2;NA;73;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"776";"Untitled";"Kirsten Kraa";"(American, born Germany 1941)";1941;NA;1;1;0;"Female";1964;1964;NA;NA;NA;38,2;NA;38,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"777";"Still Life";"Le Corbusier (Charles-Édouard Jeanneret)";"(French, born Switzerland. 1887-1965)";1887;1965;1;0;1;"Male";1937;1920;NA;NA;NA;80,9;NA;99,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"778";"Forces";"Erich Buchholz";"(German, 1891-1972)";1891;1972;1;0;1;"Male";1956;1921;NA;NA;NA;231,6;NA;135,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"779";"Volos";"Norman Bluhm";"(American, 1920-1999)";1920;1999;1;0;1;"Male";1972;1971;NA;NA;NA;96,8;NA;122,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"780";"The Nymph Echo ( La Nymphe Écho)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1937;1936;NA;NA;NA;46,3;NA;55,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"781";"Portrait of Suba";"Julian E. Levi";"(American, 1900-1982)";1900;1982;1;0;1;"Male";1944;1944;NA;NA;NA;71,4;NA;50,5;NA;TRUE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"782";"In Fourteenth Street";"Reginald Marsh";"(American, 1898-1954)";1898;1954;1;0;1;"Male";1957;1934;NA;NA;NA;91,1;NA;101;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"783";"Cleopatra Flesh";"Jules Olitski";"(American, born Russia.1922-2007)";1922;2007;1;0;1;"Male";1964;1962;NA;NA;NA;264,2;NA;228,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"784";"The Birth of the World";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1972;1925;NA;NA;NA;250,8;NA;200;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"785";"Fruit Dish";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1944;1908;NA;NA;NA;74,3;NA;61;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"786";"Morning Candelabra";"Paul-Émile Borduas";"(Canadian, 1905-1960)";1905;1960;1;0;1;"Male";1954;1948;NA;NA;NA;81,9;NA;109,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"787";"Landlocked";"Thomas Sills";"(American, 1914-2000)";1914;2000;1;0;1;"Male";1964;1960;NA;NA;NA;131,3;NA;173,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"788";"Basket of Fruit Reflected in a Mirror";"Pierre Bonnard";"(French, 1867-1947)";1867;1947;1;0;1;"Male";1984;1944;NA;NA;NA;47,3;NA;71,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"789";"Woman, Old Man, and Flower (Weib, Greis und Blume)";"Max Ernst";"(French and American, born Germany. 1891-1976)";1891;1976;1;0;1;"Male";1937;1923;NA;NA;NA;96,5;NA;130,2;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"790";"The Days Must Be Laid on the Ground";"Enzo Cucchi";"(Italian, born 1949)";1949;NA;1;0;1;"Male";1984;1983;NA;25,4;NA;121,9;NA;629,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"791";"I Saw Stalin Once When I Was a Child";"Komar and Melamid, Vitaly Komar, Aleksandr Danilovich Melamid";"(American) (American, born Russia 1943) (American, born Russia 1945)";NA;NA;3;0;3;NA;1983;1981;NA;NA;NA;183,3;NA;137,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"792";"Evening, Honfleur";"Georges-Pierre Seurat";"(French, 1859-1891)";1859;1891;1;0;1;"Male";1957;1886;NA;NA;NA;65,4;NA;81,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"793";"Untitled (You Invest in the Divinity of the Masterpiece)";"Barbara Kruger";"(American, born 1945)";1945;NA;1;1;0;"Female";1983;1982;NA;NA;NA;182,2;NA;115,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"794";"Window at Nice";"Raoul Dufy";"(French, 1877-1953)";1877;1953;1;0;1;"Male";1954;1929;NA;NA;NA;54,9;NA;46;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"795";"Image with Green Moon";"Herbert Bayer";"(American, born Austria. 1900-1985)";1900;1985;1;0;1;"Male";1963;1961;NA;NA;NA;41;NA;41;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"796";"Inspection of the Streets";"Philomé Obin";"(Haitian, 1892-1986)";1892;1986;1;0;1;"Male";1948;1948;NA;NA;NA;61;NA;61;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"797";"Pressure";"Robert Longo";"(American, born 1953)";1953;NA;1;0;1;"Male";1983;1982;NA;92,7;NA;260;NA;228,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"798";"The Glade";"Roderic O'Conor";"(Irish, 1860-1940)";1860;1940;1;0;1;"Male";1956;1892;NA;NA;NA;92;NA;59,6;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"799";"Attacked by Birds";"André Masson";"(French, 1896-1987)";1896;1987;1;0;1;"Male";1963;1956;NA;NA;NA;75;NA;90,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"800";"Person Throwing a Stone at a Bird";"Joan Miró";"(Spanish, 1893-1983)";1893;1983;1;0;1;"Male";1937;1926;NA;NA;NA;73,7;NA;92,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"801";"Around the Fish";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1939;1926;NA;NA;NA;46,7;NA;63,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"802";"Speeding Automobile";"Giacomo Balla";"(Italian, 1871-1958)";1871;1958;1;0;1;"Male";1949;1912;NA;NA;NA;55,6;NA;68,9;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"803";"Night on Cold Mountain";"Larry Poons";"(American, born Japan 1937)";1937;NA;1;0;1;"Male";1963;1962;NA;NA;NA;203,1;NA;203,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"804";"Painters Progress";"Elizabeth Murray";"(American, 1940-2007)";1940;2007;1;1;0;"Female";1983;1981;NA;NA;NA;294,5;NA;236,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"805";"Swifts: Paths of Movement + Dynamic Sequences";"Giacomo Balla";"(Italian, 1871-1958)";1871;1958;1;0;1;"Male";1949;1913;NA;NA;NA;96,8;NA;120;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"806";"Nazca Lines Star Chart and Nazca Lines Southern Hemisphere Constellation Chart Correlation";"Michelle Stuart";"(American, born 1938)";1938;NA;1;1;0;"Female";1984;1981;NA;NA;NA;305,4;NA;428;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"807";"The Blue Window";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1939;1913;NA;NA;NA;130,8;NA;90,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"808";"Axial Figure, 110";"Jan Lebenstein";"(Polish, 1930-1999)";1930;1999;1;0;1;"Male";1961;1961;NA;NA;NA;217,2;NA;118,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"809";"Double Gravity";"Terry Winters";"(American, born 1949)";1949;NA;1;0;1;"Male";1984;1984;NA;NA;NA;203,2;NA;264,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"810";"For Father Berrigan";"Llyn Foulkes";"(American, born 1934)";1934;NA;1;0;1;"Male";1987;1973;NA;NA;NA;16,2;NA;14,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"811";"Street, Berlin";"Ernst Ludwig Kirchner";"(German, 1880-1938)";1880;1938;1;0;1;"Male";1939;1913;NA;NA;NA;120,6;NA;91,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"812";"La Marseillaise";"René Pierre Tal-Coat";"(French, 1905-1985)";1905;1985;1;0;1;"Male";1948;1944;NA;NA;NA;41;NA;32,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"813";"Bearded Faun";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1956;1956;NA;NA;NA;20,3;NA;20,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"814";"West 23rd";"Jack Tworkov";"(American, born Poland. 1900-1982)";1900;1982;1;0;1;"Male";1963;1963;NA;NA;NA;152,6;NA;203,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"815";"Birthday";"Marc Chagall";"(French, born Belarus. 1887-1985)";1887;1985;1;0;1;"Male";1949;1915;NA;NA;NA;80,6;NA;99,7;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"816";"Portrait of Maria Lani";"Chaim Soutine";"(French, 1893-1943)";1893;1943;1;0;1;"Male";1954;1929;NA;NA;NA;73,3;NA;59,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"817";"Head of a Faun";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1956;1956;NA;NA;NA;20,3;NA;20,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"818";"Study for Homage to the Square: Night Shades";"Josef Albers";"(American, born Germany. 1888-1976)";1888;1976;1;0;1;"Male";1961;1956;NA;NA;NA;60,7;NA;60,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"819";"Calvary";"Marc Chagall";"(French, born Belarus. 1887-1985)";1887;1985;1;0;1;"Male";1949;1912;NA;NA;NA;174,6;NA;192,4;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"820";"After the Rain";"Maurice Sterne";"(American, born Latvia. 1877-1957)";1877;1957;1;0;1;"Male";1954;1948;NA;NA;NA;67,3;NA;86,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"821";"Study for Homage to the Square: Early Rising A";"Josef Albers";"(American, born Germany. 1888-1976)";1888;1976;1;0;1;"Male";1961;1961;NA;NA;NA;60,9;NA;60,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"822";"Hop and Skip";"Shirley Jaffe";"(American, 1923-2016)";1923;2016;1;1;0;"Female";1987;1987;NA;NA;NA;219,4;NA;114,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"823";"Over Vitebsk";"Marc Chagall";"(French, born Belarus. 1887-1985)";1887;1985;1;0;1;"Male";1949;1915;NA;NA;NA;67;NA;92,7;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"824";"1951-T No. 3";"Clyfford Still";"(American, 1904-1980)";1904;1980;1;0;1;"Male";1954;1951;NA;NA;NA;238,8;NA;208,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"825";"Map";"Jasper Johns";"(American, born 1930)";1930;NA;1;0;1;"Male";1963;1961;NA;NA;NA;198,2;NA;314,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"826";"Fulang-Chang and I";"Frida Kahlo";"(Mexican, 1907-1954)";1907;1954;1;1;0;"Female";1987;1937;NA;NA;NA;40;NA;27,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"827";"Landscape near Cassis";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1949;1907;NA;NA;NA;46;NA;54,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"828";"Head of a Sleeping Woman (Study for Nude with Drapery)";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1983;1907;NA;NA;NA;61,4;NA;47,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"829";"Memorial II";"Ross Bleckner";"(American, born 1949)";1949;NA;1;0;1;"Male";1994;1994;NA;5;NA;244;NA;305;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"830";"Abstract Portrait of Marcel Duchamp";"Katherine S. Dreier";"(American, 1877-1952)";1877;1952;1;1;0;"Female";1949;1918;NA;NA;NA;45,7;NA;81,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"831";"Mona Lisa, Age Twelve";"Fernando Botero";"(Colombian, born 1932)";1932;NA;1;0;1;"Male";1961;1959;NA;NA;NA;211;NA;195,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"832";"Still Life with Fruit and Glass";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1983;1908;NA;NA;NA;27;NA;21,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"833";"Canal Homes at Bayou Vista";"Rackstraw Downes";"(American, born England 1939)";1939;NA;1;0;1;"Male";1994;1993;NA;5;NA;28,5;NA;306;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"834";"Snack for Two";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1949;1945;NA;NA;NA;74;NA;61,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"835";"Yllam";"Victor Vasarely";"(French, born Hungary 1908-1997)";1908;1997;1;0;1;"Male";1958;1949;NA;NA;NA;130,3;NA;97,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"836";"Girl on a Divan";"Ernst Ludwig Kirchner";"(German, 1880-1938)";1880;1938;1;0;1;"Male";1993;1906;NA;NA;NA;47,3;NA;67,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"837";"Island of Statues";"Salvatore Fiume";"(Italian, 1915-1997)";1915;1997;1;0;1;"Male";1949;1948;NA;NA;NA;71,1;NA;92,1;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"838";"Composition";"Joaquín Torres-García";"(Uruguayan, 1874-1949)";1874;1949;1;0;1;"Male";1956;1931;NA;NA;NA;91,7;NA;61;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"839";"Unquiet Space";"Emilio Vedova";"(Italian, 1919-1995)";1919;1995;1;0;1;"Male";1958;1957;NA;NA;NA;134,9;NA;170;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"840";"Beam";"Elizabeth Murray";"(American, 1940-2007)";1940;2007;1;1;0;"Female";1994;1982;NA;9,8;NA;279,4;NA;192,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"841";"Venice";"Theodor Werner";"(German, 1886-1969)";1886;1969;1;0;1;"Male";1954;1952;NA;NA;NA;81,3;NA;100;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"842";"Cosmic Vision";"Emilio Vedova";"(Italian, 1919-1995)";1919;1995;1;0;1;"Male";1956;1953;NA;NA;NA;82,8;NA;55,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"843";"Remover";"Elizabeth Murray";"(American, 1940-2007)";1940;2007;1;1;0;"Female";1994;1977;NA;NA;NA;121,9;NA;106,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"844";"Study for The Inner World";"Thomas Chimes";"(American, 1921-2009)";1921;2009;1;0;1;"Male";1961;1961;NA;NA;NA;23,6;NA;26,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"845";"Store Front Project";"Christo";"(American, born Bulgaria 1935)";1935;NA;1;0;1;"Male";1986;1964;NA;10,2;NA;122,2;NA;160;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"846";"Rhyme";"Robert Rauschenberg";"(American, 1925-2008)";1925;2008;1;0;1;"Male";1994;1956;NA;NA;NA;122,6;NA;104,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"847";"Man with a Melon";"Karl Hofer";"(German, 1878-1955)";1878;1955;1;0;1;"Male";1949;1926;NA;NA;NA;107,3;NA;73,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"848";"Physichromie 114";"Carlos Cruz-Diez";"(Venezuelan, born 1923)";1923;NA;1;0;1;"Male";1965;1964;NA;NA;NA;71,1;NA;142,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"849";"The Large Spoon";"Markus Lüpertz";"(German, born 1941)";1941;NA;1;0;1;"Male";1986;1982;NA;NA;NA;201,6;NA;331,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"850";"Wallpiece 24 x 18""";"Karin Sander";"(German, born 1957)";1957;NA;1;1;0;"Female";1994;1994;NA;NA;NA;61;NA;45,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"851";"Garden of Eden Number 8";"Stephen Greene";"(American, 1918-1999)";1918;1999;1;0;1;"Male";1958;1932;NA;NA;NA;35,6;NA;43,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"852";"Grandcamp, Evening";"Georges-Pierre Seurat";"(French, 1859-1891)";1859;1891;1;0;1;"Male";1983;1885;NA;NA;NA;66,2;NA;82,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"853";"Gericault's Arm";"David Salle";"(American, born 1952)";1952;NA;1;0;1;"Male";1986;1985;NA;NA;NA;197,8;NA;244,5;NA;TRUE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"854";"Still Life";"Giorgio Morandi";"(Italian, 1890-1964)";1890;1964;1;0;1;"Male";1949;1916;NA;NA;NA;82,5;NA;57,5;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"855";"Tilted Horizon";"John Hultberg";"(American, 1922-2005)";1922;2005;1;0;1;"Male";1958;1955;NA;NA;NA;137,5;NA;193,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"856";"Robert/104,072";"Chuck Close";"(American, born 1940)";1940;NA;1;0;1;"Male";1976;1973;NA;NA;NA;274,4;NA;213,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"857";"Bull";"Marcello Muccini";"(Italian, 1926-1978)";1926;1978;1;0;1;"Male";1949;1948;NA;NA;NA;33;NA;71,8;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"858";"The American Dream, I";"Robert Indiana";"(American, born 1928)";1928;NA;1;0;1;"Male";1961;1961;NA;NA;NA;183;NA;152,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"859";"Untitled Number 5";"Agnes Martin";"(American, born Canada. 1912-2004)";1912;2004;1;1;0;"Female";1976;1975;NA;NA;NA;182,6;NA;183,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"860";"First Light 23";"George Sugarman";"(American, 1912-1999)";1912;1999;1;0;1;"Male";1983;1979;NA;NA;NA;141,6;NA;222,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"861";"Armored Train in Action";"Gino Severini";"(Italian, 1883-1966)";1883;1966;1;0;1;"Male";1986;1915;NA;NA;NA;115,8;NA;88,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"862";"Dynamic Hieroglyphic of the Bal Tabarin";"Gino Severini";"(Italian, 1883-1966)";1883;1966;1;0;1;"Male";1949;1912;NA;NA;NA;161,6;NA;156,2;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"863";"The Cow with the Subtile Nose";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1956;1954;NA;NA;NA;88,9;NA;116,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"864";"Double Portrait of Frank O'Hara";"Larry Rivers";"(American, 1923-2002)";1923;2002;1;0;1;"Male";1976;1955;NA;NA;NA;38,4;NA;63,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"865";"Woman";"Rufino Tamayo";"(Mexican, 1899-1991)";1899;1991;1;0;1;"Male";1983;1938;NA;NA;NA;90,4;NA;70,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"866";"Moon and Shoals";"Reuben Tam";"(American, 1916-1991)";1916;1991;1;0;1;"Male";1949;1949;NA;NA;NA;76,2;NA;88,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"867";"Red and Black";"Philippe Hosiasson";"(French, born Ukraine. 1898-1978)";1898;1978;1;0;1;"Male";1956;1956;NA;NA;NA;146,8;NA;114,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"868";"Lava at Bessastadir";"Jóhannes Sveinsson Kjarval";"(Icelandic, 1885-1972)";1885;1972;1;0;1;"Male";1961;1947;NA;NA;NA;75,2;NA;95,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"869";"Two Snakes";"Nagwaraba";"(Australian)";NA;NA;1;0;1;"Male";1958;1955;NA;NA;NA;55,9;NA;92,3;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"870";"Self-Portrait";"Alfred H. Maurer";"(American, 1868-1932)";1868;1932;1;0;1;"Male";1961;1927;NA;NA;NA;54,6;NA;45,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"871";"Here--Then--There!";"Alfred Jensen";"(American, born Guatemala of Danish parents. 1903-1981)";1903;1981;1;0;1;"Male";1976;1959;NA;NA;NA;63,9;NA;91,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"872";"Untitled Number 3";"Ronald Bladen";"(American, 1918-1988)";1918;1988;1;0;1;"Male";1997;1956;NA;NA;NA;121,6;NA;91,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"873";"Entablature";"Roy Lichtenstein";"(American, 1923-1997)";1923;1997;1;0;1;"Male";1976;1976;NA;NA;NA;137,1;NA;484,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"874";"Axiom of Indifference";"Mel Bochner";"(American, born 1940)";1940;NA;1;0;1;"Male";1997;1972;NA;NA;NA;61;NA;61;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"875";"Landscape with Yellow Hat";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1958;1952;NA;NA;NA;92,2;NA;73,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"876";"Man with Yellow Pants";"Michelangelo Pistoletto";"(Italian, born 1933)";1933;NA;1;0;1;"Male";1965;1964;NA;NA;NA;200,3;NA;100;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"877";"Self-Portrait as a Golf Player";"Yasuo Kuniyoshi";"(American, 1889-1953)";1889;1953;1;0;1;"Male";1938;1927;NA;NA;NA;127,6;NA;102,2;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"878";"Homage to the Square: Silent Hall";"Josef Albers";"(American, born Germany. 1888-1976)";1888;1976;1;0;1;"Male";1961;1961;NA;NA;NA;101,8;NA;101,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"879";"Box of Gentlemen";"Antonio Segui";"(Argentine, born 1934)";1934;NA;1;0;1;"Male";1965;1964;NA;NA;NA;195;NA;130,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"880";"La Rue des Abbesses";"Maurice Utrillo";"(French, 1883-1955)";1883;1955;1;0;1;"Male";1983;1910;NA;NA;NA;77,1;NA;104,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"881";"Embroidery";"Édouard Vuillard";"(French, 1868-1940)";1868;1940;1;0;1;"Male";1983;1895;NA;NA;NA;177,7;NA;65,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"882";"Oceania I";"John Walker";"(British, born 1939)";1939;NA;1;0;1;"Male";1983;1981;NA;NA;NA;243,5;NA;304,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"883";"Memories of Underdevelopment";"Joan Witek";"(American, born 1943)";1943;NA;1;1;0;"Female";1983;1981;NA;NA;NA;172,7;NA;278,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"884";"Portrait of Gala";"Salvador Dalí";"(Spanish, 1904-1989)";1904;1989;1;0;1;"Male";1937;1935;NA;NA;NA;32,4;NA;26,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"885";"Girl in Blue Chair";"Maurice Sterne";"(American, born Latvia. 1877-1957)";1877;1957;1;0;1;"Male";1938;1928;NA;NA;NA;87,6;NA;62,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"886";"Panel for Edwin R. Campbell No. 2";"Vasily Kandinsky";"(French, born Russia. 1866-1944)";1866;1944;1;0;1;"Male";1983;1914;NA;NA;NA;162,6;NA;122,7;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"887";"Panel for Edwin R. Campbell No. 4";"Vasily Kandinsky";"(French, born Russia. 1866-1944)";1866;1944;1;0;1;"Male";1983;1914;NA;NA;NA;163;NA;123,6;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"888";"War is No Nice";"Martin Kippenberger";"(German, 1953-1997)";1953;1997;1;0;1;"Male";1997;1985;NA;NA;NA;180,3;NA;150,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"889";"Untitled";"Robert Moskowitz";"(American, born 1935)";1935;NA;1;0;1;"Male";1961;1961;NA;NA;NA;61;NA;76;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"890";"Cat and Bird";"Paul Klee";"(German, born Switzerland. 1879-1940)";1879;1940;1;0;1;"Male";1975;1928;NA;NA;NA;38,1;NA;53,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"891";"Resting at the Bazaar";"Maurice Sterne";"(American, born Latvia. 1877-1957)";1877;1957;1;0;1;"Male";1938;1912;NA;NA;NA;68;NA;80;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"892";"The Proclamation of American Independence";"André Bauchant";"(French, 1873-1958)";1873;1958;1;0;1;"Male";1947;1926;NA;NA;NA;76,2;NA;118,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"893";"Diamond Lake";"Ronnie Landfield";"(American, born 1947)";1947;NA;1;0;1;"Male";1975;1969;NA;NA;NA;274,8;NA;427,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"894";"The Swimming Pool, Maquette for ceramic (realized 1999 and 2005)";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1975;1952;NA;NA;NA;230,2;NA;847,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"895";"Charing Cross Bridge";"André Derain";"(French, 1880-1954)";1880;1954;1;0;1;"Male";1992;1905;NA;NA;NA;81,7;NA;100,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"896";"Soil Ornamented with Vegetation, Dead Leaves, Pebbles, Diverse Debris";"Jean Dubuffet";"(French, 1901-1985)";1901;1985;1;0;1;"Male";1992;1956;NA;NA;NA;89,3;NA;77,1;NA;TRUE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"897";"A.D.";"Anselm Kiefer";"(German, born 1945)";1945;NA;1;0;1;"Male";1992;1989;NA;NA;NA;237,8;NA;128;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"898";"Liquor Store Window";"Fannie Hillsmith";"(American, 1911-2007)";1911;2007;1;1;0;"Female";1947;1946;NA;NA;NA;81,3;NA;86,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"899";"Mountain I";"Agnes Martin";"(American, born Canada. 1912-2004)";1912;2004;1;1;0;"Female";1992;1966;NA;NA;NA;183;NA;183;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"900";"Bushmen Running from the Rain";"Joseph Ndandarika";"(Zimbabwean (then Southern Rhodesia), 1944-1991)";1944;1991;1;0;1;"Male";1963;1962;NA;NA;NA;122,5;NA;121,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"901";"Piazza, Venice, 12";"William Congdon";"(American, 1912-1998)";1912;1998;1;0;1;"Male";1952;1952;NA;NA;NA;124,5;NA;142,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"902";"The Three Musicians";"Fernand Léger";"(French, 1881-1955)";1881;1955;1;0;1;"Male";1955;1944;NA;NA;NA;174;NA;145,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"903";"Green Square";"Mohan B. Samant";"(Indian, 1926-2004)";1926;2004;1;0;1;"Male";1963;1963;NA;NA;NA;175,4;NA;132,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"904";"Garden in Sochi";"Arshile Gorky";"(American, born Armenia. 1904-1948)";1904;1948;1;0;1;"Male";1942;1941;NA;NA;NA;112,4;NA;158,1;NA;TRUE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"905";"Grey Flower";"José María Sicilia";"(Spanish, born 1954)";1954;NA;1;0;1;"Male";1989;1987;NA;NA;NA;300,3556;NA;300,3556;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"906";"The Woodyard";"Sidney Laufman";"(American, 1891-1985)";1891;1985;1;0;1;"Male";1941;1932;NA;NA;NA;65,4;NA;81,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"907";"Sleeping Figure";"Conrad Marca-Relli";"(American, 1913-2000)";1913;2000;1;0;1;"Male";1955;1953;NA;NA;NA;132,4;NA;197,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"908";"White Light";"Jackson Pollock";"(American, 1912-1956)";1912;1956;1;0;1;"Male";1967;1954;NA;NA;NA;122,4;NA;96,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"909";"Untitled";"Tony Smith";"(American, 1912-1980)";1912;1980;1;0;1;"Male";1989;1962;NA;NA;NA;243,9;NA;396,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"910";"Rue de la Santé";"Yves Tanguy";"(American, born France. 1900-1955)";1900;1955;1;0;1;"Male";1963;1925;NA;NA;NA;50,2;NA;61,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"911";"Enchanted Isle";"Jean Lurçat";"(French, 1892-1966)";1892;1966;1;0;1;"Male";1941;1928;NA;NA;NA;38,7;NA;61,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"912";"The Three Windows, the Tower and the Wheel";"Robert Delaunay";"(French, 1885-1941)";1885;1941;1;0;1;"Male";1985;1912;NA;NA;NA;130,2;NA;195,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"913";"Posing for the First Time";"Richard Munsell";"(American, born 1909)";1909;NA;1;0;1;"Male";1941;1939;NA;NA;NA;44,5;NA;21;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"914";"Melancholy of a Rooftop";"Arthur Osver";"(American, 1912-2006)";1912;2006;1;0;1;"Male";1942;1942;NA;NA;NA;121,9;NA;61;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"915";"After Glenrowan Siege (Second Ned Kelly series)";"Sidney Nolan";"(Australian, 1917-1992)";1917;1992;1;0;1;"Male";1955;1955;NA;NA;NA;121,9;NA;91,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"916";"Fourth-Dimensional Pebble Beach";"J. Trevor Wood";"(Zimbabwean, born Great Britain 1930)";1930;NA;1;0;1;"Male";1963;1962;NA;NA;NA;92;NA;112,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"917";"Diary of a Seducer";"Arshile Gorky";"(American, born Armenia. 1904-1948)";1904;1948;1;0;1;"Male";1985;1945;NA;NA;NA;126,7;NA;157,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"918";"White Lines";"Irene Rice Pereira";"(American, 1907-1971)";1907;1971;1;1;0;"Female";1942;1942;NA;NA;NA;65,7;NA;55,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"919";"Christ and the Children";"Emil Nolde";"(German, 1867-1956)";1867;1956;1;0;1;"Male";1955;1910;NA;NA;NA;86,8;NA;106,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"920";"Periwinkles / Moroccan Garden";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1985;1912;NA;NA;NA;116,8;NA;82,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"921";"Bather and Cabin";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1955;1928;NA;NA;NA;21,6;NA;15,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"922";"Banquet";"Stanislao Lepri";"(Italian, 1905-1980)";1905;1980;1;0;1;"Male";1949;1945;NA;NA;NA;47;NA;60;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"923";"Hyphen";"Kay Sage";"(American, 1898-1963)";1898;1963;1;1;0;"Female";1955;1954;NA;NA;NA;76,2;NA;50,9;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"924";"The Little Spanish Prison";"Robert Motherwell";"(American, 1915-1991)";1915;1991;1;0;1;"Male";1985;1941;NA;NA;NA;69,2;NA;43,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"925";"Hide-and-Seek";"Pavel Tchelitchew";"(American, born Russia. 1898-1957)";1898;1957;1;0;1;"Male";1942;1940;NA;NA;NA;199,3;NA;215,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"926";"Sir Thomas Beecham Conducting";"Walter Richard Sickert";"(British, 1860-1942)";1860;1942;1;0;1;"Male";1955;1935;NA;NA;NA;98,5;NA;104,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"927";"At Work";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1985;1971;NA;NA;NA;161,9;NA;130,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"928";"Thorn Heads";"Graham Sutherland";"(British, 1903-1980)";1903;1980;1;0;1;"Male";1955;1946;NA;NA;NA;122;NA;91,5;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"929";"Synchromy";"Stanton Macdonald-Wright";"(American, 1890-1973)";1890;1973;1;0;1;"Male";1949;1917;NA;NA;NA;78,8;NA;61;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"930";"Maya in a Sailor Suit";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1985;1938;NA;NA;NA;121,6;NA;86,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"931";"Still Life Synchromy";"Stanton Macdonald-Wright";"(American, 1890-1973)";1890;1973;1;0;1;"Male";1949;1913;NA;NA;NA;50,8;NA;50,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"932";"Shadows with Painting";"Irene Rice Pereira";"(American, 1907-1971)";1907;1971;1;1;0;"Female";1941;1940;NA;6;NA;41,9;NA;34,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"933";"Archaic Composition No. 1";"Morgan Russell";"(American, 1886-1953)";1886;1953;1;0;1;"Male";1949;NA;NA;NA;NA;40,6;NA;27;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"934";"Number 9: In Praise of Gertrude Stein";"Bradley Walker Tomlin";"(American, 1899-1953)";1899;1953;1;0;1;"Male";1955;1950;NA;NA;NA;124,5;NA;259,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"935";"Archaic Composition Number 2";"Morgan Russell";"(American, 1886-1953)";1886;1953;1;0;1;"Male";1949;1915;NA;NA;NA;32,4;NA;24,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"936";"Meadowland";"Gerhard Richter";"(German, born 1932)";1932;NA;1;0;1;"Male";1985;1985;NA;NA;NA;90,5;NA;94,9;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"937";"Rupture (With Onlookers)";"John Baldessari";"(American, born 1931)";1931;NA;1;0;1;"Male";1997;1990;NA;NA;NA;245,1;NA;348;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"938";"Clouds";"Gerhard Richter";"(German, born 1932)";1932;NA;1;0;1;"Male";1985;1982;NA;NA;NA;200,7;NA;260,7;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"939";"Untitled Black Suit Picture";"Jim Dine";"(American, born 1935)";1935;NA;1;0;1;"Male";1997;1964;NA;7,7788;NA;182,8804;NA;186,6904;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"940";"Yikes";"Elizabeth Murray";"(American, 1940-2007)";1940;2007;1;1;0;"Female";1997;1982;NA;NA;NA;292,1;NA;288,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"941";"Costa del Sol";"Eric Fischl";"(American, born 1948)";1948;NA;1;0;1;"Male";1997;1986;NA;NA;NA;262,3;NA;397,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"942";"Oh! Susanna";"Ellen Gallagher";"(American, born 1965)";1965;NA;1;1;0;"Female";1997;1995;NA;NA;NA;25,4;NA;20,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"943";"Fluorescent Complement";"Richard Anuszkiewicz";"(American, born 1930)";1930;NA;1;0;1;"Male";1960;1960;NA;NA;NA;91,5;NA;82;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"944";"Composition";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1997;1915;NA;NA;NA;146,1;NA;96,8;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"945";"The Gate";"Mowry Thatcher Baden";"(American, born 1936)";1936;NA;1;0;1;"Male";1960;1960;NA;NA;NA;198,2;NA;190,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"946";"Jim Dine Storm Window";"Larry Rivers";"(American, 1923-2002)";1923;2002;1;0;1;"Male";1997;1965;NA;7;NA;73,7;NA;63,5;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"947";"Untitled";"Lois Lane";"(American, born 1948)";1948;NA;1;1;0;"Female";1980;1979;NA;NA;NA;243,8;NA;243,8;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"948";"Untitled";"David Novros";"(American, born 1941)";1941;NA;1;0;1;"Male";1980;1972;NA;NA;NA;228;NA;377,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"949";"Untitled";"Raymond Parker";"(American, 1922-1990)";1922;1990;1;0;1;"Male";1980;1979;NA;NA;NA;168,9;NA;284,5;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"950";"High Flight";"John Baldessari";"(American, born 1931)";1931;NA;1;0;1;"Male";1990;1986;NA;NA;NA;262,6;NA;164,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"951";"Mom's Foot Blue and Orange";"Sue Williams";"(American, born 1954)";1954;NA;1;1;0;"Female";1997;1997;NA;NA;NA;248,9;NA;274,3;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"952";"Mutation Whitsun Series 2";"Bernard Cohen";"(British, born 1933)";1933;NA;1;0;1;"Male";1960;1960;NA;NA;NA;138;NA;168;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"953";"Kastura";"Frank Stella";"(American, born 1936)";1936;NA;1;0;1;"Male";1980;1979;NA;76,2;NA;292,1;NA;233,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"954";"Explosion";"André Lanskoy";"(French, born Russia. 1902-1976)";1902;1976;1;0;1;"Male";1960;1958;NA;NA;NA;146;NA;97,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"955";"Artist's Studio ""The Dance""";"Roy Lichtenstein";"(American, 1923-1997)";1923;1997;1;0;1;"Male";1990;1974;NA;NA;NA;244,2;NA;325,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"956";"Box and Shadow";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1991;1978;NA;NA;NA;175,6;NA;250,5;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"957";"Untitled #6";"Agnes Martin";"(American, born Canada. 1912-2004)";1912;2004;1;1;0;"Female";1990;1989;NA;NA;NA;182,6;NA;182,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"958";"City Limits";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1991;1969;NA;NA;NA;195,6;NA;262,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"959";"Landscape at Collioure";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1990;1905;NA;NA;NA;38,7;NA;46,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"960";"East Coker-Tse";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1991;1979;NA;NA;NA;106,7;NA;122;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"961";"Taillade";"Joan Mitchell";"(American, 1925-1992)";1925;1992;1;1;0;"Female";1990;1990;NA;NA;NA;259,7;NA;400;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"962";"North";"Philip Guston";"(American, born Canada. 1913-1980)";1913;1980;1;0;1;"Male";1991;1961;NA;NA;NA;175,3;NA;195,6;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"963";"I Got Up...";"On Kawara";"(Japanese, 1933-2014)";1933;NA;1;0;1;"Male";1991;1977;NA;NA;NA;10,2;NA;14,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"964";"A-Hunting He Would Go";"Patrick J. Sullivan";"(American, 1894-1967)";1894;1967;1;0;1;"Male";1941;1940;NA;NA;NA;66,7;NA;91,8;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"965";"Sleepers, II";"George Tooker";"(American, 1920-2011)";1920;2011;1;0;1;"Male";1960;1959;NA;NA;NA;40,8;NA;71,1;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"966";"On the Cliff at Pourville, Clear Weather";"Claude Monet";"(French, 1840-1926)";1840;1926;1;0;1;"Male";1991;1882;NA;NA;NA;64,7;NA;80,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"967";"Skater";"Alex Colville";"(Canadian, 1920-2013)";1920;2013;1;0;1;"Male";1965;1964;NA;NA;NA;113;NA;69,8;NA;FALSE;TRUE;TRUE;"Painting";"Painting & Sculpture"
"968";"Study for Les Demoiselles D'Avignon";"Pablo Picasso";"(Spanish, 1881-1973)";1881;1973;1;0;1;"Male";1991;1907;NA;NA;NA;19;NA;20,3;NA;FALSE;FALSE;TRUE;"Painting";"Painting & Sculpture"
"969";"Landscape at La Ciotat";"Georges Braque";"(French, 1882-1963)";1882;1963;1;0;1;"Male";1975;1907;NA;NA;NA;71,7;NA;59,4;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"970";"Muscular Paper";"David Salle";"(American, born 1952)";1952;NA;1;0;1;"Male";1991;1985;NA;NA;NA;249,2;NA;475,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"971";"From East to West";"Ulysse Comtois";"(Canadian, 1931-1999)";1931;1999;1;0;1;"Male";1961;1961;NA;NA;NA;60,9;NA;76,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"972";"Necromancer";"Philip Taaffe";"(American, born 1955)";1955;NA;1;0;1;"Male";1991;1989;NA;NA;NA;227;NA;174,6;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"973";"Reclining Figure";"Graham Coughtry";"(Canadian, 1931-1999)";1931;1999;1;0;1;"Male";1961;1961;NA;NA;NA;134,3;NA;129,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"974";"Andromeda";"André Masson";"(French, 1896-1987)";1896;1987;1;0;1;"Male";1975;1943;NA;NA;NA;31,9;NA;25,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"975";"Male Model";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1975;1900;NA;NA;NA;99,3;NA;72,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"976";"Flotsam at Noon";"Adolph Gottlieb";"(American, 1903-1974)";1903;1974;1;0;1;"Male";1961;1952;NA;NA;NA;91,7;NA;121,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"977";"Hailstorm in Alberta";"William Kurelek";"(Canadian, 1927-1977)";1927;1977;1;0;1;"Male";1961;1961;NA;NA;NA;69,3;NA;48,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"978";"St. Matthew's Description of the End of the World";"Bob Thompson";"(American, 1937 - 1966)";1937;1966;1;0;1;"Male";1971;1964;NA;NA;NA;182,8;NA;152,8;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"979";"AAYH 74";"Lynton Wells";"(American, born 1940)";1940;NA;1;0;1;"Male";1975;1974;NA;0;NA;213,6;NA;323;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"980";"Age of Rectangles";"Carroll Dunham";"(American, born 1949)";1949;NA;1;0;1;"Male";1986;1983;NA;NA;NA;101,6;NA;147,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"981";"U.S. Highway 1, Number 5";"Allan D'Arcangelo";"(American, 1930-1998)";1930;1998;1;0;1;"Male";1966;1962;NA;NA;NA;177,6;NA;207;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"982";"Majestic";"Saliba Douaihy";"(American, born Lebanon. 1915-1994)";1915;1994;1;0;1;"Male";1966;1965;NA;NA;NA;117,3;NA;137,1;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"983";"Frank Stella, ""Sabra I,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"984";"Frank Stella, ""Darabjerd II,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"985";"Frank Stella, ""Sabra II,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"986";"Frank Stella, ""Sabra III,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"987";"Frank Stella, ""Takht-i-Sulayman I,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"988";"Frank Stella, ""Hiraqla II,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"989";"Frank Stella, ""Gur II,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"990";"Frank Stella, ""Sinjerli II,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1971;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"991";"Frank Stella, ""Sinjerli III,"" 1968";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1969;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"992";"Frank Stella, ""Darabjerd I,"" 1967";"Richard Pettibone";"(American, born 1938)";1938;NA;1;0;1;"Male";1992;1968;NA;NA;NA;12,7;NA;25,3;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"993";"Ladybug";"Joan Mitchell";"(American, 1925-1992)";1925;1992;1;1;0;"Female";1961;1957;NA;NA;NA;197,9;NA;274;NA;TRUE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"994";"Atoll";"Mel Bochner";"(American, born 1940)";1940;NA;1;0;1;"Male";1992;1983;NA;NA;NA;281,3;NA;231,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"995";"The Moroccans";"Henri Matisse";"(French, 1869-1954)";1869;1954;1;0;1;"Male";1955;1915;NA;NA;NA;181,3;NA;279,4;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"996";"Inner Core 2";"Kazuo Nakamura";"(Canadian, 1926-2002)";1926;2002;1;0;1;"Male";1961;1960;NA;NA;NA;106,6;NA;78,7;NA;FALSE;FALSE;FALSE;"Painting";"Painting & Sculpture"
"997";"Hold, Separate but Equal";"Malcolm Bailey";"(American, 1947-2011)";1947;2011;1;0;1;"Male";1970;1969;NA;NA;NA;213,2;NA;121,9;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"998";"Painting";"John Opper";"(American, 1908-1994)";1908;1994;1;0;1;"Male";1961;1960;NA;NA;NA;175,8;NA;106,7;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"
"999";"Untitled";"Günther Förg";"(German, 1952-2013)";1952;2013;1;0;1;"Male";1992;1987;NA;NA;NA;254,6;NA;210,2;NA;FALSE;TRUE;FALSE;"Painting";"Painting & Sculpture"