forked from dpicca/ontologies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataset.nt
More file actions
1121 lines (1121 loc) · 166 KB
/
dataset.nt
File metadata and controls
1121 lines (1121 loc) · 166 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/artifacts#hasEmotion> <http://arsemotica.di.unito.it/artifacts#Anger> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/artifacts#hasEmotion> <http://arsemotica.di.unito.it/artifacts#Love> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/artifacts#hasEmotion> <http://dbpedia.org/page/Boredom> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/artifacts#hasEmotion> <http://dbpedia.org/page/Grief> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/artifacts#hasEmotion> <http://dbpedia.org/resource/Apprehension_(fear)> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#amore> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#appagamento> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#desiderio> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#disillusione> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#disincanto> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#incantare> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#noia> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#nostalgia> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#paura> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#piacere> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#rabbia> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#rigettare> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#soddisfazione> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#sofferenza> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#sorpresa> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#speranza> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#tenero> .
<http://arsemotica.di.unito.it/artifacts#> <http://arsemotica.di.unito.it/ontology#hasEmotionalWord> <http://arsemotica.di.unito.it/artifacts#tristezza> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#AdeleObice> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#AkiraZakamoto> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#AlessandroCaligarisCappio> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#DonatoProsdocimo> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#FilippoValente> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#LorenzoAlessandri> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#MarziaMigliora> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#RaffaelePalma> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#SalvatoreZito> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#hasCreator> <http://arsemotica.di.unito.it/ontology#TommasoCerasuolo> .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Angry Germ" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Atterraggio a Leumann" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Audrey" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Bianca e il suo contrario" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Cannibalismo Sociale" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Che autoritratto !" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Dove la Raffinata Ragazza Bionda guarda il Grosso Toro Malmorto" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Green Card" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Le Vespe sentono sete ma nessuno sa come" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Let down" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Octopussy in Love" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Osservando" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Pop Lovers" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Reading in the car" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Rinoceronte" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Tango" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Terra Madre" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Un colpo di vento" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Una farfalla" .
<http://arsemotica.di.unito.it/artifacts#> <http://www.w3.org/ns/ma-ont#title> "Weird Fish" .
<http://arsemotica.di.unito.it/artifacts#Admiration> <http://www.w3.org/2002/07/owl#sameAs> <http://wiktionary.dbpedia.org/page/admiration-English> .
<http://arsemotica.di.unito.it/artifacts#Apprehension> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/resource/Apprehension_(fear)> .
<http://arsemotica.di.unito.it/artifacts#Boredom> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/page/Boredom> .
<http://arsemotica.di.unito.it/artifacts#Grief> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/page/Grief> .
<http://arsemotica.di.unito.it/artifacts#Joy> <http://www.w3.org/2002/07/owl#sameAs> <http://it.dbpedia.org/page/Gioia_%28emozione%29> .
<http://arsemotica.di.unito.it/artifacts#Joy> <http://www.w3.org/2002/07/owl#sameAs> <http://wiktionary.dbpedia.org/page/joy> .
<http://arsemotica.di.unito.it/artifacts#Sadness> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/page/Sadness> .
<http://arsemotica.di.unito.it/artifacts#Surprise> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/page/Surprise_%28emotion%29> .
<http://arsemotica.di.unito.it/artifacts#Terror> <http://www.w3.org/2002/07/owl#sameAs> <http://dbpedia.org/page/Terror> .
<http://arsemotica.di.unito.it/ontology#Acceptance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Admiration> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Annoyance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Apprehension> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Awe> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Contempt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Disapproval> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Grief> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Loathing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Love> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Optimism> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Pensiveness> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Rage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Serenity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#Vigilance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://arsemotica.di.unito.it/ontology#a_00031053> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#avido> .
<http://arsemotica.di.unito.it/ontology#a_00031053> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00082090> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00092842> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#irritante> .
<http://arsemotica.di.unito.it/ontology#a_00092842> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#seccante> .
<http://arsemotica.di.unito.it/ontology#a_00092842> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00117308> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#arrabbiato> .
<http://arsemotica.di.unito.it/ontology#a_00117308> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00117684> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00117872> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00118303> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00118531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00118752> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00119146> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00119459> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00156446> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00156728> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00156835> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00157147> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00157347> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00194690> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#spaventoso> .
<http://arsemotica.di.unito.it/ontology#a_00194690> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00195880> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00207781> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00218804> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00220367> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00220542> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00221152> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00248776> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00271194> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00351663> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00352106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00353542> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00353838> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00354187> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#tetro> .
<http://arsemotica.di.unito.it/ontology#a_00354187> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00405649> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00420393> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#stretto> .
<http://arsemotica.di.unito.it/ontology#a_00420393> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#vicino> .
<http://arsemotica.di.unito.it/ontology#a_00420393> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00446819> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00448253> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00448605> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00472844> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00486658> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00497363> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00509150> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00509796> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00510407> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00556147> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00556568> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00556743> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00557087> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#soddisfatto> .
<http://arsemotica.di.unito.it/ontology#a_00557087> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00557191> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00659470> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00669611> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00669950> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00670286> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00670575> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00670851> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00698764> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00711482> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00751449> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00772422> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00783553> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ansioso> .
<http://arsemotica.di.unito.it/ontology#a_00783553> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#avvilente> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#demoralizzante> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#deprimente> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#desolante> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sconfortante> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sconsolante> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#scoraggiante> .
<http://arsemotica.di.unito.it/ontology#a_00825624> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00826026> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00826169> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00828302> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00845237> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00859179> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00863471> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#euforico> .
<http://arsemotica.di.unito.it/ontology#a_00863471> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00863650> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00863871> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00872975> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00874095> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00874850> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00945257> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_00997111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01000655> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#povero> .
<http://arsemotica.di.unito.it/ontology#a_01000655> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01089436> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#imbronciato> .
<http://arsemotica.di.unito.it/ontology#a_01089436> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01098277> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01099314> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#felice> .
<http://arsemotica.di.unito.it/ontology#a_01099314> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01100759> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01101074> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#infelice> .
<http://arsemotica.di.unito.it/ontology#a_01101074> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#triste> .
<http://arsemotica.di.unito.it/ontology#a_01101074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01101631> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01102092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01102326> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#infastidito> .
<http://arsemotica.di.unito.it/ontology#a_01102326> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01139868> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01176593> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01177991> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disperato> .
<http://arsemotica.di.unito.it/ontology#a_01177991> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01178424> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01178808> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disperato> .
<http://arsemotica.di.unito.it/ontology#a_01178808> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01179135> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01179297> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01179526> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01215015> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01230203> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01302744> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01308059> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#contento> .
<http://arsemotica.di.unito.it/ontology#a_01308059> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#lieto> .
<http://arsemotica.di.unito.it/ontology#a_01308059> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01308350> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01308490> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#felice> .
<http://arsemotica.di.unito.it/ontology#a_01308490> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01308632> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#malinconico> .
<http://arsemotica.di.unito.it/ontology#a_01308632> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#triste> .
<http://arsemotica.di.unito.it/ontology#a_01308632> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01309194> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01309360> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01309535> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01309603> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01309833> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01310561> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#festoso> .
<http://arsemotica.di.unito.it/ontology#a_01310561> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01310938> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#dolente> .
<http://arsemotica.di.unito.it/ontology#a_01310938> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#triste> .
<http://arsemotica.di.unito.it/ontology#a_01310938> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01311729> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01312115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01312366> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01313142> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01313226> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01313374> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01313944> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01314288> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#allegro> .
<http://arsemotica.di.unito.it/ontology#a_01314288> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01314685> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01403478> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#affettuoso> .
<http://arsemotica.di.unito.it/ontology#a_01403478> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#estroverso> .
<http://arsemotica.di.unito.it/ontology#a_01403478> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01404669> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01404786> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01486036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01566364> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01566899> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01567385> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01572491> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01604600> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ottimista> .
<http://arsemotica.di.unito.it/ontology#a_01604600> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ottimistico> .
<http://arsemotica.di.unito.it/ontology#a_01604600> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01605426> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01605516> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#catastrofico> .
<http://arsemotica.di.unito.it/ontology#a_01605516> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#pessimista> .
<http://arsemotica.di.unito.it/ontology#a_01605516> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#pessimistico> .
<http://arsemotica.di.unito.it/ontology#a_01605516> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01605795> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#demoralizzato> .
<http://arsemotica.di.unito.it/ontology#a_01605795> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#scoraggiato> .
<http://arsemotica.di.unito.it/ontology#a_01605795> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01610144> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01617066> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01625843> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01674134> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#impaziente> .
<http://arsemotica.di.unito.it/ontology#a_01674134> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#insofferente> .
<http://arsemotica.di.unito.it/ontology#a_01674134> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01680937> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01681118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01706499> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01731686> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01733963> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#scontento> .
<http://arsemotica.di.unito.it/ontology#a_01733963> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01734180> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01734691> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01735655> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01737080> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01737503> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#esasperante> .
<http://arsemotica.di.unito.it/ontology#a_01737503> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01855798> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#agitato> .
<http://arsemotica.di.unito.it/ontology#a_01855798> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01940830> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01940914> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01943022> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01944086> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_01999937> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02001946> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#gratificante> .
<http://arsemotica.di.unito.it/ontology#a_02001946> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#soddisfacente> .
<http://arsemotica.di.unito.it/ontology#a_02001946> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02002844> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02017003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02023897> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02222607> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02235465> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02246531> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sorpreso> .
<http://arsemotica.di.unito.it/ontology#a_02246531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02246844> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02247311> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02248299> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sorprendente> .
<http://arsemotica.di.unito.it/ontology#a_02248299> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02248624> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sorprendente> .
<http://arsemotica.di.unito.it/ontology#a_02248624> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02290470> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02290807> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#nervoso> .
<http://arsemotica.di.unito.it/ontology#a_02290807> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02301888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02314238> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02336957> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02337269> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02338153> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#preoccupato> .
<http://arsemotica.di.unito.it/ontology#a_02338153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02340900> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#spensierato> .
<http://arsemotica.di.unito.it/ontology#a_02340900> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02344950> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02345311> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02411442> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02424563> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02436303> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#a_02464962> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#oppresso> .
<http://arsemotica.di.unito.it/ontology#a_02464962> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#abbacchiamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#abbacchiare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#abbattere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#abbattimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#accanimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#accanto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#accesso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#accontentamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#accontentare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#accosto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#addolorare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#addolorarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#addolorato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#adeguatamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#adorabilmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#adorazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affabile> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affanno> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affannosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affettuoso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affliggere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affliggersi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#afflitto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#affranto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#agitato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#aiutare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#aizzare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#allarme> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#allegramente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#allegria> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#allegro> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#allietare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#allietarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#alteramente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#amare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#amarezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ammirare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ammirazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ammirevolmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#amore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#amorevole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#amorevolmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#amoroso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#angoscia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#angosciare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#angustia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#angustiare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#angustiato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#annuncio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#annunzio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ansia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ansiosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ansioso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#appagamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#appagare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#appartenenza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#apprensione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#apprensivamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#apprezzare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ardore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#arrabbiato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#assillare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#attonimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#attrizione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#autocommiserazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#autocompiacimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#avido> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#avversione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#avvilente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#avvilimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#avvilire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#battere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#batticuore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#beneficenza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#beneficienza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#benevolmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#benevolo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#bile> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#bizza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#bocciare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#bonario> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#calore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#catastrofico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#cinismo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#cogliere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#collera> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#colpa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#compito> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#compuntamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#compunzione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#comunicativo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#concitamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#concitazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#confondere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#confortare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#confusamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#confusione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#considerazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#consolare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#consolarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contentamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contentare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contentatura> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contentezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contrariare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contrariato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#contrito> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#cordiale> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#coscienza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#costernare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#costernazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#cotta> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#crepacuore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#crocefiggere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#crocifiggere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#cruccio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#culto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#culto_degli_eroi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#cupamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#debellare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#demoralizzante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#demoralizzare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#demoralizzato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#demoralizzazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#deplorevolmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#depressione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#deprimente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#deprimere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#desolante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#desolato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#detestabilmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#devoto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#devozione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dimestichevole> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disagio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disapprovazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disconforto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disdegnare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disdegno> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disfattismo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disgraziato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disgustare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disgusto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disgustosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disorientare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disperarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disperato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disperazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dispiacere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dispiacere_a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dispiaciuto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dispregio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disprezzare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disprezzo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#disturbare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#divozione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#doglioso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dolente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dolore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#dolorosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#effervescenza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#encomiabilmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esacerbare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esasperante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esasperare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esasperazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esaudire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#estroverso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esuberanza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esulcerare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esultanza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esultare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#esultazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#euforia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#euforico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#fantastico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#fastidioso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#felice> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#festosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#festoso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#fieramente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#foga> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#fragorosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#frustrazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#furia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#furore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gaio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gaudio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gaudiosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gelo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gelosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gelosia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#giocondamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#giocondo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gioia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gioiosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#giolito> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#giubbilare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#giubilare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#giubilo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gongolamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#gratificante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ilare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#imbarazzante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#imbarazzare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#imbarazzo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#imbronciato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#immalinconire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#immelanconire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#impaziente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#impazientemente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#impazienza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#importunare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#impressionare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#inacerbire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#incitare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#incitrullirsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#incocciatura> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#indegnamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#indignazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#indispettire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#inebetire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#infastidire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#infastidito> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#infatuazione_giovanile> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#infelice> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#infervoramento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#innervosire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#inquietudine> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#insicurezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#insofferente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#interessato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#intontimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#intontire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#intuizione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#invidia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#invidiabilmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ira> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#iratamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#irosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#irritante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#irritare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#irritato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#irritazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#istupidire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#lamentosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#letizia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#lietamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#lietezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#lieto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#lodevolmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#lugubremente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#luttuosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#magone> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mal_umore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#malinconia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#malinconico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#malumore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#materno> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#meraviglia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#meravigliare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#meravigliosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#meraviglioso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mestizia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mesto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mirabilmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#miseramente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#miseria> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mite> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#modestia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#molestare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mortificare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mortificato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#mortificazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#n_05575841> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05576115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05576222> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05577411> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disapprovazione> .
<http://arsemotica.di.unito.it/ontology#n_05577411> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#riprovazione> .
<http://arsemotica.di.unito.it/ontology#n_05577411> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05577544> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disdegno> .
<http://arsemotica.di.unito.it/ontology#n_05577544> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#dispregio> .
<http://arsemotica.di.unito.it/ontology#n_05577544> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disprezzo> .
<http://arsemotica.di.unito.it/ontology#n_05577544> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sdegno> .
<http://arsemotica.di.unito.it/ontology#n_05577544> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05577676> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disgusto> .
<http://arsemotica.di.unito.it/ontology#n_05577676> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#nausea> .
<http://arsemotica.di.unito.it/ontology#n_05577676> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ribrezzo> .
<http://arsemotica.di.unito.it/ontology#n_05577676> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05577970> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#schifo> .
<http://arsemotica.di.unito.it/ontology#n_05577970> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05578076> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05578925> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05579963> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#vergogna> .
<http://arsemotica.di.unito.it/ontology#n_05579963> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05580137> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05580284> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05580420> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#confusione> .
<http://arsemotica.di.unito.it/ontology#n_05580420> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#imbarazzo> .
<http://arsemotica.di.unito.it/ontology#n_05580420> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#vergogna> .
<http://arsemotica.di.unito.it/ontology#n_05580420> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05580651> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disagio> .
<http://arsemotica.di.unito.it/ontology#n_05580651> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05580828> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05580938> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#mortificazione> .
<http://arsemotica.di.unito.it/ontology#n_05580938> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05581054> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#confusione> .
<http://arsemotica.di.unito.it/ontology#n_05581054> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#smarrimento> .
<http://arsemotica.di.unito.it/ontology#n_05581054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05581180> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#modestia> .
<http://arsemotica.di.unito.it/ontology#n_05581180> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05581284> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05582358> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#meraviglia> .
<http://arsemotica.di.unito.it/ontology#n_05582358> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sbalordimento> .
<http://arsemotica.di.unito.it/ontology#n_05582358> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#stupefazione> .
<http://arsemotica.di.unito.it/ontology#n_05582358> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#stupore> .
<http://arsemotica.di.unito.it/ontology#n_05582358> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05582577> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05582729> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05582875> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sorpresa> .
<http://arsemotica.di.unito.it/ontology#n_05582875> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05583004> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05583387> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05583536> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05585895> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#smania> .
<http://arsemotica.di.unito.it/ontology#n_05585895> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05586117> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#impazienza> .
<http://arsemotica.di.unito.it/ontology#n_05586117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05586217> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05586494> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05587878> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#collera> .
<http://arsemotica.di.unito.it/ontology#n_05587878> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#rabbia> .
<http://arsemotica.di.unito.it/ontology#n_05587878> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588172> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588321> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588413> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588618> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588725> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588822> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05588960> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#indignazione> .
<http://arsemotica.di.unito.it/ontology#n_05588960> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sdegno> .
<http://arsemotica.di.unito.it/ontology#n_05588960> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589074> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589169> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589301> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#nervoso> .
<http://arsemotica.di.unito.it/ontology#n_05589301> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#paturne> .
<http://arsemotica.di.unito.it/ontology#n_05589301> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589430> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589637> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589778> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05589957> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05590065> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05591792> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#apprensione> .
<http://arsemotica.di.unito.it/ontology#n_05591792> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#timore> .
<http://arsemotica.di.unito.it/ontology#n_05591792> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05592071> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05592156> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05592428> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05592546> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05592642> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05593480> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#affanno> .
<http://arsemotica.di.unito.it/ontology#n_05593480> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#angoscia> .
<http://arsemotica.di.unito.it/ontology#n_05593480> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ansia> .
<http://arsemotica.di.unito.it/ontology#n_05593480> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#apprensione> .
<http://arsemotica.di.unito.it/ontology#n_05593480> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#batticuore> .
<http://arsemotica.di.unito.it/ontology#n_05593480> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05593817> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594044> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594203> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594325> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594446> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594594> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594782> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05594897> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05595049> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05595732> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596018> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596218> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596414> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596527> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596663> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596742> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05596946> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597153> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597250> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597503> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597617> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597701> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597799> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05597982> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598089> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598269> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598350> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#allegria> .
<http://arsemotica.di.unito.it/ontology#n_05598350> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598559> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598666> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598833> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05598965> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05599226> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#orgoglio> .
<http://arsemotica.di.unito.it/ontology#n_05599226> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05599367> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05599598> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05599694> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05599822> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05599930> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600250> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600345> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600505> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600637> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600734> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600844> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05600968> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601051> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601181> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601315> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601413> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601647> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601776> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05601957> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602190> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602279> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602526> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602697> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602852> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05602960> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603196> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603287> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#depressione> .
<http://arsemotica.di.unito.it/ontology#n_05603287> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603470> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603599> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603715> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603809> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05603932> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05604103> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05604181> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05604301> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05604748> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05605389> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05606361> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ottimismo> .
<http://arsemotica.di.unito.it/ontology#n_05606361> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05606509> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05606636> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05606847> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05606995> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05607104> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05607201> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05607353> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05607505> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#pessimismo> .
<http://arsemotica.di.unito.it/ontology#n_05607505> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05607640> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05607724> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05608042> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ardore> .
<http://arsemotica.di.unito.it/ontology#n_05608042> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#passione> .
<http://arsemotica.di.unito.it/ontology#n_05608042> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05608126> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05608223> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05608345> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05609295> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05609411> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05609517> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05609617> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05609709> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05612539> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#invidia> .
<http://arsemotica.di.unito.it/ontology#n_05612539> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05612765> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05612865> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#gelosia> .
<http://arsemotica.di.unito.it/ontology#n_05612865> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05614225> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05614716> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_05617136> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#n_10337658> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#narcisismo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#nausea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#nauseare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#nervoso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#obbrobriosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#oltraggiare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#oppresso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#opprimere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#oppure_agitazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#orgoglio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#orgogliosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#orrore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ottimismo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ottimista> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ottimisticamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ottimistico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#passabile> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#passione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#patema> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#paterno> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#paturne> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#paturnie> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#paura> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#penitente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#penitenza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#penosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pensiero> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pensosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pentimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pentito> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#perseguitare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#peso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pessimismo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pessimista> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pessimisticamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#pessimistico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#piacere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#portentosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#povero> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#preoccupare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#preoccupazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#presentimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#presso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#r_00378612> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#gelosamente> .
<http://arsemotica.di.unito.it/ontology#r_00397497> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#miseramente> .
<http://arsemotica.di.unito.it/ontology#r_00399172> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#luttuosamente> .
<http://arsemotica.di.unito.it/ontology#r_00403897> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#accanto> .
<http://arsemotica.di.unito.it/ontology#r_00403897> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#accosto> .
<http://arsemotica.di.unito.it/ontology#r_00403897> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#presso> .
<http://arsemotica.di.unito.it/ontology#r_00403897> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#vicino> .
<http://arsemotica.di.unito.it/ontology#r_00408432> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#ottimisticamente> .
<http://arsemotica.di.unito.it/ontology#r_00408616> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#pessimisticamente> .
<http://arsemotica.di.unito.it/ontology#r_00413918> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#pensosamente> .
<http://arsemotica.di.unito.it/ontology#rabbia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rabbia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlNervousism_denoting_Words> .
<http://arsemotica.di.unito.it/ontology#rabbiosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rabbiosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlNervousism_denoting_Words> .
<http://arsemotica.di.unito.it/ontology#raccapriccio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#raccapriccio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlNervousism_denoting_Words> .
<http://arsemotica.di.unito.it/ontology#rallegramento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rallegrare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rallegrarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rammaricare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rammaricato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rammarico> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rasserenare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rasserenarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rattristare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rattristato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#repellere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#repugnanza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#repulsione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ribollimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ribrezzo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#riconfortare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ridda> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rimbambinire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rimbambire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rimbecillirsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rimordimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rimorso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rincrescimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rincretinire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rincuorarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rinfanciullire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rinfrancare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#riprovazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ripugnanza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#ripulsione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#rivoltare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#salutarmente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sbalordimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sbalordire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sbalorditivo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sbigottimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sbugiardare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#schifare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#schifo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#schifosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scocciare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconcertare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconcerto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconfiggere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconfiggere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlAntagonistic_Words> .
<http://arsemotica.di.unito.it/ontology#sconfortante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconfortare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconforto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconsolante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sconsolazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scontentezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scontento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scoraggiante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scoraggiante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlAntagonistic_Words> .
<http://arsemotica.di.unito.it/ontology#scoraggiare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scoraggiare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlAntagonistic_Words> .
<http://arsemotica.di.unito.it/ontology#scoraggiato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scoraggiato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlAntagonistic_Words> .
<http://arsemotica.di.unito.it/ontology#scoramento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scornare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#scrupolo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sdegno> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#seccante> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#seccare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#seccato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#senso_di_colpa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sfasare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sgomento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#smaccare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#smania> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#smarrimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#smontare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#soddisfacente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#soddisfacentemente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#soddisfacimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#soddisfare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#soddisfatto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sofferto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#solleticare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sollevare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sorprendente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sorprendentemente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sorprendere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sorpresa> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sorpreso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sorreggere> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sovranamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#spaventoso> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#spensierato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#spiacente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#sprezzare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stancare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stimare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stizza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stizzosamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stomacare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stordire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#strabiliare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stretto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#struggicuore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#struggimento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stupefare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stupefazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stupendamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stupire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#stupore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#superare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#superare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlAntagonistic_Words> .
<http://arsemotica.di.unito.it/ontology#superbamente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#svergognare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tediare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tenero> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tetramente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tetro> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#timore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#titillamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#titillare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tormentare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tormentarsi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tormentato> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#torturare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tramortire> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tremendo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#trepidanza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#trepidazione> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#trepidezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#trionfare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tripudiare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tripudio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#triste> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tristemente> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tristezza> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#tumulto> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#turbamento> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#umiliare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#umiliare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://literary_characters_psycological_profiles.owlAntagonistic_Words> .
<http://arsemotica.di.unito.it/ontology#urtare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Word> .
<http://arsemotica.di.unito.it/ontology#v_00183525> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#intontire> .
<http://arsemotica.di.unito.it/ontology#v_00183525> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#istupidire> .
<http://arsemotica.di.unito.it/ontology#v_00183525> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#stordire> .
<http://arsemotica.di.unito.it/ontology#v_00183525> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#tramortire> .
<http://arsemotica.di.unito.it/ontology#v_00476269> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00491471> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00491581> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00496653> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00548543> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#bocciare> .
<http://arsemotica.di.unito.it/ontology#v_00548543> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00580082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00582048> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00582462> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00582621> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00582840> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00582994> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00598839> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00626227> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00750517> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_00812241> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_01205957> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#preoccupare> .
<http://arsemotica.di.unito.it/ontology#v_01205957> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#tormentarsi> .
<http://arsemotica.di.unito.it/ontology#v_01205957> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://arsemotica.di.unito.it/ontology#Wordnet_Sense> .
<http://arsemotica.di.unito.it/ontology#v_01211520> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disdegnare> .
<http://arsemotica.di.unito.it/ontology#v_01211520> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#disprezzare> .
<http://arsemotica.di.unito.it/ontology#v_01211520> <http://lemon-model.net/lemon#isSenseOf> <http://arsemotica.di.unito.it/ontology#sprezzare> .