-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollectionLogs.txt
More file actions
4489 lines (4489 loc) · 210 KB
/
Copy pathcollectionLogs.txt
File metadata and controls
4489 lines (4489 loc) · 210 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
========================
========================
The sync function started at 2023-11-17 10:26:49 for the range of objects between 4000 offset and 1000 limit
========================
========================
The sync function started at 2023-11-17 10:27:15 for the range of objects between 4000 offset and 1000 limit
========================
========================
The sync function started at 2023-11-17 10:27:50 for the range of objects between 2000 offset and 1000 limit
1. object
Creating the object with title = ' Philips fabrieken Eindhoven '
2. object
Created author teun-roosenburg
Creating the object with title = ' Portret van Jopie Roosenburg-Goudriaan '
3. object
Created author jopie-roosenburg
Creating the object with title = ' Portret van Frans Gast '
4. object
Created author marijke-stultiens
Creating the object with title = ' Portret van Rob Stultiens '
5. object
Created author gerard-de-lairesse
Creating the object with title = ' Portret van prins Willem III '
6. object
Creating the object with title = ' Venus vaart naar Cyprus '
7. object
Creating the object with title = ' Beraadslaging tussen Aeneas en zijn volgelingen onderbroken '
8. object
Creating the object with title = ' Dood van Dido. Illustraties bij het treurspel "Didoos Doot" '
9. object
Creating the object with title = ' Wapen van de familie Geelvinck omgeven door allegorische figuren '
10. object
Creating the object with title = ' Dido trekt Amor richting een graf. Titelpagina voor: A. Pels, Didoos doot, 1668. Illustraties bij het treurspel "Didoos Doot" '
11. object
Creating the object with title = ' Twee echtparen maken ruzie. Illustraties bij het blijspel "Julfus" '
12. object
Creating the object with title = ' Twee figuren lachen een jongeman '
13. object
Creating the object with title = ' Anna verraadt haar liefde voor Serestus '
14. object
Creating the object with title = ' Nar danst met beer en sater '
15. object
Creating the object with title = ' Mercurius speelt Argus in slaap '
16. object
Creating the object with title = ' Jupiter toont Juno een witte koe, Jupiter, Io en Juno '
17. object
Creating the object with title = ' Onthoofding van Argus door Mercurius, Mercurius met het afgehakte hoofd van Argus '
18. object
Creating the object with title = ' Aeneas vertelt Dido over zijn lotgevallen '
19. object
Creating the object with title = ' Aeneas en de sibille van Cumea '
20. object
Creating the object with title = ' Cupido wordt vermomd als Ascanius '
21. object
Created author pieter-tanje
Creating the object with title = ' Lucius Papirius vergeeft Fabius Maximus '
22. object
Creating the object with title = ' De edelmoedigheid van Scipio '
23. object
Creating the object with title = ' Horatius Cocles verdedigt de houten brug over de Tiber, Horatius Cocles verdedigt zich op de brug '
24. object
Creating the object with title = ' Pompeius laat de brieven van Peperna verbranden '
25. object
Creating the object with title = ' Aeneas redt zijn vader uit het brandende Troje '
26. object
Creating the object with title = ' Cyclopen in de smidse van Vulcanus (Les Cyclopes) '
27. object
Created author claude-augustin-duflos
Creating the object with title = ' Scipio ontvangt de eed van de jonge Romeinen '
28. object
Creating the object with title = ' Állegorie op de Gerechtigdheid '
29. object
Created author john-murphy
Creating the object with title = ' De cyclopen naar Luca Giordano '
30. object
Creating the object with title = ' Bekoring pastoor van Ars '
31. object
Creating the object with title = ' Damesportret '
32. object
Creating the object with title = ' Christus geneest de blinde '
33. object
Creating the object with title = ' Interieur '
34. object
Creating the object with title = ' Bekoring van de H. Fransciscus '
35. object
Creating the object with title = ' Vrouwelijk naakt '
36. object
Creating the object with title = ' Bruinkoolgroeve Eygelshoven '
37. object
Created author herman-gouwe
Creating the object with title = ' Landschap op Tahiti '
38. object
Created author harrie-schoonbrood
Creating the object with title = ' Landschap '
39. object
Creating the object with title = ' Papegaaien '
40. object
Created author hendrikus-johannes-franciscus-van-langen
Creating the object with title = ' Portret echtpaar Begas-Adams '
41. object
Creating the object with title = ' Allegorie op de dood van André van Hasselt '
42. object
Creating the object with title = ' Kasteel Osen bij Roermond '
43. object
Creating the object with title = ' Veerpont '
44. object
Creating the object with title = ' Hoepelvormig worstenrek met 8 haken '
Skipped image 2050 due to repeated fetch failures.
45. object
Creating the object with title = ' Kasteel Pietersheim '
46. object
Creating the object with title = ' Stad aan water '
47. object
Creating the object with title = ' Afbraak van de walmuur tussen Brusselsepoort en Boschpoort '
48. object
Creating the object with title = ' Landschap in de omgeving van Crutsen tussen Hasselt en Kuringen '
49. object
Created author edmond-von-sijben-de-maroije
Creating the object with title = ' Portret van dr. P.J.H. Cuypers '
========================
========================
The sync function started at 2023-11-17 10:33:06 for the range of objects between 2000 offset and 1000 limit
========================
========================
The sync function started at 2023-11-20 12:59:05 for the range of objects between 0 offset and 1000 limit
1. object
2. object
3. object
4. object
5. object
6. object
7. object
8. object
9. object
10. object
11. object
12. object
13. object
14. object
15. object
16. object
17. object
18. object
19. object
20. object
21. object
22. object
23. object
24. object
25. object
26. object
27. object
28. object
29. object
30. object
31. object
32. object
33. object
34. object
35. object
36. object
37. object
38. object
39. object
40. object
41. object
42. object
43. object
44. object
45. object
46. object
47. object
48. object
49. object
50. object
51. object
52. object
53. object
54. object
55. object
56. object
57. object
58. object
59. object
60. object
61. object
62. object
63. object
64. object
65. object
66. object
67. object
68. object
69. object
70. object
71. object
72. object
73. object
74. object
75. object
76. object
77. object
78. object
79. object
80. object
81. object
82. object
83. object
84. object
85. object
86. object
87. object
88. object
89. object
90. object
91. object
92. object
93. object
94. object
95. object
96. object
97. object
98. object
99. object
100. object
101. object
102. object
103. object
104. object
105. object
106. object
107. object
108. object
109. object
110. object
111. object
112. object
113. object
114. object
115. object
116. object
117. object
118. object
119. object
120. object
121. object
122. object
123. object
124. object
125. object
126. object
127. object
128. object
129. object
130. object
131. object
132. object
133. object
134. object
135. object
136. object
137. object
138. object
139. object
140. object
141. object
142. object
143. object
144. object
145. object
146. object
147. object
148. object
149. object
150. object
151. object
152. object
153. object
154. object
155. object
156. object
157. object
158. object
159. object
160. object
161. object
162. object
163. object
164. object
165. object
166. object
167. object
168. object
169. object
170. object
171. object
172. object
173. object
174. object
175. object
176. object
177. object
178. object
179. object
180. object
181. object
182. object
183. object
184. object
185. object
186. object
187. object
188. object
189. object
190. object
191. object
192. object
193. object
194. object
195. object
196. object
197. object
198. object
199. object
200. object
201. object
202. object
203. object
204. object
205. object
206. object
207. object
208. object
209. object
210. object
211. object
212. object
213. object
214. object
215. object
216. object
217. object
218. object
219. object
220. object
221. object
222. object
223. object
224. object
225. object
226. object
227. object
228. object
229. object
230. object
231. object
232. object
233. object
234. object
235. object
236. object
237. object
238. object
239. object
240. object
241. object
242. object
243. object
244. object
245. object
246. object
247. object
248. object
249. object
250. object
251. object
252. object
253. object
254. object
255. object
256. object
257. object
258. object
259. object
260. object
261. object
262. object
263. object
264. object
265. object
266. object
267. object
268. object
269. object
270. object
271. object
272. object
273. object
274. object
275. object
276. object
277. object
278. object
279. object
280. object
281. object
282. object
283. object
284. object
285. object
286. object
287. object
288. object
289. object
290. object
291. object
292. object
293. object
294. object
295. object
296. object
297. object
298. object
299. object
300. object
301. object
302. object
303. object
304. object
305. object
306. object
307. object
308. object
309. object
310. object
311. object
312. object
313. object
314. object
315. object
316. object
317. object
318. object
319. object
320. object
321. object
322. object
323. object
324. object
325. object
326. object
327. object
328. object
329. object
330. object
331. object
332. object
333. object
334. object
335. object
336. object
337. object
338. object
339. object
340. object
341. object
342. object
343. object
344. object
345. object
346. object
347. object
348. object
349. object
350. object
351. object
352. object
353. object
354. object
355. object
356. object
357. object
358. object
359. object
360. object
361. object
362. object
363. object
364. object
365. object
366. object
367. object
368. object
369. object
370. object
371. object
372. object
373. object
374. object
375. object
376. object
377. object
378. object
379. object
380. object
381. object
382. object
383. object
384. object
385. object
386. object
387. object
388. object
389. object
390. object
391. object
392. object
393. object
394. object
395. object
396. object
397. object
398. object
399. object
400. object
401. object
402. object
403. object
404. object
405. object
406. object
407. object
408. object
409. object
410. object
411. object
412. object
413. object
414. object
415. object
416. object
417. object
418. object
419. object
420. object
421. object
422. object
423. object
424. object
425. object
426. object
427. object
428. object
429. object
430. object
431. object
432. object
433. object
434. object
435. object
436. object
437. object
438. object
439. object
440. object
441. object
442. object
443. object
444. object
445. object
446. object
447. object
448. object
449. object
450. object
451. object
452. object
453. object
454. object
455. object
456. object
457. object
458. object
459. object
460. object
461. object
462. object
463. object
464. object
465. object
466. object
467. object
468. object
469. object
470. object
471. object
472. object
473. object
474. object
475. object
476. object
477. object
478. object
479. object
480. object
481. object
482. object
483. object
484. object
485. object
486. object
487. object
488. object
489. object
490. object
491. object
492. object
493. object
494. object
495. object
496. object
497. object
498. object
499. object
500. object
501. object
Created author robert-graafland
Creating the object with title = ' Romantisch landschap met figuren '
502. object
Created author han-jelinger
Creating the object with title = ' Huizenrij aan de Leie in Gent '
503. object
Creating the object with title = ' Portret van Mevr. Jelinger '
504. object
Creating the object with title = ' Portret van H.Jelinger '
505. object
Created author hubert-vos
Creating the object with title = ' De Jeker bij Biesland, Maastricht '
506. object
Created author justin-van-de-port
Creating the object with title = ' Landschap '
Skipped image 506 due to repeated fetch failures.
507. object
Creating the object with title = ' Molen aan de waterkant '
508. object
Created author herman-gouwe
Creating the object with title = ' Landschap '
509. object
Creating the object with title = ' Drie indiaanse speerpunten '
Skipped image 509 due to repeated fetch failures.
510. object
Creating the object with title = ' Wandkleed Bathseba in bad '
511. object
Creating the object with title = ' Wandkleed De dood van Lucretia '
512. object
Creating the object with title = ' Fragmenten van laat Gallo-Germaans of ijzertijdurnen met verbrande beenderenresten '
Skipped image 512 due to repeated fetch failures.
513. object
Creating the object with title = ' Arbeider '
514. object
Creating the object with title = ' Portret van mevrouw H. '
Skipped image 514 due to repeated fetch failures.
515. object
Created author salvator-rosa-navolger
Creating the object with title = ' Berglandschap met burchtruïne en vissers '
========================
========================
The sync function started at 2023-11-20 13:00:42 for the range of objects between 2000 offset and 1000 limit
========================
========================
The sync function started at 2023-11-20 13:00:44 for the range of objects between 2000 offset and 1000 limit
========================
========================
The sync function started at 2023-11-20 13:00:57 for the range of objects between 2000 offset and 1000 limit
1. object
Created author gene-eggen
Creating the object with title = ' Portret van Fien, echtgenote van de kunstenaar '
2. object
Created author pieter-dirk-torensma
Creating the object with title = ' Compositie '
3. object
Creating the object with title = ' Philips fabrieken Eindhoven '
4. object
Created author teun-roosenburg
Creating the object with title = ' Portret van Jopie Roosenburg-Goudriaan '
========================
========================
The sync function started at 2023-11-20 13:38:04 for the range of objects between 2000 offset and 20 limit
1. object
Created author gene-eggen
Creating the object with title = ' Portret van Fien, echtgenote van de kunstenaar '
2. object
Created author pieter-dirk-torensma
Creating the object with title = ' Compositie '
3. object
Creating the object with title = ' Philips fabrieken Eindhoven '
4. object
Created author teun-roosenburg
Creating the object with title = ' Portret van Jopie Roosenburg-Goudriaan '
5. object
Created author jopie-roosenburg
Creating the object with title = ' Portret van Frans Gast '
6. object
Created author marijke-stultiens
Creating the object with title = ' Portret van Rob Stultiens '
7. object
Created author gerard-de-lairesse
Creating the object with title = ' Portret van prins Willem III '
8. object
Creating the object with title = ' Venus vaart naar Cyprus '
9. object
Creating the object with title = ' Beraadslaging tussen Aeneas en zijn volgelingen onderbroken '
10. object
Creating the object with title = ' Dood van Dido. Illustraties bij het treurspel "Didoos Doot" '
11. object
Creating the object with title = ' Wapen van de familie Geelvinck omgeven door allegorische figuren '
12. object
Creating the object with title = ' Dido trekt Amor richting een graf. Titelpagina voor: A. Pels, Didoos doot, 1668. Illustraties bij het treurspel "Didoos Doot" '
13. object
Creating the object with title = ' Twee echtparen maken ruzie. Illustraties bij het blijspel "Julfus" '
14. object
Creating the object with title = ' Twee figuren lachen een jongeman '
15. object
Creating the object with title = ' Anna verraadt haar liefde voor Serestus '
16. object
Creating the object with title = ' Nar danst met beer en sater '
17. object
Creating the object with title = ' Mercurius speelt Argus in slaap '
18. object
Creating the object with title = ' Jupiter toont Juno een witte koe, Jupiter, Io en Juno '
19. object
Creating the object with title = ' Onthoofding van Argus door Mercurius, Mercurius met het afgehakte hoofd van Argus '
20. object
Creating the object with title = ' Aeneas vertelt Dido over zijn lotgevallen '
--------------
The sync function ended at 2023-11-20 13:38:43 for the range of objects between offset 2000 and limit 20. It took 0.0 hour 0.0 minutes and 38.561516 seconds
========================
========================
The sync function started at 2023-11-20 13:38:46 for the range of objects between 2000 offset and 1000 limit
1. object
2. object
3. object
4. object
5. object
6. object
7. object
8. object
9. object
10. object
11. object
12. object
13. object
14. object
15. object
16. object
17. object
18. object
19. object
20. object
21. object
Creating the object with title = ' Aeneas en de sibille van Cumea '
22. object
Creating the object with title = ' Cupido wordt vermomd als Ascanius '
23. object
Created author pieter-tanje
Creating the object with title = ' Lucius Papirius vergeeft Fabius Maximus '
24. object
Creating the object with title = ' De edelmoedigheid van Scipio '
25. object
Creating the object with title = ' Horatius Cocles verdedigt de houten brug over de Tiber, Horatius Cocles verdedigt zich op de brug '
========================
========================
The sync function started at 2023-11-20 21:23:33 for the range of objects between 0 offset and 1000 limit
1. object
========================
========================
The sync function started at 2023-11-20 21:31:52 for the range of objects between 0 offset and 1000 limit
1. object
Creating the object with title = ' Vaas (rozensteker) '
--------------
The sync function ended at 2023-11-20 21:31:57 for the range of objects between offset 0 and limit 1000. It took 0.0 hour 0.0 minutes and 4.693427 seconds
========================
========================
The sync function started at 2023-11-21 09:15:49 for the range of objects between 0 offset and 1000 limit
1. object
--------------
The sync function ended at 2023-11-21 09:15:53 for the range of objects between offset 0 and limit 1000. It took 0.0 hour 0.0 minutes and 3.585753 seconds
========================
========================
The sync function started at 2023-11-21 14:43:55 for the range of objects between 2000 offset and 500 limit
1. object
Created author gene-eggen
Creating the object with title = ' Portret van Fien, echtgenote van de kunstenaar '
2. object
Created author pieter-dirk-torensma
Creating the object with title = ' Compositie '
3. object
Created author charles-eijck
Creating the object with title = ' Philips fabrieken Eindhoven '
4. object
Created author teun-roosenburg
Creating the object with title = ' Portret van Jopie Roosenburg-Goudriaan '
========================
========================
The sync function started at 2023-11-21 14:47:57 for the range of objects between 2000 offset and 500 limit
1. object
Created author gene-eggen
Creating the object with title = ' Portret van Fien, echtgenote van de kunstenaar ' and id = ' 2005 '
2. object
Created author pieter-dirk-torensma
Creating the object with title = ' Compositie ' and id = ' 2006 '
3. object
Created author charles-eijck
Creating the object with title = ' Philips fabrieken Eindhoven ' and id = ' 2007 '
4. object
Created author teun-roosenburg
Creating the object with title = ' Portret van Jopie Roosenburg-Goudriaan ' and id = ' 2008 '
5. object
Created author jopie-roosenburg
Creating the object with title = ' Portret van Frans Gast ' and id = ' 2009 '
6. object
Created author marijke-stultiens
Creating the object with title = ' Portret van Rob Stultiens ' and id = ' 2010 '
7. object
Created author gerard-de-lairesse
Creating the object with title = ' Portret van prins Willem III ' and id = ' 2011 '
8. object
Creating the object with title = ' Venus vaart naar Cyprus ' and id = ' 2012 '
9. object
Creating the object with title = ' Beraadslaging tussen Aeneas en zijn volgelingen onderbroken ' and id = ' 2013 '
10. object
Creating the object with title = ' Dood van Dido. Illustraties bij het treurspel "Didoos Doot" ' and id = ' 2014 '
11. object
Creating the object with title = ' Wapen van de familie Geelvinck omgeven door allegorische figuren ' and id = ' 2015 '
12. object
Creating the object with title = ' Dido trekt Amor richting een graf. Titelpagina voor: A. Pels, Didoos doot, 1668. Illustraties bij het treurspel "Didoos Doot" ' and id = ' 2016 '
13. object
Creating the object with title = ' Twee echtparen maken ruzie. Illustraties bij het blijspel "Julfus" ' and id = ' 2017 '
14. object
Creating the object with title = ' Twee figuren lachen een jongeman ' and id = ' 2018 '
15. object
Creating the object with title = ' Anna verraadt haar liefde voor Serestus ' and id = ' 2019 '
16. object
Creating the object with title = ' Nar danst met beer en sater ' and id = ' 2020 '
17. object
Creating the object with title = ' Mercurius speelt Argus in slaap ' and id = ' 2021 '
18. object
Creating the object with title = ' Jupiter toont Juno een witte koe, Jupiter, Io en Juno ' and id = ' 2022 '
19. object
Creating the object with title = ' Onthoofding van Argus door Mercurius, Mercurius met het afgehakte hoofd van Argus ' and id = ' 2023 '
20. object
Creating the object with title = ' Aeneas vertelt Dido over zijn lotgevallen ' and id = ' 2024 '
21. object
Creating the object with title = ' Aeneas en de sibille van Cumea ' and id = ' 2025 '
22. object
Creating the object with title = ' Cupido wordt vermomd als Ascanius ' and id = ' 2026 '
23. object
Created author pieter-tanje
Creating the object with title = ' Lucius Papirius vergeeft Fabius Maximus ' and id = ' 2027 '
24. object
Creating the object with title = ' De edelmoedigheid van Scipio ' and id = ' 2028 '
25. object
Creating the object with title = ' Horatius Cocles verdedigt de houten brug over de Tiber, Horatius Cocles verdedigt zich op de brug ' and id = ' 2029 '
26. object
Creating the object with title = ' Pompeius laat de brieven van Peperna verbranden ' and id = ' 2030 '
27. object
Creating the object with title = ' Aeneas redt zijn vader uit het brandende Troje ' and id = ' 2031 '
28. object
Creating the object with title = ' Cyclopen in de smidse van Vulcanus (Les Cyclopes) ' and id = ' 2032 '
29. object
Created author claude-augustin-duflos
Creating the object with title = ' Scipio ontvangt de eed van de jonge Romeinen ' and id = ' 2033 '
30. object
Creating the object with title = ' Állegorie op de Gerechtigdheid ' and id = ' 2034 '
31. object
Created author john-murphy
Creating the object with title = ' De cyclopen naar Luca Giordano ' and id = ' 2035 '
32. object
Created author aad-de-haas
Creating the object with title = ' Bekoring pastoor van Ars ' and id = ' 2036 '
33. object
Creating the object with title = ' Damesportret ' and id = ' 2037 '
34. object
Creating the object with title = ' Christus geneest de blinde ' and id = ' 2038 '
35. object
Creating the object with title = ' Interieur ' and id = ' 2039 '
36. object
Creating the object with title = ' Bekoring van de H. Fransciscus ' and id = ' 2040 '
37. object
Created author henri-charles-jonas
Creating the object with title = ' Vrouwelijk naakt ' and id = ' 2041 '
38. object
Created author frans-nols
Creating the object with title = ' Bruinkoolgroeve Eygelshoven ' and id = ' 2042 '
39. object
Created author herman-gouwe
Creating the object with title = ' Landschap op Tahiti ' and id = ' 2043 '
40. object
Created author harrie-schoonbrood
Creating the object with title = ' Landschap ' and id = ' 2044 '
41. object
Creating the object with title = ' Papegaaien ' and id = ' 2045 '
42. object
Created author hendrikus-johannes-franciscus-van-langen
Creating the object with title = ' Portret echtpaar Begas-Adams ' and id = ' 2046 '
43. object
Created author theodore-schaepkens
Creating the object with title = ' Allegorie op de dood van André van Hasselt ' and id = ' 2047 '
44. object
Creating the object with title = ' Kasteel Osen bij Roermond ' and id = ' 2048 '
45. object
Creating the object with title = ' Veerpont ' and id = ' 2049 '
46. object
Creating the object with title = ' Hoepelvormig worstenrek met 8 haken ' and id = ' 2050 '
Skipped image 2050 due to repeated fetch failures.
47. object
Creating the object with title = ' Kasteel Pietersheim ' and id = ' 2051 '
48. object
Creating the object with title = ' Stad aan water ' and id = ' 2052 '
49. object
Created author alexander-schaepkens
Creating the object with title = ' Afbraak van de walmuur tussen Brusselsepoort en Boschpoort ' and id = ' 2053 '
50. object
Creating the object with title = ' Landschap in de omgeving van Crutsen tussen Hasselt en Kuringen ' and id = ' 2054 '
51. object
Created author edmond-von-sijben-de-maroije
Creating the object with title = ' Portret van dr. P.J.H. Cuypers ' and id = ' 2055 '
52. object
Created author marcel-von-sijben-de-maroije
Creating the object with title = ' Gezicht op achterhuis ' and id = ' 2056 '
53. object
Creating the object with title = ' Ruiter te paard ' and id = ' 2057 '
54. object
Creating the object with title = ' Recto herenportret, verso vrouwelijk naakt ' and id = ' 2058 '
55. object
Creating the object with title = ' Stadsgezicht Roermond of Arnhem na bombardement? Schets voor schilderij/achterzijde: studie decoratiepatronen voor een vloertegel ' and id = ' 2059 '
56. object
Creating the object with title = ' Herenportret ' and id = ' 2060 '
57. object
Creating the object with title = ' Moeder en kind ' and id = ' 2061 '
58. object
Creating the object with title = ' Strandgezicht met drie figuren ' and id = ' 2062 '
59. object
Creating the object with title = ' Studieblad met schotse figuren ' and id = ' 2063 '
60. object
Creating the object with title = ' Vaas met bloemen ' and id = ' 2064 '
61. object
Creating the object with title = ' De rogstekers van Weert ' and id = ' 2065 '
62. object
Created author centrum-voor-cubische-constructies-ccc
Creating the object with title = ' Cubic cosmic city, negen delen ' and id = ' 2066 '
Skipped image 2066 due to repeated fetch failures.
63. object
Creating the object with title = ' omslag behorend bij Cubic cosmic city ' and id = ' 2067 '
64. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2068 '
65. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2069 '
66. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2070 '
67. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2071 '
68. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2072 '
69. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2073 '
70. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2074 '
71. object
Creating the object with title = ' Cubic cosmic city ' and id = ' 2075 '
72. object
Created author oscar-jespers
Creating the object with title = ' Studieblad vrouwelijk naakt (verso) ' and id = ' 2076 '
73. object
Created author joska-soos
Creating the object with title = ' Spectre du Grand Chaman ' and id = ' 2077 '
74. object
Creating the object with title = ' Apparition ardente du Grand Chaman ' and id = ' 2078 '
75. object
Creating the object with title = ' Transfiguaration du Grand Chaman ' and id = ' 2079 '
76. object
Creating the object with title = ' Prince des Ténèbres, Spectral ' and id = ' 2080 '
77. object
Creating the object with title = ' Prince des Ténèbres, Ardent ' and id = ' 2081 '
78. object
Creating the object with title = ' Prince des Ténèbres, Transfiguré ' and id = ' 2082 '
79. object
Created author joep-nicolas
Creating the object with title = ' Val van amazone ' and id = ' 2083 '
80. object
Created author ben-verbong
Creating the object with title = ' Documentaire: De schilder Aad de Haas ' and id = ' 2084 '
Skipped image 2084 due to repeated fetch failures.
81. object
Created author lothar-fischer
Creating the object with title = ' voorstudie plastiek kleine Maja II ' and id = ' 2085 '
82. object
Creating the object with title = ' Kleine Maja II ' and id = ' 2086 '
83. object
Created author jan-wiegers