-
Notifications
You must be signed in to change notification settings - Fork 0
/
overview.html
2850 lines (2824 loc) · 120 KB
/
overview.html
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
<!DOCTYPE html>
<!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue May 23 2023 08:58:00 GMT+0000 (Coordinated Universal Time) -->
<html
data-wf-domain="www.conoscereildisegno.it"
data-wf-page="630189a4c3979f5a8b0ac269"
data-wf-site="62b9e1919f88c2249e14ead9"
lang="it"
class="w-mod-js wf-librebaskerville-n4-active wf-librebaskerville-i4-active wf-librebaskerville-n7-active wf-active w-mod-ix"
style="--vh: 6px"
>
<head>
<style>
.wf-force-outline-none[tabindex="-1"]:focus {
outline: none;
}
</style>
<meta charset="utf-8" />
<title>Conoscere il disegno</title>
<meta
content="Una ricerca storico-artistica condotta su un gruppo di disegni italiani a Dresda volta a mostrare il metodo di studio del disegno basato sulle scuole pittoriche, sul confronto e sull'analisi delle opere nel loro sviluppo storico."
name="description"
/>
<meta content="Conoscere il disegno" property="og:title" />
<meta
content="Una ricerca storico-artistica condotta su un gruppo di disegni italiani a Dresda volta a mostrare il metodo di studio del disegno basato sulle scuole pittoriche, sul confronto e sull'analisi delle opere nel loro sviluppo storico."
property="og:description"
/>
<meta content="Conoscere il disegno" property="twitter:title" />
<meta
content="Una ricerca storico-artistica condotta su un gruppo di disegni italiani a Dresda volta a mostrare il metodo di studio del disegno basato sulle scuole pittoriche, sul confronto e sull'analisi delle opere nel loro sviluppo storico."
property="twitter:description"
/>
<meta property="og:type" content="website" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="Webflow" name="generator" />
<link
href="assets/css/connoisseurship-del-disegno.webflow.b33a9fb9b.min.css"
rel="stylesheet"
type="text/css"
/>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link
href="https://fonts.gstatic.com"
rel="preconnect"
crossorigin="anonymous"
/>
<script src="assets/js/webfont.js" type="text/javascript"></script>
<link rel="stylesheet" href="assets/css/css" media="all" />
<script type="text/javascript">
WebFont.load({
google: {
families: ["Libre Baskerville:regular,italic,700:latin,latin-ext"],
},
});
</script>
<script type="text/javascript">
!(function (o, c) {
var n = c.documentElement,
t = " w-mod-";
(n.className += t + "js"),
("ontouchstart" in o ||
(o.DocumentTouch && c instanceof DocumentTouch)) &&
(n.className += t + "touch");
})(window, document);
</script>
<link
href="assets/imgs/62ffb974e0b6dd5cdd5929d8_favicon4.jpg"
rel="shortcut icon"
type="image/x-icon"
/>
<link href="assets/img/webclip.png" rel="apple-touch-icon" />
<style>
.block-landing-content {
height: 100vh; /* Fallback for browsers that do not support Custom Properties */
height: calc(var(--vh, 1vh) * 100);
}
</style>
</head>
<body class="body newcolor">
<div class="bg scuole"></div>
<div class="mainwrapper home">
<div class="leftbar">
<a href="about.html" class="info w-inline-block"
><div class="infocontainer">
<div class="tooltip info">
<div class="tooltiptext">Info sul progetto</div>
</div>
<img
src="assets/imgs/62e690d26e26a3a2470b704f_infoicon-25px-1.5px.svg"
loading="lazy"
alt=""
class="infoicon"
/></div></a
><a href="index.html" class="title w-inline-block"
><div class="titletext">Conoscere il <em>disegno</em></div></a
><a
href="https://www.fondazione1563.it/"
target="_blank"
class="_1563 w-inline-block"
><div class="_1563container">
<img
src="assets/imgs/62c1c9b8c5a063601dd319fd_1563logo-v.svg"
loading="lazy"
alt=""
class="_1563icon"
/></div
></a>
</div>
<div class="top-home">
<div
id="w-node-fc792465-801c-9f7a-647f-292acba6104b-8b0ac269"
class="sfondo-per-top"
></div>
<p
id="w-node-_8d73e76c-8b26-8205-2a5d-a0296a925f97-8b0ac269"
class="p_description"
>
<span class="boldspan">Visione d'insieme.</span> La rete di
collocamento dei disegni esaminati. Scegli il criterio di
distribuzione con cui visualizzarla.
</p>
<div class="switch-home">
<div class="homeswitch sx">
<a
data-w-id="4c9880bd-54cc-902e-5e51-db3399931297"
href="#"
class="scuolebutton w-button"
>Scuole</a
>
<div class="tooltip switch sx" style="opacity: 0; display: none">
<div class="tooltip-arrow switch"></div>
<div class="tooltiptext">
I disegni vengono distribuiti per vicinanza stilistica alle
diverse scuole pittoriche.
</div>
</div>
</div>
<div class="homeswitch dx">
<a
data-w-id="4c9880bd-54cc-902e-5e51-db339993129e"
href="#"
class="tempobutton w-button"
>tempo</a
>
<div class="tooltip switch dx" style="opacity: 0; display: none">
<div class="tooltip-arrow switch"></div>
<div class="tooltiptext">
I disegni vengono distribuiti per ordine cronologico.
</div>
</div>
</div>
</div>
<div class="instructionsdiv">
<img
src="assets/imgs/62f048250b52a616b0e5ec4a_clickicon-25px-1.5px.svg"
loading="lazy"
alt=""
class="instructionicon"
/>
<div class="instructiontext">
Clicca su un disegno per saperne di più
</div>
</div>
<div
id="w-node-_9febc381-a8ef-baec-0686-f4c15419c422-8b0ac269"
data-w-id="9febc381-a8ef-baec-0686-f4c15419c422"
class="timeline"
>
<div class="linea nera"></div>
<div class="steps-timeline">
<div class="step _1550">
<div class="anno">1550</div>
<div class="pallozzo nero"></div>
</div>
<div
id="w-node-_532b6742-990f-0e1d-451d-1e82b7e12ab3-8b0ac269"
class="step _1600"
>
<div class="anno">1600</div>
<div class="pallozzo nero"></div>
</div>
<div
id="w-node-_3801bc09-3f3c-1b17-ea29-aa8c1907bc04-8b0ac269"
class="step _1650"
>
<div class="anno">1650</div>
<div class="pallozzo nero"></div>
</div>
<div
id="w-node-_5bcb4b9f-a879-a3fb-e423-9f7ac0d3e067-8b0ac269"
class="step _1700"
>
<div class="anno">1700</div>
<div class="pallozzo nero"></div>
</div>
<div
id="w-node-_87cb55c7-f931-0097-a05b-a08973f8b17b-8b0ac269"
class="step _1750"
>
<div class="anno">1750</div>
<div class="pallozzo nero"></div>
</div>
<div
id="w-node-eb3b2d72-7e4c-891e-aa91-33195f3bba35-8b0ac269"
class="step _1800"
>
<div class="anno">1800</div>
<div class="pallozzo nero"></div>
</div>
<div
id="w-node-_96117f39-a6fe-c45c-4b2e-8941ddbf0c55-8b0ac269"
class="step _1850"
>
<div class="anno">1850</div>
<div class="pallozzo nero"></div>
</div>
</div>
<img
src="assets/imgs/62e8ddd8f004552884f738c4_Group%2018.svg"
loading="lazy"
alt=""
class="ref2"
/>
</div>
</div>
<div
data-w-id="2ae4dc81-9203-91e0-0b06-970ef87e00f9"
class="content-scuole"
>
<div class="mainscript w-embed w-script">
<script src="assets/js/d3.v7.min.js"></script>
<script>
d3.select(window).on("load", function (tag) {
let div = d3.select(".viz-div");
const svg = div.append("svg").attr("viewBox", [0, 0, 1527, 760]);
////console.log(svg);
colors = {
"Scuola Lombarda": "#2E6B3E",
"Scuola Genovese": "#2CA690",
"Scuola Napoletana": "#7B3F14",
"Scuola Romana": "#4A93F7",
"Scuola Veneziana": "#3F2D69",
"Scuola Emiliana": "#AE3029",
"Scuola Fiorentina": "#D671B6",
};
// add blur filter
let svgFilters = svg.append("filter").attr("id", "blur");
svgFilters
.append("feGaussianBlur")
.attr("in", "SourceGraphic")
.attr("stdDeviation", 10);
// add edges
let edges = svg
.append("g")
.selectAll("path")
.data(scuoleEdges)
.join("path");
// add curved paths
// from https://stackoverflow.com/questions/41226734/align-marker-on-node-edges-d3-force-layout/41229068#41229068
edges.attr("d", function (d) {
let sourceObj = scuoleNodes.filter(
(e) => e.nome == d.source
)[0];
let targetObj = scuoleNodes.filter(
(e) => e.nome == d.target
)[0];
let dx = targetObj.x - sourceObj.x,
dy = targetObj.y - sourceObj.y,
dr = Math.sqrt(dx * dx + dy * dy);
return (
"M" +
sourceObj.x +
"," +
sourceObj.y +
"A" +
dr +
"," +
dr +
" 0 0,1 " +
targetObj.x +
"," +
targetObj.y
);
});
edges
.attr("stroke-width", (d) => d.weight)
.attr("fill", "none")
.attr("stroke", "#EAE2D7")
.attr("stroke-linecap", "round")
.attr("opacity", 1); //MESSO PER EVITARE FLICK INIZIALE
// add nodes
let nodes = svg
.append("g")
.selectAll("g")
.data(scuoleNodes)
.join("g");
// add links
nodes = nodes
.attr(
"transform",
(d) => `translate(${d.x - d.w / 2}, ${d.y - d.h / 2})`
)
.style("cursor", "pointer")
.append("a")
//.attr("target", "_parent")
.attr("href", (d) => "" + d.href)
.attr("opacity", 1); //MESSO PER EVITARE FLICK INIZIALE
// add images
/*
nodes
.filter((d) => d.tipo == "disegno")
.append("rect")
.attr("width", (d) => d.w)
.attr("height", (d) => d.h);
*/
nodes
.filter((d) => d.tipo == "disegno")
.append("image")
.attr("href", (d) => d.url)
.attr("width", (d) => d.w)
.attr("height", (d) => d.h);
// add halo below texts
nodes
.filter((d) => d.tipo == "scuola")
.append("circle")
.attr("r", 50)
.attr("fill", "#FBF8F2")
.attr("filter", "url(#blur)");
// add school names
let tspans = nodes
.filter((d) => d.tipo == "scuola")
.append("text")
.attr("fill", (d) => colors[d.nome])
.style("font-size", 24)
.style("font-family", '"Libre Baskerville", serif')
.attr("text-anchor", "middle")
.attr("dominant-baseline", "central");
// add the two tspan
tspans
.append("tspan")
.attr("x", 0)
.attr("dy", "-0.5em")
.text((d) => d.nome.split(" ")[0]);
tspans
.append("tspan")
.attr("x", 0)
.attr("dy", "1.2em")
.text((d) => d.nome.split(" ")[1]);
// add interaction to school nodes
nodes
.filter((d) => d.tipo == "scuola")
.on("mouseover", function (event, d) {
let selectedEdges = edges.filter((e) => e.target == d.nome);
let otherEdges = edges.filter((e) => e.target != d.nome);
let selectedNodes = nodes.filter(
(n) =>
selectedEdges
.data()
.map((e) => e.source)
.includes(n.nome) ||
selectedEdges
.data()
.map((e) => e.target)
.includes(n.nome)
);
nodes.transition().duration("400").attr("opacity", 0.2);
selectedNodes.transition().duration("300").attr("opacity", 1);
selectedEdges
.transition()
.duration("400")
.attr("opacity", 1)
.attr("stroke", colors[d.nome]);
otherEdges
.transition()
.duration("300")
.attr("stroke", "#EAE2D7")
.attr("opacity", 0.1);
})
.on("mouseout", function (event, d) {
nodes.transition().duration("400").attr("opacity", 1);
edges
.transition()
.duration("300")
.attr("opacity", 1)
.attr("stroke", "#EAE2D7");
});
// add interaction to image nodes
nodes
.filter((d) => d.tipo == "disegno")
.on("mouseover", (event, d) => {
d3.select(".didascalia-on-hover").style("opacity", 1);
d3.select(".testo-autore").text(
dida.filter((dd) => dd.id == d.nome)[0]["autore"]
);
d3.select(".testo-titolo").text(
dida.filter((dd) => dd.id == d.nome)[0]["titolo"]
);
d3.select(".testo-anno").text(
dida.filter((dd) => dd.id == d.nome)[0]["anno"]
);
let selectedEdges = edges.filter((e) => e.source == d.nome);
let otherEdges = edges.filter((e) => e.source != d.nome);
let selectedNodes = nodes.filter(
(n) =>
selectedEdges
.data()
.map((e) => e.source)
.includes(n.nome) ||
selectedEdges
.data()
.map((e) => e.target)
.includes(n.nome)
);
nodes.transition().duration("400").attr("opacity", 0.2);
selectedNodes.transition().duration("300").attr("opacity", 1);
selectedEdges
.transition()
.duration("400")
.attr("opacity", 1)
.attr("stroke", (e) => colors[e.target]);
otherEdges
.transition()
.duration("300")
.attr("stroke", "#EAE2D7")
.attr("opacity", 0.1);
})
.on("mouseout", function (event, d) {
d3.select(".didascalia-on-hover").style("opacity", 0);
edges
.transition()
.duration("300")
.attr("stroke", "#EAE2D7")
.attr("opacity", 1);
nodes.transition().duration("400").attr("opacity", 1);
});
});
</script>
</div>
<div class="didasdata w-embed w-script">
<script>
let dida = [
{
id: "C_1910-36",
titolo: "Studio per il Plutone di Palazzo dei Diamanti",
anno: "1592 ca.",
autore: "Agostino Carracci",
},
{
id: "C_1937-390",
titolo:
"Paesaggio con una torre in lontananza e alcuni personaggi",
anno: "",
autore: "Libera invenzione alla maniera di Guercino",
},
{
id: "C_1937-797",
titolo:
"recto: Studio per l’Adorazione dei pastori del Duomo di Padova; verso: mano sinistra che tiene un oggetto",
anno: "1708",
autore: "Antonio Balestra",
},
{
id: "C_1937-800",
titolo: "Afitrite",
anno: "1640-1705",
autore: "Luca Giordano (da Luca Cambiaso) ?",
},
{
id: "C_1937-840",
titolo: "Angelo conduce in cielo un'anima beata",
anno: "1627 ca.",
autore: "Antonio d'Enrico detto Tanzio da Varallo",
},
{
id: "C_1937-845",
titolo:
"recto: Uomo sdraiato con braccia dietro la schiena, verso: figura femminile panneggiata",
anno: "",
autore: "Antonio Balestra",
},
{
id: "C_1937-862",
titolo:
"recto: Ercole e Onfale, verso: Figura femminile davanti ad una torre",
anno: "",
autore: "Artista Veneto inizio XVIII sec.",
},
{
id: "C_1937-873",
titolo: "Orazione nell’orto",
anno: "1680-1714",
autore: "Cerchia di Donato Creti",
},
{
id: "C_1937-874",
titolo: "Studio di uomo che incede",
anno: "1600-1640",
autore: "Artista italiano entro il 1650",
},
{
id: "C_1937-902",
titolo: "Profeta sorretto e incoronato da angeli",
anno: "",
autore: "Artista veneto della seconda metà del Cinquecento",
},
{
id: "C_1937-913",
titolo: "Donne e uomini che camminano verso sinistra",
anno: "",
autore: "Giovan Mauro Della Rovere detto il Fiammenghino",
},
{
id: "C_1961-120",
titolo: "Baccanale con bacco ebbro",
anno: "",
autore: "Artista tra Pier Francesco Mola e Nicolas Poussin",
},
{
id: "C_1967-323",
titolo: "Maria Maddalena",
anno: "ante 1728",
autore: "Artista bolognese tra XVI e XVII secolo",
},
{
id: "C_1968-183",
titolo: "Paesaggio con scena di caccia",
anno: "ante 1728",
autore: "Artista seicentesco di ambito romano",
},
{
id: "C_1968-66",
titolo:
"recto: La decollazione del Battista, verso: nudo maschile",
anno: "1570-1630",
autore: "Artista emiliano del XVIII secolo",
},
{
id: "C_1988-567",
titolo: "Nudo maschile disteso",
anno: "",
autore: "Cerchia di Andrea Sacchi",
},
{
id: "C_1989-70",
titolo: "Studio per un orologio",
anno: "",
autore: "Artista italiano della seconda metà del XVIII secolo",
},
{
id: "C_1989-96",
titolo:
"recto: studio pre una strage degli innocenti, verso: bambini a terra e studi di testa",
anno: "",
autore: "Artista napoletano vicino a Mattia Preti",
},
{
id: "C_241_a",
titolo: "Angeli musicanti",
anno: "",
autore: "Guglielmo Caccia detto il Moncalvo",
},
{
id: "C_241_b",
titolo: "Angeli musicanti",
anno: "",
autore: "Guglielmo Caccia detto il Moncalvo",
},
{
id: "C_241_c",
titolo: "Angeli musicanti",
anno: "",
autore: "Guglielmo Caccia detto il Moncalvo",
},
{
id: "C_243",
titolo: "Autoritratto",
anno: "1650-1713",
autore: "Carlo Maratta",
},
{
id: "C_428",
titolo: "Gregge al pascolo",
anno: "1630-1664",
autore: "Giovanni Benedetto Castiglione (copia da?)",
},
{
id: "C_430",
titolo:
"Studio per il S. Ottavio della cappella dell’Angelo Custode in San Gaudenzio a Novara",
anno: "1627 ca.",
autore: "Antonio d'Enrico detto Tanzio da Varallo",
},
{
id: "C_469",
titolo: "Studio di figura",
anno: "1520-1570",
autore:
"Artista vicino a Parmigianino entro la prima metà del Cinquecento",
},
{
id: "C_499",
titolo: "Sacrificio di Isacco",
anno: "",
autore:
"Artista veneto vicino a Giambattista Pittoni e Federico Bencovich",
},
{
id: "C_500",
titolo: "Annunciazione",
anno: "",
autore:
"Artista veneto vicino a Giambattista Pittoni e Federico Bencovich",
},
{
id: "C_7434",
titolo: "Angelo annunciante",
anno: "1550-1560 ca.",
autore: "Giovan Franceco Bezzi detto Nosadella",
},
{
id: "C_76",
titolo: "Figura maschile panneggiata",
anno: "1590-1621",
autore: "Cosimo Gamberucci",
},
{
id: "C_99_a",
titolo: "Il ratto delle Sabine",
anno: "1600-1630",
autore: "Francesco Maffei (da Giambologna)?",
},
{
id: "Ca_66_33",
titolo:
"Architettura di fantasia con fontana dalla serie Disegni di prospettiva ideale",
anno: "1732",
autore: "Filippo Juvarra",
},
];
</script>
</div>
<div class="nodesdata w-embed w-script">
<script>
let scuoleNodes = [
{
tipo: "disegno",
nome: "C_76",
w: "84.2964",
h: "119.4",
x: "1436.9934",
y: "529.1482",
href: "nucleo-di-confronto/c-76.html",
url: "assets/imgs/62e7c90850a13809a6d7ebbc_C_76.jpeg",
},
{
tipo: "disegno",
nome: "C_99_a",
w: "50.2876",
h: "103.9",
x: "1136.6994",
y: "684.8728",
href: "nucleo-di-confronto/c-99-a.html",
url: "assets/imgs/62e7c9084e7c3840b676aa2c_C_99_a.jpeg",
},
{
tipo: "disegno",
nome: "C_241_a",
w: "63.3",
h: "50.3868",
x: "123.6373",
y: "289.6377",
href: "nucleo-di-confronto/c-241-a.html",
url: "assets/imgs/62e7c908c01db7598b2c67f5_C_241_a.jpeg",
},
{
tipo: "disegno",
nome: "C_241_b",
w: "46.9846",
h: "38.2109",
x: "63.7119",
y: "171.75065",
href: "nucleo-di-confronto/c-241-b.html",
url: "assets/imgs/62e7c9092b04430f8dc25af4_C_241_b.jpeg",
},
{
tipo: "disegno",
nome: "C_241_c",
w: "149.0326",
h: "37.6437",
x: "242.0178",
y: "141.00285",
href: "nucleo-di-confronto/c-241-c.html",
url: "assets/imgs/62e7c908e038e797522ac2e2_C_241_c.jpeg",
},
{
tipo: "disegno",
nome: "C_243",
w: "107.9412",
h: "149.202",
x: "743.2295",
y: "157.3675",
href: "nucleo-di-confronto/c-243.html",
url: "assets/imgs/62e7c909c01db77adc2c6807_C_243.jpeg",
},
{
tipo: "disegno",
nome: "C_428",
w: "112.8906",
h: "77.526",
x: "403.1707",
y: "476.9418",
href: "nucleo-di-confronto/c-428.html",
url: "assets/imgs/62e7c909149058de94320fd0_C_428.jpeg",
},
{
tipo: "disegno",
nome: "C_469",
w: "39.0182",
h: "55.9",
x: "1281.6899",
y: "89.8691",
href: "nucleo-di-confronto/c-469.html",
url: "assets/imgs/62e7c90982d6bc118e7f484e_C_469.jpeg",
},
{
tipo: "disegno",
nome: "C_499",
w: "48.898",
h: "39.652",
x: "881.7807",
y: "529.1798",
href: "nucleo-di-confronto/c-499.html",
url: "assets/imgs/62e7c909c01db779332c6812_C_499.jpeg",
},
{
tipo: "disegno",
nome: "C_500",
w: "48.898",
h: "38.019",
x: "952.0677",
y: "652.8912",
href: "nucleo-di-confronto/c-500.html",
url: "assets/imgs/62e7c9096147b6b2f48f1a03_C_500.jpeg",
},
{
tipo: "disegno",
nome: "C_1910-36",
w: "110.8664",
h: "74.504",
x: "1176.2362",
y: "179.6008",
href: "nucleo-di-confronto/c-1910-36.html",
url: "assets/imgs/62e7c90a59b83652c6393d19_C_1910-36.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-390",
w: "76.9612",
h: "54.8792",
x: "1308.5345",
y: "29.5546",
href: "nucleo-di-confronto/c-1937-390.html",
url: "assets/imgs/62e7c90ac01db76a8a2c6815_C_1937-390.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-797",
w: "66.5574",
h: "74.2",
x: "861.6732",
y: "463.1176",
href: "nucleo-di-confronto/c-1937-797.html",
url: "assets/imgs/62e7c90a56aba019a9f7bc97_C_1937-797.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-800",
w: "93.7",
h: "71.4931",
x: "427.8939",
y: "653.35405",
href: "nucleo-di-confronto/c-1937-800.html",
url: "assets/imgs/62e7c90a1b81e47d6e491755_C_1937-800.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-840",
w: "85.1552",
h: "115.7",
x: "259.779",
y: "355.4213",
href: "nucleo-di-confronto/c-1937-840.html",
url: "assets/imgs/62e7c90a3fd2635a93ca3c57_C_1937-840.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-845",
w: "104.4",
h: "71.0964",
x: "1027.1695",
y: "437.7004",
href: "nucleo-di-confronto/c-1937-845.html",
url: "assets/imgs/62e7c90a3b02f909ba7523a5_C_1937-845.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-862",
w: "78.8746",
h: "51.6432",
x: "832.2076",
y: "630.0123",
href: "nucleo-di-confronto/c-1937-862.html",
url: "assets/imgs/62e7c90a9b8015e11b154881_C_1937-862.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-873",
w: "66.3",
h: "93.9692",
x: "1410.2324",
y: "89.8314",
href: "nucleo-di-confronto/c-1937-873.html",
url: "assets/imgs/62e7c90ae9906102c0b1989b_C_1937-873.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-874",
w: "61.8426",
h: "82.2762",
x: "480.3301",
y: "303.1589",
href: "nucleo-di-confronto/c-1937-874.html",
url: "assets/imgs/62e7c90b1a2266749cdf6754_C_1937-874.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-902",
w: "52.2918",
h: "59.1028",
x: "1126.6665",
y: "381.9628",
href: "nucleo-di-confronto/c-1937-902.html",
url: "assets/imgs/62e7c90bd00348bdcdbb394e_C_1937-902.jpeg",
},
{
tipo: "disegno",
nome: "C_1937-913",
w: "84.255",
h: "59.8518",
x: "44.7163",
y: "243.5141",
href: "nucleo-di-confronto/c-1937-913.html",
url: "assets/imgs/62e7c90b4e7c38b38276aa34_C_1937-913.jpeg",
},
{
tipo: "disegno",
nome: "C_1961-120",
w: "110.3394",
h: "74.6841",
x: "602.7162",
y: "157.37805",
href: "nucleo-di-confronto/c-1961-120.html",
url: "assets/imgs/6309d77f185d10be52ea6e3a_C_1961-120-p-1080.jpg",
},
{
tipo: "disegno",
nome: "C_1967-323",
w: "22.4068",
h: "26.3624",
x: "1397.3967",
y: "315.3236",
href: "nucleo-di-confronto/c-1967-323.html",
url: "assets/imgs/62e7c90be990616dd8b198b5_C_1967-323.jpeg",
},
{
tipo: "disegno",
nome: "C_1968-66",
w: "46.3468",
h: "36.8856",
x: "1295.7845",
y: "302.1634",
href: "nucleo-di-confronto/c-1968-66.html",
url: "assets/imgs/62e7c90cd16a253a1ec58c2d_C_1968-66.jpeg",
},
{
tipo: "disegno",
nome: "C_1968-183",
w: "56.749",
h: "71.221",
x: "1436.971",
y: "249.4687",
href: "nucleo-di-confronto/c-1968-183.html",
url: "assets/imgs/62e7c90cf16ca413773cdff5_C_1968-183.jpeg",
},
{
tipo: "disegno",
nome: "C_1988-567",
w: "128.4104",
h: "86.976",
x: "883.7911",
y: "189.6333",
href: "nucleo-di-confronto/c-1988-567.html",
url: "assets/imgs/62e7c90ba997bbb47498f80c_C_1988-567.jpeg",
},
{
tipo: "disegno",
nome: "C_1989-70",
w: "61.7312",
h: "85.8904",
x: "347.4948",
y: "240.1998",
href: "nucleo-di-confronto/c-1989-70.html",
url: "assets/imgs/62e7c90b6147b603778f1a19_C_1989-70.jpeg",
},
{
tipo: "disegno",
nome: "C_1989-96",
w: "32.2579",
h: "42.3074",
x: "629.44565",
y: "443.1226",
href: "nucleo-di-confronto/c-1989-96.html",
url: "assets/imgs/630b79f6f0843dbd52fd48f0_62e7c90c59b8367f93393d36_C_1989-96.jpg",
},
{
tipo: "disegno",
nome: "C_7434",
w: "29.016",
h: "39.5436",
x: "1456.6364",
y: "176.6031",
href: "nucleo-di-confronto/c-7434.html",
url: "assets/imgs/62e7c90c9b801546301548a0_C_7434.jpeg",
},
{
tipo: "disegno",
nome: "Ca_66_33",
w: "69.1716",
h: "97.7",
x: "108.3156",
y: "101.6642",
href: "nucleo-di-confronto/ca-66-33.html",
url: "assets/imgs/62e7c90ce99061c75cb198b9_Ca_66_33.jpeg",
},
{
tipo: "scuola",
nome: "Scuola Lombarda",
w: "",
h: "",
x: "217",
y: "228",
href: "scuole/scuola-lombarda.html",
url: "",
},
{
tipo: "scuola",
nome: "Scuola Genovese",
w: "",
h: "",
x: "347",
y: "568",
href: "scuole/scuola-genovese.html",
url: "",
},
{
tipo: "scuola",
nome: "Scuola Napoletana",
w: "",
h: "",
x: "539",
y: "493",
href: "scuole/scuola-napoletana.html",
url: "",
},