@net7/components 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/bubble-chart/bubble-chart.mjs +148 -134
- package/esm2020/lib/components/bubble-chart/bubble-chart.mock.mjs +416 -3440
- package/esm2020/lib/components/input-text/input-text.mjs +3 -3
- package/esm2020/lib/components/input-text/input-text.mock.mjs +3 -2
- package/fesm2015/net7-components.mjs +547 -3573
- package/fesm2015/net7-components.mjs.map +1 -1
- package/fesm2020/net7-components.mjs +546 -3573
- package/fesm2020/net7-components.mjs.map +1 -1
- package/lib/components/bubble-chart/bubble-chart.d.ts +59 -17
- package/package.json +1 -1
|
@@ -124,15 +124,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
124
124
|
class BubbleChartComponent {
|
|
125
125
|
constructor() {
|
|
126
126
|
this._loaded = false;
|
|
127
|
+
/**
|
|
128
|
+
* Reference for much of the new text scaling code comes from:
|
|
129
|
+
* https://observablehq.com/@mbostock/fit-text-to-circle
|
|
130
|
+
*/
|
|
131
|
+
this.measureWidth = (text) => {
|
|
132
|
+
const context = document.createElement('canvas').getContext('2d');
|
|
133
|
+
// measure text with the correct font family and weight
|
|
134
|
+
if (this.data?.fontRendering?.label?.family && this.data?.fontRendering?.label?.weight) {
|
|
135
|
+
context.font = `${this.data.fontRendering.label.weight} ${this.data.fontRendering.label.family}`;
|
|
136
|
+
}
|
|
137
|
+
// calculated width + padding
|
|
138
|
+
return context.measureText(text).width * 1.15;
|
|
139
|
+
};
|
|
140
|
+
this.isValidNumber = (value) => !Number.isNaN(Number.parseFloat(value));
|
|
127
141
|
this.draw = () => {
|
|
128
142
|
const { d3 } = this;
|
|
129
143
|
const { containerId, data, height, width, selected, transition, colorMatch, shuffle, fontRendering } = this.data;
|
|
144
|
+
// SVG shape path for the close icon
|
|
130
145
|
const closeIconPath = 'M -50,40 L-40,50 0,10 40,50 50,40 10,0 50,-40 40,-50 0,-10 -40,-50 -50,-40 -10,0 -50,40';
|
|
146
|
+
const defaultLineHeight = 13;
|
|
147
|
+
// word count before truncating with ellipsis
|
|
148
|
+
const ellipsisThreshold = 4;
|
|
149
|
+
const textScalingFactor = 1;
|
|
131
150
|
if (!Array.isArray(data)) {
|
|
132
151
|
// Check if it is possible to draw with the current dataset
|
|
133
152
|
console.warn('(n7-bubble-chart) The data object is not in the expected format!');
|
|
134
153
|
return;
|
|
135
154
|
}
|
|
155
|
+
// animation settings used to render changes in the chart
|
|
136
156
|
let t = d3
|
|
137
157
|
.transition()
|
|
138
158
|
.duration(0);
|
|
@@ -142,17 +162,23 @@ class BubbleChartComponent {
|
|
|
142
162
|
.duration(transition)
|
|
143
163
|
.ease(d3.easeCubicInOut);
|
|
144
164
|
}
|
|
165
|
+
// calculate the bubble background color from it's type (domain)
|
|
145
166
|
const colorMap = d3.scaleOrdinal()
|
|
146
167
|
.domain(colorMatch ? colorMatch.domain : ['persona', 'luogo', 'organizzazione', 'cosa notevole'])
|
|
147
168
|
.range(colorMatch ? colorMatch.range : d3.schemeTableau10);
|
|
169
|
+
// calculate how big the radius of the bubble should be
|
|
148
170
|
const sizeScale = d3 // map entity count to bubble size
|
|
149
171
|
.scaleLinear()
|
|
150
172
|
.domain([0, d3.max(data, (d) => +d.count)])
|
|
151
173
|
.range([3, d3.max(data, (d) => +d.count)]);
|
|
174
|
+
// pack is a d3js method which calculates the bubble's x & y position in the chart
|
|
175
|
+
// circle packing reference: https://observablehq.com/@d3/pack
|
|
152
176
|
const pack = (children) => d3
|
|
153
177
|
.pack()
|
|
154
178
|
.size([width - 2, height - 2])
|
|
155
179
|
.padding(1.5)(d3.hierarchy({ children }).sum((d) => sizeScale(d.count)));
|
|
180
|
+
// the bubbles are packed in a single level tree, this is the root
|
|
181
|
+
// see circle packing reference: https://observablehq.com/@d3/pack
|
|
156
182
|
const root = () => {
|
|
157
183
|
if (typeof shuffle === 'undefined' || shuffle) {
|
|
158
184
|
const shuffData = data.slice(); // do not modify the source data!
|
|
@@ -160,25 +186,33 @@ class BubbleChartComponent {
|
|
|
160
186
|
} // if shuffle is set to false, skip the data shuffle
|
|
161
187
|
return pack(data);
|
|
162
188
|
};
|
|
189
|
+
// svg canvas where all the bubbles are drawn
|
|
163
190
|
const svg = d3
|
|
164
191
|
.select(`#${containerId}`)
|
|
165
192
|
.attr('viewBox', [0, 0, width, height])
|
|
166
|
-
.attr('font-family', 'Verdana, Geneva, sans-serif')
|
|
193
|
+
// .attr('font-family', 'Verdana, Geneva, sans-serif')
|
|
194
|
+
// .attr('font-size', '10px')
|
|
195
|
+
.style('font', '10px Verdana, Geneva, sans-serif')
|
|
196
|
+
.style('height', 'auto')
|
|
197
|
+
.style('max-width', '100%')
|
|
167
198
|
.attr('text-anchor', 'middle');
|
|
199
|
+
this.removeUnneededNodes(svg);
|
|
200
|
+
// a leaf of the "pack tree" corresponds to a bubble
|
|
168
201
|
const leaf = svg.selectAll('g').data(root().leaves(), (d) => d.data.entity.id);
|
|
169
202
|
leaf
|
|
170
203
|
.transition(t) // update transition on <g>
|
|
171
204
|
.attr('fill-opacity', 1)
|
|
172
|
-
.attr('transform', (d) => `translate(${d.x + 1},${d.y + 1})`)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
});
|
|
179
|
-
|
|
205
|
+
.attr('transform', (d) => `translate(${d.x + 1},${d.y + 1})`);
|
|
206
|
+
// .attr('font-size', (d) => {
|
|
207
|
+
// let size = d.r / 5.5;
|
|
208
|
+
// size *= 1;
|
|
209
|
+
// size += 1;
|
|
210
|
+
// return `${Math.round(size)}px`;
|
|
211
|
+
// });
|
|
212
|
+
// clear all existing close icons from the bubbles
|
|
213
|
+
leaf.selectAll('.close-icon').remove();
|
|
180
214
|
if (selected) {
|
|
181
|
-
leaf // render necessary close icons
|
|
215
|
+
leaf // render only the necessary close icons
|
|
182
216
|
.filter((d) => selected.includes(d.data.entity.id))
|
|
183
217
|
.append('path')
|
|
184
218
|
.attr('class', 'close-icon')
|
|
@@ -196,86 +230,10 @@ class BubbleChartComponent {
|
|
|
196
230
|
.transition(t) // update transition on <circle>
|
|
197
231
|
.attr('fill-opacity', 1)
|
|
198
232
|
.attr('r', (d) => d.r);
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
.attr('font-family', () => {
|
|
202
|
-
if (fontRendering && fontRendering.label && fontRendering.label.family) {
|
|
203
|
-
return fontRendering.label.family;
|
|
204
|
-
}
|
|
205
|
-
return 'inherit';
|
|
206
|
-
})
|
|
207
|
-
.attr('font-weight', () => {
|
|
208
|
-
if (fontRendering && fontRendering.label && fontRendering.label.weight) {
|
|
209
|
-
return fontRendering.label.weight;
|
|
210
|
-
}
|
|
211
|
-
return 'inherit';
|
|
212
|
-
})
|
|
213
|
-
.selectAll('tspan')
|
|
214
|
-
.data((d) => {
|
|
215
|
-
if (d.r / 4 > 4.5) {
|
|
216
|
-
// show text and number threshhold
|
|
217
|
-
let label = (d.data.entity.label.charAt(0).toUpperCase()
|
|
218
|
-
+ d.data.entity.label.slice(1)).split(/ +/g);
|
|
219
|
-
if (label.length > 3) {
|
|
220
|
-
label = label.slice(0, 3);
|
|
221
|
-
label[2] += '…';
|
|
222
|
-
}
|
|
223
|
-
return label;
|
|
224
|
-
}
|
|
225
|
-
if (d.r / 4 > 2.5) {
|
|
226
|
-
// show text threshhold
|
|
227
|
-
let label = (d.data.entity.label.charAt(0).toUpperCase()
|
|
228
|
-
+ d.data.entity.label.slice(1)).split(/ +/g);
|
|
229
|
-
if (label.length > 3) {
|
|
230
|
-
label = label.slice(0, 3);
|
|
231
|
-
label[2] += '…';
|
|
232
|
-
}
|
|
233
|
-
return label;
|
|
234
|
-
}
|
|
235
|
-
return '';
|
|
236
|
-
})
|
|
237
|
-
.join('tspan')
|
|
238
|
-
.attr('x', 0)
|
|
239
|
-
.attr('y', (d, i, nodes) => `${i - (nodes.length + 1) / 2 + 0.97}em`)
|
|
240
|
-
.attr('fill', 'white')
|
|
241
|
-
.text((d) => d);
|
|
242
|
-
leaf
|
|
243
|
-
.select('.label-count')
|
|
244
|
-
.attr('font-family', () => {
|
|
245
|
-
if (fontRendering && fontRendering.counter && fontRendering.counter.family) {
|
|
246
|
-
return fontRendering.counter.family;
|
|
247
|
-
}
|
|
248
|
-
return 'inherit';
|
|
249
|
-
})
|
|
250
|
-
.attr('font-weight', () => {
|
|
251
|
-
if (fontRendering && fontRendering.counter && fontRendering.counter.weight) {
|
|
252
|
-
return fontRendering.counter.weight;
|
|
253
|
-
}
|
|
254
|
-
return 'inherit';
|
|
255
|
-
})
|
|
256
|
-
.attr('fill', 'white')
|
|
257
|
-
.text((d) => {
|
|
258
|
-
if (d.r / 4 > 2.5) {
|
|
259
|
-
// show text and number threshhold
|
|
260
|
-
return d.data.count;
|
|
261
|
-
}
|
|
262
|
-
return '';
|
|
263
|
-
})
|
|
264
|
-
.attr('y', (d) => {
|
|
265
|
-
let labelLength = d.data.entity.label.split(/ +/g);
|
|
266
|
-
if (labelLength.length > 3) {
|
|
267
|
-
labelLength = labelLength.slice(0, 3);
|
|
268
|
-
}
|
|
269
|
-
return `${labelLength.length - (labelLength.length + 1) / 2 + 0.97}em`;
|
|
270
|
-
});
|
|
233
|
+
// g represents a "group of svg items"
|
|
234
|
+
// items grouped together can be added / removed / scaled together
|
|
271
235
|
const g = leaf.enter().append('g');
|
|
272
236
|
g.attr('transform', (d) => `translate(${d.x + 1},${d.y + 1})`)
|
|
273
|
-
.attr('font-size', (d) => {
|
|
274
|
-
let size = d.r / 5.5;
|
|
275
|
-
size *= 1;
|
|
276
|
-
size += 1;
|
|
277
|
-
return `${Math.round(size)}px`;
|
|
278
|
-
})
|
|
279
237
|
.attr('cursor', 'pointer')
|
|
280
238
|
.on('click', (event, d) => {
|
|
281
239
|
this.onClick(d.data.entity.id);
|
|
@@ -288,10 +246,12 @@ class BubbleChartComponent {
|
|
|
288
246
|
.attr('fill-opacity', 1)
|
|
289
247
|
.attr('fill', (d) => colorMap(d.data.entity.typeOfEntity))
|
|
290
248
|
.attr('r', (d) => d.r);
|
|
249
|
+
// prevents the text from overflowing the bubble
|
|
291
250
|
g.append('clipPath')
|
|
292
251
|
.attr('id', (d) => { d.clipUid = `Clip-${d.data.entity.id}`; })
|
|
293
252
|
.append('use')
|
|
294
253
|
.attr('xlink:href', (d) => d.leafUid.href);
|
|
254
|
+
/** NEW TEXT LOGIC */
|
|
295
255
|
g.append('text')
|
|
296
256
|
.attr('font-family', () => {
|
|
297
257
|
if (fontRendering && fontRendering.label && fontRendering.label.family) {
|
|
@@ -305,40 +265,86 @@ class BubbleChartComponent {
|
|
|
305
265
|
}
|
|
306
266
|
return 'inherit';
|
|
307
267
|
})
|
|
308
|
-
.
|
|
309
|
-
.
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
268
|
+
.attr('fill', 'white')
|
|
269
|
+
.each((d) => {
|
|
270
|
+
// Capitalize the first letter of the label
|
|
271
|
+
d.data.entity.label = d.data.entity
|
|
272
|
+
.label.charAt(0).toUpperCase()
|
|
273
|
+
+ d.data.entity.label.slice(1);
|
|
274
|
+
// 1. initialize meta object
|
|
275
|
+
if (!d._meta || typeof d._meta !== 'object')
|
|
276
|
+
d._meta = {};
|
|
277
|
+
// 2. tokenize label & count into words
|
|
278
|
+
const words = d.data.entity.label.split(/[\s]+/g); // To hyphenate: /\s+|(?<=-)/
|
|
279
|
+
// Truncate with ellipsis if the label is longer than the threshold
|
|
280
|
+
if (words.length > ellipsisThreshold) {
|
|
281
|
+
words.splice(ellipsisThreshold, words.length - ellipsisThreshold);
|
|
282
|
+
words[ellipsisThreshold - 1] += '…';
|
|
319
283
|
}
|
|
284
|
+
// add counter
|
|
320
285
|
if (d.r / 4 > 2.5) {
|
|
321
|
-
// show text
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
if (
|
|
325
|
-
|
|
326
|
-
|
|
286
|
+
// show text threshold
|
|
287
|
+
if (!words[words.length - 1])
|
|
288
|
+
words.pop();
|
|
289
|
+
if (!words[0])
|
|
290
|
+
words.shift();
|
|
291
|
+
}
|
|
292
|
+
if (d.r / 4 > 4.5) {
|
|
293
|
+
// show number threshold
|
|
294
|
+
words.push(`${d.data.count}`);
|
|
295
|
+
}
|
|
296
|
+
d._meta.words = words;
|
|
297
|
+
d._meta.lineHeight = defaultLineHeight;
|
|
298
|
+
const targetWidth = Math.sqrt(this.measureWidth(d._meta.words.join(' ').trim()) * defaultLineHeight);
|
|
299
|
+
// 3. build lines of text
|
|
300
|
+
d._meta.lines = [];
|
|
301
|
+
let line;
|
|
302
|
+
let lineWidth0 = Infinity;
|
|
303
|
+
for (let i = 0, n = d._meta.words.length; i < n; i += 1) {
|
|
304
|
+
const lineText1 = (line ? `${line.text} ` : '') + words[i];
|
|
305
|
+
const lineWidth1 = this.measureWidth(lineText1);
|
|
306
|
+
if ((lineWidth0 + lineWidth1) / 2 < targetWidth && i !== n - 1) {
|
|
307
|
+
line.width = lineWidth0;
|
|
308
|
+
lineWidth0 = lineWidth1;
|
|
309
|
+
line.text = lineText1;
|
|
327
310
|
}
|
|
328
|
-
|
|
311
|
+
else {
|
|
312
|
+
// if line is too long or this is the last line (counter), push to next line
|
|
313
|
+
lineWidth0 = this.measureWidth(words[i]);
|
|
314
|
+
line = { width: lineWidth0, text: words[i] };
|
|
315
|
+
d._meta.lines.push(line);
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
// 4. compute the bounding radius
|
|
319
|
+
let radius = 0;
|
|
320
|
+
for (let i = 0, n = d._meta.lines.length; i < n; i += 1) {
|
|
321
|
+
const dy = (Math.abs(i - n / 2) + 0.8) * d._meta.lineHeight;
|
|
322
|
+
const dx = d._meta.lines[i].width / 2;
|
|
323
|
+
radius = Math.max(radius, Math.sqrt(dx * dx + dy * dy));
|
|
329
324
|
}
|
|
330
|
-
|
|
325
|
+
d._meta.textRadius = radius;
|
|
326
|
+
return d;
|
|
331
327
|
})
|
|
332
|
-
.
|
|
328
|
+
.attr('transform', (d) => {
|
|
329
|
+
const scale = ((d.r * 0.8) / d._meta.textRadius) * textScalingFactor;
|
|
330
|
+
return `scale(${scale})`;
|
|
331
|
+
})
|
|
332
|
+
.filter((d) => (d.r / 4 > 2.5))
|
|
333
|
+
.selectAll('tspan')
|
|
334
|
+
.data((d) => d._meta.lines)
|
|
335
|
+
.enter()
|
|
336
|
+
.append('tspan')
|
|
333
337
|
.attr('x', 0)
|
|
334
|
-
.attr('y', (d, i,
|
|
335
|
-
.attr('
|
|
336
|
-
|
|
338
|
+
.attr('y', (d, i, n) => (i - n.length / 2 + 0.8) * defaultLineHeight)
|
|
339
|
+
.attr('class', (d, i, n) => (
|
|
340
|
+
// if it's the last label and a valid number, mark as counter
|
|
341
|
+
i === n.length - 1 && this.isValidNumber(d.text) ? 'label-counter' : 'label-text'))
|
|
342
|
+
.text((d) => d.text)
|
|
337
343
|
.attr('fill-opacity', 0)
|
|
338
344
|
.transition(t) // enter() transition on <tspan>
|
|
339
345
|
.attr('fill-opacity', 1);
|
|
340
|
-
|
|
341
|
-
|
|
346
|
+
// custom style for the counter
|
|
347
|
+
g.selectAll('tspan.label-counter')
|
|
342
348
|
.attr('font-family', () => {
|
|
343
349
|
if (fontRendering && fontRendering.counter && fontRendering.counter.family) {
|
|
344
350
|
return fontRendering.counter.family;
|
|
@@ -350,25 +356,7 @@ class BubbleChartComponent {
|
|
|
350
356
|
return fontRendering.counter.weight;
|
|
351
357
|
}
|
|
352
358
|
return 'inherit';
|
|
353
|
-
})
|
|
354
|
-
.attr('fill', 'white')
|
|
355
|
-
.text((d) => {
|
|
356
|
-
if (d.r / 4 > 2.5) {
|
|
357
|
-
// show text and number threshhold
|
|
358
|
-
return d.data.count;
|
|
359
|
-
}
|
|
360
|
-
return '';
|
|
361
|
-
})
|
|
362
|
-
.attr('y', (d) => {
|
|
363
|
-
let labelLength = d.data.entity.label.split(/ +/g);
|
|
364
|
-
if (labelLength.length > 3) {
|
|
365
|
-
labelLength = labelLength.slice(0, 3);
|
|
366
|
-
}
|
|
367
|
-
return `${labelLength.length - (labelLength.length + 1) / 2 + 0.97}em`;
|
|
368
|
-
})
|
|
369
|
-
.attr('fill-opacity', 0)
|
|
370
|
-
.transition(t) // enter() transition on <text>
|
|
371
|
-
.attr('fill-opacity', 1);
|
|
359
|
+
});
|
|
372
360
|
leaf
|
|
373
361
|
.exit() // EXIT CYCLE
|
|
374
362
|
.remove();
|
|
@@ -390,7 +378,8 @@ class BubbleChartComponent {
|
|
|
390
378
|
return 'scale(.08)';
|
|
391
379
|
});
|
|
392
380
|
}
|
|
393
|
-
|
|
381
|
+
// communicate end of draw
|
|
382
|
+
this.emit('d3end', data);
|
|
394
383
|
};
|
|
395
384
|
}
|
|
396
385
|
ngAfterContentChecked() {
|
|
@@ -418,6 +407,13 @@ class BubbleChartComponent {
|
|
|
418
407
|
return;
|
|
419
408
|
this.emit('click', payload);
|
|
420
409
|
}
|
|
410
|
+
removeUnneededNodes(svg) {
|
|
411
|
+
// select all nodes and rejoin data
|
|
412
|
+
const nodes = svg.selectAll('g')
|
|
413
|
+
.data(this.data);
|
|
414
|
+
// remove excess nodes
|
|
415
|
+
nodes.exit().remove();
|
|
416
|
+
}
|
|
421
417
|
}
|
|
422
418
|
BubbleChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BubbleChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
423
419
|
BubbleChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: BubbleChartComponent, selector: "n7-bubble-chart", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data\" class=\"n7-bubble-chart {{ data.classes || '' }}\">\n <svg #bubbleChart id=\"{{data.containerId}}\"></svg>\n</div>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
@@ -1431,10 +1427,10 @@ class InputTextComponent {
|
|
|
1431
1427
|
}
|
|
1432
1428
|
}
|
|
1433
1429
|
InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1434
|
-
InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: InputTextComponent, selector: "n7-input-text", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.
|
|
1430
|
+
InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: InputTextComponent, selector: "n7-input-text", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [attr.autocomplete]=\"input.autocomplete\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.max]=\"input.max\"\n [attr.min]=\"input.min\"\n [attr.maxlength]=\"input.maxlength\"\n [attr.minlength]=\"input.minlength\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1435
1431
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InputTextComponent, decorators: [{
|
|
1436
1432
|
type: Component,
|
|
1437
|
-
args: [{ selector: 'n7-input-text', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.
|
|
1433
|
+
args: [{ selector: 'n7-input-text', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [attr.autocomplete]=\"input.autocomplete\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.max]=\"input.max\"\n [attr.min]=\"input.min\"\n [attr.maxlength]=\"input.maxlength\"\n [attr.minlength]=\"input.minlength\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span>\n </div>\n</div>\n" }]
|
|
1438
1434
|
}], propDecorators: { data: [{
|
|
1439
1435
|
type: Input
|
|
1440
1436
|
}], emit: [{
|
|
@@ -2220,4003 +2216,979 @@ const BUBBLECHART_MOCK = {
|
|
|
2220
2216
|
data: [
|
|
2221
2217
|
{
|
|
2222
2218
|
entity: {
|
|
2223
|
-
id: '
|
|
2224
|
-
label: '
|
|
2225
|
-
typeOfEntity: '
|
|
2219
|
+
id: '8b7329a1-832c-4b81-b6c7-6714c0a932cd',
|
|
2220
|
+
label: 'design',
|
|
2221
|
+
typeOfEntity: 'cosa notevole'
|
|
2226
2222
|
},
|
|
2227
|
-
count:
|
|
2223
|
+
count: 3266
|
|
2228
2224
|
},
|
|
2229
2225
|
{
|
|
2230
2226
|
entity: {
|
|
2231
|
-
id: '
|
|
2232
|
-
label: '
|
|
2233
|
-
typeOfEntity: '
|
|
2227
|
+
id: 'a1071c15-12ad-4e9f-ae78-d82ff8da9de3',
|
|
2228
|
+
label: 'Elio Mari',
|
|
2229
|
+
typeOfEntity: 'persona'
|
|
2234
2230
|
},
|
|
2235
|
-
count:
|
|
2231
|
+
count: 1948
|
|
2236
2232
|
},
|
|
2237
2233
|
{
|
|
2238
2234
|
entity: {
|
|
2239
|
-
id: '
|
|
2240
|
-
label: '
|
|
2235
|
+
id: 'f88c0695-d48d-4299-b3f7-15dfa62d64eb',
|
|
2236
|
+
label: 'Danese',
|
|
2241
2237
|
typeOfEntity: 'organizzazione'
|
|
2242
2238
|
},
|
|
2243
|
-
count:
|
|
2239
|
+
count: 1826
|
|
2244
2240
|
},
|
|
2245
2241
|
{
|
|
2246
2242
|
entity: {
|
|
2247
|
-
id: '
|
|
2248
|
-
label:
|
|
2243
|
+
id: '9d69e9ab-5e62-420d-817d-a5a399a835d4',
|
|
2244
|
+
label: 'Artemide',
|
|
2249
2245
|
typeOfEntity: 'organizzazione'
|
|
2250
2246
|
},
|
|
2251
|
-
count:
|
|
2247
|
+
count: 628
|
|
2252
2248
|
},
|
|
2253
2249
|
{
|
|
2254
2250
|
entity: {
|
|
2255
|
-
id: '
|
|
2256
|
-
label:
|
|
2251
|
+
id: 'c5b2436c-ed74-49b7-9fb0-7bd1a3bd1d09',
|
|
2252
|
+
label: 'Driade',
|
|
2257
2253
|
typeOfEntity: 'organizzazione'
|
|
2258
2254
|
},
|
|
2259
2255
|
count: 577
|
|
2260
2256
|
},
|
|
2261
2257
|
{
|
|
2262
2258
|
entity: {
|
|
2263
|
-
id: '
|
|
2264
|
-
label:
|
|
2265
|
-
typeOfEntity: '
|
|
2259
|
+
id: 'ec84b4d9-b811-4bb5-b42e-f9978f7a547b',
|
|
2260
|
+
label: 'design per bambini',
|
|
2261
|
+
typeOfEntity: 'cosa notevole'
|
|
2266
2262
|
},
|
|
2267
|
-
count:
|
|
2263
|
+
count: 556
|
|
2268
2264
|
},
|
|
2269
2265
|
{
|
|
2270
2266
|
entity: {
|
|
2271
|
-
id: '
|
|
2272
|
-
label: '
|
|
2267
|
+
id: 'afbdae39-adf5-4fc8-805f-712a39955372',
|
|
2268
|
+
label: 'allegorie',
|
|
2273
2269
|
typeOfEntity: 'cosa notevole'
|
|
2274
2270
|
},
|
|
2275
|
-
count:
|
|
2271
|
+
count: 517
|
|
2276
2272
|
},
|
|
2277
2273
|
{
|
|
2278
2274
|
entity: {
|
|
2279
|
-
id: '
|
|
2280
|
-
label: '
|
|
2281
|
-
typeOfEntity: '
|
|
2275
|
+
id: 'ae8ae452-18b5-4999-a3d9-2b4f9c174ae9',
|
|
2276
|
+
label: 'Sistema di illuminazione Sistema aggregato',
|
|
2277
|
+
typeOfEntity: 'cosa notevole'
|
|
2282
2278
|
},
|
|
2283
|
-
count:
|
|
2279
|
+
count: 466
|
|
2284
2280
|
},
|
|
2285
2281
|
{
|
|
2286
2282
|
entity: {
|
|
2287
|
-
id: '
|
|
2288
|
-
label: '
|
|
2289
|
-
typeOfEntity: '
|
|
2283
|
+
id: 'dd7cd2bd-3f98-488c-acff-d5a71f3c1638',
|
|
2284
|
+
label: 'Sistema aggregato',
|
|
2285
|
+
typeOfEntity: 'cosa notevole'
|
|
2290
2286
|
},
|
|
2291
|
-
count:
|
|
2287
|
+
count: 466
|
|
2292
2288
|
},
|
|
2293
2289
|
{
|
|
2294
2290
|
entity: {
|
|
2295
|
-
id: '
|
|
2296
|
-
label: '
|
|
2297
|
-
typeOfEntity: '
|
|
2291
|
+
id: '9c308ce3-5cf5-4bdd-b4a8-52a656929fcc',
|
|
2292
|
+
label: 'Giancarlo Fassina',
|
|
2293
|
+
typeOfEntity: 'persona'
|
|
2298
2294
|
},
|
|
2299
|
-
count:
|
|
2295
|
+
count: 466
|
|
2300
2296
|
},
|
|
2301
2297
|
{
|
|
2302
2298
|
entity: {
|
|
2303
|
-
id: '
|
|
2304
|
-
label: '
|
|
2305
|
-
typeOfEntity: '
|
|
2299
|
+
id: '02ae7008-2b2d-4c91-b033-9aecdf051be0',
|
|
2300
|
+
label: 'Daynight',
|
|
2301
|
+
typeOfEntity: 'cosa notevole'
|
|
2306
2302
|
},
|
|
2307
|
-
count:
|
|
2303
|
+
count: 444
|
|
2308
2304
|
},
|
|
2309
2305
|
{
|
|
2310
2306
|
entity: {
|
|
2311
|
-
id: '
|
|
2312
|
-
label: '
|
|
2307
|
+
id: '82c0e881-a81c-4dd4-b784-1be81a074559',
|
|
2308
|
+
label: 'Divano letto Day-night',
|
|
2313
2309
|
typeOfEntity: 'cosa notevole'
|
|
2314
2310
|
},
|
|
2315
|
-
count:
|
|
2311
|
+
count: 444
|
|
2316
2312
|
},
|
|
2317
2313
|
{
|
|
2318
2314
|
entity: {
|
|
2319
|
-
id: '
|
|
2320
|
-
label: '
|
|
2315
|
+
id: 'ecc2552e-f2db-4ff1-86de-5a7ea0296c5f',
|
|
2316
|
+
label: 'Letto divano',
|
|
2321
2317
|
typeOfEntity: 'cosa notevole'
|
|
2322
2318
|
},
|
|
2323
|
-
count:
|
|
2319
|
+
count: 444
|
|
2324
2320
|
},
|
|
2325
2321
|
{
|
|
2326
2322
|
entity: {
|
|
2327
|
-
id: '
|
|
2328
|
-
label: '
|
|
2323
|
+
id: 'c826129c-6373-402e-9a56-8e7121e2851e',
|
|
2324
|
+
label: 'arte',
|
|
2329
2325
|
typeOfEntity: 'cosa notevole'
|
|
2330
2326
|
},
|
|
2331
|
-
count:
|
|
2327
|
+
count: 358
|
|
2332
2328
|
},
|
|
2333
2329
|
{
|
|
2334
2330
|
entity: {
|
|
2335
|
-
id: '
|
|
2336
|
-
label: '
|
|
2337
|
-
typeOfEntity: '
|
|
2331
|
+
id: 'ba0c6441-277c-4139-8da7-c60624038726',
|
|
2332
|
+
label: 'grafica editoriale',
|
|
2333
|
+
typeOfEntity: 'cosa notevole'
|
|
2338
2334
|
},
|
|
2339
|
-
count:
|
|
2335
|
+
count: 330
|
|
2340
2336
|
},
|
|
2341
2337
|
{
|
|
2342
2338
|
entity: {
|
|
2343
|
-
id: '
|
|
2344
|
-
label: '
|
|
2339
|
+
id: '158a2ad8-88a2-4352-82a6-a8f3d998e6a1',
|
|
2340
|
+
label: "Proposta per un'autoprogettazione di mobili",
|
|
2345
2341
|
typeOfEntity: 'cosa notevole'
|
|
2346
2342
|
},
|
|
2347
|
-
count:
|
|
2343
|
+
count: 281
|
|
2348
2344
|
},
|
|
2349
2345
|
{
|
|
2350
2346
|
entity: {
|
|
2351
|
-
id: '
|
|
2352
|
-
label: '
|
|
2353
|
-
typeOfEntity: '
|
|
2347
|
+
id: 'd78b4701-6ce9-4bb5-a9ed-3de3aebabcd2',
|
|
2348
|
+
label: 'Mobili inchiodati',
|
|
2349
|
+
typeOfEntity: 'cosa notevole'
|
|
2354
2350
|
},
|
|
2355
|
-
count:
|
|
2351
|
+
count: 281
|
|
2356
2352
|
},
|
|
2357
2353
|
{
|
|
2358
2354
|
entity: {
|
|
2359
|
-
id: '
|
|
2360
|
-
label:
|
|
2361
|
-
typeOfEntity: '
|
|
2355
|
+
id: 'e2922713-222d-4a02-9891-ef503fdde811',
|
|
2356
|
+
label: "Proposta per un'autoprogettazione",
|
|
2357
|
+
typeOfEntity: 'cosa notevole'
|
|
2362
2358
|
},
|
|
2363
|
-
count:
|
|
2359
|
+
count: 281
|
|
2364
2360
|
},
|
|
2365
2361
|
{
|
|
2366
2362
|
entity: {
|
|
2367
|
-
id: '
|
|
2368
|
-
label: '
|
|
2369
|
-
typeOfEntity: '
|
|
2363
|
+
id: '7a64fd39-e99b-4630-a5fe-096002befcf2',
|
|
2364
|
+
label: 'Simon international',
|
|
2365
|
+
typeOfEntity: 'organizzazione'
|
|
2370
2366
|
},
|
|
2371
|
-
count:
|
|
2367
|
+
count: 281
|
|
2372
2368
|
},
|
|
2373
2369
|
{
|
|
2374
2370
|
entity: {
|
|
2375
|
-
id: '
|
|
2376
|
-
label: '
|
|
2377
|
-
typeOfEntity: '
|
|
2371
|
+
id: '50cbfc53-0654-4056-9569-d7c0ba2195ee',
|
|
2372
|
+
label: 'Boringhieri',
|
|
2373
|
+
typeOfEntity: 'organizzazione'
|
|
2378
2374
|
},
|
|
2379
|
-
count:
|
|
2375
|
+
count: 257
|
|
2380
2376
|
},
|
|
2381
2377
|
{
|
|
2382
2378
|
entity: {
|
|
2383
|
-
id: '
|
|
2384
|
-
label: '
|
|
2385
|
-
typeOfEntity: '
|
|
2379
|
+
id: 'c3ac744e-fa96-434c-87df-c894ad829726',
|
|
2380
|
+
label: 'Esperanza Nunez',
|
|
2381
|
+
typeOfEntity: 'persona'
|
|
2386
2382
|
},
|
|
2387
|
-
count:
|
|
2383
|
+
count: 216
|
|
2388
2384
|
},
|
|
2389
2385
|
{
|
|
2390
2386
|
entity: {
|
|
2391
|
-
id: '
|
|
2392
|
-
label: '
|
|
2393
|
-
typeOfEntity: '
|
|
2387
|
+
id: '81f9c089-8e50-46dc-b79d-4958fab77d13',
|
|
2388
|
+
label: 'Gavina',
|
|
2389
|
+
typeOfEntity: 'organizzazione'
|
|
2394
2390
|
},
|
|
2395
|
-
count:
|
|
2391
|
+
count: 215
|
|
2396
2392
|
},
|
|
2397
2393
|
{
|
|
2398
2394
|
entity: {
|
|
2399
|
-
id: '
|
|
2400
|
-
label: '
|
|
2401
|
-
typeOfEntity: '
|
|
2395
|
+
id: '0351e100-6b64-41dc-932c-d76c4e965b69',
|
|
2396
|
+
label: 'mostre',
|
|
2397
|
+
typeOfEntity: 'cosa notevole'
|
|
2402
2398
|
},
|
|
2403
|
-
count:
|
|
2399
|
+
count: 206
|
|
2404
2400
|
},
|
|
2405
2401
|
{
|
|
2406
2402
|
entity: {
|
|
2407
|
-
id: '
|
|
2408
|
-
label: '
|
|
2403
|
+
id: '47b9fc50-f27a-4bb2-bc12-e4abacd94e6d',
|
|
2404
|
+
label: 'Copertine della collana Universale Scientifica',
|
|
2409
2405
|
typeOfEntity: 'cosa notevole'
|
|
2410
2406
|
},
|
|
2411
|
-
count:
|
|
2407
|
+
count: 199
|
|
2412
2408
|
},
|
|
2413
2409
|
{
|
|
2414
2410
|
entity: {
|
|
2415
|
-
id: '
|
|
2416
|
-
label: '
|
|
2417
|
-
typeOfEntity: '
|
|
2411
|
+
id: '3fdf0dd4-fec1-487f-944f-c5d4a5d0e8c8',
|
|
2412
|
+
label: 'Centro Studi e Archivio della Comunicazione (CSAC)',
|
|
2413
|
+
typeOfEntity: 'organizzazione'
|
|
2418
2414
|
},
|
|
2419
|
-
count:
|
|
2415
|
+
count: 198
|
|
2420
2416
|
},
|
|
2421
2417
|
{
|
|
2422
2418
|
entity: {
|
|
2423
|
-
id: '
|
|
2424
|
-
label: '
|
|
2419
|
+
id: '66876e19-2885-4fc7-b2a9-61a66f4dae86',
|
|
2420
|
+
label: 'Enzo Mari',
|
|
2425
2421
|
typeOfEntity: 'persona'
|
|
2426
2422
|
},
|
|
2427
|
-
count:
|
|
2423
|
+
count: 198
|
|
2428
2424
|
},
|
|
2429
2425
|
{
|
|
2430
2426
|
entity: {
|
|
2431
|
-
id: '
|
|
2432
|
-
label: '
|
|
2433
|
-
typeOfEntity: '
|
|
2427
|
+
id: '23f43960-aee3-44d6-9ee1-5a1e7be2c024',
|
|
2428
|
+
label: 'Design e design, progetto della mostra e catalogo',
|
|
2429
|
+
typeOfEntity: 'cosa notevole'
|
|
2434
2430
|
},
|
|
2435
|
-
count:
|
|
2431
|
+
count: 197
|
|
2436
2432
|
},
|
|
2437
2433
|
{
|
|
2438
2434
|
entity: {
|
|
2439
|
-
id: '
|
|
2440
|
-
label: '
|
|
2435
|
+
id: 'f63fa61b-1915-4518-8236-3844f4bd4fbd',
|
|
2436
|
+
label: 'Design e design',
|
|
2441
2437
|
typeOfEntity: 'cosa notevole'
|
|
2442
2438
|
},
|
|
2443
|
-
count:
|
|
2439
|
+
count: 197
|
|
2444
2440
|
},
|
|
2445
2441
|
{
|
|
2446
2442
|
entity: {
|
|
2447
|
-
id: '
|
|
2448
|
-
label: '
|
|
2449
|
-
typeOfEntity: '
|
|
2443
|
+
id: '96f3344e-324c-4df3-8a46-811b0732d2c4',
|
|
2444
|
+
label: 'Atlante secondo Lenin',
|
|
2445
|
+
typeOfEntity: 'cosa notevole'
|
|
2450
2446
|
},
|
|
2451
|
-
count:
|
|
2447
|
+
count: 174
|
|
2452
2448
|
},
|
|
2453
2449
|
{
|
|
2454
2450
|
entity: {
|
|
2455
|
-
id: '
|
|
2456
|
-
label: '
|
|
2457
|
-
typeOfEntity: '
|
|
2451
|
+
id: 'f480886a-dbf1-4eeb-adaf-4cfaa7aeeaa2',
|
|
2452
|
+
label: 'Processi rivoluzionari',
|
|
2453
|
+
typeOfEntity: 'cosa notevole'
|
|
2458
2454
|
},
|
|
2459
|
-
count:
|
|
2455
|
+
count: 174
|
|
2460
2456
|
},
|
|
2461
2457
|
{
|
|
2462
2458
|
entity: {
|
|
2463
|
-
id: '
|
|
2464
|
-
label: "
|
|
2459
|
+
id: '02081f1d-82a4-4bf9-969a-10747e39badf',
|
|
2460
|
+
label: "Edizioni L'Erba Voglio, Milano",
|
|
2465
2461
|
typeOfEntity: 'organizzazione'
|
|
2466
2462
|
},
|
|
2467
|
-
count:
|
|
2463
|
+
count: 174
|
|
2468
2464
|
},
|
|
2469
2465
|
{
|
|
2470
2466
|
entity: {
|
|
2471
|
-
id: '
|
|
2472
|
-
label: '
|
|
2467
|
+
id: 'd28644e4-6e1e-4cb9-b798-b3a3935929a0',
|
|
2468
|
+
label: 'Francesco Leonetti',
|
|
2473
2469
|
typeOfEntity: 'persona'
|
|
2474
2470
|
},
|
|
2475
|
-
count:
|
|
2471
|
+
count: 174
|
|
2476
2472
|
},
|
|
2477
2473
|
{
|
|
2478
2474
|
entity: {
|
|
2479
|
-
id: '
|
|
2480
|
-
label: '
|
|
2475
|
+
id: 'dd8c1f47-d061-4b76-b61e-199d3f703266',
|
|
2476
|
+
label: 'Divano continuo semirigido',
|
|
2481
2477
|
typeOfEntity: 'cosa notevole'
|
|
2482
2478
|
},
|
|
2483
|
-
count:
|
|
2479
|
+
count: 162
|
|
2484
2480
|
},
|
|
2485
2481
|
{
|
|
2486
2482
|
entity: {
|
|
2487
|
-
id: '
|
|
2488
|
-
label: '
|
|
2483
|
+
id: '71f4c1c9-3fa0-48d7-8da6-f766072e5d95',
|
|
2484
|
+
label: '16 pesci',
|
|
2489
2485
|
typeOfEntity: 'cosa notevole'
|
|
2490
2486
|
},
|
|
2491
|
-
count:
|
|
2487
|
+
count: 149
|
|
2492
2488
|
},
|
|
2493
2489
|
{
|
|
2494
2490
|
entity: {
|
|
2495
|
-
id: '
|
|
2496
|
-
label: '
|
|
2497
|
-
typeOfEntity: 'organizzazione'
|
|
2498
|
-
},
|
|
2499
|
-
count: 152
|
|
2500
|
-
},
|
|
2501
|
-
{
|
|
2502
|
-
entity: {
|
|
2503
|
-
id: 'd06b5c00-b902-4f26-b0de-b3d85d656c3b',
|
|
2504
|
-
label: 'Corrias, Alfredo',
|
|
2505
|
-
typeOfEntity: 'persona'
|
|
2506
|
-
},
|
|
2507
|
-
count: 152
|
|
2508
|
-
},
|
|
2509
|
-
{
|
|
2510
|
-
entity: {
|
|
2511
|
-
id: '65ca4105-dcbb-46c8-b852-d5d86eeada8c',
|
|
2512
|
-
label: 'locali - uffici',
|
|
2491
|
+
id: '43ef411c-1d1e-4ae8-acd6-dfc0abccdb55',
|
|
2492
|
+
label: 'Portacenere a griglia bilanciata',
|
|
2513
2493
|
typeOfEntity: 'cosa notevole'
|
|
2514
2494
|
},
|
|
2515
|
-
count:
|
|
2495
|
+
count: 131
|
|
2516
2496
|
},
|
|
2517
2497
|
{
|
|
2518
2498
|
entity: {
|
|
2519
|
-
id: '
|
|
2520
|
-
label: '
|
|
2521
|
-
typeOfEntity: '
|
|
2499
|
+
id: '630786d3-bce1-4c20-8a3b-00f1bdade87b',
|
|
2500
|
+
label: 'Portacenere Griglia – da tavolo, da muro, da terra',
|
|
2501
|
+
typeOfEntity: 'cosa notevole'
|
|
2522
2502
|
},
|
|
2523
|
-
count:
|
|
2503
|
+
count: 131
|
|
2524
2504
|
},
|
|
2525
2505
|
{
|
|
2526
2506
|
entity: {
|
|
2527
|
-
id: '
|
|
2528
|
-
label: '
|
|
2507
|
+
id: 'ffbca81e-5d67-47f7-a2d8-4564de32e857',
|
|
2508
|
+
label: 'Portacenere da tavolo, da muro, da terra Griglia',
|
|
2529
2509
|
typeOfEntity: 'cosa notevole'
|
|
2530
2510
|
},
|
|
2531
2511
|
count: 131
|
|
2532
2512
|
},
|
|
2533
2513
|
{
|
|
2534
2514
|
entity: {
|
|
2535
|
-
id: '
|
|
2536
|
-
label: '
|
|
2537
|
-
typeOfEntity: '
|
|
2515
|
+
id: '3cb26fd8-6997-410a-82d4-d9c4f124681a',
|
|
2516
|
+
label: 'Libreria componibile Glifo in plastica',
|
|
2517
|
+
typeOfEntity: 'cosa notevole'
|
|
2538
2518
|
},
|
|
2539
|
-
count:
|
|
2519
|
+
count: 121
|
|
2540
2520
|
},
|
|
2541
2521
|
{
|
|
2542
2522
|
entity: {
|
|
2543
|
-
id: '
|
|
2544
|
-
label: '
|
|
2545
|
-
typeOfEntity: '
|
|
2523
|
+
id: '69c99a94-1aa7-47a7-aaab-3e732c406b80',
|
|
2524
|
+
label: 'Libreria Glifo',
|
|
2525
|
+
typeOfEntity: 'cosa notevole'
|
|
2546
2526
|
},
|
|
2547
|
-
count:
|
|
2527
|
+
count: 121
|
|
2548
2528
|
},
|
|
2549
2529
|
{
|
|
2550
2530
|
entity: {
|
|
2551
|
-
id: '
|
|
2552
|
-
label: '
|
|
2553
|
-
typeOfEntity: '
|
|
2531
|
+
id: 'c651e4cf-a9d2-4439-bde0-5912a47a3293',
|
|
2532
|
+
label: 'Glifo',
|
|
2533
|
+
typeOfEntity: 'cosa notevole'
|
|
2554
2534
|
},
|
|
2555
|
-
count:
|
|
2535
|
+
count: 121
|
|
2556
2536
|
},
|
|
2557
2537
|
{
|
|
2558
2538
|
entity: {
|
|
2559
|
-
id: '
|
|
2560
|
-
label:
|
|
2561
|
-
typeOfEntity: '
|
|
2539
|
+
id: '1e060082-b317-4f82-9d35-a14cacb63afe',
|
|
2540
|
+
label: 'Libri bambini',
|
|
2541
|
+
typeOfEntity: 'cosa notevole'
|
|
2562
2542
|
},
|
|
2563
|
-
count:
|
|
2543
|
+
count: 118
|
|
2564
2544
|
},
|
|
2565
2545
|
{
|
|
2566
2546
|
entity: {
|
|
2567
|
-
id: '
|
|
2568
|
-
label: '
|
|
2547
|
+
id: '49b37899-6d9f-4075-a2e1-cc0ab5b0a3d0',
|
|
2548
|
+
label: 'Carte da disegno 1, 2, 3, 4, 5',
|
|
2569
2549
|
typeOfEntity: 'cosa notevole'
|
|
2570
2550
|
},
|
|
2571
|
-
count:
|
|
2551
|
+
count: 118
|
|
2572
2552
|
},
|
|
2573
2553
|
{
|
|
2574
2554
|
entity: {
|
|
2575
|
-
id: '
|
|
2576
|
-
label: '
|
|
2577
|
-
typeOfEntity: '
|
|
2555
|
+
id: '9130a6c0-9159-4121-a87d-fbd211833407',
|
|
2556
|
+
label: 'Album da disegno',
|
|
2557
|
+
typeOfEntity: 'cosa notevole'
|
|
2578
2558
|
},
|
|
2579
|
-
count:
|
|
2559
|
+
count: 118
|
|
2580
2560
|
},
|
|
2581
2561
|
{
|
|
2582
2562
|
entity: {
|
|
2583
|
-
id: '
|
|
2584
|
-
label: '
|
|
2563
|
+
id: '70279330-5514-4f72-bf5d-babccf8e4f97',
|
|
2564
|
+
label: 'Sedia Sof-Sof con struttura in tondino di ferro',
|
|
2585
2565
|
typeOfEntity: 'cosa notevole'
|
|
2586
2566
|
},
|
|
2587
|
-
count:
|
|
2567
|
+
count: 108
|
|
2588
2568
|
},
|
|
2589
2569
|
{
|
|
2590
2570
|
entity: {
|
|
2591
|
-
id: '
|
|
2592
|
-
label: '
|
|
2571
|
+
id: '96c34848-fde2-4423-bdc8-da96b0d00a63',
|
|
2572
|
+
label: 'Sof-Sof-Chair',
|
|
2593
2573
|
typeOfEntity: 'cosa notevole'
|
|
2594
2574
|
},
|
|
2595
|
-
count:
|
|
2575
|
+
count: 108
|
|
2596
2576
|
},
|
|
2597
2577
|
{
|
|
2598
2578
|
entity: {
|
|
2599
|
-
id: '
|
|
2600
|
-
label: '
|
|
2601
|
-
typeOfEntity: '
|
|
2579
|
+
id: '137882b0-756e-451c-8042-dd33dc61bcc6',
|
|
2580
|
+
label: 'Il posto dei giochi',
|
|
2581
|
+
typeOfEntity: 'cosa notevole'
|
|
2602
2582
|
},
|
|
2603
|
-
count:
|
|
2583
|
+
count: 103
|
|
2604
2584
|
},
|
|
2605
2585
|
{
|
|
2606
2586
|
entity: {
|
|
2607
|
-
id: '
|
|
2608
|
-
label: '
|
|
2587
|
+
id: '141f0d49-7b28-45bb-a00b-e2983f25bdd6',
|
|
2588
|
+
label: 'Pannelli componibili',
|
|
2609
2589
|
typeOfEntity: 'cosa notevole'
|
|
2610
2590
|
},
|
|
2611
|
-
count:
|
|
2591
|
+
count: 103
|
|
2612
2592
|
},
|
|
2613
2593
|
{
|
|
2614
2594
|
entity: {
|
|
2615
|
-
id: '
|
|
2616
|
-
label: '
|
|
2617
|
-
typeOfEntity: '
|
|
2595
|
+
id: '65b1991e-0c00-4109-b25a-4da18762c0aa',
|
|
2596
|
+
label: 'Il posto dei giochi, gioco didattico costituito da pannelli piegabili in cartone fustellato',
|
|
2597
|
+
typeOfEntity: 'cosa notevole'
|
|
2618
2598
|
},
|
|
2619
|
-
count:
|
|
2599
|
+
count: 103
|
|
2620
2600
|
},
|
|
2621
2601
|
{
|
|
2622
2602
|
entity: {
|
|
2623
|
-
id: '
|
|
2624
|
-
label: '
|
|
2625
|
-
typeOfEntity: '
|
|
2603
|
+
id: '3789efa3-6de1-4f51-af78-f94f4646977d',
|
|
2604
|
+
label: 'Divano in poliuretano tagliato e poltrona con telaio in lamiera stampata',
|
|
2605
|
+
typeOfEntity: 'cosa notevole'
|
|
2626
2606
|
},
|
|
2627
|
-
count:
|
|
2607
|
+
count: 94
|
|
2628
2608
|
},
|
|
2629
2609
|
{
|
|
2630
2610
|
entity: {
|
|
2631
|
-
id: '
|
|
2632
|
-
label: '
|
|
2633
|
-
typeOfEntity: '
|
|
2611
|
+
id: 'd547e543-6203-47f9-9436-efc4fc296466',
|
|
2612
|
+
label: 'Divano e poltrona',
|
|
2613
|
+
typeOfEntity: 'cosa notevole'
|
|
2634
2614
|
},
|
|
2635
|
-
count:
|
|
2615
|
+
count: 94
|
|
2636
2616
|
},
|
|
2637
2617
|
{
|
|
2638
2618
|
entity: {
|
|
2639
|
-
id: '
|
|
2640
|
-
label: '
|
|
2641
|
-
typeOfEntity: '
|
|
2619
|
+
id: 'c434a6d1-523b-40c0-b8df-08766e3a9c6d',
|
|
2620
|
+
label: 'Fiorio',
|
|
2621
|
+
typeOfEntity: 'organizzazione'
|
|
2642
2622
|
},
|
|
2643
|
-
count:
|
|
2623
|
+
count: 93
|
|
2644
2624
|
},
|
|
2645
2625
|
{
|
|
2646
2626
|
entity: {
|
|
2647
|
-
id: '
|
|
2648
|
-
label: '
|
|
2649
|
-
typeOfEntity: '
|
|
2627
|
+
id: 'c362437a-4a0d-4474-99f8-1a8829819bb3',
|
|
2628
|
+
label: 'allestimenti',
|
|
2629
|
+
typeOfEntity: 'cosa notevole'
|
|
2650
2630
|
},
|
|
2651
2631
|
count: 92
|
|
2652
2632
|
},
|
|
2653
2633
|
{
|
|
2654
2634
|
entity: {
|
|
2655
|
-
id: '
|
|
2656
|
-
label: '
|
|
2657
|
-
typeOfEntity: '
|
|
2658
|
-
},
|
|
2659
|
-
count: 91
|
|
2660
|
-
},
|
|
2661
|
-
{
|
|
2662
|
-
entity: {
|
|
2663
|
-
id: '0255d72b-9f79-4ca1-a23a-6fae27b92f06',
|
|
2664
|
-
label: 'Cerioni, Agostino',
|
|
2665
|
-
typeOfEntity: 'persona'
|
|
2635
|
+
id: 'b6ed3006-b857-401e-b85b-402451be011d',
|
|
2636
|
+
label: 'Olivetti',
|
|
2637
|
+
typeOfEntity: 'organizzazione'
|
|
2666
2638
|
},
|
|
2667
|
-
count:
|
|
2639
|
+
count: 90
|
|
2668
2640
|
},
|
|
2669
2641
|
{
|
|
2670
2642
|
entity: {
|
|
2671
|
-
id: '
|
|
2672
|
-
label: '
|
|
2673
|
-
typeOfEntity: '
|
|
2643
|
+
id: 'c5b25adc-6bba-4863-a5c0-0d2a226d1a55',
|
|
2644
|
+
label: 'Anonima Castelli',
|
|
2645
|
+
typeOfEntity: 'organizzazione'
|
|
2674
2646
|
},
|
|
2675
|
-
count:
|
|
2647
|
+
count: 90
|
|
2676
2648
|
},
|
|
2677
2649
|
{
|
|
2678
2650
|
entity: {
|
|
2679
|
-
id: '
|
|
2680
|
-
label: '
|
|
2651
|
+
id: 'b2283dd3-19c6-45e9-ae8d-7df896cf0917',
|
|
2652
|
+
label: 'Serie della natura n. 9: cephalantus occidentalis',
|
|
2681
2653
|
typeOfEntity: 'cosa notevole'
|
|
2682
2654
|
},
|
|
2683
|
-
count:
|
|
2655
|
+
count: 87
|
|
2684
2656
|
},
|
|
2685
2657
|
{
|
|
2686
2658
|
entity: {
|
|
2687
|
-
id: '
|
|
2688
|
-
label: '
|
|
2659
|
+
id: '3ffbd23c-b66d-4b0c-bdb3-a2647fb22c93',
|
|
2660
|
+
label: 'Samos',
|
|
2689
2661
|
typeOfEntity: 'cosa notevole'
|
|
2690
2662
|
},
|
|
2691
|
-
count:
|
|
2663
|
+
count: 85
|
|
2692
2664
|
},
|
|
2693
2665
|
{
|
|
2694
2666
|
entity: {
|
|
2695
|
-
id: '
|
|
2696
|
-
label: '
|
|
2697
|
-
typeOfEntity: '
|
|
2667
|
+
id: '4188fa2a-b59a-4000-9bd7-f8dbabf1bfc7',
|
|
2668
|
+
label: 'Sedia Box in plastica',
|
|
2669
|
+
typeOfEntity: 'cosa notevole'
|
|
2698
2670
|
},
|
|
2699
|
-
count:
|
|
2671
|
+
count: 85
|
|
2700
2672
|
},
|
|
2701
2673
|
{
|
|
2702
2674
|
entity: {
|
|
2703
|
-
id: '
|
|
2704
|
-
label: '
|
|
2705
|
-
typeOfEntity: '
|
|
2675
|
+
id: '463ab430-469b-4c86-8fb3-213cb0e3a490',
|
|
2676
|
+
label: 'Una proposta per la lavorazione a mano della porcellana Samos',
|
|
2677
|
+
typeOfEntity: 'cosa notevole'
|
|
2706
2678
|
},
|
|
2707
|
-
count:
|
|
2679
|
+
count: 85
|
|
2708
2680
|
},
|
|
2709
2681
|
{
|
|
2710
2682
|
entity: {
|
|
2711
|
-
id: '
|
|
2712
|
-
label: '
|
|
2683
|
+
id: '57aa2828-ad56-4169-a27d-75bf895af2a7',
|
|
2684
|
+
label: 'Sedia Box',
|
|
2713
2685
|
typeOfEntity: 'cosa notevole'
|
|
2714
2686
|
},
|
|
2715
|
-
count:
|
|
2687
|
+
count: 85
|
|
2716
2688
|
},
|
|
2717
2689
|
{
|
|
2718
2690
|
entity: {
|
|
2719
|
-
id: '
|
|
2720
|
-
label: '
|
|
2691
|
+
id: 'd3a054ac-e566-416d-ad38-7752145b7651',
|
|
2692
|
+
label: 'Sedia smontabile',
|
|
2721
2693
|
typeOfEntity: 'cosa notevole'
|
|
2722
2694
|
},
|
|
2723
|
-
count:
|
|
2695
|
+
count: 85
|
|
2724
2696
|
},
|
|
2725
2697
|
{
|
|
2726
2698
|
entity: {
|
|
2727
|
-
id: '
|
|
2728
|
-
label: '
|
|
2699
|
+
id: '9651c1a6-6393-435e-9ab2-0eff6892e497',
|
|
2700
|
+
label: '2 copertine Universale Scientifica',
|
|
2729
2701
|
typeOfEntity: 'cosa notevole'
|
|
2730
2702
|
},
|
|
2731
|
-
count:
|
|
2703
|
+
count: 84
|
|
2732
2704
|
},
|
|
2733
2705
|
{
|
|
2734
2706
|
entity: {
|
|
2735
|
-
id: '
|
|
2736
|
-
label: '
|
|
2707
|
+
id: 'cd5aff30-f40a-4524-a11e-bb9912cfdaa3',
|
|
2708
|
+
label: 'Vaso da fiori doppio Pago Pago',
|
|
2737
2709
|
typeOfEntity: 'cosa notevole'
|
|
2738
2710
|
},
|
|
2739
|
-
count:
|
|
2711
|
+
count: 77
|
|
2740
2712
|
},
|
|
2741
2713
|
{
|
|
2742
2714
|
entity: {
|
|
2743
|
-
id: '
|
|
2744
|
-
label: '
|
|
2715
|
+
id: 'edc0aa7f-e3d6-44ab-b80c-1180e5e794d5',
|
|
2716
|
+
label: 'Vaso doppio Pago-Pago',
|
|
2745
2717
|
typeOfEntity: 'cosa notevole'
|
|
2746
2718
|
},
|
|
2747
|
-
count:
|
|
2719
|
+
count: 77
|
|
2748
2720
|
},
|
|
2749
2721
|
{
|
|
2750
2722
|
entity: {
|
|
2751
|
-
id: '
|
|
2752
|
-
label: '
|
|
2753
|
-
typeOfEntity: '
|
|
2723
|
+
id: '9b233fa7-c4f3-4326-a24c-91878be9fbe0',
|
|
2724
|
+
label: 'Driade',
|
|
2725
|
+
typeOfEntity: 'organizzazione'
|
|
2754
2726
|
},
|
|
2755
|
-
count:
|
|
2727
|
+
count: 74
|
|
2756
2728
|
},
|
|
2757
2729
|
{
|
|
2758
2730
|
entity: {
|
|
2759
|
-
id: '
|
|
2760
|
-
label: '
|
|
2731
|
+
id: 'b90d0fb1-3e58-4b98-a162-fc5ce7b6dddd',
|
|
2732
|
+
label: 'Portaghiaccio Dulband in plastica e acciaio inossidabile',
|
|
2761
2733
|
typeOfEntity: 'cosa notevole'
|
|
2762
2734
|
},
|
|
2763
|
-
count:
|
|
2735
|
+
count: 64
|
|
2764
2736
|
},
|
|
2765
2737
|
{
|
|
2766
2738
|
entity: {
|
|
2767
|
-
id: '
|
|
2768
|
-
label: '
|
|
2739
|
+
id: 'f9b5a245-798d-4ee7-8e5d-3aa02b9ad7a0',
|
|
2740
|
+
label: 'Portaghiaccio Dulband',
|
|
2769
2741
|
typeOfEntity: 'cosa notevole'
|
|
2770
2742
|
},
|
|
2771
|
-
count:
|
|
2743
|
+
count: 64
|
|
2772
2744
|
},
|
|
2773
2745
|
{
|
|
2774
2746
|
entity: {
|
|
2775
|
-
id: '
|
|
2776
|
-
label: '
|
|
2747
|
+
id: '588b7018-07cf-4e0b-9df2-80435e656342',
|
|
2748
|
+
label: 'Il gioco delle favole, gioco didattico',
|
|
2777
2749
|
typeOfEntity: 'cosa notevole'
|
|
2778
2750
|
},
|
|
2779
|
-
count:
|
|
2751
|
+
count: 58
|
|
2780
2752
|
},
|
|
2781
2753
|
{
|
|
2782
2754
|
entity: {
|
|
2783
|
-
id: '
|
|
2784
|
-
label: '
|
|
2785
|
-
typeOfEntity: '
|
|
2755
|
+
id: '059f386c-2e76-4c47-a238-9024eb8e962b',
|
|
2756
|
+
label: 'Mario Ballocco',
|
|
2757
|
+
typeOfEntity: 'persona'
|
|
2786
2758
|
},
|
|
2787
|
-
count:
|
|
2759
|
+
count: 55
|
|
2788
2760
|
},
|
|
2789
2761
|
{
|
|
2790
2762
|
entity: {
|
|
2791
|
-
id: '
|
|
2792
|
-
label: '
|
|
2793
|
-
typeOfEntity: '
|
|
2763
|
+
id: 'f1c48d9d-9269-403e-b7d4-ee4772cc6d55',
|
|
2764
|
+
label: 'Emme Edizioni',
|
|
2765
|
+
typeOfEntity: 'organizzazione'
|
|
2794
2766
|
},
|
|
2795
|
-
count:
|
|
2767
|
+
count: 54
|
|
2796
2768
|
},
|
|
2797
2769
|
{
|
|
2798
2770
|
entity: {
|
|
2799
|
-
id: '
|
|
2800
|
-
label: '
|
|
2801
|
-
typeOfEntity: '
|
|
2771
|
+
id: 'e094bd13-4f1d-4a84-a5d1-4415aa7ef191',
|
|
2772
|
+
label: 'Bonifica',
|
|
2773
|
+
typeOfEntity: 'organizzazione'
|
|
2802
2774
|
},
|
|
2803
|
-
count:
|
|
2775
|
+
count: 51
|
|
2804
2776
|
},
|
|
2805
2777
|
{
|
|
2806
2778
|
entity: {
|
|
2807
|
-
id: '
|
|
2808
|
-
label: '
|
|
2779
|
+
id: 'b58e6f7f-17eb-4405-b25e-b797dbdaa2a5',
|
|
2780
|
+
label: 'Andrea Rovatti',
|
|
2809
2781
|
typeOfEntity: 'persona'
|
|
2810
2782
|
},
|
|
2811
|
-
count:
|
|
2783
|
+
count: 48
|
|
2812
2784
|
},
|
|
2813
2785
|
{
|
|
2814
2786
|
entity: {
|
|
2815
|
-
id: '
|
|
2816
|
-
label: '
|
|
2817
|
-
typeOfEntity: '
|
|
2787
|
+
id: '9de62a57-3a8c-4bb1-859e-1fc2acc21ecb',
|
|
2788
|
+
label: 'Vicom casa',
|
|
2789
|
+
typeOfEntity: 'organizzazione'
|
|
2818
2790
|
},
|
|
2819
|
-
count:
|
|
2791
|
+
count: 47
|
|
2820
2792
|
},
|
|
2821
2793
|
{
|
|
2822
2794
|
entity: {
|
|
2823
|
-
id: '
|
|
2824
|
-
label:
|
|
2825
|
-
typeOfEntity: '
|
|
2795
|
+
id: '8aa84057-504a-4bd8-86f2-34c358979e65',
|
|
2796
|
+
label: 'Bompiani',
|
|
2797
|
+
typeOfEntity: 'organizzazione'
|
|
2826
2798
|
},
|
|
2827
|
-
count:
|
|
2799
|
+
count: 44
|
|
2828
2800
|
},
|
|
2829
2801
|
{
|
|
2830
2802
|
entity: {
|
|
2831
|
-
id: '
|
|
2832
|
-
label: '
|
|
2803
|
+
id: '652207ac-eb13-4a1a-a21a-d9e8a387d3e9',
|
|
2804
|
+
label: 'Monteshell/Montecatini',
|
|
2833
2805
|
typeOfEntity: 'organizzazione'
|
|
2834
2806
|
},
|
|
2835
|
-
count:
|
|
2807
|
+
count: 35
|
|
2836
2808
|
},
|
|
2837
2809
|
{
|
|
2838
2810
|
entity: {
|
|
2839
|
-
id: '
|
|
2840
|
-
label: '
|
|
2841
|
-
typeOfEntity: '
|
|
2811
|
+
id: 'f2d3d9ee-9cd8-4547-88e2-f9f45dd5f8be',
|
|
2812
|
+
label: 'Roche',
|
|
2813
|
+
typeOfEntity: 'organizzazione'
|
|
2842
2814
|
},
|
|
2843
|
-
count:
|
|
2815
|
+
count: 33
|
|
2844
2816
|
},
|
|
2845
2817
|
{
|
|
2846
2818
|
entity: {
|
|
2847
|
-
id: '
|
|
2848
|
-
label: '
|
|
2819
|
+
id: 'd7784f67-9c63-4af6-91db-014c85d43bf8',
|
|
2820
|
+
label: 'Iela Mari',
|
|
2849
2821
|
typeOfEntity: 'persona'
|
|
2850
2822
|
},
|
|
2851
|
-
count:
|
|
2823
|
+
count: 33
|
|
2852
2824
|
},
|
|
2853
2825
|
{
|
|
2854
2826
|
entity: {
|
|
2855
|
-
id: '
|
|
2856
|
-
label: '
|
|
2857
|
-
typeOfEntity: '
|
|
2827
|
+
id: 'bad4afbb-0500-449b-9ce8-81e383178bfb',
|
|
2828
|
+
label: 'Plura Edizioni',
|
|
2829
|
+
typeOfEntity: 'organizzazione'
|
|
2858
2830
|
},
|
|
2859
|
-
count:
|
|
2831
|
+
count: 32
|
|
2860
2832
|
},
|
|
2861
2833
|
{
|
|
2862
2834
|
entity: {
|
|
2863
|
-
id: '
|
|
2864
|
-
label: '
|
|
2865
|
-
typeOfEntity: '
|
|
2835
|
+
id: '501bc267-8ade-4d1d-b2d9-002b01004d86',
|
|
2836
|
+
label: 'Denbo AB',
|
|
2837
|
+
typeOfEntity: 'organizzazione'
|
|
2866
2838
|
},
|
|
2867
|
-
count:
|
|
2839
|
+
count: 31
|
|
2868
2840
|
},
|
|
2869
2841
|
{
|
|
2870
2842
|
entity: {
|
|
2871
|
-
id: '
|
|
2872
|
-
label: '
|
|
2873
|
-
typeOfEntity: '
|
|
2843
|
+
id: 'eda59d98-0ee7-414f-b440-d3f0fcf07bbb',
|
|
2844
|
+
label: 'Italo Cremona',
|
|
2845
|
+
typeOfEntity: 'organizzazione'
|
|
2874
2846
|
},
|
|
2875
|
-
count:
|
|
2847
|
+
count: 30
|
|
2876
2848
|
},
|
|
2877
2849
|
{
|
|
2878
2850
|
entity: {
|
|
2879
|
-
id: '
|
|
2880
|
-
label: '
|
|
2881
|
-
typeOfEntity: '
|
|
2851
|
+
id: 'd9db05e1-df6e-47e5-80ed-6e078ae670ea',
|
|
2852
|
+
label: 'XVI Triennale',
|
|
2853
|
+
typeOfEntity: 'organizzazione'
|
|
2882
2854
|
},
|
|
2883
|
-
count:
|
|
2855
|
+
count: 29
|
|
2884
2856
|
},
|
|
2885
2857
|
{
|
|
2886
2858
|
entity: {
|
|
2887
|
-
id: '
|
|
2888
|
-
label: '
|
|
2859
|
+
id: '11cb9572-e96b-499e-9ab4-d636678b30bf',
|
|
2860
|
+
label: 'Adelphi',
|
|
2889
2861
|
typeOfEntity: 'organizzazione'
|
|
2890
2862
|
},
|
|
2891
2863
|
count: 25
|
|
2892
2864
|
},
|
|
2893
2865
|
{
|
|
2894
2866
|
entity: {
|
|
2895
|
-
id: '
|
|
2896
|
-
label: '
|
|
2867
|
+
id: 'dd8c1ac5-897b-40b2-aa60-fedb76661fb5',
|
|
2868
|
+
label: 'III Mostra del Marmo di Carrara',
|
|
2897
2869
|
typeOfEntity: 'organizzazione'
|
|
2898
2870
|
},
|
|
2899
2871
|
count: 25
|
|
2900
2872
|
},
|
|
2901
2873
|
{
|
|
2902
2874
|
entity: {
|
|
2903
|
-
id: '
|
|
2904
|
-
label: '
|
|
2905
|
-
typeOfEntity: '
|
|
2875
|
+
id: 'f3227a70-8cac-41d1-8f29-b94be58f9843',
|
|
2876
|
+
label: 'Monteshell',
|
|
2877
|
+
typeOfEntity: 'organizzazione'
|
|
2906
2878
|
},
|
|
2907
|
-
count:
|
|
2879
|
+
count: 24
|
|
2908
2880
|
},
|
|
2909
2881
|
{
|
|
2910
2882
|
entity: {
|
|
2911
|
-
id: '
|
|
2912
|
-
label: '
|
|
2913
|
-
typeOfEntity: '
|
|
2883
|
+
id: '28dbd742-91df-444a-bdcd-dee5e3bbca4b',
|
|
2884
|
+
label: 'Tesint',
|
|
2885
|
+
typeOfEntity: 'organizzazione'
|
|
2914
2886
|
},
|
|
2915
|
-
count:
|
|
2887
|
+
count: 23
|
|
2916
2888
|
},
|
|
2917
2889
|
{
|
|
2918
2890
|
entity: {
|
|
2919
|
-
id: '
|
|
2920
|
-
label: '
|
|
2921
|
-
typeOfEntity: '
|
|
2891
|
+
id: 'bd2254ce-3b69-4833-a412-4b1e329b45eb',
|
|
2892
|
+
label: 'ICF De Padova',
|
|
2893
|
+
typeOfEntity: 'organizzazione'
|
|
2922
2894
|
},
|
|
2923
2895
|
count: 23
|
|
2924
2896
|
},
|
|
2925
2897
|
{
|
|
2926
2898
|
entity: {
|
|
2927
|
-
id: '
|
|
2928
|
-
label: '
|
|
2929
|
-
typeOfEntity: '
|
|
2899
|
+
id: '1d23fa2b-3d20-4af7-993f-084c9d347d15',
|
|
2900
|
+
label: 'Gabbianelli',
|
|
2901
|
+
typeOfEntity: 'organizzazione'
|
|
2930
2902
|
},
|
|
2931
|
-
count:
|
|
2903
|
+
count: 22
|
|
2932
2904
|
},
|
|
2933
2905
|
{
|
|
2934
2906
|
entity: {
|
|
2935
|
-
id: '
|
|
2936
|
-
label: '
|
|
2937
|
-
typeOfEntity: '
|
|
2907
|
+
id: '45f8fc1c-198a-4cad-bc6e-91bc037bc9da',
|
|
2908
|
+
label: 'Le Creuset',
|
|
2909
|
+
typeOfEntity: 'organizzazione'
|
|
2938
2910
|
},
|
|
2939
|
-
count:
|
|
2911
|
+
count: 20
|
|
2940
2912
|
},
|
|
2941
2913
|
{
|
|
2942
2914
|
entity: {
|
|
2943
|
-
id: '
|
|
2944
|
-
label: '
|
|
2945
|
-
typeOfEntity: '
|
|
2915
|
+
id: '55c62ee8-99e7-4587-bba5-5bcf3ffd79b8',
|
|
2916
|
+
label: 'XIV Triennale',
|
|
2917
|
+
typeOfEntity: 'organizzazione'
|
|
2946
2918
|
},
|
|
2947
|
-
count:
|
|
2919
|
+
count: 20
|
|
2948
2920
|
},
|
|
2949
2921
|
{
|
|
2950
2922
|
entity: {
|
|
2951
|
-
id: '
|
|
2952
|
-
label: '
|
|
2953
|
-
typeOfEntity: '
|
|
2923
|
+
id: 'ac361155-402a-48cf-aa65-957c79813c4a',
|
|
2924
|
+
label: 'Galleria Milano',
|
|
2925
|
+
typeOfEntity: 'organizzazione'
|
|
2954
2926
|
},
|
|
2955
2927
|
count: 19
|
|
2956
2928
|
},
|
|
2957
2929
|
{
|
|
2958
2930
|
entity: {
|
|
2959
|
-
id: '
|
|
2960
|
-
label: '
|
|
2931
|
+
id: '3acdce2a-ca21-4a9f-ae2f-a6c70224610c',
|
|
2932
|
+
label: 'Davide Boriani',
|
|
2961
2933
|
typeOfEntity: 'persona'
|
|
2962
2934
|
},
|
|
2963
|
-
count:
|
|
2935
|
+
count: 13
|
|
2964
2936
|
},
|
|
2965
2937
|
{
|
|
2966
2938
|
entity: {
|
|
2967
|
-
id: '
|
|
2968
|
-
label: '
|
|
2939
|
+
id: 'f619a681-7b29-4dbb-b2d2-a66887b683a9',
|
|
2940
|
+
label: 'Gianni Colombo',
|
|
2969
2941
|
typeOfEntity: 'persona'
|
|
2970
2942
|
},
|
|
2971
|
-
count:
|
|
2943
|
+
count: 13
|
|
2972
2944
|
},
|
|
2973
2945
|
{
|
|
2974
2946
|
entity: {
|
|
2975
|
-
id: '
|
|
2976
|
-
label: '
|
|
2977
|
-
typeOfEntity: '
|
|
2947
|
+
id: 'fa0df465-d26a-4505-aaeb-393414107783',
|
|
2948
|
+
label: 'Marelli-Lenkurt',
|
|
2949
|
+
typeOfEntity: 'organizzazione'
|
|
2978
2950
|
},
|
|
2979
|
-
count:
|
|
2951
|
+
count: 11
|
|
2980
2952
|
},
|
|
2981
2953
|
{
|
|
2982
2954
|
entity: {
|
|
2983
|
-
id: '
|
|
2984
|
-
label: '
|
|
2955
|
+
id: '040fe91c-9314-4159-971a-32289da1472f',
|
|
2956
|
+
label: 'VI Biennale di San Marino',
|
|
2985
2957
|
typeOfEntity: 'organizzazione'
|
|
2986
2958
|
},
|
|
2987
|
-
count:
|
|
2959
|
+
count: 10
|
|
2988
2960
|
},
|
|
2989
2961
|
{
|
|
2990
2962
|
entity: {
|
|
2991
|
-
id: '
|
|
2992
|
-
label: '
|
|
2963
|
+
id: 'f583823a-0839-45de-80aa-ecee8ee86381',
|
|
2964
|
+
label: 'Peri',
|
|
2993
2965
|
typeOfEntity: 'organizzazione'
|
|
2994
2966
|
},
|
|
2995
|
-
count:
|
|
2967
|
+
count: 10
|
|
2996
2968
|
},
|
|
2997
2969
|
{
|
|
2998
2970
|
entity: {
|
|
2999
|
-
id: '
|
|
3000
|
-
label: '
|
|
2971
|
+
id: '3845161a-773c-4386-b1a7-c11ba68875f0',
|
|
2972
|
+
label: 'Triennale',
|
|
3001
2973
|
typeOfEntity: 'organizzazione'
|
|
3002
2974
|
},
|
|
3003
|
-
count:
|
|
2975
|
+
count: 8
|
|
3004
2976
|
},
|
|
3005
2977
|
{
|
|
3006
2978
|
entity: {
|
|
3007
|
-
id: '
|
|
3008
|
-
label: '
|
|
2979
|
+
id: '78cabc71-d86e-48e8-a9bd-9ebde2cdf025',
|
|
2980
|
+
label: 'Bellasich e Bossi Editore',
|
|
3009
2981
|
typeOfEntity: 'organizzazione'
|
|
3010
2982
|
},
|
|
3011
|
-
count:
|
|
2983
|
+
count: 8
|
|
3012
2984
|
},
|
|
3013
2985
|
{
|
|
3014
2986
|
entity: {
|
|
3015
|
-
id: '
|
|
3016
|
-
label: '
|
|
2987
|
+
id: '8375e4ff-e4a1-46ae-abdf-e1ef40a45146',
|
|
2988
|
+
label: 'Dedalo',
|
|
3017
2989
|
typeOfEntity: 'organizzazione'
|
|
3018
2990
|
},
|
|
3019
|
-
count:
|
|
2991
|
+
count: 8
|
|
3020
2992
|
},
|
|
3021
2993
|
{
|
|
3022
2994
|
entity: {
|
|
3023
|
-
id: '
|
|
3024
|
-
label: '
|
|
3025
|
-
typeOfEntity: '
|
|
2995
|
+
id: 'a23c3d15-d6e3-4c36-ab1d-edeb68e33113',
|
|
2996
|
+
label: 'Regione Toscana, Giunta',
|
|
2997
|
+
typeOfEntity: 'organizzazione'
|
|
3026
2998
|
},
|
|
3027
|
-
count:
|
|
2999
|
+
count: 8
|
|
3028
3000
|
},
|
|
3029
3001
|
{
|
|
3030
3002
|
entity: {
|
|
3031
|
-
id: '
|
|
3032
|
-
label: '
|
|
3003
|
+
id: '49d368cd-22ff-4cdf-a9ea-a592cefb7ac9',
|
|
3004
|
+
label: 'Dadamaino',
|
|
3033
3005
|
typeOfEntity: 'persona'
|
|
3034
3006
|
},
|
|
3035
|
-
count:
|
|
3007
|
+
count: 8
|
|
3036
3008
|
},
|
|
3037
3009
|
{
|
|
3038
3010
|
entity: {
|
|
3039
|
-
id: '
|
|
3040
|
-
label: '
|
|
3041
|
-
typeOfEntity: '
|
|
3011
|
+
id: '62abc328-a836-4cb2-9581-a2c5541252d9',
|
|
3012
|
+
label: 'Giuliana Einaudi',
|
|
3013
|
+
typeOfEntity: 'persona'
|
|
3042
3014
|
},
|
|
3043
|
-
count:
|
|
3015
|
+
count: 8
|
|
3044
3016
|
},
|
|
3045
3017
|
{
|
|
3046
3018
|
entity: {
|
|
3047
|
-
id: '
|
|
3048
|
-
label: '
|
|
3049
|
-
typeOfEntity: '
|
|
3019
|
+
id: '8d3fb65a-34ad-4e10-9da1-2f9273912aa2',
|
|
3020
|
+
label: 'Paolo Gallerani',
|
|
3021
|
+
typeOfEntity: 'persona'
|
|
3050
3022
|
},
|
|
3051
|
-
count:
|
|
3023
|
+
count: 8
|
|
3052
3024
|
},
|
|
3053
3025
|
{
|
|
3054
3026
|
entity: {
|
|
3055
|
-
id: '
|
|
3056
|
-
label: '
|
|
3057
|
-
typeOfEntity: '
|
|
3027
|
+
id: '9672ea6c-1f6c-47e3-a295-63e255337fb2',
|
|
3028
|
+
label: 'Cole of California',
|
|
3029
|
+
typeOfEntity: 'organizzazione'
|
|
3058
3030
|
},
|
|
3059
|
-
count:
|
|
3031
|
+
count: 6
|
|
3060
3032
|
},
|
|
3061
3033
|
{
|
|
3062
3034
|
entity: {
|
|
3063
|
-
id: '
|
|
3064
|
-
label: '
|
|
3065
|
-
typeOfEntity: '
|
|
3035
|
+
id: '3d3cb887-d7e1-4d4c-be63-513178603204',
|
|
3036
|
+
label: 'Cedit',
|
|
3037
|
+
typeOfEntity: 'organizzazione'
|
|
3066
3038
|
},
|
|
3067
|
-
count:
|
|
3039
|
+
count: 5
|
|
3068
3040
|
},
|
|
3069
3041
|
{
|
|
3070
3042
|
entity: {
|
|
3071
|
-
id: '
|
|
3072
|
-
label: '
|
|
3073
|
-
typeOfEntity: '
|
|
3043
|
+
id: '3e0cb860-907b-48cc-9c51-01c7e93484e5',
|
|
3044
|
+
label: 'Maison de Culture, Grenoble',
|
|
3045
|
+
typeOfEntity: 'organizzazione'
|
|
3074
3046
|
},
|
|
3075
|
-
count:
|
|
3047
|
+
count: 5
|
|
3076
3048
|
},
|
|
3077
3049
|
{
|
|
3078
3050
|
entity: {
|
|
3079
|
-
id: '
|
|
3080
|
-
label: '
|
|
3081
|
-
typeOfEntity: '
|
|
3082
|
-
},
|
|
3083
|
-
count: 6
|
|
3084
|
-
},
|
|
3085
|
-
{
|
|
3086
|
-
entity: {
|
|
3087
|
-
id: '807877b3-f8cf-4a21-b4b6-860d62278aad',
|
|
3088
|
-
label: 'Commissione provinciale dei monumenti',
|
|
3089
|
-
typeOfEntity: 'organizzazione'
|
|
3090
|
-
},
|
|
3091
|
-
count: 6
|
|
3092
|
-
},
|
|
3093
|
-
{
|
|
3094
|
-
entity: {
|
|
3095
|
-
id: 'bd83d08d-446c-4ad9-8863-ef9991436f79',
|
|
3096
|
-
label: 'Santadi',
|
|
3097
|
-
typeOfEntity: 'luogo'
|
|
3098
|
-
},
|
|
3099
|
-
count: 6
|
|
3100
|
-
},
|
|
3101
|
-
{
|
|
3102
|
-
entity: {
|
|
3103
|
-
id: '0069b0b2-8df4-4aca-97c6-35eaaeb92a6a',
|
|
3104
|
-
label: 'Riola',
|
|
3105
|
-
typeOfEntity: 'luogo'
|
|
3051
|
+
id: 'fc266b83-c8b6-4fd2-869d-6c9a7dc13335',
|
|
3052
|
+
label: 'Comune di Ravenna',
|
|
3053
|
+
typeOfEntity: 'organizzazione'
|
|
3106
3054
|
},
|
|
3107
3055
|
count: 5
|
|
3108
3056
|
},
|
|
3109
3057
|
{
|
|
3110
3058
|
entity: {
|
|
3111
|
-
id: '
|
|
3112
|
-
label: '
|
|
3059
|
+
id: '380efec2-bb1c-4955-ab31-f984ef1cb48c',
|
|
3060
|
+
label: 'Manfredo Massironi',
|
|
3113
3061
|
typeOfEntity: 'persona'
|
|
3114
3062
|
},
|
|
3115
3063
|
count: 5
|
|
3116
3064
|
},
|
|
3117
3065
|
{
|
|
3118
3066
|
entity: {
|
|
3119
|
-
id: '
|
|
3120
|
-
label: '
|
|
3121
|
-
typeOfEntity: 'luogo'
|
|
3122
|
-
},
|
|
3123
|
-
count: 5
|
|
3124
|
-
},
|
|
3125
|
-
{
|
|
3126
|
-
entity: {
|
|
3127
|
-
id: '3efa04ea-23f6-4214-b498-fdc2e893dba0',
|
|
3128
|
-
label: 'Salaris, Mario',
|
|
3067
|
+
id: '59ab7d42-3833-4692-815a-7965a9e00eb3',
|
|
3068
|
+
label: 'Ennio Chiggio',
|
|
3129
3069
|
typeOfEntity: 'persona'
|
|
3130
3070
|
},
|
|
3131
3071
|
count: 5
|
|
3132
3072
|
},
|
|
3133
3073
|
{
|
|
3134
3074
|
entity: {
|
|
3135
|
-
id: '
|
|
3136
|
-
label: '
|
|
3137
|
-
typeOfEntity: 'organizzazione'
|
|
3138
|
-
},
|
|
3139
|
-
count: 5
|
|
3140
|
-
},
|
|
3141
|
-
{
|
|
3142
|
-
entity: {
|
|
3143
|
-
id: '69f302ee-eb39-41f3-88f5-f4ff7a9684f3',
|
|
3144
|
-
label: 'Zeddiani',
|
|
3145
|
-
typeOfEntity: 'luogo'
|
|
3146
|
-
},
|
|
3147
|
-
count: 5
|
|
3148
|
-
},
|
|
3149
|
-
{
|
|
3150
|
-
entity: {
|
|
3151
|
-
id: '6bef4caf-2494-47b4-8636-694d198ae6fd',
|
|
3152
|
-
label: 'Cannas, Emanuele',
|
|
3075
|
+
id: '6bcca125-aa34-424b-8eb3-c2aba625a338',
|
|
3076
|
+
label: 'Gabriele de Vecchi',
|
|
3153
3077
|
typeOfEntity: 'persona'
|
|
3154
3078
|
},
|
|
3155
3079
|
count: 5
|
|
3156
3080
|
},
|
|
3157
3081
|
{
|
|
3158
3082
|
entity: {
|
|
3159
|
-
id: '
|
|
3160
|
-
label: '
|
|
3161
|
-
typeOfEntity: 'organizzazione'
|
|
3162
|
-
},
|
|
3163
|
-
count: 5
|
|
3164
|
-
},
|
|
3165
|
-
{
|
|
3166
|
-
entity: {
|
|
3167
|
-
id: 'b74347b3-318e-4c27-8403-d011074d89ee',
|
|
3168
|
-
label: 'Nurachi',
|
|
3169
|
-
typeOfEntity: 'luogo'
|
|
3170
|
-
},
|
|
3171
|
-
count: 5
|
|
3172
|
-
},
|
|
3173
|
-
{
|
|
3174
|
-
entity: {
|
|
3175
|
-
id: 'fee7a21b-e559-4b6e-8a29-15f4cbd9e70d',
|
|
3176
|
-
label: 'Salaris, Mario',
|
|
3083
|
+
id: '70c202ed-bed4-41d1-a861-7f16fb0a2161',
|
|
3084
|
+
label: 'Anna Fasolis',
|
|
3177
3085
|
typeOfEntity: 'persona'
|
|
3178
3086
|
},
|
|
3179
3087
|
count: 5
|
|
3180
3088
|
},
|
|
3181
3089
|
{
|
|
3182
3090
|
entity: {
|
|
3183
|
-
id: '
|
|
3184
|
-
label: '
|
|
3185
|
-
typeOfEntity: 'luogo'
|
|
3186
|
-
},
|
|
3187
|
-
count: 4
|
|
3188
|
-
},
|
|
3189
|
-
{
|
|
3190
|
-
entity: {
|
|
3191
|
-
id: '0cbb4c6d-044d-41b7-8518-ec2502c241d2',
|
|
3192
|
-
label: 'Senorbì',
|
|
3193
|
-
typeOfEntity: 'luogo'
|
|
3194
|
-
},
|
|
3195
|
-
count: 4
|
|
3196
|
-
},
|
|
3197
|
-
{
|
|
3198
|
-
entity: {
|
|
3199
|
-
id: '11f877c7-a16a-4dd1-beaa-a7bce80cd3c8',
|
|
3200
|
-
label: 'Comune di Bauladu',
|
|
3201
|
-
typeOfEntity: 'organizzazione'
|
|
3202
|
-
},
|
|
3203
|
-
count: 4
|
|
3204
|
-
},
|
|
3205
|
-
{
|
|
3206
|
-
entity: {
|
|
3207
|
-
id: '136c0d5d-7cde-4a17-a48d-4fb095ebdd35',
|
|
3208
|
-
label: 'Cagliari',
|
|
3209
|
-
typeOfEntity: 'luogo'
|
|
3210
|
-
},
|
|
3211
|
-
count: 4
|
|
3212
|
-
},
|
|
3213
|
-
{
|
|
3214
|
-
entity: {
|
|
3215
|
-
id: '16c902bd-cd0f-4801-a62b-d0a1f35d8b44',
|
|
3216
|
-
label: 'Siurgus Donigala',
|
|
3217
|
-
typeOfEntity: 'luogo'
|
|
3218
|
-
},
|
|
3219
|
-
count: 4
|
|
3220
|
-
},
|
|
3221
|
-
{
|
|
3222
|
-
entity: {
|
|
3223
|
-
id: '1f08231b-e098-494c-bdc7-1e69f4f74d5b',
|
|
3224
|
-
label: 'Narbolia',
|
|
3225
|
-
typeOfEntity: 'luogo'
|
|
3226
|
-
},
|
|
3227
|
-
count: 4
|
|
3228
|
-
},
|
|
3229
|
-
{
|
|
3230
|
-
entity: {
|
|
3231
|
-
id: '28a87a68-405f-4ec8-990b-0abdb11a3589',
|
|
3232
|
-
label: "Quartu Sant'Elena",
|
|
3233
|
-
typeOfEntity: 'luogo'
|
|
3234
|
-
},
|
|
3235
|
-
count: 4
|
|
3236
|
-
},
|
|
3237
|
-
{
|
|
3238
|
-
entity: {
|
|
3239
|
-
id: '2db7d117-6a2a-4fd7-ac18-5a8a51997799',
|
|
3240
|
-
label: 'Antonetti, Nicolino',
|
|
3241
|
-
typeOfEntity: 'persona'
|
|
3242
|
-
},
|
|
3243
|
-
count: 4
|
|
3244
|
-
},
|
|
3245
|
-
{
|
|
3246
|
-
entity: {
|
|
3247
|
-
id: '30243eba-457e-49c6-a61d-a73d40454533',
|
|
3248
|
-
label: 'Gonnesa',
|
|
3249
|
-
typeOfEntity: 'luogo'
|
|
3250
|
-
},
|
|
3251
|
-
count: 4
|
|
3252
|
-
},
|
|
3253
|
-
{
|
|
3254
|
-
entity: {
|
|
3255
|
-
id: '48aa7c4f-767a-459b-a359-2f0230d8db56',
|
|
3256
|
-
label: 'Antonetti, Nicolino',
|
|
3257
|
-
typeOfEntity: 'persona'
|
|
3258
|
-
},
|
|
3259
|
-
count: 4
|
|
3260
|
-
},
|
|
3261
|
-
{
|
|
3262
|
-
entity: {
|
|
3263
|
-
id: '51f61af8-d547-4030-b352-6ea2a6fd1ae3',
|
|
3264
|
-
label: 'Comune di Selargius',
|
|
3265
|
-
typeOfEntity: 'organizzazione'
|
|
3266
|
-
},
|
|
3267
|
-
count: 4
|
|
3268
|
-
},
|
|
3269
|
-
{
|
|
3270
|
-
entity: {
|
|
3271
|
-
id: '57cee9a8-cda8-483b-afc5-036472a0a98a',
|
|
3272
|
-
label: 'Comune di Senorbì',
|
|
3273
|
-
typeOfEntity: 'organizzazione'
|
|
3274
|
-
},
|
|
3275
|
-
count: 4
|
|
3276
|
-
},
|
|
3277
|
-
{
|
|
3278
|
-
entity: {
|
|
3279
|
-
id: '67d7519b-c3eb-43da-b920-a4fdb2f4721c',
|
|
3280
|
-
label: 'Scano, Dionigi',
|
|
3281
|
-
typeOfEntity: 'persona'
|
|
3282
|
-
},
|
|
3283
|
-
count: 4
|
|
3284
|
-
},
|
|
3285
|
-
{
|
|
3286
|
-
entity: {
|
|
3287
|
-
id: '68ce0fa6-5f1b-4a16-8ec3-5e59af2721b4',
|
|
3288
|
-
label: 'Bauladu',
|
|
3289
|
-
typeOfEntity: 'luogo'
|
|
3290
|
-
},
|
|
3291
|
-
count: 4
|
|
3292
|
-
},
|
|
3293
|
-
{
|
|
3294
|
-
entity: {
|
|
3295
|
-
id: '694c25ce-f443-4cf0-ae58-bf067582f4dc',
|
|
3296
|
-
label: 'Villaperuccio (Santadi)',
|
|
3297
|
-
typeOfEntity: 'luogo'
|
|
3298
|
-
},
|
|
3299
|
-
count: 4
|
|
3300
|
-
},
|
|
3301
|
-
{
|
|
3302
|
-
entity: {
|
|
3303
|
-
id: '73b0fd04-8ee7-4136-b7b1-e56f10c0c16c',
|
|
3304
|
-
label: 'Sarroch',
|
|
3305
|
-
typeOfEntity: 'luogo'
|
|
3306
|
-
},
|
|
3307
|
-
count: 4
|
|
3308
|
-
},
|
|
3309
|
-
{
|
|
3310
|
-
entity: {
|
|
3311
|
-
id: '7a543836-46d6-4581-8acf-2908e204a4a9',
|
|
3312
|
-
label: 'Garau, Emilio Stefano',
|
|
3313
|
-
typeOfEntity: 'persona'
|
|
3314
|
-
},
|
|
3315
|
-
count: 4
|
|
3316
|
-
},
|
|
3317
|
-
{
|
|
3318
|
-
entity: {
|
|
3319
|
-
id: '8228fb86-178c-4ada-8001-3ea64a954333',
|
|
3320
|
-
label: 'Comune di Siurgus Donigala',
|
|
3321
|
-
typeOfEntity: 'organizzazione'
|
|
3322
|
-
},
|
|
3323
|
-
count: 4
|
|
3324
|
-
},
|
|
3325
|
-
{
|
|
3326
|
-
entity: {
|
|
3327
|
-
id: '842aa0e0-53fc-4907-b0ed-8eac1357f7db',
|
|
3328
|
-
label: 'Fluminimaggiore',
|
|
3329
|
-
typeOfEntity: 'luogo'
|
|
3330
|
-
},
|
|
3331
|
-
count: 4
|
|
3332
|
-
},
|
|
3333
|
-
{
|
|
3334
|
-
entity: {
|
|
3335
|
-
id: '923d1a87-1230-4147-bc57-36475b70106d',
|
|
3336
|
-
label: 'Selargius',
|
|
3337
|
-
typeOfEntity: 'luogo'
|
|
3338
|
-
},
|
|
3339
|
-
count: 4
|
|
3340
|
-
},
|
|
3341
|
-
{
|
|
3342
|
-
entity: {
|
|
3343
|
-
id: '97fbd797-8c6d-44d0-a903-57d50874909d',
|
|
3344
|
-
label: 'Villaperuccio (Santadi)',
|
|
3345
|
-
typeOfEntity: 'luogo'
|
|
3346
|
-
},
|
|
3347
|
-
count: 4
|
|
3348
|
-
},
|
|
3349
|
-
{
|
|
3350
|
-
entity: {
|
|
3351
|
-
id: '9869b481-5289-4346-862b-0aea5012290c',
|
|
3352
|
-
label: 'San Giovanni Suergiu',
|
|
3353
|
-
typeOfEntity: 'luogo'
|
|
3354
|
-
},
|
|
3355
|
-
count: 4
|
|
3356
|
-
},
|
|
3357
|
-
{
|
|
3358
|
-
entity: {
|
|
3359
|
-
id: '9cc62ed9-4fd0-44fc-b26f-bdf8948856c1',
|
|
3360
|
-
label: 'Portoscuso',
|
|
3361
|
-
typeOfEntity: 'luogo'
|
|
3362
|
-
},
|
|
3363
|
-
count: 4
|
|
3364
|
-
},
|
|
3365
|
-
{
|
|
3366
|
-
entity: {
|
|
3367
|
-
id: 'aed54207-2b50-4648-aed2-726f1c052234',
|
|
3368
|
-
label: 'Sinnai',
|
|
3369
|
-
typeOfEntity: 'luogo'
|
|
3370
|
-
},
|
|
3371
|
-
count: 4
|
|
3372
|
-
},
|
|
3373
|
-
{
|
|
3374
|
-
entity: {
|
|
3375
|
-
id: 'b3a3fc0b-e974-4b36-bfdc-39597e9c5b9f',
|
|
3376
|
-
label: 'Endrich, Enrico',
|
|
3377
|
-
typeOfEntity: 'persona'
|
|
3378
|
-
},
|
|
3379
|
-
count: 4
|
|
3380
|
-
},
|
|
3381
|
-
{
|
|
3382
|
-
entity: {
|
|
3383
|
-
id: 'd7bd3519-994f-497d-9d56-9bfdbf638966',
|
|
3384
|
-
label: 'Provveditorato alle opere pubbliche per la Sardegna',
|
|
3091
|
+
id: '58a834b1-727c-43f5-b197-c5b227ebd29d',
|
|
3092
|
+
label: 'Cooperativa Editoriale Studio Forma, Torino',
|
|
3385
3093
|
typeOfEntity: 'organizzazione'
|
|
3386
3094
|
},
|
|
3387
3095
|
count: 4
|
|
3388
3096
|
},
|
|
3389
3097
|
{
|
|
3390
3098
|
entity: {
|
|
3391
|
-
id: '
|
|
3392
|
-
label: '
|
|
3099
|
+
id: '5c1150b2-7440-4d49-8bb0-3b9bf57cf5eb',
|
|
3100
|
+
label: 'Edizioni di Comunità',
|
|
3393
3101
|
typeOfEntity: 'organizzazione'
|
|
3394
3102
|
},
|
|
3395
3103
|
count: 4
|
|
3396
3104
|
},
|
|
3397
3105
|
{
|
|
3398
3106
|
entity: {
|
|
3399
|
-
id: '
|
|
3400
|
-
label: '
|
|
3401
|
-
typeOfEntity: 'luogo'
|
|
3402
|
-
},
|
|
3403
|
-
count: 4
|
|
3404
|
-
},
|
|
3405
|
-
{
|
|
3406
|
-
entity: {
|
|
3407
|
-
id: 'f98f6705-1a75-4da3-8e22-bd867b851259',
|
|
3408
|
-
label: 'Comune di Baratili San Pietro',
|
|
3409
|
-
typeOfEntity: 'organizzazione'
|
|
3410
|
-
},
|
|
3411
|
-
count: 4
|
|
3412
|
-
},
|
|
3413
|
-
{
|
|
3414
|
-
entity: {
|
|
3415
|
-
id: 'ff0794d2-ba63-4d44-9f44-ef40a5c9c871',
|
|
3416
|
-
label: 'locali e uffici',
|
|
3417
|
-
typeOfEntity: 'cosa notevole'
|
|
3418
|
-
},
|
|
3419
|
-
count: 4
|
|
3420
|
-
},
|
|
3421
|
-
{
|
|
3422
|
-
entity: {
|
|
3423
|
-
id: '0020ea54-8bad-4793-bd86-505b93edd908',
|
|
3424
|
-
label: 'Comune di Fluminimaggiore',
|
|
3425
|
-
typeOfEntity: 'organizzazione'
|
|
3426
|
-
},
|
|
3427
|
-
count: 3
|
|
3428
|
-
},
|
|
3429
|
-
{
|
|
3430
|
-
entity: {
|
|
3431
|
-
id: '04c8ef1e-7073-4de6-8b4e-580630ee9b4c',
|
|
3432
|
-
label: 'Comune di Riola',
|
|
3433
|
-
typeOfEntity: 'organizzazione'
|
|
3434
|
-
},
|
|
3435
|
-
count: 3
|
|
3436
|
-
},
|
|
3437
|
-
{
|
|
3438
|
-
entity: {
|
|
3439
|
-
id: '05d6c519-d7a5-42ca-b7f0-24a1f5ae3f0e',
|
|
3440
|
-
label: 'Portoscuso',
|
|
3441
|
-
typeOfEntity: 'luogo'
|
|
3442
|
-
},
|
|
3443
|
-
count: 3
|
|
3444
|
-
},
|
|
3445
|
-
{
|
|
3446
|
-
entity: {
|
|
3447
|
-
id: '0f3586be-e640-44f1-b7fb-d2d3640e4d65',
|
|
3448
|
-
label: 'Zuri (Ghilarza)',
|
|
3449
|
-
typeOfEntity: 'luogo'
|
|
3450
|
-
},
|
|
3451
|
-
count: 3
|
|
3452
|
-
},
|
|
3453
|
-
{
|
|
3454
|
-
entity: {
|
|
3455
|
-
id: '11ac451f-e356-4452-b57b-3b3e9f3fa671',
|
|
3456
|
-
label: 'Virdis, Bruno',
|
|
3457
|
-
typeOfEntity: 'persona'
|
|
3458
|
-
},
|
|
3459
|
-
count: 3
|
|
3460
|
-
},
|
|
3461
|
-
{
|
|
3462
|
-
entity: {
|
|
3463
|
-
id: '190c2e42-50e0-49fe-83d0-bb476b6054cd',
|
|
3464
|
-
label: 'Comune di Bosa',
|
|
3107
|
+
id: '23515a44-e395-4457-9163-8b5b62b5f63e',
|
|
3108
|
+
label: 'Scuola Umanitaria, Milano',
|
|
3465
3109
|
typeOfEntity: 'organizzazione'
|
|
3466
3110
|
},
|
|
3467
3111
|
count: 3
|
|
3468
3112
|
},
|
|
3469
3113
|
{
|
|
3470
3114
|
entity: {
|
|
3471
|
-
id: '
|
|
3472
|
-
label: '
|
|
3115
|
+
id: '6e01c950-5ff9-492e-8375-a764de5c21f6',
|
|
3116
|
+
label: 'Prodet',
|
|
3473
3117
|
typeOfEntity: 'organizzazione'
|
|
3474
3118
|
},
|
|
3475
3119
|
count: 3
|
|
3476
3120
|
},
|
|
3477
3121
|
{
|
|
3478
3122
|
entity: {
|
|
3479
|
-
id: '
|
|
3480
|
-
label: '
|
|
3123
|
+
id: 'd313ea90-1a73-4dee-8350-10a57264f5cb',
|
|
3124
|
+
label: 'Bonfanti, Tessitura tappeti',
|
|
3481
3125
|
typeOfEntity: 'organizzazione'
|
|
3482
3126
|
},
|
|
3483
3127
|
count: 3
|
|
3484
3128
|
},
|
|
3485
3129
|
{
|
|
3486
3130
|
entity: {
|
|
3487
|
-
id: '
|
|
3488
|
-
label: '
|
|
3131
|
+
id: 'f6de2425-fa3d-47a3-a31a-53394af32fe8',
|
|
3132
|
+
label: 'Simon International',
|
|
3489
3133
|
typeOfEntity: 'organizzazione'
|
|
3490
3134
|
},
|
|
3491
3135
|
count: 3
|
|
3492
3136
|
},
|
|
3493
3137
|
{
|
|
3494
3138
|
entity: {
|
|
3495
|
-
id: '
|
|
3496
|
-
label: '
|
|
3497
|
-
typeOfEntity: '
|
|
3498
|
-
},
|
|
3499
|
-
count: 3
|
|
3500
|
-
},
|
|
3501
|
-
{
|
|
3502
|
-
entity: {
|
|
3503
|
-
id: '2b61a8fe-2dc6-4535-8143-e16956a4ca81',
|
|
3504
|
-
label: "San Nicolò D'Arcidano",
|
|
3505
|
-
typeOfEntity: 'luogo'
|
|
3139
|
+
id: '662bb784-7226-41c6-a945-03c7fe8134a9',
|
|
3140
|
+
label: 'Antonia Astori De Ponti',
|
|
3141
|
+
typeOfEntity: 'persona'
|
|
3506
3142
|
},
|
|
3507
3143
|
count: 3
|
|
3508
3144
|
},
|
|
3509
3145
|
{
|
|
3510
3146
|
entity: {
|
|
3511
|
-
id: '
|
|
3512
|
-
label: '
|
|
3147
|
+
id: '499a8780-76a1-4f86-9e8e-619bf2c9d02d',
|
|
3148
|
+
label: 'Italconsult',
|
|
3513
3149
|
typeOfEntity: 'organizzazione'
|
|
3514
3150
|
},
|
|
3515
|
-
count:
|
|
3516
|
-
},
|
|
3517
|
-
{
|
|
3518
|
-
entity: {
|
|
3519
|
-
id: '304b37fb-3827-4c51-9733-0788ff4c638b',
|
|
3520
|
-
label: 'Sisini (Senorbì)',
|
|
3521
|
-
typeOfEntity: 'luogo'
|
|
3522
|
-
},
|
|
3523
|
-
count: 3
|
|
3524
|
-
},
|
|
3525
|
-
{
|
|
3526
|
-
entity: {
|
|
3527
|
-
id: '33627771-897b-4c0a-910f-cc2221427e45',
|
|
3528
|
-
label: 'Calasetta',
|
|
3529
|
-
typeOfEntity: 'luogo'
|
|
3530
|
-
},
|
|
3531
|
-
count: 3
|
|
3532
|
-
},
|
|
3533
|
-
{
|
|
3534
|
-
entity: {
|
|
3535
|
-
id: '34d2a2ae-9b7e-41db-b664-43a57e389e9c',
|
|
3536
|
-
label: 'Maracalagonis',
|
|
3537
|
-
typeOfEntity: 'luogo'
|
|
3538
|
-
},
|
|
3539
|
-
count: 3
|
|
3151
|
+
count: 2
|
|
3540
3152
|
},
|
|
3541
3153
|
{
|
|
3542
3154
|
entity: {
|
|
3543
|
-
id: '
|
|
3544
|
-
label: '
|
|
3545
|
-
typeOfEntity: '
|
|
3155
|
+
id: '24f8a80b-fd61-4679-9f7c-bf65e04c5a5c',
|
|
3156
|
+
label: 'Peppe Di Giuli',
|
|
3157
|
+
typeOfEntity: 'persona'
|
|
3546
3158
|
},
|
|
3547
|
-
count:
|
|
3159
|
+
count: 2
|
|
3548
3160
|
},
|
|
3549
3161
|
{
|
|
3550
3162
|
entity: {
|
|
3551
|
-
id: '
|
|
3552
|
-
label: '
|
|
3163
|
+
id: '2e628cd4-9580-43df-b165-4e9dd60c8c50',
|
|
3164
|
+
label: 'Polymer',
|
|
3553
3165
|
typeOfEntity: 'organizzazione'
|
|
3554
3166
|
},
|
|
3555
|
-
count:
|
|
3167
|
+
count: 1
|
|
3556
3168
|
},
|
|
3557
3169
|
{
|
|
3558
3170
|
entity: {
|
|
3559
|
-
id: '
|
|
3560
|
-
label: '
|
|
3561
|
-
typeOfEntity: '
|
|
3171
|
+
id: '01883bc3-a22c-4ef5-bf50-0a1a90481ab8',
|
|
3172
|
+
label: 'Enzo Preda',
|
|
3173
|
+
typeOfEntity: 'persona'
|
|
3562
3174
|
},
|
|
3563
|
-
count:
|
|
3175
|
+
count: 1
|
|
3564
3176
|
},
|
|
3565
3177
|
{
|
|
3566
3178
|
entity: {
|
|
3567
|
-
id: '
|
|
3568
|
-
label: '
|
|
3569
|
-
typeOfEntity: '
|
|
3179
|
+
id: '48cb0789-6c23-42f5-8959-543f6e6ceac5',
|
|
3180
|
+
label: 'Annamaria Maglienti',
|
|
3181
|
+
typeOfEntity: 'persona'
|
|
3570
3182
|
},
|
|
3571
|
-
count:
|
|
3183
|
+
count: 1
|
|
3572
3184
|
},
|
|
3573
3185
|
{
|
|
3574
3186
|
entity: {
|
|
3575
|
-
id: '
|
|
3576
|
-
label: '
|
|
3577
|
-
typeOfEntity: '
|
|
3187
|
+
id: '7829c979-cc77-4a5c-85b0-3262889b64f2',
|
|
3188
|
+
label: 'Carla Vasio',
|
|
3189
|
+
typeOfEntity: 'persona'
|
|
3578
3190
|
},
|
|
3579
|
-
count:
|
|
3580
|
-
},
|
|
3581
|
-
{
|
|
3582
|
-
entity: {
|
|
3583
|
-
id: '4771e4ef-d72c-41b6-a650-f6e4f192399a',
|
|
3584
|
-
label: 'Cagliari',
|
|
3585
|
-
typeOfEntity: 'luogo'
|
|
3586
|
-
},
|
|
3587
|
-
count: 3
|
|
3588
|
-
},
|
|
3589
|
-
{
|
|
3590
|
-
entity: {
|
|
3591
|
-
id: '4c9ae5a8-f3ae-42cc-896d-7c57ebd047c4',
|
|
3592
|
-
label: 'Garau, Augusto',
|
|
3593
|
-
typeOfEntity: 'persona'
|
|
3594
|
-
},
|
|
3595
|
-
count: 3
|
|
3596
|
-
},
|
|
3597
|
-
{
|
|
3598
|
-
entity: {
|
|
3599
|
-
id: '542224c9-9723-4066-babc-c1e667ef8dab',
|
|
3600
|
-
label: 'Comune di Senorbì',
|
|
3601
|
-
typeOfEntity: 'organizzazione'
|
|
3602
|
-
},
|
|
3603
|
-
count: 3
|
|
3604
|
-
},
|
|
3605
|
-
{
|
|
3606
|
-
entity: {
|
|
3607
|
-
id: '598571b7-44db-44e8-9533-57405594a39d',
|
|
3608
|
-
label: 'Siliqua',
|
|
3609
|
-
typeOfEntity: 'luogo'
|
|
3610
|
-
},
|
|
3611
|
-
count: 3
|
|
3612
|
-
},
|
|
3613
|
-
{
|
|
3614
|
-
entity: {
|
|
3615
|
-
id: '5c0743f4-4ddd-44cc-bd37-e52ebc5a6af9',
|
|
3616
|
-
label: 'Comune di Monastir',
|
|
3617
|
-
typeOfEntity: 'organizzazione'
|
|
3618
|
-
},
|
|
3619
|
-
count: 3
|
|
3620
|
-
},
|
|
3621
|
-
{
|
|
3622
|
-
entity: {
|
|
3623
|
-
id: '6c0c77fb-c820-4b70-8a45-530374064900',
|
|
3624
|
-
label: 'Comune di Assemini',
|
|
3625
|
-
typeOfEntity: 'organizzazione'
|
|
3626
|
-
},
|
|
3627
|
-
count: 3
|
|
3628
|
-
},
|
|
3629
|
-
{
|
|
3630
|
-
entity: {
|
|
3631
|
-
id: '71f2a7ec-64ac-49ae-b961-3ede9e77c17c',
|
|
3632
|
-
label: 'Comune di Gonnoscodina',
|
|
3633
|
-
typeOfEntity: 'organizzazione'
|
|
3634
|
-
},
|
|
3635
|
-
count: 3
|
|
3636
|
-
},
|
|
3637
|
-
{
|
|
3638
|
-
entity: {
|
|
3639
|
-
id: '72f2bb62-c84d-406a-9c60-1ef73c4a6284',
|
|
3640
|
-
label: 'Comune di Selargius',
|
|
3641
|
-
typeOfEntity: 'organizzazione'
|
|
3642
|
-
},
|
|
3643
|
-
count: 3
|
|
3644
|
-
},
|
|
3645
|
-
{
|
|
3646
|
-
entity: {
|
|
3647
|
-
id: '75cfc0bb-fc08-464a-b140-1d12359ce1b2',
|
|
3648
|
-
label: 'Baratili San Pietro',
|
|
3649
|
-
typeOfEntity: 'luogo'
|
|
3650
|
-
},
|
|
3651
|
-
count: 3
|
|
3652
|
-
},
|
|
3653
|
-
{
|
|
3654
|
-
entity: {
|
|
3655
|
-
id: '79a3a477-ec3a-4417-ace6-a9842062544d',
|
|
3656
|
-
label: 'Gesturi',
|
|
3657
|
-
typeOfEntity: 'luogo'
|
|
3658
|
-
},
|
|
3659
|
-
count: 3
|
|
3660
|
-
},
|
|
3661
|
-
{
|
|
3662
|
-
entity: {
|
|
3663
|
-
id: '7bf6a69e-193c-402e-ab52-3c7e4420a3e7',
|
|
3664
|
-
label: 'Comune di San Giovanni Suergiu',
|
|
3665
|
-
typeOfEntity: 'organizzazione'
|
|
3666
|
-
},
|
|
3667
|
-
count: 3
|
|
3668
|
-
},
|
|
3669
|
-
{
|
|
3670
|
-
entity: {
|
|
3671
|
-
id: '81312e6b-b0d9-4ecc-a537-48e1e4557eaf',
|
|
3672
|
-
label: 'Comune di Simaxis',
|
|
3673
|
-
typeOfEntity: 'organizzazione'
|
|
3674
|
-
},
|
|
3675
|
-
count: 3
|
|
3676
|
-
},
|
|
3677
|
-
{
|
|
3678
|
-
entity: {
|
|
3679
|
-
id: '8417fe93-109a-4c84-8c59-3ef90deab825',
|
|
3680
|
-
label: 'Porto Vesme (Portoscuso)',
|
|
3681
|
-
typeOfEntity: 'luogo'
|
|
3682
|
-
},
|
|
3683
|
-
count: 3
|
|
3684
|
-
},
|
|
3685
|
-
{
|
|
3686
|
-
entity: {
|
|
3687
|
-
id: '88f8519a-66bc-4d99-a00d-3f6ab487d9e8',
|
|
3688
|
-
label: 'Capoterra',
|
|
3689
|
-
typeOfEntity: 'luogo'
|
|
3690
|
-
},
|
|
3691
|
-
count: 3
|
|
3692
|
-
},
|
|
3693
|
-
{
|
|
3694
|
-
entity: {
|
|
3695
|
-
id: '8ac13f32-ed1c-48fd-ad25-4de753c7a439',
|
|
3696
|
-
label: 'Muravera',
|
|
3697
|
-
typeOfEntity: 'luogo'
|
|
3698
|
-
},
|
|
3699
|
-
count: 3
|
|
3700
|
-
},
|
|
3701
|
-
{
|
|
3702
|
-
entity: {
|
|
3703
|
-
id: '8cf9841d-d13b-4556-ad39-aed38d86a326',
|
|
3704
|
-
label: "Comune di San Nicolò D'Arcidano",
|
|
3705
|
-
typeOfEntity: 'organizzazione'
|
|
3706
|
-
},
|
|
3707
|
-
count: 3
|
|
3708
|
-
},
|
|
3709
|
-
{
|
|
3710
|
-
entity: {
|
|
3711
|
-
id: '905ced42-6223-4a6f-a9b0-0ff00f2ccc59',
|
|
3712
|
-
label: 'Carbonia',
|
|
3713
|
-
typeOfEntity: 'luogo'
|
|
3714
|
-
},
|
|
3715
|
-
count: 3
|
|
3716
|
-
},
|
|
3717
|
-
{
|
|
3718
|
-
entity: {
|
|
3719
|
-
id: '9ba9b303-b3cf-4cdc-9139-a843036225f2',
|
|
3720
|
-
label: 'Senorbì',
|
|
3721
|
-
typeOfEntity: 'luogo'
|
|
3722
|
-
},
|
|
3723
|
-
count: 3
|
|
3724
|
-
},
|
|
3725
|
-
{
|
|
3726
|
-
entity: {
|
|
3727
|
-
id: '9d464d00-fb9a-422e-a3ff-e3dedca8f099',
|
|
3728
|
-
label: 'Comune di Villa San Pietro',
|
|
3729
|
-
typeOfEntity: 'organizzazione'
|
|
3730
|
-
},
|
|
3731
|
-
count: 3
|
|
3732
|
-
},
|
|
3733
|
-
{
|
|
3734
|
-
entity: {
|
|
3735
|
-
id: '9dc7b1a5-902d-402c-adb4-9067714e03ec',
|
|
3736
|
-
label: 'Pedemonte, Pietro',
|
|
3737
|
-
typeOfEntity: 'persona'
|
|
3738
|
-
},
|
|
3739
|
-
count: 3
|
|
3740
|
-
},
|
|
3741
|
-
{
|
|
3742
|
-
entity: {
|
|
3743
|
-
id: 'a591b6a8-ada4-4d59-8024-ce05283a94cb',
|
|
3744
|
-
label: 'Comune di Ghilarza',
|
|
3745
|
-
typeOfEntity: 'organizzazione'
|
|
3746
|
-
},
|
|
3747
|
-
count: 3
|
|
3748
|
-
},
|
|
3749
|
-
{
|
|
3750
|
-
entity: {
|
|
3751
|
-
id: 'b17e83e9-73d7-4c8c-988c-07c821414e8c',
|
|
3752
|
-
label: 'Narcao',
|
|
3753
|
-
typeOfEntity: 'luogo'
|
|
3754
|
-
},
|
|
3755
|
-
count: 3
|
|
3756
|
-
},
|
|
3757
|
-
{
|
|
3758
|
-
entity: {
|
|
3759
|
-
id: 'b3c2c0a7-8026-4559-b5f7-af497da4b165',
|
|
3760
|
-
label: 'Quartucciu',
|
|
3761
|
-
typeOfEntity: 'luogo'
|
|
3762
|
-
},
|
|
3763
|
-
count: 3
|
|
3764
|
-
},
|
|
3765
|
-
{
|
|
3766
|
-
entity: {
|
|
3767
|
-
id: 'bea0edf4-52af-4c18-8d0e-4bd4cd8138ce',
|
|
3768
|
-
label: 'Burcei',
|
|
3769
|
-
typeOfEntity: 'luogo'
|
|
3770
|
-
},
|
|
3771
|
-
count: 3
|
|
3772
|
-
},
|
|
3773
|
-
{
|
|
3774
|
-
entity: {
|
|
3775
|
-
id: 'c0858051-ead6-4d55-a46d-edf9510a8460',
|
|
3776
|
-
label: 'Teulada',
|
|
3777
|
-
typeOfEntity: 'luogo'
|
|
3778
|
-
},
|
|
3779
|
-
count: 3
|
|
3780
|
-
},
|
|
3781
|
-
{
|
|
3782
|
-
entity: {
|
|
3783
|
-
id: 'c1dd9b99-0a4d-4b20-9ab8-26aa320e35f4',
|
|
3784
|
-
label: 'Oristano',
|
|
3785
|
-
typeOfEntity: 'luogo'
|
|
3786
|
-
},
|
|
3787
|
-
count: 3
|
|
3788
|
-
},
|
|
3789
|
-
{
|
|
3790
|
-
entity: {
|
|
3791
|
-
id: 'c27eac89-8122-426a-bdc4-2070648d755c',
|
|
3792
|
-
label: 'Carbonia',
|
|
3793
|
-
typeOfEntity: 'luogo'
|
|
3794
|
-
},
|
|
3795
|
-
count: 3
|
|
3796
|
-
},
|
|
3797
|
-
{
|
|
3798
|
-
entity: {
|
|
3799
|
-
id: 'c29063a0-01d5-4ecb-b6ac-093489589f0d',
|
|
3800
|
-
label: 'Simonetti, Riccardo',
|
|
3801
|
-
typeOfEntity: 'persona'
|
|
3802
|
-
},
|
|
3803
|
-
count: 3
|
|
3804
|
-
},
|
|
3805
|
-
{
|
|
3806
|
-
entity: {
|
|
3807
|
-
id: 'c427374b-97da-4e0d-8403-3a8e830a599b',
|
|
3808
|
-
label: 'Comune di Zeddiani',
|
|
3809
|
-
typeOfEntity: 'organizzazione'
|
|
3810
|
-
},
|
|
3811
|
-
count: 3
|
|
3812
|
-
},
|
|
3813
|
-
{
|
|
3814
|
-
entity: {
|
|
3815
|
-
id: 'c53d8f62-6ba4-459a-9001-99413ca7bafd',
|
|
3816
|
-
label: 'Comune di Nurachi',
|
|
3817
|
-
typeOfEntity: 'organizzazione'
|
|
3818
|
-
},
|
|
3819
|
-
count: 3
|
|
3820
|
-
},
|
|
3821
|
-
{
|
|
3822
|
-
entity: {
|
|
3823
|
-
id: 'c5b826dd-f6c0-4f65-a392-af8cabdcca83',
|
|
3824
|
-
label: 'Comune di Siamaggiore',
|
|
3825
|
-
typeOfEntity: 'organizzazione'
|
|
3826
|
-
},
|
|
3827
|
-
count: 3
|
|
3828
|
-
},
|
|
3829
|
-
{
|
|
3830
|
-
entity: {
|
|
3831
|
-
id: 'c614b687-69fd-4b51-a511-ba1202be5692',
|
|
3832
|
-
label: 'Monastir',
|
|
3833
|
-
typeOfEntity: 'luogo'
|
|
3834
|
-
},
|
|
3835
|
-
count: 3
|
|
3836
|
-
},
|
|
3837
|
-
{
|
|
3838
|
-
entity: {
|
|
3839
|
-
id: 'c8475e9c-ac5d-4c5f-8a56-6d08cb3d3ebb',
|
|
3840
|
-
label: 'Garau, Augusto',
|
|
3841
|
-
typeOfEntity: 'persona'
|
|
3842
|
-
},
|
|
3843
|
-
count: 3
|
|
3844
|
-
},
|
|
3845
|
-
{
|
|
3846
|
-
entity: {
|
|
3847
|
-
id: 'c85c6ac9-6ea7-446e-a909-28f2e750561c',
|
|
3848
|
-
label: 'Assemini',
|
|
3849
|
-
typeOfEntity: 'luogo'
|
|
3850
|
-
},
|
|
3851
|
-
count: 3
|
|
3852
|
-
},
|
|
3853
|
-
{
|
|
3854
|
-
entity: {
|
|
3855
|
-
id: 'c8afd4d5-abfb-46d1-8ca6-c48e3a8e0a99',
|
|
3856
|
-
label: 'Villa San Pietro',
|
|
3857
|
-
typeOfEntity: 'luogo'
|
|
3858
|
-
},
|
|
3859
|
-
count: 3
|
|
3860
|
-
},
|
|
3861
|
-
{
|
|
3862
|
-
entity: {
|
|
3863
|
-
id: 'c98524d9-fbbe-4d4e-8435-309658927b65',
|
|
3864
|
-
label: 'Nurachi',
|
|
3865
|
-
typeOfEntity: 'luogo'
|
|
3866
|
-
},
|
|
3867
|
-
count: 3
|
|
3868
|
-
},
|
|
3869
|
-
{
|
|
3870
|
-
entity: {
|
|
3871
|
-
id: 'c9cee1d7-a956-4599-a4e3-89a6cd8af7b6',
|
|
3872
|
-
label: 'Comune di Iglesias',
|
|
3873
|
-
typeOfEntity: 'organizzazione'
|
|
3874
|
-
},
|
|
3875
|
-
count: 3
|
|
3876
|
-
},
|
|
3877
|
-
{
|
|
3878
|
-
entity: {
|
|
3879
|
-
id: 'cbc7ba52-ff31-46f6-92f1-df03c8ae1da0',
|
|
3880
|
-
label: 'Gonnesa',
|
|
3881
|
-
typeOfEntity: 'luogo'
|
|
3882
|
-
},
|
|
3883
|
-
count: 3
|
|
3884
|
-
},
|
|
3885
|
-
{
|
|
3886
|
-
entity: {
|
|
3887
|
-
id: 'cce39d1d-395c-4fe7-8d82-669a116adcae',
|
|
3888
|
-
label: 'Teulada',
|
|
3889
|
-
typeOfEntity: 'luogo'
|
|
3890
|
-
},
|
|
3891
|
-
count: 3
|
|
3892
|
-
},
|
|
3893
|
-
{
|
|
3894
|
-
entity: {
|
|
3895
|
-
id: 'cfb2cc9b-f712-4a70-993f-d07906a06163',
|
|
3896
|
-
label: 'Fluminimaggiore',
|
|
3897
|
-
typeOfEntity: 'luogo'
|
|
3898
|
-
},
|
|
3899
|
-
count: 3
|
|
3900
|
-
},
|
|
3901
|
-
{
|
|
3902
|
-
entity: {
|
|
3903
|
-
id: 'cfb898a9-067b-47f5-bfdb-80d7f2273c0f',
|
|
3904
|
-
label: 'Comune di Ortacesus',
|
|
3905
|
-
typeOfEntity: 'organizzazione'
|
|
3906
|
-
},
|
|
3907
|
-
count: 3
|
|
3908
|
-
},
|
|
3909
|
-
{
|
|
3910
|
-
entity: {
|
|
3911
|
-
id: 'd4edfd52-89e9-4d41-b5c2-5191cf2701f4',
|
|
3912
|
-
label: 'Comune di Serramanna',
|
|
3913
|
-
typeOfEntity: 'organizzazione'
|
|
3914
|
-
},
|
|
3915
|
-
count: 3
|
|
3916
|
-
},
|
|
3917
|
-
{
|
|
3918
|
-
entity: {
|
|
3919
|
-
id: 'd580025e-e859-4bd6-96f9-d187692b0836',
|
|
3920
|
-
label: 'Arbus',
|
|
3921
|
-
typeOfEntity: 'luogo'
|
|
3922
|
-
},
|
|
3923
|
-
count: 3
|
|
3924
|
-
},
|
|
3925
|
-
{
|
|
3926
|
-
entity: {
|
|
3927
|
-
id: 'db4a5db2-b40e-4096-86b5-b3a529a489f6',
|
|
3928
|
-
label: 'Pula',
|
|
3929
|
-
typeOfEntity: 'luogo'
|
|
3930
|
-
},
|
|
3931
|
-
count: 3
|
|
3932
|
-
},
|
|
3933
|
-
{
|
|
3934
|
-
entity: {
|
|
3935
|
-
id: 'de1a142f-6a2c-4306-9a12-92371afff7bb',
|
|
3936
|
-
label: 'Comune di Narbolia',
|
|
3937
|
-
typeOfEntity: 'organizzazione'
|
|
3938
|
-
},
|
|
3939
|
-
count: 3
|
|
3940
|
-
},
|
|
3941
|
-
{
|
|
3942
|
-
entity: {
|
|
3943
|
-
id: 'e2a3e125-1681-4e84-914d-3717f28fb51c',
|
|
3944
|
-
label: 'Selargius',
|
|
3945
|
-
typeOfEntity: 'luogo'
|
|
3946
|
-
},
|
|
3947
|
-
count: 3
|
|
3948
|
-
},
|
|
3949
|
-
{
|
|
3950
|
-
entity: {
|
|
3951
|
-
id: 'e470a75c-d5b6-4704-85e6-06e49b76f820',
|
|
3952
|
-
label: 'Bari Sardo',
|
|
3953
|
-
typeOfEntity: 'luogo'
|
|
3954
|
-
},
|
|
3955
|
-
count: 3
|
|
3956
|
-
},
|
|
3957
|
-
{
|
|
3958
|
-
entity: {
|
|
3959
|
-
id: 'e52aee65-8dd0-456a-8bac-c8ac507142f7',
|
|
3960
|
-
label: 'Tuili',
|
|
3961
|
-
typeOfEntity: 'luogo'
|
|
3962
|
-
},
|
|
3963
|
-
count: 3
|
|
3964
|
-
},
|
|
3965
|
-
{
|
|
3966
|
-
entity: {
|
|
3967
|
-
id: 'e9c3be10-377a-4a8d-b22e-cb778f7f63a1',
|
|
3968
|
-
label: 'Endrich, Enrico',
|
|
3969
|
-
typeOfEntity: 'organizzazione'
|
|
3970
|
-
},
|
|
3971
|
-
count: 3
|
|
3972
|
-
},
|
|
3973
|
-
{
|
|
3974
|
-
entity: {
|
|
3975
|
-
id: 'ebf97992-5552-4bd4-8d86-57bdc4fdd5d3',
|
|
3976
|
-
label: 'Siamaggiore',
|
|
3977
|
-
typeOfEntity: 'luogo'
|
|
3978
|
-
},
|
|
3979
|
-
count: 3
|
|
3980
|
-
},
|
|
3981
|
-
{
|
|
3982
|
-
entity: {
|
|
3983
|
-
id: 'fa8e5936-49a5-41df-b71a-fa26cc6addeb',
|
|
3984
|
-
label: 'Ortacesus',
|
|
3985
|
-
typeOfEntity: 'luogo'
|
|
3986
|
-
},
|
|
3987
|
-
count: 3
|
|
3988
|
-
},
|
|
3989
|
-
{
|
|
3990
|
-
entity: {
|
|
3991
|
-
id: 'ff53023e-4afc-4404-a0e1-a1c308c42da6',
|
|
3992
|
-
label: "Sant'Antioco",
|
|
3993
|
-
typeOfEntity: 'luogo'
|
|
3994
|
-
},
|
|
3995
|
-
count: 3
|
|
3996
|
-
},
|
|
3997
|
-
{
|
|
3998
|
-
entity: {
|
|
3999
|
-
id: '002e5810-7176-440d-9e80-3c68c94d12bd',
|
|
4000
|
-
label: 'Tadasuni',
|
|
4001
|
-
typeOfEntity: 'luogo'
|
|
4002
|
-
},
|
|
4003
|
-
count: 2
|
|
4004
|
-
},
|
|
4005
|
-
{
|
|
4006
|
-
entity: {
|
|
4007
|
-
id: '0131948b-efe5-4976-a62b-3f81276adb2a',
|
|
4008
|
-
label: 'Monastir',
|
|
4009
|
-
typeOfEntity: 'luogo'
|
|
4010
|
-
},
|
|
4011
|
-
count: 2
|
|
4012
|
-
},
|
|
4013
|
-
{
|
|
4014
|
-
entity: {
|
|
4015
|
-
id: '01987640-f917-4973-98f1-884c17099ea5',
|
|
4016
|
-
label: 'Pirri',
|
|
4017
|
-
typeOfEntity: 'luogo'
|
|
4018
|
-
},
|
|
4019
|
-
count: 2
|
|
4020
|
-
},
|
|
4021
|
-
{
|
|
4022
|
-
entity: {
|
|
4023
|
-
id: '027e1290-9dbb-44ca-96ab-97ee0fdea10e',
|
|
4024
|
-
label: 'Sestu',
|
|
4025
|
-
typeOfEntity: 'luogo'
|
|
4026
|
-
},
|
|
4027
|
-
count: 2
|
|
4028
|
-
},
|
|
4029
|
-
{
|
|
4030
|
-
entity: {
|
|
4031
|
-
id: '04befe5d-790c-40fb-bb91-47ebca9361a5',
|
|
4032
|
-
label: 'Pula',
|
|
4033
|
-
typeOfEntity: 'luogo'
|
|
4034
|
-
},
|
|
4035
|
-
count: 2
|
|
4036
|
-
},
|
|
4037
|
-
{
|
|
4038
|
-
entity: {
|
|
4039
|
-
id: '062ff654-b153-476c-83f2-cbeb16e3afbb',
|
|
4040
|
-
label: 'Morgongiori',
|
|
4041
|
-
typeOfEntity: 'luogo'
|
|
4042
|
-
},
|
|
4043
|
-
count: 2
|
|
4044
|
-
},
|
|
4045
|
-
{
|
|
4046
|
-
entity: {
|
|
4047
|
-
id: '06c6c30f-ab75-474a-960b-2da225b760a6',
|
|
4048
|
-
label: 'Ussaramanna',
|
|
4049
|
-
typeOfEntity: 'luogo'
|
|
4050
|
-
},
|
|
4051
|
-
count: 2
|
|
4052
|
-
},
|
|
4053
|
-
{
|
|
4054
|
-
entity: {
|
|
4055
|
-
id: '085a5167-ff32-4631-8082-be2986f5a12d',
|
|
4056
|
-
label: 'Impresa Oppo - Sitzia',
|
|
4057
|
-
typeOfEntity: 'organizzazione'
|
|
4058
|
-
},
|
|
4059
|
-
count: 2
|
|
4060
|
-
},
|
|
4061
|
-
{
|
|
4062
|
-
entity: {
|
|
4063
|
-
id: '0cfe891d-35ca-443a-985b-6aa32ccccb96',
|
|
4064
|
-
label: 'Comune di Villacidro',
|
|
4065
|
-
typeOfEntity: 'organizzazione'
|
|
4066
|
-
},
|
|
4067
|
-
count: 2
|
|
4068
|
-
},
|
|
4069
|
-
{
|
|
4070
|
-
entity: {
|
|
4071
|
-
id: '0e296152-dfd5-465c-9d68-8aaa6a19f86d',
|
|
4072
|
-
label: 'Villacidro',
|
|
4073
|
-
typeOfEntity: 'luogo'
|
|
4074
|
-
},
|
|
4075
|
-
count: 2
|
|
4076
|
-
},
|
|
4077
|
-
{
|
|
4078
|
-
entity: {
|
|
4079
|
-
id: '0ee8df8a-04a9-4c7d-9a57-f3b0cc4aadaa',
|
|
4080
|
-
label: 'Comune di Pompu',
|
|
4081
|
-
typeOfEntity: 'organizzazione'
|
|
4082
|
-
},
|
|
4083
|
-
count: 2
|
|
4084
|
-
},
|
|
4085
|
-
{
|
|
4086
|
-
entity: {
|
|
4087
|
-
id: '0fc240bd-7392-4e48-9a76-56715941a9a6',
|
|
4088
|
-
label: 'SNIA Viscosa spa',
|
|
4089
|
-
typeOfEntity: 'organizzazione'
|
|
4090
|
-
},
|
|
4091
|
-
count: 2
|
|
4092
|
-
},
|
|
4093
|
-
{
|
|
4094
|
-
entity: {
|
|
4095
|
-
id: '1134f71d-bdce-44cc-a283-10ccf0779d7f',
|
|
4096
|
-
label: 'Comune di Villasimius',
|
|
4097
|
-
typeOfEntity: 'organizzazione'
|
|
4098
|
-
},
|
|
4099
|
-
count: 2
|
|
4100
|
-
},
|
|
4101
|
-
{
|
|
4102
|
-
entity: {
|
|
4103
|
-
id: '1138e0bb-3767-45af-a356-6b712d09ea54',
|
|
4104
|
-
label: 'Comune di Baressa',
|
|
4105
|
-
typeOfEntity: 'organizzazione'
|
|
4106
|
-
},
|
|
4107
|
-
count: 2
|
|
4108
|
-
},
|
|
4109
|
-
{
|
|
4110
|
-
entity: {
|
|
4111
|
-
id: '1160ea4e-6376-43f3-a9f9-1feed3ce1ae7',
|
|
4112
|
-
label: 'Comune di Tiana',
|
|
4113
|
-
typeOfEntity: 'organizzazione'
|
|
4114
|
-
},
|
|
4115
|
-
count: 2
|
|
4116
|
-
},
|
|
4117
|
-
{
|
|
4118
|
-
entity: {
|
|
4119
|
-
id: '139a15f8-a311-48c1-89e7-484b1cd40241',
|
|
4120
|
-
label: 'Merli Gallino, Anna',
|
|
4121
|
-
typeOfEntity: 'persona'
|
|
4122
|
-
},
|
|
4123
|
-
count: 2
|
|
4124
|
-
},
|
|
4125
|
-
{
|
|
4126
|
-
entity: {
|
|
4127
|
-
id: '13c14701-cdf4-469b-97a1-63f1ba119b93',
|
|
4128
|
-
label: 'Schinardi, Giuseppe',
|
|
4129
|
-
typeOfEntity: 'persona'
|
|
4130
|
-
},
|
|
4131
|
-
count: 2
|
|
4132
|
-
},
|
|
4133
|
-
{
|
|
4134
|
-
entity: {
|
|
4135
|
-
id: '13cc968f-9e6c-4323-92d3-9ccfb025935b',
|
|
4136
|
-
label: 'Comune di Sanluri',
|
|
4137
|
-
typeOfEntity: 'organizzazione'
|
|
4138
|
-
},
|
|
4139
|
-
count: 2
|
|
4140
|
-
},
|
|
4141
|
-
{
|
|
4142
|
-
entity: {
|
|
4143
|
-
id: '1420a2ac-b681-447c-a764-e2972f3b9f94',
|
|
4144
|
-
label: 'Comune di Pau',
|
|
4145
|
-
typeOfEntity: 'organizzazione'
|
|
4146
|
-
},
|
|
4147
|
-
count: 2
|
|
4148
|
-
},
|
|
4149
|
-
{
|
|
4150
|
-
entity: {
|
|
4151
|
-
id: '147b0d85-c924-474f-876a-59fd2d4e6278',
|
|
4152
|
-
label: "Ente nazionale per l'energia elettrica - ENEL di Cagliari",
|
|
4153
|
-
typeOfEntity: 'organizzazione'
|
|
4154
|
-
},
|
|
4155
|
-
count: 2
|
|
4156
|
-
},
|
|
4157
|
-
{
|
|
4158
|
-
entity: {
|
|
4159
|
-
id: '15039e16-67c9-43bf-a143-9c9a17848a97',
|
|
4160
|
-
label: 'Tortolì',
|
|
4161
|
-
typeOfEntity: 'luogo'
|
|
4162
|
-
},
|
|
4163
|
-
count: 2
|
|
4164
|
-
},
|
|
4165
|
-
{
|
|
4166
|
-
entity: {
|
|
4167
|
-
id: '153b8d59-07e6-4273-a20f-1f395c217dd4',
|
|
4168
|
-
label: 'Sini',
|
|
4169
|
-
typeOfEntity: 'luogo'
|
|
4170
|
-
},
|
|
4171
|
-
count: 2
|
|
4172
|
-
},
|
|
4173
|
-
{
|
|
4174
|
-
entity: {
|
|
4175
|
-
id: '162e5540-f15a-482a-91f0-b0e57117f9c3',
|
|
4176
|
-
label: 'Comune di Bauladu',
|
|
4177
|
-
typeOfEntity: 'organizzazione'
|
|
4178
|
-
},
|
|
4179
|
-
count: 2
|
|
4180
|
-
},
|
|
4181
|
-
{
|
|
4182
|
-
entity: {
|
|
4183
|
-
id: '17822165-bad5-40f1-aeae-dfe2ed115ab0',
|
|
4184
|
-
label: 'Sardara',
|
|
4185
|
-
typeOfEntity: 'luogo'
|
|
4186
|
-
},
|
|
4187
|
-
count: 2
|
|
4188
|
-
},
|
|
4189
|
-
{
|
|
4190
|
-
entity: {
|
|
4191
|
-
id: '17db64d3-207a-4717-80a6-4046ab6e729d',
|
|
4192
|
-
label: 'Comune di Masullas',
|
|
4193
|
-
typeOfEntity: 'organizzazione'
|
|
4194
|
-
},
|
|
4195
|
-
count: 2
|
|
4196
|
-
},
|
|
4197
|
-
{
|
|
4198
|
-
entity: {
|
|
4199
|
-
id: '19199ef1-16f6-4ae2-a948-08f89e8dddd5',
|
|
4200
|
-
label: 'Comune di Sarroch',
|
|
4201
|
-
typeOfEntity: 'organizzazione'
|
|
4202
|
-
},
|
|
4203
|
-
count: 2
|
|
4204
|
-
},
|
|
4205
|
-
{
|
|
4206
|
-
entity: {
|
|
4207
|
-
id: '19d4a374-8589-436e-9ac1-c3a7128241ee',
|
|
4208
|
-
label: 'Comune di Serbariu',
|
|
4209
|
-
typeOfEntity: 'organizzazione'
|
|
4210
|
-
},
|
|
4211
|
-
count: 2
|
|
4212
|
-
},
|
|
4213
|
-
{
|
|
4214
|
-
entity: {
|
|
4215
|
-
id: '1a37bde7-64f4-4864-a231-731a9537414e',
|
|
4216
|
-
label: 'Guamaggiore',
|
|
4217
|
-
typeOfEntity: 'luogo'
|
|
4218
|
-
},
|
|
4219
|
-
count: 2
|
|
4220
|
-
},
|
|
4221
|
-
{
|
|
4222
|
-
entity: {
|
|
4223
|
-
id: '1a5c81cf-dd08-46bc-8f2b-9f9d36e26d23',
|
|
4224
|
-
label: 'Comune di Furtei',
|
|
4225
|
-
typeOfEntity: 'organizzazione'
|
|
4226
|
-
},
|
|
4227
|
-
count: 2
|
|
4228
|
-
},
|
|
4229
|
-
{
|
|
4230
|
-
entity: {
|
|
4231
|
-
id: '1aafe693-66d5-47a8-8a7a-cab61738872f',
|
|
4232
|
-
label: 'Contu, Anselmo',
|
|
4233
|
-
typeOfEntity: 'persona'
|
|
4234
|
-
},
|
|
4235
|
-
count: 2
|
|
4236
|
-
},
|
|
4237
|
-
{
|
|
4238
|
-
entity: {
|
|
4239
|
-
id: '1b18acb6-9c63-4c58-a9d2-dc6756f16a9f',
|
|
4240
|
-
label: 'Comune di Gergei',
|
|
4241
|
-
typeOfEntity: 'organizzazione'
|
|
4242
|
-
},
|
|
4243
|
-
count: 2
|
|
4244
|
-
},
|
|
4245
|
-
{
|
|
4246
|
-
entity: {
|
|
4247
|
-
id: '1b6d9a5f-dec2-4872-972c-caccded3ff1d',
|
|
4248
|
-
label: 'Comune di Soddì',
|
|
4249
|
-
typeOfEntity: 'organizzazione'
|
|
4250
|
-
},
|
|
4251
|
-
count: 2
|
|
4252
|
-
},
|
|
4253
|
-
{
|
|
4254
|
-
entity: {
|
|
4255
|
-
id: '1c4867ba-c633-4be9-a1d0-1038cd82bf79',
|
|
4256
|
-
label: 'Comune di Pauli Arbarei',
|
|
4257
|
-
typeOfEntity: 'organizzazione'
|
|
4258
|
-
},
|
|
4259
|
-
count: 2
|
|
4260
|
-
},
|
|
4261
|
-
{
|
|
4262
|
-
entity: {
|
|
4263
|
-
id: '1c8a172f-de43-4157-b5d5-33524c060a5f',
|
|
4264
|
-
label: 'Gonnoscodina',
|
|
4265
|
-
typeOfEntity: 'luogo'
|
|
4266
|
-
},
|
|
4267
|
-
count: 2
|
|
4268
|
-
},
|
|
4269
|
-
{
|
|
4270
|
-
entity: {
|
|
4271
|
-
id: '1ca62339-b976-44c4-a38f-eabb321600e9',
|
|
4272
|
-
label: 'Comune di Arbus',
|
|
4273
|
-
typeOfEntity: 'organizzazione'
|
|
4274
|
-
},
|
|
4275
|
-
count: 2
|
|
4276
|
-
},
|
|
4277
|
-
{
|
|
4278
|
-
entity: {
|
|
4279
|
-
id: '1e16f325-67a1-41c5-8c24-af41c4381224',
|
|
4280
|
-
label: 'San Basilio',
|
|
4281
|
-
typeOfEntity: 'luogo'
|
|
4282
|
-
},
|
|
4283
|
-
count: 2
|
|
4284
|
-
},
|
|
4285
|
-
{
|
|
4286
|
-
entity: {
|
|
4287
|
-
id: '1eaf8142-0f76-418d-9316-13915b74414b',
|
|
4288
|
-
label: 'Bulzi',
|
|
4289
|
-
typeOfEntity: 'luogo'
|
|
4290
|
-
},
|
|
4291
|
-
count: 2
|
|
4292
|
-
},
|
|
4293
|
-
{
|
|
4294
|
-
entity: {
|
|
4295
|
-
id: '1ff3d08b-2562-4b28-ba83-3e4918730e36',
|
|
4296
|
-
label: 'Segariu',
|
|
4297
|
-
typeOfEntity: 'luogo'
|
|
4298
|
-
},
|
|
4299
|
-
count: 2
|
|
4300
|
-
},
|
|
4301
|
-
{
|
|
4302
|
-
entity: {
|
|
4303
|
-
id: '201ef2d3-ae2b-4ec4-981d-41d9b6e506c4',
|
|
4304
|
-
label: 'Comune di Ussaramanna',
|
|
4305
|
-
typeOfEntity: 'organizzazione'
|
|
4306
|
-
},
|
|
4307
|
-
count: 2
|
|
4308
|
-
},
|
|
4309
|
-
{
|
|
4310
|
-
entity: {
|
|
4311
|
-
id: '219f3078-a570-41c3-8b2a-a77c93e31b26',
|
|
4312
|
-
label: 'Serbariu',
|
|
4313
|
-
typeOfEntity: 'luogo'
|
|
4314
|
-
},
|
|
4315
|
-
count: 2
|
|
4316
|
-
},
|
|
4317
|
-
{
|
|
4318
|
-
entity: {
|
|
4319
|
-
id: '21f1cb91-1912-4955-9405-459aee61c5dc',
|
|
4320
|
-
label: 'Comune di Ussana',
|
|
4321
|
-
typeOfEntity: 'organizzazione'
|
|
4322
|
-
},
|
|
4323
|
-
count: 2
|
|
4324
|
-
},
|
|
4325
|
-
{
|
|
4326
|
-
entity: {
|
|
4327
|
-
id: '22335ba8-d58d-46e8-bb77-555ddd48cf25',
|
|
4328
|
-
label: 'Comune di Belvì',
|
|
4329
|
-
typeOfEntity: 'organizzazione'
|
|
4330
|
-
},
|
|
4331
|
-
count: 2
|
|
4332
|
-
},
|
|
4333
|
-
{
|
|
4334
|
-
entity: {
|
|
4335
|
-
id: '228b675c-fab8-4959-b257-dc96c64decd4',
|
|
4336
|
-
label: 'Comune di Bortigiadas',
|
|
4337
|
-
typeOfEntity: 'organizzazione'
|
|
4338
|
-
},
|
|
4339
|
-
count: 2
|
|
4340
|
-
},
|
|
4341
|
-
{
|
|
4342
|
-
entity: {
|
|
4343
|
-
id: '237e2cea-3950-4627-89b3-70e86c0c8879',
|
|
4344
|
-
label: 'Cara Mereu, Giulia',
|
|
4345
|
-
typeOfEntity: 'persona'
|
|
4346
|
-
},
|
|
4347
|
-
count: 2
|
|
4348
|
-
},
|
|
4349
|
-
{
|
|
4350
|
-
entity: {
|
|
4351
|
-
id: '245150e0-4d2d-46a2-b790-fea5cf3c5055',
|
|
4352
|
-
label: 'Villasimius',
|
|
4353
|
-
typeOfEntity: 'luogo'
|
|
4354
|
-
},
|
|
4355
|
-
count: 2
|
|
4356
|
-
},
|
|
4357
|
-
{
|
|
4358
|
-
entity: {
|
|
4359
|
-
id: '24d13e0e-1174-4461-9721-74c1085ae633',
|
|
4360
|
-
label: 'Tiana',
|
|
4361
|
-
typeOfEntity: 'luogo'
|
|
4362
|
-
},
|
|
4363
|
-
count: 2
|
|
4364
|
-
},
|
|
4365
|
-
{
|
|
4366
|
-
entity: {
|
|
4367
|
-
id: '25a59c4f-51ce-424e-91a0-0a4a606333fb',
|
|
4368
|
-
label: 'Portovesme (Portoscuso)',
|
|
4369
|
-
typeOfEntity: 'luogo'
|
|
4370
|
-
},
|
|
4371
|
-
count: 2
|
|
4372
|
-
},
|
|
4373
|
-
{
|
|
4374
|
-
entity: {
|
|
4375
|
-
id: '25b3d99b-d412-4b8e-9889-9f7ede13c4d8',
|
|
4376
|
-
label: 'Comune di Orroli',
|
|
4377
|
-
typeOfEntity: 'organizzazione'
|
|
4378
|
-
},
|
|
4379
|
-
count: 2
|
|
4380
|
-
},
|
|
4381
|
-
{
|
|
4382
|
-
entity: {
|
|
4383
|
-
id: '26806d17-6261-428d-80c2-b9e89e58902a',
|
|
4384
|
-
label: 'Comune di Alghero',
|
|
4385
|
-
typeOfEntity: 'organizzazione'
|
|
4386
|
-
},
|
|
4387
|
-
count: 2
|
|
4388
|
-
},
|
|
4389
|
-
{
|
|
4390
|
-
entity: {
|
|
4391
|
-
id: '26e86c98-c8b4-4534-a819-0e698a92447a',
|
|
4392
|
-
label: 'Villanovaforru',
|
|
4393
|
-
typeOfEntity: 'luogo'
|
|
4394
|
-
},
|
|
4395
|
-
count: 2
|
|
4396
|
-
},
|
|
4397
|
-
{
|
|
4398
|
-
entity: {
|
|
4399
|
-
id: '295fe8b8-f241-447b-a3c0-4d27f8de2783',
|
|
4400
|
-
label: 'Comune di Nuraminis',
|
|
4401
|
-
typeOfEntity: 'organizzazione'
|
|
4402
|
-
},
|
|
4403
|
-
count: 2
|
|
4404
|
-
},
|
|
4405
|
-
{
|
|
4406
|
-
entity: {
|
|
4407
|
-
id: '2adde0fb-af5c-4aee-a5a0-1c5b0a9b2f55',
|
|
4408
|
-
label: 'San Vero Milis',
|
|
4409
|
-
typeOfEntity: 'luogo'
|
|
4410
|
-
},
|
|
4411
|
-
count: 2
|
|
4412
|
-
},
|
|
4413
|
-
{
|
|
4414
|
-
entity: {
|
|
4415
|
-
id: '2d1aa574-280e-459d-807d-6b2bbcd25708',
|
|
4416
|
-
label: 'Silì (Oristano)',
|
|
4417
|
-
typeOfEntity: 'luogo'
|
|
4418
|
-
},
|
|
4419
|
-
count: 2
|
|
4420
|
-
},
|
|
4421
|
-
{
|
|
4422
|
-
entity: {
|
|
4423
|
-
id: '2d9d67c5-0ba0-4bcd-af58-8d60aca990da',
|
|
4424
|
-
label: 'Loi, Attilio',
|
|
4425
|
-
typeOfEntity: 'persona'
|
|
4426
|
-
},
|
|
4427
|
-
count: 2
|
|
4428
|
-
},
|
|
4429
|
-
{
|
|
4430
|
-
entity: {
|
|
4431
|
-
id: '2dc7b480-b021-44f8-b1eb-84f8f1b2be1d',
|
|
4432
|
-
label: 'Nonnoi, Francesco',
|
|
4433
|
-
typeOfEntity: 'persona'
|
|
4434
|
-
},
|
|
4435
|
-
count: 2
|
|
4436
|
-
},
|
|
4437
|
-
{
|
|
4438
|
-
entity: {
|
|
4439
|
-
id: '3001f08c-96a2-4ac2-9842-46fdcec99f43',
|
|
4440
|
-
label: 'Comune di Silì',
|
|
4441
|
-
typeOfEntity: 'organizzazione'
|
|
4442
|
-
},
|
|
4443
|
-
count: 2
|
|
4444
|
-
},
|
|
4445
|
-
{
|
|
4446
|
-
entity: {
|
|
4447
|
-
id: '309d5edc-7ab3-488c-8ca3-95b834c01a34',
|
|
4448
|
-
label: 'Halen, Louis',
|
|
4449
|
-
typeOfEntity: 'persona'
|
|
4450
|
-
},
|
|
4451
|
-
count: 2
|
|
4452
|
-
},
|
|
4453
|
-
{
|
|
4454
|
-
entity: {
|
|
4455
|
-
id: '3135a633-9a62-4f2f-bb0b-d6f666f50d74',
|
|
4456
|
-
label: 'Società ORMUS Residenziale spa',
|
|
4457
|
-
typeOfEntity: 'organizzazione'
|
|
4458
|
-
},
|
|
4459
|
-
count: 2
|
|
4460
|
-
},
|
|
4461
|
-
{
|
|
4462
|
-
entity: {
|
|
4463
|
-
id: '31573df9-5a83-42b5-9b3b-42d303450ffd',
|
|
4464
|
-
label: 'Comune di Aidomaggiore',
|
|
4465
|
-
typeOfEntity: 'organizzazione'
|
|
4466
|
-
},
|
|
4467
|
-
count: 2
|
|
4468
|
-
},
|
|
4469
|
-
{
|
|
4470
|
-
entity: {
|
|
4471
|
-
id: '317eb949-cd92-445b-a05c-b5c6fc70ea86',
|
|
4472
|
-
label: 'Comune di Gonnoscodina',
|
|
4473
|
-
typeOfEntity: 'organizzazione'
|
|
4474
|
-
},
|
|
4475
|
-
count: 2
|
|
4476
|
-
},
|
|
4477
|
-
{
|
|
4478
|
-
entity: {
|
|
4479
|
-
id: '320e52bf-a8a9-4745-8884-3aaa15f76126',
|
|
4480
|
-
label: 'Comune di Pula',
|
|
4481
|
-
typeOfEntity: 'organizzazione'
|
|
4482
|
-
},
|
|
4483
|
-
count: 2
|
|
4484
|
-
},
|
|
4485
|
-
{
|
|
4486
|
-
entity: {
|
|
4487
|
-
id: '327e8d73-00b3-4c91-9c81-cca6754f2fc2',
|
|
4488
|
-
label: 'San Pantaleo (Dolianova)',
|
|
4489
|
-
typeOfEntity: 'luogo'
|
|
4490
|
-
},
|
|
4491
|
-
count: 2
|
|
4492
|
-
},
|
|
4493
|
-
{
|
|
4494
|
-
entity: {
|
|
4495
|
-
id: '32943a84-75be-42cb-92ac-3fea5a72667c',
|
|
4496
|
-
label: 'Comune di Siris',
|
|
4497
|
-
typeOfEntity: 'organizzazione'
|
|
4498
|
-
},
|
|
4499
|
-
count: 2
|
|
4500
|
-
},
|
|
4501
|
-
{
|
|
4502
|
-
entity: {
|
|
4503
|
-
id: '32c0e727-1e1e-461b-b4ad-cc1068bd8a37',
|
|
4504
|
-
label: 'Bidonì',
|
|
4505
|
-
typeOfEntity: 'luogo'
|
|
4506
|
-
},
|
|
4507
|
-
count: 2
|
|
4508
|
-
},
|
|
4509
|
-
{
|
|
4510
|
-
entity: {
|
|
4511
|
-
id: '331a496b-cc11-4118-b359-2a5ce06e957d',
|
|
4512
|
-
label: 'Comune di Muravera',
|
|
4513
|
-
typeOfEntity: 'organizzazione'
|
|
4514
|
-
},
|
|
4515
|
-
count: 2
|
|
4516
|
-
},
|
|
4517
|
-
{
|
|
4518
|
-
entity: {
|
|
4519
|
-
id: '334d1723-8bfe-4a70-a18e-51cca716ec6d',
|
|
4520
|
-
label: 'Sinnai',
|
|
4521
|
-
typeOfEntity: 'luogo'
|
|
4522
|
-
},
|
|
4523
|
-
count: 2
|
|
4524
|
-
},
|
|
4525
|
-
{
|
|
4526
|
-
entity: {
|
|
4527
|
-
id: '34513a78-efa7-4d89-87d0-5144d185db3d',
|
|
4528
|
-
label: 'Riola',
|
|
4529
|
-
typeOfEntity: 'luogo'
|
|
4530
|
-
},
|
|
4531
|
-
count: 2
|
|
4532
|
-
},
|
|
4533
|
-
{
|
|
4534
|
-
entity: {
|
|
4535
|
-
id: '35517805-678d-47f5-8f02-92dcdd7471c4',
|
|
4536
|
-
label: 'Ballao',
|
|
4537
|
-
typeOfEntity: 'luogo'
|
|
4538
|
-
},
|
|
4539
|
-
count: 2
|
|
4540
|
-
},
|
|
4541
|
-
{
|
|
4542
|
-
entity: {
|
|
4543
|
-
id: '36182ea5-9d5f-4ffc-98a4-bd68d2e08903',
|
|
4544
|
-
label: 'Ardauli',
|
|
4545
|
-
typeOfEntity: 'luogo'
|
|
4546
|
-
},
|
|
4547
|
-
count: 2
|
|
4548
|
-
},
|
|
4549
|
-
{
|
|
4550
|
-
entity: {
|
|
4551
|
-
id: '379d9597-6727-4f89-8940-15ee3126e250',
|
|
4552
|
-
label: 'Comune di Tratalias',
|
|
4553
|
-
typeOfEntity: 'organizzazione'
|
|
4554
|
-
},
|
|
4555
|
-
count: 2
|
|
4556
|
-
},
|
|
4557
|
-
{
|
|
4558
|
-
entity: {
|
|
4559
|
-
id: '37d67103-b6d8-44ed-a96a-a44bb9e86bbb',
|
|
4560
|
-
label: "Ente nazionale per l'energia elettrica - ENEL di Cagliari",
|
|
4561
|
-
typeOfEntity: 'organizzazione'
|
|
4562
|
-
},
|
|
4563
|
-
count: 2
|
|
4564
|
-
},
|
|
4565
|
-
{
|
|
4566
|
-
entity: {
|
|
4567
|
-
id: '39382dc9-81e1-413c-a251-32f522f34473',
|
|
4568
|
-
label: 'Comune di Ardauli',
|
|
4569
|
-
typeOfEntity: 'organizzazione'
|
|
4570
|
-
},
|
|
4571
|
-
count: 2
|
|
4572
|
-
},
|
|
4573
|
-
{
|
|
4574
|
-
entity: {
|
|
4575
|
-
id: '39c3715b-8532-4d43-a6d9-709b6ae33d6d',
|
|
4576
|
-
label: 'Figu',
|
|
4577
|
-
typeOfEntity: 'luogo'
|
|
4578
|
-
},
|
|
4579
|
-
count: 2
|
|
4580
|
-
},
|
|
4581
|
-
{
|
|
4582
|
-
entity: {
|
|
4583
|
-
id: '3b72153f-7a66-4fd4-a875-8b9c2dd29137',
|
|
4584
|
-
label: 'Comune di Ardauli',
|
|
4585
|
-
typeOfEntity: 'organizzazione'
|
|
4586
|
-
},
|
|
4587
|
-
count: 2
|
|
4588
|
-
},
|
|
4589
|
-
{
|
|
4590
|
-
entity: {
|
|
4591
|
-
id: '3cdd42e6-cce8-4cd3-b1c4-2c828847159a',
|
|
4592
|
-
label: 'Villaputzu',
|
|
4593
|
-
typeOfEntity: 'luogo'
|
|
4594
|
-
},
|
|
4595
|
-
count: 2
|
|
4596
|
-
},
|
|
4597
|
-
{
|
|
4598
|
-
entity: {
|
|
4599
|
-
id: '3d15a7c8-0044-494b-9efd-6a102c0b0e15',
|
|
4600
|
-
label: 'Comune di Teulada',
|
|
4601
|
-
typeOfEntity: 'organizzazione'
|
|
4602
|
-
},
|
|
4603
|
-
count: 2
|
|
4604
|
-
},
|
|
4605
|
-
{
|
|
4606
|
-
entity: {
|
|
4607
|
-
id: '3d330aa1-a2e5-46f6-8aac-92a8bbf42747',
|
|
4608
|
-
label: 'Comune di Sisini',
|
|
4609
|
-
typeOfEntity: 'organizzazione'
|
|
4610
|
-
},
|
|
4611
|
-
count: 2
|
|
4612
|
-
},
|
|
4613
|
-
{
|
|
4614
|
-
entity: {
|
|
4615
|
-
id: '3d4b3171-4d73-4b11-a5a4-a92943977185',
|
|
4616
|
-
label: 'Comune di Lotzorai',
|
|
4617
|
-
typeOfEntity: 'organizzazione'
|
|
4618
|
-
},
|
|
4619
|
-
count: 2
|
|
4620
|
-
},
|
|
4621
|
-
{
|
|
4622
|
-
entity: {
|
|
4623
|
-
id: '3e5a08ed-ae81-444e-8f14-83800540104a',
|
|
4624
|
-
label: 'Modolo',
|
|
4625
|
-
typeOfEntity: 'luogo'
|
|
4626
|
-
},
|
|
4627
|
-
count: 2
|
|
4628
|
-
},
|
|
4629
|
-
{
|
|
4630
|
-
entity: {
|
|
4631
|
-
id: '4228815a-b000-4368-96fc-7cdceb296443',
|
|
4632
|
-
label: 'Giba',
|
|
4633
|
-
typeOfEntity: 'luogo'
|
|
4634
|
-
},
|
|
4635
|
-
count: 2
|
|
4636
|
-
},
|
|
4637
|
-
{
|
|
4638
|
-
entity: {
|
|
4639
|
-
id: '437171ac-cb47-4cc9-944f-4222e54203c7',
|
|
4640
|
-
label: 'Erby, Onorino',
|
|
4641
|
-
typeOfEntity: 'persona'
|
|
4642
|
-
},
|
|
4643
|
-
count: 2
|
|
4644
|
-
},
|
|
4645
|
-
{
|
|
4646
|
-
entity: {
|
|
4647
|
-
id: '445c41eb-6759-4598-a8bd-a13c483a0598',
|
|
4648
|
-
label: 'Comune di Morgongiori',
|
|
4649
|
-
typeOfEntity: 'organizzazione'
|
|
4650
|
-
},
|
|
4651
|
-
count: 2
|
|
4652
|
-
},
|
|
4653
|
-
{
|
|
4654
|
-
entity: {
|
|
4655
|
-
id: '45c8683b-24d6-471b-b772-f04476c097a8',
|
|
4656
|
-
label: 'Cappai Randaccio, Francesco',
|
|
4657
|
-
typeOfEntity: 'persona'
|
|
4658
|
-
},
|
|
4659
|
-
count: 2
|
|
4660
|
-
},
|
|
4661
|
-
{
|
|
4662
|
-
entity: {
|
|
4663
|
-
id: '460591fe-9cf5-43bd-98a8-f64a61677a8d',
|
|
4664
|
-
label: 'La Plaia (Cagliari)',
|
|
4665
|
-
typeOfEntity: 'luogo'
|
|
4666
|
-
},
|
|
4667
|
-
count: 2
|
|
4668
|
-
},
|
|
4669
|
-
{
|
|
4670
|
-
entity: {
|
|
4671
|
-
id: '46de2315-21ca-4ef5-bca0-e29659cbe149',
|
|
4672
|
-
label: 'Oristano',
|
|
4673
|
-
typeOfEntity: 'luogo'
|
|
4674
|
-
},
|
|
4675
|
-
count: 2
|
|
4676
|
-
},
|
|
4677
|
-
{
|
|
4678
|
-
entity: {
|
|
4679
|
-
id: '472f3817-8943-4afd-b481-f98b96746590',
|
|
4680
|
-
label: 'Comune di Lanusei',
|
|
4681
|
-
typeOfEntity: 'organizzazione'
|
|
4682
|
-
},
|
|
4683
|
-
count: 2
|
|
4684
|
-
},
|
|
4685
|
-
{
|
|
4686
|
-
entity: {
|
|
4687
|
-
id: '477c0546-ed56-4db0-921f-bdd22d571c9d',
|
|
4688
|
-
label: 'Comune di Serramanna',
|
|
4689
|
-
typeOfEntity: 'organizzazione'
|
|
4690
|
-
},
|
|
4691
|
-
count: 2
|
|
4692
|
-
},
|
|
4693
|
-
{
|
|
4694
|
-
entity: {
|
|
4695
|
-
id: '49383e9d-2d14-4c51-bcd1-9ff23fe8b96c',
|
|
4696
|
-
label: 'San Gregorio (Sinnai)',
|
|
4697
|
-
typeOfEntity: 'luogo'
|
|
4698
|
-
},
|
|
4699
|
-
count: 2
|
|
4700
|
-
},
|
|
4701
|
-
{
|
|
4702
|
-
entity: {
|
|
4703
|
-
id: '498501f4-151e-4f30-9606-35fc558444d2',
|
|
4704
|
-
label: 'Las Plassas',
|
|
4705
|
-
typeOfEntity: 'luogo'
|
|
4706
|
-
},
|
|
4707
|
-
count: 2
|
|
4708
|
-
},
|
|
4709
|
-
{
|
|
4710
|
-
entity: {
|
|
4711
|
-
id: '498d0454-999a-44b2-91e5-2cea2a3ea961',
|
|
4712
|
-
label: 'Bonnanaro',
|
|
4713
|
-
typeOfEntity: 'luogo'
|
|
4714
|
-
},
|
|
4715
|
-
count: 2
|
|
4716
|
-
},
|
|
4717
|
-
{
|
|
4718
|
-
entity: {
|
|
4719
|
-
id: '4a894a75-7a2f-49f2-a8f8-cf635acb8e33',
|
|
4720
|
-
label: 'Comune di Modolo',
|
|
4721
|
-
typeOfEntity: 'organizzazione'
|
|
4722
|
-
},
|
|
4723
|
-
count: 2
|
|
4724
|
-
},
|
|
4725
|
-
{
|
|
4726
|
-
entity: {
|
|
4727
|
-
id: '4a9939f4-7afc-4895-80e6-df64968b8369',
|
|
4728
|
-
label: 'Portisceddu (Fluminimaggiore)',
|
|
4729
|
-
typeOfEntity: 'luogo'
|
|
4730
|
-
},
|
|
4731
|
-
count: 2
|
|
4732
|
-
},
|
|
4733
|
-
{
|
|
4734
|
-
entity: {
|
|
4735
|
-
id: '4b6c325d-667e-4727-a8dd-4335ed3a1c35',
|
|
4736
|
-
label: 'Simala',
|
|
4737
|
-
typeOfEntity: 'luogo'
|
|
4738
|
-
},
|
|
4739
|
-
count: 2
|
|
4740
|
-
},
|
|
4741
|
-
{
|
|
4742
|
-
entity: {
|
|
4743
|
-
id: '4c6f00c4-58d5-4659-bf25-c5721d114100',
|
|
4744
|
-
label: 'Murgia, Giovanni',
|
|
4745
|
-
typeOfEntity: 'organizzazione'
|
|
4746
|
-
},
|
|
4747
|
-
count: 2
|
|
4748
|
-
},
|
|
4749
|
-
{
|
|
4750
|
-
entity: {
|
|
4751
|
-
id: '4d628c6c-2422-4b70-ae05-db65e0aabe6a',
|
|
4752
|
-
label: 'Guasila',
|
|
4753
|
-
typeOfEntity: 'luogo'
|
|
4754
|
-
},
|
|
4755
|
-
count: 2
|
|
4756
|
-
},
|
|
4757
|
-
{
|
|
4758
|
-
entity: {
|
|
4759
|
-
id: '4de77e75-7410-4b3c-8f84-b63476851bf0',
|
|
4760
|
-
label: "Comune di Sant'Antioco",
|
|
4761
|
-
typeOfEntity: 'organizzazione'
|
|
4762
|
-
},
|
|
4763
|
-
count: 2
|
|
4764
|
-
},
|
|
4765
|
-
{
|
|
4766
|
-
entity: {
|
|
4767
|
-
id: '4e3473a9-c62b-4bc1-88d5-62bbcaabbe60',
|
|
4768
|
-
label: 'Orroli',
|
|
4769
|
-
typeOfEntity: 'luogo'
|
|
4770
|
-
},
|
|
4771
|
-
count: 2
|
|
4772
|
-
},
|
|
4773
|
-
{
|
|
4774
|
-
entity: {
|
|
4775
|
-
id: '4e77174d-a776-4fcd-a45f-37159ee3cb7a',
|
|
4776
|
-
label: "Casa di cura Sant'Anna",
|
|
4777
|
-
typeOfEntity: 'organizzazione'
|
|
4778
|
-
},
|
|
4779
|
-
count: 2
|
|
4780
|
-
},
|
|
4781
|
-
{
|
|
4782
|
-
entity: {
|
|
4783
|
-
id: '4e83a62f-54e8-4415-9a44-05f49279395b',
|
|
4784
|
-
label: 'Gallino, Paolo',
|
|
4785
|
-
typeOfEntity: 'persona'
|
|
4786
|
-
},
|
|
4787
|
-
count: 2
|
|
4788
|
-
},
|
|
4789
|
-
{
|
|
4790
|
-
entity: {
|
|
4791
|
-
id: '4ea23bbd-f00f-495e-8bb3-1edcd3dc9205',
|
|
4792
|
-
label: 'Comune di Baunei',
|
|
4793
|
-
typeOfEntity: 'organizzazione'
|
|
4794
|
-
},
|
|
4795
|
-
count: 2
|
|
4796
|
-
},
|
|
4797
|
-
{
|
|
4798
|
-
entity: {
|
|
4799
|
-
id: '4ee9dd1a-df3b-4e9f-9091-a3f55aaf72ee',
|
|
4800
|
-
label: 'Comune di Baratili San Pietro',
|
|
4801
|
-
typeOfEntity: 'organizzazione'
|
|
4802
|
-
},
|
|
4803
|
-
count: 2
|
|
4804
|
-
},
|
|
4805
|
-
{
|
|
4806
|
-
entity: {
|
|
4807
|
-
id: '4fadfd54-bfdf-48c7-b216-b1d8c6efd0c4',
|
|
4808
|
-
label: 'Fercia, Giorgio',
|
|
4809
|
-
typeOfEntity: 'persona'
|
|
4810
|
-
},
|
|
4811
|
-
count: 2
|
|
4812
|
-
},
|
|
4813
|
-
{
|
|
4814
|
-
entity: {
|
|
4815
|
-
id: '50e52bc5-577d-4f72-9f7c-0e9b2c5bbffc',
|
|
4816
|
-
label: 'Villaspeciosa',
|
|
4817
|
-
typeOfEntity: 'luogo'
|
|
4818
|
-
},
|
|
4819
|
-
count: 2
|
|
4820
|
-
},
|
|
4821
|
-
{
|
|
4822
|
-
entity: {
|
|
4823
|
-
id: '5122cd7a-f40d-4a28-a832-556467e49faa',
|
|
4824
|
-
label: 'Casu, Carlo',
|
|
4825
|
-
typeOfEntity: 'persona'
|
|
4826
|
-
},
|
|
4827
|
-
count: 2
|
|
4828
|
-
},
|
|
4829
|
-
{
|
|
4830
|
-
entity: {
|
|
4831
|
-
id: '513f7c58-ea50-40e5-be00-ad2180d8e346',
|
|
4832
|
-
label: 'Comune di Bonnanaro',
|
|
4833
|
-
typeOfEntity: 'organizzazione'
|
|
4834
|
-
},
|
|
4835
|
-
count: 2
|
|
4836
|
-
},
|
|
4837
|
-
{
|
|
4838
|
-
entity: {
|
|
4839
|
-
id: '5243f5e0-f763-493d-a38b-7c60a6753475',
|
|
4840
|
-
label: 'Comune di Segariu',
|
|
4841
|
-
typeOfEntity: 'organizzazione'
|
|
4842
|
-
},
|
|
4843
|
-
count: 2
|
|
4844
|
-
},
|
|
4845
|
-
{
|
|
4846
|
-
entity: {
|
|
4847
|
-
id: '524e7e8d-5e65-4935-9885-fb247fcf3cb0',
|
|
4848
|
-
label: 'Consorzio per il nucleo di industrializzazione del Sulcis Iglesiente',
|
|
4849
|
-
typeOfEntity: 'organizzazione'
|
|
4850
|
-
},
|
|
4851
|
-
count: 2
|
|
4852
|
-
},
|
|
4853
|
-
{
|
|
4854
|
-
entity: {
|
|
4855
|
-
id: '52982af8-321c-4af8-922e-91783726df90',
|
|
4856
|
-
label: 'Comune di Villanova Tulo',
|
|
4857
|
-
typeOfEntity: 'organizzazione'
|
|
4858
|
-
},
|
|
4859
|
-
count: 2
|
|
4860
|
-
},
|
|
4861
|
-
{
|
|
4862
|
-
entity: {
|
|
4863
|
-
id: '52984f23-1481-49d4-b56d-ee6ad2095392',
|
|
4864
|
-
label: 'Comune di Serrenti',
|
|
4865
|
-
typeOfEntity: 'organizzazione'
|
|
4866
|
-
},
|
|
4867
|
-
count: 2
|
|
4868
|
-
},
|
|
4869
|
-
{
|
|
4870
|
-
entity: {
|
|
4871
|
-
id: '52f0e561-80d7-4d0b-bcf9-303fb2d4c8ad',
|
|
4872
|
-
label: 'San Giovanni Suergiu',
|
|
4873
|
-
typeOfEntity: 'luogo'
|
|
4874
|
-
},
|
|
4875
|
-
count: 2
|
|
4876
|
-
},
|
|
4877
|
-
{
|
|
4878
|
-
entity: {
|
|
4879
|
-
id: '5377fa3e-8819-48b6-93df-411da288d921',
|
|
4880
|
-
label: 'Comune di Neoneli',
|
|
4881
|
-
typeOfEntity: 'organizzazione'
|
|
4882
|
-
},
|
|
4883
|
-
count: 2
|
|
4884
|
-
},
|
|
4885
|
-
{
|
|
4886
|
-
entity: {
|
|
4887
|
-
id: '552f772c-7993-4a7a-804e-ff6944e3b277',
|
|
4888
|
-
label: 'Serpeddì',
|
|
4889
|
-
typeOfEntity: 'luogo'
|
|
4890
|
-
},
|
|
4891
|
-
count: 2
|
|
4892
|
-
},
|
|
4893
|
-
{
|
|
4894
|
-
entity: {
|
|
4895
|
-
id: '55f897df-a9e7-4771-9060-8fa4dfbeb510',
|
|
4896
|
-
label: 'Pompu',
|
|
4897
|
-
typeOfEntity: 'luogo'
|
|
4898
|
-
},
|
|
4899
|
-
count: 2
|
|
4900
|
-
},
|
|
4901
|
-
{
|
|
4902
|
-
entity: {
|
|
4903
|
-
id: '56490b34-d0c4-4e40-ab61-f746cd332656',
|
|
4904
|
-
label: 'Tonara',
|
|
4905
|
-
typeOfEntity: 'luogo'
|
|
4906
|
-
},
|
|
4907
|
-
count: 2
|
|
4908
|
-
},
|
|
4909
|
-
{
|
|
4910
|
-
entity: {
|
|
4911
|
-
id: '57fb1ad0-258c-44c9-9e20-bc5a820688bc',
|
|
4912
|
-
label: 'Valentino, Luigi',
|
|
4913
|
-
typeOfEntity: 'persona'
|
|
4914
|
-
},
|
|
4915
|
-
count: 2
|
|
4916
|
-
},
|
|
4917
|
-
{
|
|
4918
|
-
entity: {
|
|
4919
|
-
id: '583e09d2-0837-4979-af13-bcdc24f60d46',
|
|
4920
|
-
label: 'Birori',
|
|
4921
|
-
typeOfEntity: 'luogo'
|
|
4922
|
-
},
|
|
4923
|
-
count: 2
|
|
4924
|
-
},
|
|
4925
|
-
{
|
|
4926
|
-
entity: {
|
|
4927
|
-
id: '5ac96198-3f46-4c7d-9c93-06b42c29cce1',
|
|
4928
|
-
label: 'Abbasanta',
|
|
4929
|
-
typeOfEntity: 'luogo'
|
|
4930
|
-
},
|
|
4931
|
-
count: 2
|
|
4932
|
-
},
|
|
4933
|
-
{
|
|
4934
|
-
entity: {
|
|
4935
|
-
id: '5b01130d-531d-4a02-96e7-fab352e7873f',
|
|
4936
|
-
label: 'Serpeddì',
|
|
4937
|
-
typeOfEntity: 'luogo'
|
|
4938
|
-
},
|
|
4939
|
-
count: 2
|
|
4940
|
-
},
|
|
4941
|
-
{
|
|
4942
|
-
entity: {
|
|
4943
|
-
id: '5c9a1588-523a-419b-84d6-4f484468c710',
|
|
4944
|
-
label: 'Sicci San Biagio (Dolianova)',
|
|
4945
|
-
typeOfEntity: 'luogo'
|
|
4946
|
-
},
|
|
4947
|
-
count: 2
|
|
4948
|
-
},
|
|
4949
|
-
{
|
|
4950
|
-
entity: {
|
|
4951
|
-
id: '5cdb4ee1-59f0-47da-b2dc-c49090ca9fac',
|
|
4952
|
-
label: 'Comune di Setzu',
|
|
4953
|
-
typeOfEntity: 'organizzazione'
|
|
4954
|
-
},
|
|
4955
|
-
count: 2
|
|
4956
|
-
},
|
|
4957
|
-
{
|
|
4958
|
-
entity: {
|
|
4959
|
-
id: '5e9ed26e-205f-4344-9c45-d75300894d4f',
|
|
4960
|
-
label: 'Simaxis',
|
|
4961
|
-
typeOfEntity: 'luogo'
|
|
4962
|
-
},
|
|
4963
|
-
count: 2
|
|
4964
|
-
},
|
|
4965
|
-
{
|
|
4966
|
-
entity: {
|
|
4967
|
-
id: '5ebcb08a-5865-4060-9429-815525d9aaed',
|
|
4968
|
-
label: 'Samatzai',
|
|
4969
|
-
typeOfEntity: 'luogo'
|
|
4970
|
-
},
|
|
4971
|
-
count: 2
|
|
4972
|
-
},
|
|
4973
|
-
{
|
|
4974
|
-
entity: {
|
|
4975
|
-
id: '5f6c7eaa-c752-4d01-ad45-8dde4420a3c9',
|
|
4976
|
-
label: 'Serrenti',
|
|
4977
|
-
typeOfEntity: 'luogo'
|
|
4978
|
-
},
|
|
4979
|
-
count: 2
|
|
4980
|
-
},
|
|
4981
|
-
{
|
|
4982
|
-
entity: {
|
|
4983
|
-
id: '5ff2c322-cfbc-48bb-88aa-ee7b0cf6c9dd',
|
|
4984
|
-
label: 'Comune di Samatzai',
|
|
4985
|
-
typeOfEntity: 'organizzazione'
|
|
4986
|
-
},
|
|
4987
|
-
count: 2
|
|
4988
|
-
},
|
|
4989
|
-
{
|
|
4990
|
-
entity: {
|
|
4991
|
-
id: '6085d982-6131-4c75-bd45-e2a3a01ed064',
|
|
4992
|
-
label: 'Murgia, Giovanni',
|
|
4993
|
-
typeOfEntity: 'organizzazione'
|
|
4994
|
-
},
|
|
4995
|
-
count: 2
|
|
4996
|
-
},
|
|
4997
|
-
{
|
|
4998
|
-
entity: {
|
|
4999
|
-
id: '623ff899-4816-4e49-ac49-d6ae5d9f67b3',
|
|
5000
|
-
label: 'Comune di Nuraxinieddu',
|
|
5001
|
-
typeOfEntity: 'organizzazione'
|
|
5002
|
-
},
|
|
5003
|
-
count: 2
|
|
5004
|
-
},
|
|
5005
|
-
{
|
|
5006
|
-
entity: {
|
|
5007
|
-
id: '6290628c-ce81-484b-b529-73f0b1806f7e',
|
|
5008
|
-
label: 'Comune di Siddi',
|
|
5009
|
-
typeOfEntity: 'organizzazione'
|
|
5010
|
-
},
|
|
5011
|
-
count: 2
|
|
5012
|
-
},
|
|
5013
|
-
{
|
|
5014
|
-
entity: {
|
|
5015
|
-
id: '63637dcf-446e-40d5-8a91-b4b6b4c31222',
|
|
5016
|
-
label: 'Comune di Teulada',
|
|
5017
|
-
typeOfEntity: 'organizzazione'
|
|
5018
|
-
},
|
|
5019
|
-
count: 2
|
|
5020
|
-
},
|
|
5021
|
-
{
|
|
5022
|
-
entity: {
|
|
5023
|
-
id: '65821616-426d-485c-bb83-4ea60c863b92',
|
|
5024
|
-
label: 'Alghero',
|
|
5025
|
-
typeOfEntity: 'luogo'
|
|
5026
|
-
},
|
|
5027
|
-
count: 2
|
|
5028
|
-
},
|
|
5029
|
-
{
|
|
5030
|
-
entity: {
|
|
5031
|
-
id: '6652b537-0da7-4625-b7ba-9b32316bfde6',
|
|
5032
|
-
label: 'Uras',
|
|
5033
|
-
typeOfEntity: 'luogo'
|
|
5034
|
-
},
|
|
5035
|
-
count: 2
|
|
5036
|
-
},
|
|
5037
|
-
{
|
|
5038
|
-
entity: {
|
|
5039
|
-
id: '66f22d8e-9250-4c26-b7e1-4924d73440cb',
|
|
5040
|
-
label: 'Comune di Sinnai',
|
|
5041
|
-
typeOfEntity: 'organizzazione'
|
|
5042
|
-
},
|
|
5043
|
-
count: 2
|
|
5044
|
-
},
|
|
5045
|
-
{
|
|
5046
|
-
entity: {
|
|
5047
|
-
id: '6771a870-74c9-4fba-808a-82a0d2e3eeac',
|
|
5048
|
-
label: 'Comune di Tadasuni',
|
|
5049
|
-
typeOfEntity: 'organizzazione'
|
|
5050
|
-
},
|
|
5051
|
-
count: 2
|
|
5052
|
-
},
|
|
5053
|
-
{
|
|
5054
|
-
entity: {
|
|
5055
|
-
id: '6771f596-634b-4c80-a293-2955101f1c8c',
|
|
5056
|
-
label: 'Tresnuraghes',
|
|
5057
|
-
typeOfEntity: 'luogo'
|
|
5058
|
-
},
|
|
5059
|
-
count: 2
|
|
5060
|
-
},
|
|
5061
|
-
{
|
|
5062
|
-
entity: {
|
|
5063
|
-
id: '67becabc-31d4-4822-9884-978c049b512a',
|
|
5064
|
-
label: 'Nuraxinieddu',
|
|
5065
|
-
typeOfEntity: 'luogo'
|
|
5066
|
-
},
|
|
5067
|
-
count: 2
|
|
5068
|
-
},
|
|
5069
|
-
{
|
|
5070
|
-
entity: {
|
|
5071
|
-
id: '6a17130c-5053-470d-8fbf-f22be634393a',
|
|
5072
|
-
label: 'Comune di Borore',
|
|
5073
|
-
typeOfEntity: 'organizzazione'
|
|
5074
|
-
},
|
|
5075
|
-
count: 2
|
|
5076
|
-
},
|
|
5077
|
-
{
|
|
5078
|
-
entity: {
|
|
5079
|
-
id: '6a32b986-9db7-4cef-b99e-fe1357f89262',
|
|
5080
|
-
label: 'Donadio, Enrico',
|
|
5081
|
-
typeOfEntity: 'persona'
|
|
5082
|
-
},
|
|
5083
|
-
count: 2
|
|
5084
|
-
},
|
|
5085
|
-
{
|
|
5086
|
-
entity: {
|
|
5087
|
-
id: '6a43d18f-8389-4406-b74e-10be02a74f49',
|
|
5088
|
-
label: 'Comune di Pabillonis',
|
|
5089
|
-
typeOfEntity: 'organizzazione'
|
|
5090
|
-
},
|
|
5091
|
-
count: 2
|
|
5092
|
-
},
|
|
5093
|
-
{
|
|
5094
|
-
entity: {
|
|
5095
|
-
id: '6b762694-d597-4114-8e27-7dc2b150fb45',
|
|
5096
|
-
label: 'Comune di Girasole',
|
|
5097
|
-
typeOfEntity: 'organizzazione'
|
|
5098
|
-
},
|
|
5099
|
-
count: 2
|
|
5100
|
-
},
|
|
5101
|
-
{
|
|
5102
|
-
entity: {
|
|
5103
|
-
id: '6bcfc45b-b4f2-4ba2-bc3e-2cc8e929b896',
|
|
5104
|
-
label: 'Comune di Tuili',
|
|
5105
|
-
typeOfEntity: 'organizzazione'
|
|
5106
|
-
},
|
|
5107
|
-
count: 2
|
|
5108
|
-
},
|
|
5109
|
-
{
|
|
5110
|
-
entity: {
|
|
5111
|
-
id: '6bd0d5f1-69f2-47c4-98d8-a5621e13f508',
|
|
5112
|
-
label: 'Comune di Serdiana',
|
|
5113
|
-
typeOfEntity: 'organizzazione'
|
|
5114
|
-
},
|
|
5115
|
-
count: 2
|
|
5116
|
-
},
|
|
5117
|
-
{
|
|
5118
|
-
entity: {
|
|
5119
|
-
id: '6cba0dcf-be96-4a8d-9a62-480eada41b42',
|
|
5120
|
-
label: 'Comune di Tonara',
|
|
5121
|
-
typeOfEntity: 'organizzazione'
|
|
5122
|
-
},
|
|
5123
|
-
count: 2
|
|
5124
|
-
},
|
|
5125
|
-
{
|
|
5126
|
-
entity: {
|
|
5127
|
-
id: '6d235b87-e89b-404f-b5c2-12aefa94d41e',
|
|
5128
|
-
label: 'Alghero',
|
|
5129
|
-
typeOfEntity: 'luogo'
|
|
5130
|
-
},
|
|
5131
|
-
count: 2
|
|
5132
|
-
},
|
|
5133
|
-
{
|
|
5134
|
-
entity: {
|
|
5135
|
-
id: '6d48c548-0e38-493f-8f11-506cdc2c86c9',
|
|
5136
|
-
label: 'La Plaia (Cagliari)',
|
|
5137
|
-
typeOfEntity: 'luogo'
|
|
5138
|
-
},
|
|
5139
|
-
count: 2
|
|
5140
|
-
},
|
|
5141
|
-
{
|
|
5142
|
-
entity: {
|
|
5143
|
-
id: '6d4aca3b-abd4-412a-b859-9a3e746ffea9',
|
|
5144
|
-
label: 'Settimo San Pietro',
|
|
5145
|
-
typeOfEntity: 'luogo'
|
|
5146
|
-
},
|
|
5147
|
-
count: 2
|
|
5148
|
-
},
|
|
5149
|
-
{
|
|
5150
|
-
entity: {
|
|
5151
|
-
id: '6dcf2006-24f7-44fb-a547-10abffc387d2',
|
|
5152
|
-
label: 'Sassu, Bruno',
|
|
5153
|
-
typeOfEntity: 'persona'
|
|
5154
|
-
},
|
|
5155
|
-
count: 2
|
|
5156
|
-
},
|
|
5157
|
-
{
|
|
5158
|
-
entity: {
|
|
5159
|
-
id: '6e585e1c-a7de-4ec1-8cf8-cacb17548806',
|
|
5160
|
-
label: 'Comune di Domusnovas',
|
|
5161
|
-
typeOfEntity: 'organizzazione'
|
|
5162
|
-
},
|
|
5163
|
-
count: 2
|
|
5164
|
-
},
|
|
5165
|
-
{
|
|
5166
|
-
entity: {
|
|
5167
|
-
id: '6fa86799-6251-4fb9-9287-92c81523f0ee',
|
|
5168
|
-
label: 'Comune di Isili',
|
|
5169
|
-
typeOfEntity: 'organizzazione'
|
|
5170
|
-
},
|
|
5171
|
-
count: 2
|
|
5172
|
-
},
|
|
5173
|
-
{
|
|
5174
|
-
entity: {
|
|
5175
|
-
id: '700a1e3d-e7b3-4f4b-b468-c10c454f2e81',
|
|
5176
|
-
label: 'Comune di Cuglieri',
|
|
5177
|
-
typeOfEntity: 'organizzazione'
|
|
5178
|
-
},
|
|
5179
|
-
count: 2
|
|
5180
|
-
},
|
|
5181
|
-
{
|
|
5182
|
-
entity: {
|
|
5183
|
-
id: '7140b61d-11c3-420c-8450-7fc43c4e4e22',
|
|
5184
|
-
label: 'Siliqua',
|
|
5185
|
-
typeOfEntity: 'luogo'
|
|
5186
|
-
},
|
|
5187
|
-
count: 2
|
|
5188
|
-
},
|
|
5189
|
-
{
|
|
5190
|
-
entity: {
|
|
5191
|
-
id: '719966d1-423f-4f4a-8100-60af0465e98e',
|
|
5192
|
-
label: 'Comune di Pirri',
|
|
5193
|
-
typeOfEntity: 'organizzazione'
|
|
5194
|
-
},
|
|
5195
|
-
count: 2
|
|
5196
|
-
},
|
|
5197
|
-
{
|
|
5198
|
-
entity: {
|
|
5199
|
-
id: '72694706-f304-4191-bf21-a1dbe29b35bc',
|
|
5200
|
-
label: 'Belvì',
|
|
5201
|
-
typeOfEntity: 'luogo'
|
|
5202
|
-
},
|
|
5203
|
-
count: 2
|
|
5204
|
-
},
|
|
5205
|
-
{
|
|
5206
|
-
entity: {
|
|
5207
|
-
id: '731723b2-92ab-45f6-be93-333433c81a2e',
|
|
5208
|
-
label: 'Domusnovas',
|
|
5209
|
-
typeOfEntity: 'luogo'
|
|
5210
|
-
},
|
|
5211
|
-
count: 2
|
|
5212
|
-
},
|
|
5213
|
-
{
|
|
5214
|
-
entity: {
|
|
5215
|
-
id: '735164a7-829f-49ad-a50f-65973bebb87c',
|
|
5216
|
-
label: "Sant'Antioco",
|
|
5217
|
-
typeOfEntity: 'luogo'
|
|
5218
|
-
},
|
|
5219
|
-
count: 2
|
|
5220
|
-
},
|
|
5221
|
-
{
|
|
5222
|
-
entity: {
|
|
5223
|
-
id: '738a436a-216f-48e9-8ecc-7d4325418e07',
|
|
5224
|
-
label: 'Sanluri',
|
|
5225
|
-
typeOfEntity: 'luogo'
|
|
5226
|
-
},
|
|
5227
|
-
count: 2
|
|
5228
|
-
},
|
|
5229
|
-
{
|
|
5230
|
-
entity: {
|
|
5231
|
-
id: '739a71a0-4000-40a5-accf-d653fb10073f',
|
|
5232
|
-
label: 'Comune di Ortacesus',
|
|
5233
|
-
typeOfEntity: 'organizzazione'
|
|
5234
|
-
},
|
|
5235
|
-
count: 2
|
|
5236
|
-
},
|
|
5237
|
-
{
|
|
5238
|
-
entity: {
|
|
5239
|
-
id: '764e381b-4905-421c-b476-360b63e1fcd1',
|
|
5240
|
-
label: 'Suelli',
|
|
5241
|
-
typeOfEntity: 'luogo'
|
|
5242
|
-
},
|
|
5243
|
-
count: 2
|
|
5244
|
-
},
|
|
5245
|
-
{
|
|
5246
|
-
entity: {
|
|
5247
|
-
id: '77481267-96a9-46b0-a237-bc7a027aa695',
|
|
5248
|
-
label: 'Collinas',
|
|
5249
|
-
typeOfEntity: 'luogo'
|
|
5250
|
-
},
|
|
5251
|
-
count: 2
|
|
5252
|
-
},
|
|
5253
|
-
{
|
|
5254
|
-
entity: {
|
|
5255
|
-
id: '777d2ea8-4eba-46e4-92e1-4c7ef411aaf5',
|
|
5256
|
-
label: 'Comune di Silius',
|
|
5257
|
-
typeOfEntity: 'organizzazione'
|
|
5258
|
-
},
|
|
5259
|
-
count: 2
|
|
5260
|
-
},
|
|
5261
|
-
{
|
|
5262
|
-
entity: {
|
|
5263
|
-
id: '77a69de1-d3cf-48cf-aff7-6c30f02ad101',
|
|
5264
|
-
label: 'Comune di Musei',
|
|
5265
|
-
typeOfEntity: 'organizzazione'
|
|
5266
|
-
},
|
|
5267
|
-
count: 2
|
|
5268
|
-
},
|
|
5269
|
-
{
|
|
5270
|
-
entity: {
|
|
5271
|
-
id: '7830b5bc-b8f4-4773-82bb-54c7dcfd94c8',
|
|
5272
|
-
label: 'Comune di Calasetta',
|
|
5273
|
-
typeOfEntity: 'organizzazione'
|
|
5274
|
-
},
|
|
5275
|
-
count: 2
|
|
5276
|
-
},
|
|
5277
|
-
{
|
|
5278
|
-
entity: {
|
|
5279
|
-
id: '785bf0ad-2555-4863-8bdd-bf582cfefce3',
|
|
5280
|
-
label: 'Comune di Samassi',
|
|
5281
|
-
typeOfEntity: 'organizzazione'
|
|
5282
|
-
},
|
|
5283
|
-
count: 2
|
|
5284
|
-
},
|
|
5285
|
-
{
|
|
5286
|
-
entity: {
|
|
5287
|
-
id: '78f40c1f-1b8a-4e6b-ba2e-89cda0346ab5',
|
|
5288
|
-
label: 'Comune di Suelli',
|
|
5289
|
-
typeOfEntity: 'organizzazione'
|
|
5290
|
-
},
|
|
5291
|
-
count: 2
|
|
5292
|
-
},
|
|
5293
|
-
{
|
|
5294
|
-
entity: {
|
|
5295
|
-
id: '796bd77f-a6cb-49a9-8950-a27857170ea5',
|
|
5296
|
-
label: 'Pabillonis',
|
|
5297
|
-
typeOfEntity: 'luogo'
|
|
5298
|
-
},
|
|
5299
|
-
count: 2
|
|
5300
|
-
},
|
|
5301
|
-
{
|
|
5302
|
-
entity: {
|
|
5303
|
-
id: '79779c96-3196-490d-b132-54fca1004c0f',
|
|
5304
|
-
label: 'Bortigiadas',
|
|
5305
|
-
typeOfEntity: 'luogo'
|
|
5306
|
-
},
|
|
5307
|
-
count: 2
|
|
5308
|
-
},
|
|
5309
|
-
{
|
|
5310
|
-
entity: {
|
|
5311
|
-
id: '7a32e2bc-8568-4b6e-b4ba-7c99201f45c7',
|
|
5312
|
-
label: 'Comune di Villamar',
|
|
5313
|
-
typeOfEntity: 'organizzazione'
|
|
5314
|
-
},
|
|
5315
|
-
count: 2
|
|
5316
|
-
},
|
|
5317
|
-
{
|
|
5318
|
-
entity: {
|
|
5319
|
-
id: '7a51f255-0127-47f2-bb4a-4187ad887aac',
|
|
5320
|
-
label: 'Comune di Bidonì',
|
|
5321
|
-
typeOfEntity: 'organizzazione'
|
|
5322
|
-
},
|
|
5323
|
-
count: 2
|
|
5324
|
-
},
|
|
5325
|
-
{
|
|
5326
|
-
entity: {
|
|
5327
|
-
id: '7bdd45e1-a8e8-4bca-8af5-977d992f7661',
|
|
5328
|
-
label: 'Mura, Telesforo',
|
|
5329
|
-
typeOfEntity: 'persona'
|
|
5330
|
-
},
|
|
5331
|
-
count: 2
|
|
5332
|
-
},
|
|
5333
|
-
{
|
|
5334
|
-
entity: {
|
|
5335
|
-
id: '7d178e9e-3b7d-4ad7-8b48-3e0326c17eab',
|
|
5336
|
-
label: 'Laconi',
|
|
5337
|
-
typeOfEntity: 'luogo'
|
|
5338
|
-
},
|
|
5339
|
-
count: 2
|
|
5340
|
-
},
|
|
5341
|
-
{
|
|
5342
|
-
entity: {
|
|
5343
|
-
id: '7d616c07-8305-46ed-ab3a-ae3a922415cc',
|
|
5344
|
-
label: 'Comune di Narcao',
|
|
5345
|
-
typeOfEntity: 'organizzazione'
|
|
5346
|
-
},
|
|
5347
|
-
count: 2
|
|
5348
|
-
},
|
|
5349
|
-
{
|
|
5350
|
-
entity: {
|
|
5351
|
-
id: '7e250601-8e53-46aa-aa74-34e26135f117',
|
|
5352
|
-
label: 'Turri',
|
|
5353
|
-
typeOfEntity: 'luogo'
|
|
5354
|
-
},
|
|
5355
|
-
count: 2
|
|
5356
|
-
},
|
|
5357
|
-
{
|
|
5358
|
-
entity: {
|
|
5359
|
-
id: '7f49c6cc-6ede-46ad-a7f7-e9169994f000',
|
|
5360
|
-
label: 'Comune di Sorradile',
|
|
5361
|
-
typeOfEntity: 'organizzazione'
|
|
5362
|
-
},
|
|
5363
|
-
count: 2
|
|
5364
|
-
},
|
|
5365
|
-
{
|
|
5366
|
-
entity: {
|
|
5367
|
-
id: '807fedbb-d3a1-46b1-907b-3e842d1e4080',
|
|
5368
|
-
label: 'Comune di Abbasanta',
|
|
5369
|
-
typeOfEntity: 'organizzazione'
|
|
5370
|
-
},
|
|
5371
|
-
count: 2
|
|
5372
|
-
},
|
|
5373
|
-
{
|
|
5374
|
-
entity: {
|
|
5375
|
-
id: '80e5464b-3c2d-4c0e-81b8-11e1edf5185f',
|
|
5376
|
-
label: 'Mereu, Salvatorangelo',
|
|
5377
|
-
typeOfEntity: 'organizzazione'
|
|
5378
|
-
},
|
|
5379
|
-
count: 2
|
|
5380
|
-
},
|
|
5381
|
-
{
|
|
5382
|
-
entity: {
|
|
5383
|
-
id: '80fcc39d-38b3-4d85-81bd-5fea2823da9b',
|
|
5384
|
-
label: 'Comune di Noragugume',
|
|
5385
|
-
typeOfEntity: 'organizzazione'
|
|
5386
|
-
},
|
|
5387
|
-
count: 2
|
|
5388
|
-
},
|
|
5389
|
-
{
|
|
5390
|
-
entity: {
|
|
5391
|
-
id: '817a048b-753e-4e3b-b1c2-b8b4b07c338f',
|
|
5392
|
-
label: 'Comune di Sestu',
|
|
5393
|
-
typeOfEntity: 'organizzazione'
|
|
5394
|
-
},
|
|
5395
|
-
count: 2
|
|
5396
|
-
},
|
|
5397
|
-
{
|
|
5398
|
-
entity: {
|
|
5399
|
-
id: '8244ff5b-1015-4769-9685-05524358f17e',
|
|
5400
|
-
label: 'Samassi',
|
|
5401
|
-
typeOfEntity: 'luogo'
|
|
5402
|
-
},
|
|
5403
|
-
count: 2
|
|
5404
|
-
},
|
|
5405
|
-
{
|
|
5406
|
-
entity: {
|
|
5407
|
-
id: '84c8baf8-713a-42ec-9670-d50a11dde290',
|
|
5408
|
-
label: 'Ardara',
|
|
5409
|
-
typeOfEntity: 'luogo'
|
|
5410
|
-
},
|
|
5411
|
-
count: 2
|
|
5412
|
-
},
|
|
5413
|
-
{
|
|
5414
|
-
entity: {
|
|
5415
|
-
id: '8564c7f4-c239-4d73-b10b-300a428f8d9d',
|
|
5416
|
-
label: 'Capoterra',
|
|
5417
|
-
typeOfEntity: 'luogo'
|
|
5418
|
-
},
|
|
5419
|
-
count: 2
|
|
5420
|
-
},
|
|
5421
|
-
{
|
|
5422
|
-
entity: {
|
|
5423
|
-
id: '85fef45f-9fe9-4f5f-b8cd-26309fbb2501',
|
|
5424
|
-
label: 'Sorgono',
|
|
5425
|
-
typeOfEntity: 'luogo'
|
|
5426
|
-
},
|
|
5427
|
-
count: 2
|
|
5428
|
-
},
|
|
5429
|
-
{
|
|
5430
|
-
entity: {
|
|
5431
|
-
id: '8770b818-a8d3-4331-b896-730f857bd699',
|
|
5432
|
-
label: 'Comune di Ballao',
|
|
5433
|
-
typeOfEntity: 'organizzazione'
|
|
5434
|
-
},
|
|
5435
|
-
count: 2
|
|
5436
|
-
},
|
|
5437
|
-
{
|
|
5438
|
-
entity: {
|
|
5439
|
-
id: '88f1707f-fa15-4d2b-b135-aedf49c8b1ae',
|
|
5440
|
-
label: 'Comune di Figu',
|
|
5441
|
-
typeOfEntity: 'organizzazione'
|
|
5442
|
-
},
|
|
5443
|
-
count: 2
|
|
5444
|
-
},
|
|
5445
|
-
{
|
|
5446
|
-
entity: {
|
|
5447
|
-
id: '8a27c740-539d-49bf-84c7-43dbb2e24297',
|
|
5448
|
-
label: 'Comune di Villaspeciosa',
|
|
5449
|
-
typeOfEntity: 'organizzazione'
|
|
5450
|
-
},
|
|
5451
|
-
count: 2
|
|
5452
|
-
},
|
|
5453
|
-
{
|
|
5454
|
-
entity: {
|
|
5455
|
-
id: '8a87458f-f2c3-4da3-96d4-72bf02541f50',
|
|
5456
|
-
label: 'Vallermosa',
|
|
5457
|
-
typeOfEntity: 'luogo'
|
|
5458
|
-
},
|
|
5459
|
-
count: 2
|
|
5460
|
-
},
|
|
5461
|
-
{
|
|
5462
|
-
entity: {
|
|
5463
|
-
id: '8ad8d116-9fe0-4701-8064-444584e6e2d9',
|
|
5464
|
-
label: 'Comune di Dualchi',
|
|
5465
|
-
typeOfEntity: 'organizzazione'
|
|
5466
|
-
},
|
|
5467
|
-
count: 2
|
|
5468
|
-
},
|
|
5469
|
-
{
|
|
5470
|
-
entity: {
|
|
5471
|
-
id: '8b4fe3fb-8734-4375-ae8f-567b0124aa9e',
|
|
5472
|
-
label: 'Genoni',
|
|
5473
|
-
typeOfEntity: 'luogo'
|
|
5474
|
-
},
|
|
5475
|
-
count: 2
|
|
5476
|
-
},
|
|
5477
|
-
{
|
|
5478
|
-
entity: {
|
|
5479
|
-
id: '8c3e0ec8-9cdd-427e-9e7f-cb27670aefc1',
|
|
5480
|
-
label: 'Comune di Laconi',
|
|
5481
|
-
typeOfEntity: 'organizzazione'
|
|
5482
|
-
},
|
|
5483
|
-
count: 2
|
|
5484
|
-
},
|
|
5485
|
-
{
|
|
5486
|
-
entity: {
|
|
5487
|
-
id: '8d0f240c-b474-49c2-a83d-2414ce10d44c',
|
|
5488
|
-
label: 'Villasor',
|
|
5489
|
-
typeOfEntity: 'luogo'
|
|
5490
|
-
},
|
|
5491
|
-
count: 2
|
|
5492
|
-
},
|
|
5493
|
-
{
|
|
5494
|
-
entity: {
|
|
5495
|
-
id: '8d35055f-0b6b-4f77-8be3-aa82bdf70605',
|
|
5496
|
-
label: 'Masala, Fiorenzo',
|
|
5497
|
-
typeOfEntity: 'persona'
|
|
5498
|
-
},
|
|
5499
|
-
count: 2
|
|
5500
|
-
},
|
|
5501
|
-
{
|
|
5502
|
-
entity: {
|
|
5503
|
-
id: '8f84ca75-5b0f-4502-94be-a5f1c59041cc',
|
|
5504
|
-
label: 'Siris',
|
|
5505
|
-
typeOfEntity: 'luogo'
|
|
5506
|
-
},
|
|
5507
|
-
count: 2
|
|
5508
|
-
},
|
|
5509
|
-
{
|
|
5510
|
-
entity: {
|
|
5511
|
-
id: '9226a719-743e-4e16-ae61-fe7aaf3fe202',
|
|
5512
|
-
label: 'Comune di Las Plassas',
|
|
5513
|
-
typeOfEntity: 'organizzazione'
|
|
5514
|
-
},
|
|
5515
|
-
count: 2
|
|
5516
|
-
},
|
|
5517
|
-
{
|
|
5518
|
-
entity: {
|
|
5519
|
-
id: '9278adee-e6fc-4a40-b83c-bd4e909a237d',
|
|
5520
|
-
label: 'IRC spa Soc Franki',
|
|
5521
|
-
typeOfEntity: 'organizzazione'
|
|
5522
|
-
},
|
|
5523
|
-
count: 2
|
|
5524
|
-
},
|
|
5525
|
-
{
|
|
5526
|
-
entity: {
|
|
5527
|
-
id: '92842961-9d54-41fb-880c-99d316489bfa',
|
|
5528
|
-
label: 'Comune di Simala',
|
|
5529
|
-
typeOfEntity: 'organizzazione'
|
|
5530
|
-
},
|
|
5531
|
-
count: 2
|
|
5532
|
-
},
|
|
5533
|
-
{
|
|
5534
|
-
entity: {
|
|
5535
|
-
id: '931a4a94-ebf4-4b48-a489-253795bcf594',
|
|
5536
|
-
label: 'Comune di Vallermosa',
|
|
5537
|
-
typeOfEntity: 'organizzazione'
|
|
5538
|
-
},
|
|
5539
|
-
count: 2
|
|
5540
|
-
},
|
|
5541
|
-
{
|
|
5542
|
-
entity: {
|
|
5543
|
-
id: '932a792a-ce76-4ffc-904e-9c70960f2814',
|
|
5544
|
-
label: 'Comune di Selegas',
|
|
5545
|
-
typeOfEntity: 'organizzazione'
|
|
5546
|
-
},
|
|
5547
|
-
count: 2
|
|
5548
|
-
},
|
|
5549
|
-
{
|
|
5550
|
-
entity: {
|
|
5551
|
-
id: '94274509-c069-475f-98a0-21f8cb199f0d',
|
|
5552
|
-
label: 'Comune di Elmas',
|
|
5553
|
-
typeOfEntity: 'organizzazione'
|
|
5554
|
-
},
|
|
5555
|
-
count: 2
|
|
5556
|
-
},
|
|
5557
|
-
{
|
|
5558
|
-
entity: {
|
|
5559
|
-
id: '95c85d8e-a130-4a57-87c4-bed991c13047',
|
|
5560
|
-
label: 'Caria, Francesco',
|
|
5561
|
-
typeOfEntity: 'persona'
|
|
5562
|
-
},
|
|
5563
|
-
count: 2
|
|
5564
|
-
},
|
|
5565
|
-
{
|
|
5566
|
-
entity: {
|
|
5567
|
-
id: '95ee873e-a890-41b0-a6dc-276c709bcc54',
|
|
5568
|
-
label: 'Selegas',
|
|
5569
|
-
typeOfEntity: 'luogo'
|
|
5570
|
-
},
|
|
5571
|
-
count: 2
|
|
5572
|
-
},
|
|
5573
|
-
{
|
|
5574
|
-
entity: {
|
|
5575
|
-
id: '965b2c1e-4b4f-4e83-a1fc-1bf5234e29f9',
|
|
5576
|
-
label: 'Atzara',
|
|
5577
|
-
typeOfEntity: 'luogo'
|
|
5578
|
-
},
|
|
5579
|
-
count: 2
|
|
5580
|
-
},
|
|
5581
|
-
{
|
|
5582
|
-
entity: {
|
|
5583
|
-
id: '97295860-2ab9-4c7c-9d1b-dd0911e16f8d',
|
|
5584
|
-
label: 'Setzu',
|
|
5585
|
-
typeOfEntity: 'luogo'
|
|
5586
|
-
},
|
|
5587
|
-
count: 2
|
|
5588
|
-
},
|
|
5589
|
-
{
|
|
5590
|
-
entity: {
|
|
5591
|
-
id: '978b5d3a-96c8-4a28-87e9-4007b0926caa',
|
|
5592
|
-
label: 'Maracalagonis',
|
|
5593
|
-
typeOfEntity: 'luogo'
|
|
5594
|
-
},
|
|
5595
|
-
count: 2
|
|
5596
|
-
},
|
|
5597
|
-
{
|
|
5598
|
-
entity: {
|
|
5599
|
-
id: '97d5f929-cedf-46a7-b907-6bc6ca1414b3',
|
|
5600
|
-
label: 'Assemini',
|
|
5601
|
-
typeOfEntity: 'luogo'
|
|
5602
|
-
},
|
|
5603
|
-
count: 2
|
|
5604
|
-
},
|
|
5605
|
-
{
|
|
5606
|
-
entity: {
|
|
5607
|
-
id: '993a6b2c-a2df-45ea-bbb9-09d96c5d2f11',
|
|
5608
|
-
label: 'Comune di Capoterra',
|
|
5609
|
-
typeOfEntity: 'organizzazione'
|
|
5610
|
-
},
|
|
5611
|
-
count: 2
|
|
5612
|
-
},
|
|
5613
|
-
{
|
|
5614
|
-
entity: {
|
|
5615
|
-
id: '99c327ee-96c4-46a6-bbcf-7f4ebdbcf13a',
|
|
5616
|
-
label: 'Garau, Giorgio',
|
|
5617
|
-
typeOfEntity: 'persona'
|
|
5618
|
-
},
|
|
5619
|
-
count: 2
|
|
5620
|
-
},
|
|
5621
|
-
{
|
|
5622
|
-
entity: {
|
|
5623
|
-
id: '99d27a2b-347d-46c8-9113-a8be4a20a003',
|
|
5624
|
-
label: 'Bosa',
|
|
5625
|
-
typeOfEntity: 'luogo'
|
|
5626
|
-
},
|
|
5627
|
-
count: 2
|
|
5628
|
-
},
|
|
5629
|
-
{
|
|
5630
|
-
entity: {
|
|
5631
|
-
id: '9a2c2973-db7a-4ccc-bc17-31e4d1222308',
|
|
5632
|
-
label: 'Halen Manca, Enrica',
|
|
5633
|
-
typeOfEntity: 'persona'
|
|
5634
|
-
},
|
|
5635
|
-
count: 2
|
|
5636
|
-
},
|
|
5637
|
-
{
|
|
5638
|
-
entity: {
|
|
5639
|
-
id: '9b9366fb-8a41-4c5f-b0ee-c5c91e19aad4',
|
|
5640
|
-
label: 'Comune di Sicci San Biagio',
|
|
5641
|
-
typeOfEntity: 'organizzazione'
|
|
5642
|
-
},
|
|
5643
|
-
count: 2
|
|
5644
|
-
},
|
|
5645
|
-
{
|
|
5646
|
-
entity: {
|
|
5647
|
-
id: '9ce6c07a-b1e5-4b02-9204-d68b7241a1e8',
|
|
5648
|
-
label: 'Paperoga',
|
|
5649
|
-
typeOfEntity: 'persona'
|
|
5650
|
-
},
|
|
5651
|
-
count: 2
|
|
5652
|
-
},
|
|
5653
|
-
{
|
|
5654
|
-
entity: {
|
|
5655
|
-
id: '9d0e898b-7691-429d-9341-5ccdce50f1ad',
|
|
5656
|
-
label: 'Comune di Villasalto',
|
|
5657
|
-
typeOfEntity: 'organizzazione'
|
|
5658
|
-
},
|
|
5659
|
-
count: 2
|
|
5660
|
-
},
|
|
5661
|
-
{
|
|
5662
|
-
entity: {
|
|
5663
|
-
id: '9d607a5a-d7f4-440c-9694-642c7234733e',
|
|
5664
|
-
label: 'Sassu, Bruno',
|
|
5665
|
-
typeOfEntity: 'persona'
|
|
5666
|
-
},
|
|
5667
|
-
count: 2
|
|
5668
|
-
},
|
|
5669
|
-
{
|
|
5670
|
-
entity: {
|
|
5671
|
-
id: '9d6d32ea-cb23-4d63-9ade-523d26d5228f',
|
|
5672
|
-
label: 'Silius',
|
|
5673
|
-
typeOfEntity: 'luogo'
|
|
5674
|
-
},
|
|
5675
|
-
count: 2
|
|
5676
|
-
},
|
|
5677
|
-
{
|
|
5678
|
-
entity: {
|
|
5679
|
-
id: '9e7133f4-d5b8-4956-8352-f5e8bb631167',
|
|
5680
|
-
label: 'Comune di Sorgono',
|
|
5681
|
-
typeOfEntity: 'organizzazione'
|
|
5682
|
-
},
|
|
5683
|
-
count: 2
|
|
5684
|
-
},
|
|
5685
|
-
{
|
|
5686
|
-
entity: {
|
|
5687
|
-
id: '9e8c05e9-d61a-4b58-a1ad-a2e55da463c7',
|
|
5688
|
-
label: 'Mogorella',
|
|
5689
|
-
typeOfEntity: 'luogo'
|
|
5690
|
-
},
|
|
5691
|
-
count: 2
|
|
5692
|
-
},
|
|
5693
|
-
{
|
|
5694
|
-
entity: {
|
|
5695
|
-
id: '9f23de23-9ac3-428f-ae30-4688f80a1ef2',
|
|
5696
|
-
label: 'Comune di Genoni',
|
|
5697
|
-
typeOfEntity: 'organizzazione'
|
|
5698
|
-
},
|
|
5699
|
-
count: 2
|
|
5700
|
-
},
|
|
5701
|
-
{
|
|
5702
|
-
entity: {
|
|
5703
|
-
id: '9f8c2d1b-8618-4b97-ac80-5bbf6d8daae8',
|
|
5704
|
-
label: 'Borore',
|
|
5705
|
-
typeOfEntity: 'luogo'
|
|
5706
|
-
},
|
|
5707
|
-
count: 2
|
|
5708
|
-
},
|
|
5709
|
-
{
|
|
5710
|
-
entity: {
|
|
5711
|
-
id: '9fdb1731-1d60-49e9-8c27-0d59562bb2f2',
|
|
5712
|
-
label: 'Comune di Escolca',
|
|
5713
|
-
typeOfEntity: 'organizzazione'
|
|
5714
|
-
},
|
|
5715
|
-
count: 2
|
|
5716
|
-
},
|
|
5717
|
-
{
|
|
5718
|
-
entity: {
|
|
5719
|
-
id: '9fe3d6b7-b4aa-4fb6-aeb9-3dd71a3fa640',
|
|
5720
|
-
label: 'Narcao',
|
|
5721
|
-
typeOfEntity: 'luogo'
|
|
5722
|
-
},
|
|
5723
|
-
count: 2
|
|
5724
|
-
},
|
|
5725
|
-
{
|
|
5726
|
-
entity: {
|
|
5727
|
-
id: 'a07f6226-5315-42bf-9886-7a54141a04ad',
|
|
5728
|
-
label: 'Comune di Baradili',
|
|
5729
|
-
typeOfEntity: 'organizzazione'
|
|
5730
|
-
},
|
|
5731
|
-
count: 2
|
|
5732
|
-
},
|
|
5733
|
-
{
|
|
5734
|
-
entity: {
|
|
5735
|
-
id: 'a1a662ce-a547-44dc-80dd-34f75115789a',
|
|
5736
|
-
label: 'Comune di Villagrande',
|
|
5737
|
-
typeOfEntity: 'organizzazione'
|
|
5738
|
-
},
|
|
5739
|
-
count: 2
|
|
5740
|
-
},
|
|
5741
|
-
{
|
|
5742
|
-
entity: {
|
|
5743
|
-
id: 'a1bfc6d4-1299-43d3-b9da-e19e3c69c291',
|
|
5744
|
-
label: 'Comune di Goni',
|
|
5745
|
-
typeOfEntity: 'organizzazione'
|
|
5746
|
-
},
|
|
5747
|
-
count: 2
|
|
5748
|
-
},
|
|
5749
|
-
{
|
|
5750
|
-
entity: {
|
|
5751
|
-
id: 'a3d588ee-019e-48f7-afab-a6f4baf54cf4',
|
|
5752
|
-
label: 'Baressa',
|
|
5753
|
-
typeOfEntity: 'luogo'
|
|
5754
|
-
},
|
|
5755
|
-
count: 2
|
|
5756
|
-
},
|
|
5757
|
-
{
|
|
5758
|
-
entity: {
|
|
5759
|
-
id: 'a4fb47f5-ac6c-4aca-a483-2b8cfafb6fe4',
|
|
5760
|
-
label: 'Baunei',
|
|
5761
|
-
typeOfEntity: 'luogo'
|
|
5762
|
-
},
|
|
5763
|
-
count: 2
|
|
5764
|
-
},
|
|
5765
|
-
{
|
|
5766
|
-
entity: {
|
|
5767
|
-
id: 'a5818575-75e0-40ac-bd85-6758f979064e',
|
|
5768
|
-
label: 'Ardara',
|
|
5769
|
-
typeOfEntity: 'luogo'
|
|
5770
|
-
},
|
|
5771
|
-
count: 2
|
|
5772
|
-
},
|
|
5773
|
-
{
|
|
5774
|
-
entity: {
|
|
5775
|
-
id: 'a6638ef7-e851-4cf8-b3bc-194947caa6bb',
|
|
5776
|
-
label: 'Mandas',
|
|
5777
|
-
typeOfEntity: 'luogo'
|
|
5778
|
-
},
|
|
5779
|
-
count: 2
|
|
5780
|
-
},
|
|
5781
|
-
{
|
|
5782
|
-
entity: {
|
|
5783
|
-
id: 'a6b44a01-96cd-47f7-859d-ec034efb3fa2',
|
|
5784
|
-
label: 'Comune di Guamaggiore',
|
|
5785
|
-
typeOfEntity: 'organizzazione'
|
|
5786
|
-
},
|
|
5787
|
-
count: 2
|
|
5788
|
-
},
|
|
5789
|
-
{
|
|
5790
|
-
entity: {
|
|
5791
|
-
id: 'a6b629eb-c317-4b67-9f9a-cf0e383b70a7',
|
|
5792
|
-
label: 'Masainas',
|
|
5793
|
-
typeOfEntity: 'luogo'
|
|
5794
|
-
},
|
|
5795
|
-
count: 2
|
|
5796
|
-
},
|
|
5797
|
-
{
|
|
5798
|
-
entity: {
|
|
5799
|
-
id: 'a705dfd9-7cf7-400e-a8ba-9bd05c7f19da',
|
|
5800
|
-
label: 'Comune di Uras',
|
|
5801
|
-
typeOfEntity: 'organizzazione'
|
|
5802
|
-
},
|
|
5803
|
-
count: 2
|
|
5804
|
-
},
|
|
5805
|
-
{
|
|
5806
|
-
entity: {
|
|
5807
|
-
id: 'a86a0bfe-a949-41ed-96f1-1c3ac828d823',
|
|
5808
|
-
label: 'Nurri',
|
|
5809
|
-
typeOfEntity: 'luogo'
|
|
5810
|
-
},
|
|
5811
|
-
count: 2
|
|
5812
|
-
},
|
|
5813
|
-
{
|
|
5814
|
-
entity: {
|
|
5815
|
-
id: 'a9360535-ba5d-41ba-8595-9715b8650997',
|
|
5816
|
-
label: 'Comune di Portoscuso',
|
|
5817
|
-
typeOfEntity: 'organizzazione'
|
|
5818
|
-
},
|
|
5819
|
-
count: 2
|
|
5820
|
-
},
|
|
5821
|
-
{
|
|
5822
|
-
entity: {
|
|
5823
|
-
id: 'a9b4332c-d582-4087-9445-358da92fdf01',
|
|
5824
|
-
label: 'Serramanna',
|
|
5825
|
-
typeOfEntity: 'luogo'
|
|
5826
|
-
},
|
|
5827
|
-
count: 2
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
entity: {
|
|
5831
|
-
id: 'aa0740b0-2555-40d2-b44d-ce69a5d3ee85',
|
|
5832
|
-
label: 'Comune di Monserrato',
|
|
5833
|
-
typeOfEntity: 'organizzazione'
|
|
5834
|
-
},
|
|
5835
|
-
count: 2
|
|
5836
|
-
},
|
|
5837
|
-
{
|
|
5838
|
-
entity: {
|
|
5839
|
-
id: 'aa09b418-5a42-45e6-b64b-ff780650ab72',
|
|
5840
|
-
label: 'Lanusei',
|
|
5841
|
-
typeOfEntity: 'luogo'
|
|
5842
|
-
},
|
|
5843
|
-
count: 2
|
|
5844
|
-
},
|
|
5845
|
-
{
|
|
5846
|
-
entity: {
|
|
5847
|
-
id: 'aa309230-6e17-4bc8-861f-d292519e2fc9',
|
|
5848
|
-
label: 'SNIA Viscosa spa',
|
|
5849
|
-
typeOfEntity: 'organizzazione'
|
|
5850
|
-
},
|
|
5851
|
-
count: 2
|
|
5852
|
-
},
|
|
5853
|
-
{
|
|
5854
|
-
entity: {
|
|
5855
|
-
id: 'aa76cb11-3448-47d1-881a-bb46ec87874e',
|
|
5856
|
-
label: 'Ortacesus',
|
|
5857
|
-
typeOfEntity: 'luogo'
|
|
5858
|
-
},
|
|
5859
|
-
count: 2
|
|
5860
|
-
},
|
|
5861
|
-
{
|
|
5862
|
-
entity: {
|
|
5863
|
-
id: 'ab760144-a8a0-420b-9e4b-21c9b33bc92d',
|
|
5864
|
-
label: 'Villagrande',
|
|
5865
|
-
typeOfEntity: 'luogo'
|
|
5866
|
-
},
|
|
5867
|
-
count: 2
|
|
5868
|
-
},
|
|
5869
|
-
{
|
|
5870
|
-
entity: {
|
|
5871
|
-
id: 'ab79eeaa-ca97-483b-bfd3-d2a53abdf44f',
|
|
5872
|
-
label: 'Comune di Gadoni',
|
|
5873
|
-
typeOfEntity: 'organizzazione'
|
|
5874
|
-
},
|
|
5875
|
-
count: 2
|
|
5876
|
-
},
|
|
5877
|
-
{
|
|
5878
|
-
entity: {
|
|
5879
|
-
id: 'aca40c2d-bab5-459e-8c8c-b0425cf4ff97',
|
|
5880
|
-
label: 'Donori',
|
|
5881
|
-
typeOfEntity: 'luogo'
|
|
5882
|
-
},
|
|
5883
|
-
count: 2
|
|
5884
|
-
},
|
|
5885
|
-
{
|
|
5886
|
-
entity: {
|
|
5887
|
-
id: 'ad1e24d2-954d-4139-b2cf-14290d018944',
|
|
5888
|
-
label: 'Comune di Nuoro',
|
|
5889
|
-
typeOfEntity: 'organizzazione'
|
|
5890
|
-
},
|
|
5891
|
-
count: 2
|
|
5892
|
-
},
|
|
5893
|
-
{
|
|
5894
|
-
entity: {
|
|
5895
|
-
id: 'ada99450-4978-43d8-9cf0-888ca394a2c3',
|
|
5896
|
-
label: 'Comune di Maracalagonis',
|
|
5897
|
-
typeOfEntity: 'organizzazione'
|
|
5898
|
-
},
|
|
5899
|
-
count: 2
|
|
5900
|
-
},
|
|
5901
|
-
{
|
|
5902
|
-
entity: {
|
|
5903
|
-
id: 'af1a5853-f8e5-4609-8459-3724ac546d96',
|
|
5904
|
-
label: 'Bauladu',
|
|
5905
|
-
typeOfEntity: 'luogo'
|
|
5906
|
-
},
|
|
5907
|
-
count: 2
|
|
5908
|
-
},
|
|
5909
|
-
{
|
|
5910
|
-
entity: {
|
|
5911
|
-
id: 'af4c25fb-29e1-409b-a0a0-b281a2fb8a46',
|
|
5912
|
-
label: 'Comune di Sini',
|
|
5913
|
-
typeOfEntity: 'organizzazione'
|
|
5914
|
-
},
|
|
5915
|
-
count: 2
|
|
5916
|
-
},
|
|
5917
|
-
{
|
|
5918
|
-
entity: {
|
|
5919
|
-
id: 'af8a7989-b676-493f-919c-6e2600cbe409',
|
|
5920
|
-
label: 'Zoccheddu, Guido',
|
|
5921
|
-
typeOfEntity: 'persona'
|
|
5922
|
-
},
|
|
5923
|
-
count: 2
|
|
5924
|
-
},
|
|
5925
|
-
{
|
|
5926
|
-
entity: {
|
|
5927
|
-
id: 'afc0c1d8-804e-4d51-9fb0-378e179795ec',
|
|
5928
|
-
label: 'Piu, Ettore',
|
|
5929
|
-
typeOfEntity: 'persona'
|
|
5930
|
-
},
|
|
5931
|
-
count: 2
|
|
5932
|
-
},
|
|
5933
|
-
{
|
|
5934
|
-
entity: {
|
|
5935
|
-
id: 'b1179d68-4522-4841-87e7-c04adde87100',
|
|
5936
|
-
label: 'Sennariolo',
|
|
5937
|
-
typeOfEntity: 'luogo'
|
|
5938
|
-
},
|
|
5939
|
-
count: 2
|
|
5940
|
-
},
|
|
5941
|
-
{
|
|
5942
|
-
entity: {
|
|
5943
|
-
id: 'b1a85fe0-c55d-4fdd-8fc2-fd927f9611eb',
|
|
5944
|
-
label: 'Tramatza',
|
|
5945
|
-
typeOfEntity: 'luogo'
|
|
5946
|
-
},
|
|
5947
|
-
count: 2
|
|
5948
|
-
},
|
|
5949
|
-
{
|
|
5950
|
-
entity: {
|
|
5951
|
-
id: 'b1df6557-0b68-49f6-ad78-351ade4a4283',
|
|
5952
|
-
label: 'Comune di Pimentel',
|
|
5953
|
-
typeOfEntity: 'organizzazione'
|
|
5954
|
-
},
|
|
5955
|
-
count: 2
|
|
5956
|
-
},
|
|
5957
|
-
{
|
|
5958
|
-
entity: {
|
|
5959
|
-
id: 'b21a2105-a1a4-4a52-997c-d0eb9e841d1b',
|
|
5960
|
-
label: 'Comune di Fluminimaggiore',
|
|
5961
|
-
typeOfEntity: 'organizzazione'
|
|
5962
|
-
},
|
|
5963
|
-
count: 2
|
|
5964
|
-
},
|
|
5965
|
-
{
|
|
5966
|
-
entity: {
|
|
5967
|
-
id: 'b27d2cfe-bbcb-427b-9458-1c4de87ccba5',
|
|
5968
|
-
label: 'Triei',
|
|
5969
|
-
typeOfEntity: 'luogo'
|
|
5970
|
-
},
|
|
5971
|
-
count: 2
|
|
5972
|
-
},
|
|
5973
|
-
{
|
|
5974
|
-
entity: {
|
|
5975
|
-
id: 'b2c2ed66-3b80-46e3-81f8-55394dbc2760',
|
|
5976
|
-
label: 'Comune di Assemini',
|
|
5977
|
-
typeOfEntity: 'organizzazione'
|
|
5978
|
-
},
|
|
5979
|
-
count: 2
|
|
5980
|
-
},
|
|
5981
|
-
{
|
|
5982
|
-
entity: {
|
|
5983
|
-
id: 'b3e831ed-4064-4c78-a4f4-f0b01ea7a15c',
|
|
5984
|
-
label: 'Comune di Monastir',
|
|
5985
|
-
typeOfEntity: 'organizzazione'
|
|
5986
|
-
},
|
|
5987
|
-
count: 2
|
|
5988
|
-
},
|
|
5989
|
-
{
|
|
5990
|
-
entity: {
|
|
5991
|
-
id: 'b4be9cee-f383-40f2-9eac-261847452102',
|
|
5992
|
-
label: 'Comune di Soleminis',
|
|
5993
|
-
typeOfEntity: 'organizzazione'
|
|
5994
|
-
},
|
|
5995
|
-
count: 2
|
|
5996
|
-
},
|
|
5997
|
-
{
|
|
5998
|
-
entity: {
|
|
5999
|
-
id: 'b5c2f911-f3d1-4761-a4c7-df7ad8f18df1',
|
|
6000
|
-
label: 'Escolca',
|
|
6001
|
-
typeOfEntity: 'luogo'
|
|
6002
|
-
},
|
|
6003
|
-
count: 2
|
|
6004
|
-
},
|
|
6005
|
-
{
|
|
6006
|
-
entity: {
|
|
6007
|
-
id: 'b773fb82-f9bd-4b18-b8ba-3867940ccbe4',
|
|
6008
|
-
label: 'Villanova Tulo',
|
|
6009
|
-
typeOfEntity: 'luogo'
|
|
6010
|
-
},
|
|
6011
|
-
count: 2
|
|
6012
|
-
},
|
|
6013
|
-
{
|
|
6014
|
-
entity: {
|
|
6015
|
-
id: 'b853e476-b91e-4a92-aa2d-6464b7fef243',
|
|
6016
|
-
label: 'Masala, Ignazio',
|
|
6017
|
-
typeOfEntity: 'persona'
|
|
6018
|
-
},
|
|
6019
|
-
count: 2
|
|
6020
|
-
},
|
|
6021
|
-
{
|
|
6022
|
-
entity: {
|
|
6023
|
-
id: 'b8bd794e-be3c-473d-a20a-92891c906e9a',
|
|
6024
|
-
label: 'Guspini',
|
|
6025
|
-
typeOfEntity: 'luogo'
|
|
6026
|
-
},
|
|
6027
|
-
count: 2
|
|
6028
|
-
},
|
|
6029
|
-
{
|
|
6030
|
-
entity: {
|
|
6031
|
-
id: 'b9fbe5e2-d795-46bd-9385-379a34883903',
|
|
6032
|
-
label: 'Ussassai',
|
|
6033
|
-
typeOfEntity: 'luogo'
|
|
6034
|
-
},
|
|
6035
|
-
count: 2
|
|
6036
|
-
},
|
|
6037
|
-
{
|
|
6038
|
-
entity: {
|
|
6039
|
-
id: 'ba8a1db4-d153-47e9-adfe-ec78312d6f9d',
|
|
6040
|
-
label: 'Comune di Bulzi',
|
|
6041
|
-
typeOfEntity: 'organizzazione'
|
|
6042
|
-
},
|
|
6043
|
-
count: 2
|
|
6044
|
-
},
|
|
6045
|
-
{
|
|
6046
|
-
entity: {
|
|
6047
|
-
id: 'bad5414c-c10c-47f0-8e21-78abfd48672c',
|
|
6048
|
-
label: 'Todde, Annibale',
|
|
6049
|
-
typeOfEntity: 'persona'
|
|
6050
|
-
},
|
|
6051
|
-
count: 2
|
|
6052
|
-
},
|
|
6053
|
-
{
|
|
6054
|
-
entity: {
|
|
6055
|
-
id: 'bad919d6-43b7-4aab-98c4-d73661dc9a87',
|
|
6056
|
-
label: 'Muravera',
|
|
6057
|
-
typeOfEntity: 'luogo'
|
|
6058
|
-
},
|
|
6059
|
-
count: 2
|
|
6060
|
-
},
|
|
6061
|
-
{
|
|
6062
|
-
entity: {
|
|
6063
|
-
id: 'bc09c942-9a28-4880-b86e-9272fb009106',
|
|
6064
|
-
label: 'Boroneddu',
|
|
6065
|
-
typeOfEntity: 'luogo'
|
|
6066
|
-
},
|
|
6067
|
-
count: 2
|
|
6068
|
-
},
|
|
6069
|
-
{
|
|
6070
|
-
entity: {
|
|
6071
|
-
id: 'bc2465f4-78ad-4ccc-aaaf-f1b0058b3a83',
|
|
6072
|
-
label: 'Comune di Guspini',
|
|
6073
|
-
typeOfEntity: 'organizzazione'
|
|
6074
|
-
},
|
|
6075
|
-
count: 2
|
|
6076
|
-
},
|
|
6077
|
-
{
|
|
6078
|
-
entity: {
|
|
6079
|
-
id: 'bc758217-9fee-4ae8-82b1-63b57250fdc5',
|
|
6080
|
-
label: 'San Gregorio (Sinnai)',
|
|
6081
|
-
typeOfEntity: 'luogo'
|
|
6082
|
-
},
|
|
6083
|
-
count: 2
|
|
6084
|
-
},
|
|
6085
|
-
{
|
|
6086
|
-
entity: {
|
|
6087
|
-
id: 'bce109c3-198f-41a9-9b07-03a99805334e',
|
|
6088
|
-
label: 'Comune di Donigala Fenughedu',
|
|
6089
|
-
typeOfEntity: 'organizzazione'
|
|
6090
|
-
},
|
|
6091
|
-
count: 2
|
|
6092
|
-
},
|
|
6093
|
-
{
|
|
6094
|
-
entity: {
|
|
6095
|
-
id: 'bdc43384-054d-44d8-8c8a-a4219c5c887b',
|
|
6096
|
-
label: 'Gergei',
|
|
6097
|
-
typeOfEntity: 'luogo'
|
|
6098
|
-
},
|
|
6099
|
-
count: 2
|
|
6100
|
-
},
|
|
6101
|
-
{
|
|
6102
|
-
entity: {
|
|
6103
|
-
id: 'bdd3a1e3-ea44-413e-9cc1-6aded0ac6afc',
|
|
6104
|
-
label: 'Goni',
|
|
6105
|
-
typeOfEntity: 'luogo'
|
|
6106
|
-
},
|
|
6107
|
-
count: 2
|
|
6108
|
-
},
|
|
6109
|
-
{
|
|
6110
|
-
entity: {
|
|
6111
|
-
id: 'bef0e42e-1628-43f9-b144-4b0d79f37596',
|
|
6112
|
-
label: 'Calasetta',
|
|
6113
|
-
typeOfEntity: 'luogo'
|
|
6114
|
-
},
|
|
6115
|
-
count: 2
|
|
6116
|
-
},
|
|
6117
|
-
{
|
|
6118
|
-
entity: {
|
|
6119
|
-
id: 'bf01b065-a198-4729-bfa2-a67298ec3338',
|
|
6120
|
-
label: 'Comune di San Basilio',
|
|
6121
|
-
typeOfEntity: 'organizzazione'
|
|
6122
|
-
},
|
|
6123
|
-
count: 2
|
|
6124
|
-
},
|
|
6125
|
-
{
|
|
6126
|
-
entity: {
|
|
6127
|
-
id: 'bf5d2382-a2ab-4acc-bfad-d81b2d32d355',
|
|
6128
|
-
label: 'Garau, Giorgio',
|
|
6129
|
-
typeOfEntity: 'persona'
|
|
6130
|
-
},
|
|
6131
|
-
count: 2
|
|
6132
|
-
},
|
|
6133
|
-
{
|
|
6134
|
-
entity: {
|
|
6135
|
-
id: 'c033213e-6eff-4f7e-bbfc-9a690a069ed2',
|
|
6136
|
-
label: 'Comune di Mandas',
|
|
6137
|
-
typeOfEntity: 'organizzazione'
|
|
6138
|
-
},
|
|
6139
|
-
count: 2
|
|
6140
|
-
},
|
|
6141
|
-
{
|
|
6142
|
-
entity: {
|
|
6143
|
-
id: 'c0703bfd-6219-4482-bbc5-3dbbaae088b9',
|
|
6144
|
-
label: 'Cuglieri',
|
|
6145
|
-
typeOfEntity: 'luogo'
|
|
6146
|
-
},
|
|
6147
|
-
count: 2
|
|
6148
|
-
},
|
|
6149
|
-
{
|
|
6150
|
-
entity: {
|
|
6151
|
-
id: 'c13c2c23-16a6-499f-a87c-a83dd4ea2a8e',
|
|
6152
|
-
label: 'Noragugume',
|
|
6153
|
-
typeOfEntity: 'luogo'
|
|
6154
|
-
},
|
|
6155
|
-
count: 2
|
|
6156
|
-
},
|
|
6157
|
-
{
|
|
6158
|
-
entity: {
|
|
6159
|
-
id: 'c21d43bb-f975-4de4-a4f4-7da722746d97',
|
|
6160
|
-
label: 'Nughedu Santa Vittoria',
|
|
6161
|
-
typeOfEntity: 'luogo'
|
|
6162
|
-
},
|
|
6163
|
-
count: 2
|
|
6164
|
-
},
|
|
6165
|
-
{
|
|
6166
|
-
entity: {
|
|
6167
|
-
id: 'c31ee7b7-1b31-46cd-a171-e5e164f721e0',
|
|
6168
|
-
label: 'Aidomaggiore',
|
|
6169
|
-
typeOfEntity: 'luogo'
|
|
6170
|
-
},
|
|
6171
|
-
count: 2
|
|
6172
|
-
},
|
|
6173
|
-
{
|
|
6174
|
-
entity: {
|
|
6175
|
-
id: 'c54b69c0-4ccb-4ec9-bdb1-5c459ac72904',
|
|
6176
|
-
label: 'Sarroch',
|
|
6177
|
-
typeOfEntity: 'luogo'
|
|
6178
|
-
},
|
|
6179
|
-
count: 2
|
|
6180
|
-
},
|
|
6181
|
-
{
|
|
6182
|
-
entity: {
|
|
6183
|
-
id: 'c64825aa-962d-499f-aef2-c0d502094971',
|
|
6184
|
-
label: 'Assessorato ai lavori pubblici e trasporti',
|
|
6185
|
-
typeOfEntity: 'organizzazione'
|
|
6186
|
-
},
|
|
6187
|
-
count: 2
|
|
6188
|
-
},
|
|
6189
|
-
{
|
|
6190
|
-
entity: {
|
|
6191
|
-
id: 'c6e9f10f-faf0-4418-864f-d1973223ebfd',
|
|
6192
|
-
label: 'Pau',
|
|
6193
|
-
typeOfEntity: 'luogo'
|
|
6194
|
-
},
|
|
6195
|
-
count: 2
|
|
6196
|
-
},
|
|
6197
|
-
{
|
|
6198
|
-
entity: {
|
|
6199
|
-
id: 'c8a7e56f-3c7c-45f9-8b49-a9e8f8c2dbc8',
|
|
6200
|
-
label: 'Zeddiani',
|
|
6201
|
-
typeOfEntity: 'luogo'
|
|
6202
|
-
},
|
|
6203
|
-
count: 2
|
|
6204
|
-
},
|
|
6205
|
-
{
|
|
6206
|
-
entity: {
|
|
6207
|
-
id: 'c90cf600-bb4f-4a68-a32c-107e20edc4cc',
|
|
6208
|
-
label: 'Masala, Antonio Salvatore',
|
|
6209
|
-
typeOfEntity: 'persona'
|
|
6210
|
-
},
|
|
6211
|
-
count: 2
|
|
6212
|
-
},
|
|
6213
|
-
{
|
|
6214
|
-
entity: {
|
|
6215
|
-
id: 'ccc8cc66-689a-42fb-8c02-cd0e22d9d879',
|
|
6216
|
-
label: 'Villamar',
|
|
6217
|
-
typeOfEntity: 'luogo'
|
|
6218
|
-
},
|
|
6219
|
-
count: 2
|
|
3191
|
+
count: 1
|
|
6220
3192
|
}
|
|
6221
3193
|
],
|
|
6222
3194
|
};
|
|
@@ -7318,7 +4290,8 @@ const INPUT_TEXT_MOCK = {
|
|
|
7318
4290
|
inputPayload: 'search-input',
|
|
7319
4291
|
enterPayload: 'search-enter',
|
|
7320
4292
|
iconPayload: 'search-icon',
|
|
7321
|
-
classes: 'my-custom-class'
|
|
4293
|
+
classes: 'my-custom-class',
|
|
4294
|
+
autocomplete: 'off',
|
|
7322
4295
|
// type: 'number',
|
|
7323
4296
|
// min: 10,
|
|
7324
4297
|
// max: 20,
|