-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublic.ttl
More file actions
3696 lines (3242 loc) · 162 KB
/
public.ttl
File metadata and controls
3696 lines (3242 loc) · 162 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
PREFIX ont: <https://paulduchesne.github.io/state/ontology/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
<https://paulduchesne.github.io/state/resource/63f92f5a-0dc8-405c-b03f-195988d9efbb>
a ont:Application ;
rdfs:label "Docker"@en ;
rdfs:comment "Docker is an application to facilitate containerised enviroments. This is intensely useful for ensuring predictability, that software behaves in a fully expectated manner.<br><br>The easiest way to install Docker in a dev context is<pre><code>curl -fsSL https://get.docker.com | sudo sh</code></pre>By default Docker will expect sudo on every command, which gets boring. Instead auth the user<pre><code>sudo usermod -aG docker $USER</code></pre>An Ubuntu container can be deployed in interactive mode with the following command<pre><code>docker run -it ubuntu:24.04</code></pre>It is also common to define your own `Dockerfile`, which can contain extensive config<pre><code>FROM ubuntu:24.04</code></pre>This image can be built<pre><code>docker build -t my-project .</code></pre>and deployed<pre><code>docker run -it my-project</code></pre>"@en ;
.
<https://paulduchesne.github.io/state/resource/84e22246-8182-469d-9fc5-99cfbce52aa1>
a ont:Protocol ;
rdfs:label "SSH"@en ;
rdfs:comment "SSH is a protocol for authenticating to devices over a network. I hope never to need to understand the complexities of how it actually operates. <br><br>Create an Ed25519 key.<pre><code>ssh-keygen -t ed25519</code></pre>Print public key.<pre><code>cat .ssh/id_ed25519.pub</code></pre>"@en ;
.
<https://paulduchesne.github.io/state/resource/a2e9cb60-f35b-487a-add9-a9044fa64d85>
a ont:Location ;
rdfs:label "Rabat"@en ;
rdfs:comment "Capital city of Morocco."@en ;
ont:wikidataIdentifier "Q3551" ;
.
<https://paulduchesne.github.io/state/resource/ad8600ce-fe98-4212-b3d8-0105abdaa567>
a ont:Organisation ;
rdfs:label "International Federation of Film Archives"@en ;
rdfs:comment "Primary international association of film archives."@en ;
ont:wikidataIdentifier "Q586693" ;
.
<https://paulduchesne.github.io/state/resource/014369b3-d66a-429d-98f9-77caec9e5cd0>
a ont:Album ;
rdfs:label "Excavation"@en ;
rdfs:comment "Album by Bobby Krlic"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/14017918-e915-4a3a-a067-380b9d536a1c> ;
ont:wikidataIdentifier "Q17047752" ;
.
<https://paulduchesne.github.io/state/resource/01ce23b4-dcca-4d7e-82d4-1e4dd647946e>
a ont:Album ;
rdfs:label "Everything Everything"@en ;
rdfs:comment "Album by Leo Chadburn"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/4ad6ff33-4bbf-431b-9a3c-18be6fed6997> ;
.
<https://paulduchesne.github.io/state/resource/024ba9e7-4788-4d22-b9f6-2e0f4ff6c455>
a ont:Album ;
rdfs:label "Even Clean Hands Damage The Work"@en ;
rdfs:comment "Album by John Chantler"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/11dca4d3-279b-40ab-98ce-5ef437c553f8> ;
.
<https://paulduchesne.github.io/state/resource/043b75f5-3f6e-41ce-a234-a3f63a71de91>
a ont:Person ;
rdfs:label "Georgi Gospodinov"@en ;
rdfs:comment "Bulgarian writer."@en ;
ont:authorOf <https://paulduchesne.github.io/state/resource/243492e0-1eaa-4d45-8721-12985d1cd9b3> ;
ont:wikidataIdentifier "Q1509177" ;
.
<https://paulduchesne.github.io/state/resource/04bf0c12-218e-40cb-b9e5-cc72d55831a7>
a ont:Album ;
rdfs:label "Inflatable Graveyard"@en ;
rdfs:comment "Album by Tropical Fuck Storm"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/ed5bc93d-ea96-4532-98a1-48b5c389435e> ;
.
<https://paulduchesne.github.io/state/resource/0530f07f-ae3f-4693-becc-2ccd8914c932>
a ont:Person ;
rdfs:label "Samanta Schweblin"@en ;
rdfs:comment "Argentinian writer."@en ;
ont:authorOf <https://paulduchesne.github.io/state/resource/8c827882-23c4-45d3-b54c-0f7df578389f> ;
ont:wikidataIdentifier "Q7408607" ;
.
<https://paulduchesne.github.io/state/resource/0536fe2e-39c4-4356-b771-e6f69690608c>
a ont:Album ;
rdfs:label "As Truth Mixtape"@en ;
rdfs:comment "Album by Amnesia Scanner"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/64f8af27-a61a-4a76-9363-74c7072104d8> ;
.
<https://paulduchesne.github.io/state/resource/05f3308a-4cdf-4f4c-b304-67c7df4b1350>
a ont:Album ;
rdfs:label "Unflesh"@en ;
rdfs:comment "Album by Elizabeth Bernho"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/d4ea7e0c-0eda-44a3-8f11-d2daee6a5b0c> ;
ont:wikidataIdentifier "Q18713869" ;
.
<https://paulduchesne.github.io/state/resource/061e250f-fe97-4d30-b337-246ce1ecc560>
a ont:Album ;
rdfs:label "Raj"@en ;
rdfs:comment "Album by Derek Piotr"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/aca795e6-2538-4b79-9f6e-bdc9eef13b95> ;
.
<https://paulduchesne.github.io/state/resource/06aed4c4-dce0-4fb7-b599-071edfb0b15e>
a ont:Album ;
rdfs:label "Beta Tape Warp"@en ;
rdfs:comment "Album by Tim Dwyer"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/dedb9378-0b04-4661-ab46-0cfcb461f255> ;
.
<https://paulduchesne.github.io/state/resource/084b6c9c-7732-4b9b-a87b-b4c4cbbce9dd>
a ont:Album ;
rdfs:label "Cellulite Soul"@en ;
rdfs:comment "Album by Witch Hats"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/1e9fa16b-98cb-491a-8148-a7dda2246968> ;
ont:wikidataIdentifier "Q5058381" ;
.
<https://paulduchesne.github.io/state/resource/08efa78a-d20f-408a-916a-c86046ca32cb>
a ont:Person ;
rdfs:label "Miranda July"@en ;
rdfs:comment "American writer."@en ;
ont:authorOf <https://paulduchesne.github.io/state/resource/d7e5b2e8-09ab-43f7-9711-21280c906c3b> ;
ont:wikidataIdentifier "Q256671" ;
.
<https://paulduchesne.github.io/state/resource/0c1ab77c-8ca5-4ada-9246-156f8dc03dac>
a ont:Person ;
rdfs:label "Paul Gough"@en ;
rdfs:comment "Australian composer. Has performed as Pimmon."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/b506945b-b5de-43ba-83ad-f79fdb8da5ea> ;
ont:wikidataIdentifier "Q7194665" ;
.
<https://paulduchesne.github.io/state/resource/0d47cc42-fe4a-44cc-b4eb-d08391783d79>
a ont:Person ;
rdfs:label "James Holden"@en ;
rdfs:comment "British composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/f3fec9ad-8c78-48e5-8795-5e2c82f05afe> ;
ont:wikidataIdentifier "Q718772" ;
.
<https://paulduchesne.github.io/state/resource/0de01e56-8283-4834-bd51-55424aba4a5e>
a ont:Album ;
rdfs:label "Animism"@en ;
rdfs:comment "Album by Tanya Tagaq"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8acaa52b-c1d8-4c55-91d3-66df0c8df196> ;
ont:wikidataIdentifier "Q18148838" ;
.
<https://paulduchesne.github.io/state/resource/0e238ada-e438-4bdb-a513-b28164ad6e6f>
a ont:Organisation ;
rdfs:label "Godzilla Black"@en ;
rdfs:comment "British group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/8e19e416-df37-4c59-b781-83a35f8fb717> ;
.
<https://paulduchesne.github.io/state/resource/0f1c2c7f-25ee-40a8-bb17-2230e08790ef>
a ont:Album ;
rdfs:label "Beatnadel"@en ;
rdfs:comment "Album by Antye Greie"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/88db9a41-e263-45f6-9de4-e8c59b031b56> ;
.
<https://paulduchesne.github.io/state/resource/0fddd67c-6e77-47b0-beec-8f90845f1849>
a ont:Person ;
rdfs:label "Hannah de Feyter"@en ;
rdfs:comment "Australian composer. Has performed as Alphamale."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/6cf5efee-ef14-4b4d-8659-e7a85be4ede0> ;
.
<https://paulduchesne.github.io/state/resource/10f8d9fa-2da2-449b-9946-3126c9584052>
a ont:Institution ;
rdfs:label "Bundesarchiv" ;
rdfs:comment "The German National Archives." ;
ont:hasMember <https://paulduchesne.github.io/state/resource/2b9cb0d4-cf35-4426-b448-114e7cdacccb> ;
ont:wikidataIdentifier "Q685753" ;
.
<https://paulduchesne.github.io/state/resource/115fe815-0114-4a57-83fe-badb2f6428f2>
a ont:Album ;
rdfs:label "I"@en ;
rdfs:comment "Album by Tangents"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/68fee855-3343-4680-9e6a-f299399de5e5> ;
.
<https://paulduchesne.github.io/state/resource/119dac0d-fc53-4d79-91fb-94f39a662fa5>
a ont:Album ;
rdfs:label "Iconoclast"@en ;
rdfs:comment "Album by Cracked Actor"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/3407bf85-4b83-4670-8682-82eb4c3a0f1b> ;
.
<https://paulduchesne.github.io/state/resource/11affb1e-110b-4413-8cad-aa297536a27a>
a ont:Album ;
rdfs:label "7"@en ;
rdfs:comment "Album by Supersilent"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/67855a20-ffe3-4e65-999c-e281d1099c9f> ;
.
<https://paulduchesne.github.io/state/resource/11dca4d3-279b-40ab-98ce-5ef437c553f8>
a ont:Person ;
rdfs:label "John Chantler"@en ;
rdfs:comment "British composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/024ba9e7-4788-4d22-b9f6-2e0f4ff6c455> ;
.
<https://paulduchesne.github.io/state/resource/11e94fde-ef87-407f-be45-b0d2de29efe1>
a ont:Album ;
rdfs:label "Privilege And Obscenity"@en ;
rdfs:comment "Album by Dead Boomers"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/0d4a84eb-8ece-49d2-9151-d82b0a843046> ;
.
<https://paulduchesne.github.io/state/resource/134e2e20-9d1e-437a-9c96-bf0c9d98320f>
a ont:Organisation ;
rdfs:label "Standish Carlyon"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/d31ee844-25d4-43df-b3bc-64759580de00> ;
.
<https://paulduchesne.github.io/state/resource/14487cba-ed9e-4703-8614-83530a3cb5df>
a ont:Person ;
rdfs:label "Lasse Marhaug"@en ;
rdfs:comment "Norwegian composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/2e76bae6-e461-49ce-a4e7-ff02e2cf74f4> ;
ont:wikidataIdentifier "Q6493913" ;
.
<https://paulduchesne.github.io/state/resource/15ba58be-34a3-4380-baed-733ae0c5f07a>
a ont:Person ;
rdfs:label "Mariana Enríquez"@en ;
rdfs:comment "Argentinian writer."@en ;
ont:authorOf <https://paulduchesne.github.io/state/resource/90c8c4ca-4ccf-4aca-b021-d480efd1abb6> ;
ont:wikidataIdentifier "Q5997426" ;
.
<https://paulduchesne.github.io/state/resource/18763a7b-9ee2-46f1-a0b8-3c5cc4eb8ee2>
a ont:Organisation ;
rdfs:label "iPRES"@en ;
rdfs:comment "International community of Digital Preservation archivists."@en ;
ont:participatedIn <https://paulduchesne.github.io/state/resource/2ebe1653-01bb-4558-97eb-3f1ce794dd5a> ;
.
<https://paulduchesne.github.io/state/resource/1965638d-0570-4588-8faa-0fe78acc8461>
a ont:Organisation ;
rdfs:label "The Necks"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/7e4e5540-d470-4182-a2fe-27635c3b7e70> ;
ont:wikidataIdentifier "Q1531070" ;
.
<https://paulduchesne.github.io/state/resource/19cad5c0-060e-414d-839b-8606362a43cb>
a ont:Album ;
rdfs:label "Chrysanthenum"@en ;
rdfs:comment "Album by Kris Keogh"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/dd8407fa-b77b-4d4f-ad6b-895dbc6570e5> ;
.
<https://paulduchesne.github.io/state/resource/1a004ac3-416a-4fba-902c-7474f739a387>
a ont:Album ;
rdfs:label "Tarquin Magnet"@en ;
rdfs:comment "Album by Tarquin Manek"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/60f443b7-14ec-486b-9e02-e3f8b6cc169a> ;
.
<https://paulduchesne.github.io/state/resource/1bae641c-b1d3-4fac-b61f-061ee864fc13>
a ont:Album ;
rdfs:label "Ett"@en ;
rdfs:comment "Album by Klara Lewis"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/b32144b9-0223-43a9-b00e-e89032c09d97> ;
.
<https://paulduchesne.github.io/state/resource/1ec95913-4a90-4063-a9c5-9f32b23cb667>
a ont:Album ;
rdfs:label "Swans Are Dead"@en ;
rdfs:comment "Album by Swans"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/67739b53-0ac8-4f97-ba94-86e24dbb4ffd> ;
.
<https://paulduchesne.github.io/state/resource/1f6ed568-58c5-4f73-b5c6-1cd2d64cd521>
a ont:Album ;
rdfs:label "Hubris"@en ;
rdfs:comment "Album by Oren Ambarchi"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/ffc03abd-3406-473f-a1bb-b207887efc21> ;
ont:wikidataIdentifier "Q137762916" ;
.
<https://paulduchesne.github.io/state/resource/1f72aff9-072d-4d75-b66a-829982b1d71d>
a ont:Album ;
rdfs:label "Resurrection"@en ;
rdfs:comment "Album by John Burton"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8723f25f-18a8-4e08-8adf-1ba204e67520> ;
.
<https://paulduchesne.github.io/state/resource/1fd3ff8c-d2a7-4a17-bacb-071e9d17ec00>
a ont:Organisation ;
rdfs:label "Mandy, Indiana"@en ;
rdfs:comment "French/British group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/7a7cf4b6-7a50-42f7-9cf9-c21941e77fd0> ;
ont:wikidataIdentifier "Q119036137" ;
.
<https://paulduchesne.github.io/state/resource/1ffb0ac1-4bd2-4ab3-b4b2-46b453f3f483>
a ont:Album ;
rdfs:label "Learn To Dance"@en ;
rdfs:comment "Album by Finnigan And Brother"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/21935384-f63f-460a-9fc7-48878d715790> ;
.
<https://paulduchesne.github.io/state/resource/2417fb79-2d8c-45f3-ab3f-a352970e50c1>
a ont:Organisation ;
rdfs:label "Chat Pile"@en ;
rdfs:comment "American group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/d1e06e08-4cdf-405d-9306-d545b6dc9098> ;
ont:wikidataIdentifier "Q113511441" ;
.
<https://paulduchesne.github.io/state/resource/25f0e727-c909-4874-a1a8-ae1da9922a93>
a ont:Album ;
rdfs:label "Movement"@en ;
rdfs:comment "Album by Holly Herndon"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/06872df7-82b1-4042-b7bb-e02a3aa03681> ;
.
<https://paulduchesne.github.io/state/resource/2661a5e2-71a6-4839-af19-c6d441f4df7b>
a ont:Album ;
rdfs:label "Another Life"@en ;
rdfs:comment "Album by Amnesia Scanner"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/64f8af27-a61a-4a76-9363-74c7072104d8> ;
ont:wikidataIdentifier "Q60537954" ;
.
<https://paulduchesne.github.io/state/resource/269dae52-074d-4be0-9dd4-29a1f4f1f3c3>
a ont:Album ;
rdfs:label "For Varying Degrees Of Winter"@en ;
rdfs:comment "Album by Lawrence English"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/c930c0b6-b485-4482-a3db-6a7299d38a55> ;
.
<https://paulduchesne.github.io/state/resource/292bd3f8-5ac8-418a-988f-650414f9c6bf>
a ont:Album ;
rdfs:label "Waltz With Bashir"@en ;
rdfs:comment "Album by Max Richter"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/86360ed4-381d-4129-87cd-eea5e62b6fb0> ;
.
<https://paulduchesne.github.io/state/resource/29dc3210-2d8b-443a-bfa4-b65dc8a5f5d9>
a ont:Album ;
rdfs:label "The Horse, The Rat and The Swan"@en ;
rdfs:comment "Album by Snowman"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/203c7ff6-ba8b-43c9-a7a3-7c87d26ab293> ;
ont:wikidataIdentifier "Q7740337" ;
.
<https://paulduchesne.github.io/state/resource/2b3e44ea-61c3-4048-9768-0b1a3d958d3b>
a ont:Album ;
rdfs:label "The Marriage of True Minds"@en ;
rdfs:comment "Album by Matmos"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/e148d18b-daaa-4aed-b5cd-fae1c4c6a3fc> ;
ont:wikidataIdentifier "Q19894219" ;
.
<https://paulduchesne.github.io/state/resource/2b616b2d-a1eb-4cd0-b65f-21b14975feda>
a ont:Album ;
rdfs:label "R Plus Seven"@en ;
rdfs:comment "Album by Daniel Lopatin"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/7991263f-8455-4d38-bbd3-d0f215871cf5> ;
ont:wikidataIdentifier "Q17065975" ;
.
<https://paulduchesne.github.io/state/resource/2b9cb0d4-cf35-4426-b448-114e7cdacccb>
a ont:Person ;
rdfs:label "Adelheid Heftberger" ;
rdfs:comment "Austrian researcher." ;
ont:memberOf <https://paulduchesne.github.io/state/resource/10f8d9fa-2da2-449b-9946-3126c9584052> ;
ont:wikidataIdentifier "Q42369365" ;
.
<https://paulduchesne.github.io/state/resource/2ba572fa-0619-45ea-9d45-1fdb8a9481c8>
a ont:Person ;
rdfs:label "Kara-Lis Coverdale"@en ;
rdfs:comment "Canadian composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/87664044-a8cb-48cc-9cb0-b37bea003770> ;
ont:wikidataIdentifier "Q20740744" ;
.
<https://paulduchesne.github.io/state/resource/2c6a1d72-e9cb-4075-ac51-f8af05695664>
a ont:Album ;
rdfs:label "Lovetune for Vacuum"@en ;
rdfs:comment "Album by Anja Plaschg"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/aa2c3445-389c-42ac-b5f2-200e7c2b5c74> ;
ont:wikidataIdentifier "Q1325626" ;
.
<https://paulduchesne.github.io/state/resource/2e76bae6-e461-49ce-a4e7-ff02e2cf74f4>
a ont:Album ;
rdfs:label "How To Avoid Ants"@en ;
rdfs:comment "Album by Lasse Marhaug"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/14487cba-ed9e-4703-8614-83530a3cb5df> ;
.
<https://paulduchesne.github.io/state/resource/2ed7589d-2dae-4442-bacf-fa14658d34d7>
a ont:Album ;
rdfs:label "Crazy Clown Time"@en ;
rdfs:comment "Album by David Lynch"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/931c5d1f-7748-476e-990d-5894c97034c5> ;
ont:wikidataIdentifier "Q1939106" ;
.
<https://paulduchesne.github.io/state/resource/2f7ce81a-6f3a-4f1d-8ff3-d59940fe881d>
a ont:Album ;
rdfs:label "Heart And Soul"@en ;
rdfs:comment "Album by Joy Division"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/fa59a268-88da-48c6-b6e9-dbf8dbc4880e> ;
.
<https://paulduchesne.github.io/state/resource/2f8d1630-3174-489d-8986-0dcc38360a4e>
a ont:Album ;
rdfs:label "Ghosting The Collapse"@en ;
rdfs:comment "Album by Jonathan Black"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/24946da4-9a3d-413e-8ab5-ab3d978ede15> ;
.
<https://paulduchesne.github.io/state/resource/2fd1ff1f-3e92-40bc-83f9-de188b5f594a>
a ont:Album ;
rdfs:label "20 Jazz Funk Greats"@en ;
rdfs:comment "Album by Throbbing Gristle"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/326415e1-05e0-4cc2-aed0-a0c2e9dd6fdb> ;
ont:wikidataIdentifier "Q4356849" ;
.
<https://paulduchesne.github.io/state/resource/2fd90a17-7582-43cf-af54-f4647b2ed676>
a ont:Album ;
rdfs:label "Live At The South Bank"@en ;
rdfs:comment "Album by Hebden Reid Gustafsson"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/524bdd1b-f156-48ed-9c52-7ae7e45a91ac> ;
.
<https://paulduchesne.github.io/state/resource/30a37543-0315-49a0-b732-44d8ac5c9fda>
a ont:Album ;
rdfs:label "Silence Is Sexy"@en ;
rdfs:comment "Album by Einstürzende Neubauten"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8c9810c3-f221-4b75-bd03-1fe8fb89c7a4> ;
.
<https://paulduchesne.github.io/state/resource/326415e1-05e0-4cc2-aed0-a0c2e9dd6fdb>
a ont:Organisation ;
rdfs:label "Throbbing Gristle"@en ;
rdfs:comment "British group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/2fd1ff1f-3e92-40bc-83f9-de188b5f594a> ;
ont:wikidataIdentifier "Q1165655" ;
.
<https://paulduchesne.github.io/state/resource/32eb496b-6022-4ee6-9633-8a21f0c0e50f>
a ont:Album ;
rdfs:label "Circuitous"@en ;
rdfs:comment "Album by Te"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/7dd6f50c-74fd-4c51-acc5-0c0b17ce65f7> ;
.
<https://paulduchesne.github.io/state/resource/332d15ee-d915-46d1-b8b7-08b8b5957b0f>
a ont:Album ;
rdfs:label "Mirrored"@en ;
rdfs:comment "Album by Battles"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/dae0ceb0-aa26-4f41-8057-b26528ded644> ;
ont:wikidataIdentifier "Q539555" ;
.
<https://paulduchesne.github.io/state/resource/33c1b5e4-b7bb-4ad6-ab92-7185535acaac>
a ont:Album ;
rdfs:label "Aphthae Epizooticae"@en ;
rdfs:comment "Album by Feet Teeth"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/74d826fc-872c-435e-a062-a8876ef3a2a1> ;
.
<https://paulduchesne.github.io/state/resource/3407bf85-4b83-4670-8682-82eb4c3a0f1b>
a ont:Organisation ;
rdfs:label "Cracked Actor"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/119dac0d-fc53-4d79-91fb-94f39a662fa5> ;
.
<https://paulduchesne.github.io/state/resource/343df74f-5482-434d-ae90-dfcf915cb9b8>
a ont:Person ;
rdfs:label "Frederikke Hoffmeier"@en ;
rdfs:comment "Danish composer. Has performed as Puce Mary."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/8c63e6b3-7ce5-4bc0-b2d8-14eec12bfc9a> ;
ont:wikidataIdentifier "Q66425353" ;
.
<https://paulduchesne.github.io/state/resource/34a7122c-47e6-48e2-8667-d9820d5c8946>
a ont:Album ;
rdfs:label "To Be Kind"@en ;
rdfs:comment "Album by Swans"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/67739b53-0ac8-4f97-ba94-86e24dbb4ffd> ;
.
<https://paulduchesne.github.io/state/resource/35aa6aba-9366-4545-bbfb-c046b5acd68c>
a ont:Person ;
rdfs:label "Brian Chippendale"@en ;
rdfs:comment "American composer. Has performed as Black Pus."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/6323f545-f103-409a-936b-3d586c60be69> ;
ont:wikidataIdentifier "Q2924872" ;
.
<https://paulduchesne.github.io/state/resource/35f6f7dd-d6fa-4917-889c-860adb4cc95c>
a ont:Album ;
rdfs:label "Wilderness of Mirrors"@en ;
rdfs:comment "Album by Lawrence English"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/c930c0b6-b485-4482-a3db-6a7299d38a55> ;
ont:wikidataIdentifier "Q134429257" ;
.
<https://paulduchesne.github.io/state/resource/3719b026-1548-4d2f-ad10-3cd21244cd30>
a ont:Album ;
rdfs:label "The Photographer"@en ;
rdfs:comment "Album by Philip Glass"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8df3f5fd-d72c-41f4-9451-fcc145654c0e> ;
.
<https://paulduchesne.github.io/state/resource/37a1fbfd-e172-4e02-99df-9c93ff20d3e4>
a ont:Album ;
rdfs:label "Grains"@en ;
rdfs:comment "Album by Rainbow Chan"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/b22af9f9-e9d2-41c2-a467-f91ce1ec79ed> ;
.
<https://paulduchesne.github.io/state/resource/383a501f-3169-4886-9e7f-e0026739726d>
a ont:Album ;
rdfs:label "Dealt"@en ;
rdfs:comment "Album by Reuben Ingall"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/4d3d3d94-438e-4585-abe7-f9a74ac09371> ;
.
<https://paulduchesne.github.io/state/resource/397890fa-7506-4a86-98f7-ddfa51b2cfd3>
a ont:Album ;
rdfs:label "Microwave Drone Ritual"@en ;
rdfs:comment "Album by Reuben Ingall"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/4d3d3d94-438e-4585-abe7-f9a74ac09371> ;
.
<https://paulduchesne.github.io/state/resource/3a4d54c4-925b-4b30-b295-6b5e60b1c1c5>
a ont:Organisation ;
rdfs:label "Primary Colours"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/c87775a9-f887-4e14-8eaf-679cd01ff1cd> ;
.
<https://paulduchesne.github.io/state/resource/3a878bbd-2b40-4ea7-93c8-3f129e156d3f>
a ont:Album ;
rdfs:label "Not Here Not Now"@en ;
rdfs:comment "Album by Swans"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/67739b53-0ac8-4f97-ba94-86e24dbb4ffd> ;
.
<https://paulduchesne.github.io/state/resource/3ad2afc2-6d1f-4732-8684-b513d1fb5da9>
a ont:Album ;
rdfs:label "Elepian"@en ;
rdfs:comment "Album by Jordan Marson "@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/d5cb13de-680d-402c-a783-7fc33b12fb74> ;
.
<https://paulduchesne.github.io/state/resource/3b6fa604-9dd2-48f0-bb74-3ec898b2f228>
a ont:Album ;
rdfs:label "Horses A Coda"@en ;
rdfs:comment "Album by Sia Ahmad"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/c0927b8f-0ed9-4382-a7ff-8401f32059b1> ;
.
<https://paulduchesne.github.io/state/resource/3b811069-fff1-4393-b16b-ef02de3b5ff9>
a ont:Person ;
rdfs:label "Anna Kavan" ;
rdfs:comment "British writer." ;
ont:authorOf <https://paulduchesne.github.io/state/resource/727f0b29-fd9c-429d-a264-5af913651d73> ;
ont:wikidataIdentifier "Q287679" ;
.
<https://paulduchesne.github.io/state/resource/3be192c4-a16d-499d-8aca-3e37d6823cf0>
a ont:Album ;
rdfs:label "Paradise"@en ;
rdfs:comment "Album by My Disco"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/a6633a8b-dc56-40de-b285-598e19c49e55> ;
.
<https://paulduchesne.github.io/state/resource/3c454a9e-631a-4381-a737-418c711f448b>
a ont:Album ;
rdfs:label "Auk/Blood"@en ;
rdfs:comment "Album by Tanya Tagaq"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8acaa52b-c1d8-4c55-91d3-66df0c8df196> ;
ont:wikidataIdentifier "Q4821633" ;
.
<https://paulduchesne.github.io/state/resource/3cf5cdff-3b31-48a0-96be-283477aa6153>
a ont:Organisation ;
rdfs:label "TV Colours"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/e78843fd-46fe-4abb-a486-8096644c14a9> ;
.
<https://paulduchesne.github.io/state/resource/3f4cf469-d2b8-4d12-a386-db5f99014897>
a ont:Album ;
rdfs:label "Grain Loops"@en ;
rdfs:comment "Album by Austin Buckett"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/0e3566bd-2a4f-49ba-8b5f-f4cd4604d24b> ;
.
<https://paulduchesne.github.io/state/resource/41164b71-66ac-40c9-a0a7-218c05f999b2>
a ont:Album ;
rdfs:label "Everyone Alive Wants Answers"@en ;
rdfs:comment "Album by Cécile Schott"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/51c8029c-bbd7-44a1-8b6d-48786503c98e> ;
ont:wikidataIdentifier "Q5417881" ;
.
<https://paulduchesne.github.io/state/resource/41e5d58a-dca0-4390-8924-ec269a3345d1>
a ont:Organisation ;
rdfs:label "Yellow Swans"@en ;
rdfs:comment "American group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/89d88953-6633-4eb5-82eb-dfde57a84fdb> ;
ont:wikidataIdentifier "Q8051843" ;
.
<https://paulduchesne.github.io/state/resource/4494806c-d687-447c-9d55-0afe2411ded0>
a ont:Album ;
rdfs:label "Marry Me Tonight"@en ;
rdfs:comment "Album by HTRK"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8435c1b2-5b98-4b8e-ba5d-39492670b546> ;
ont:wikidataIdentifier "Q6773053" ;
.
<https://paulduchesne.github.io/state/resource/450ac813-cfc8-4127-8cbb-e2afcbeefe49>
a ont:Album ;
rdfs:label "Theory Of Machines"@en ;
rdfs:comment "Album by Ben Frost"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/a985587e-2420-4999-966a-0372e2a04af6> ;
.
<https://paulduchesne.github.io/state/resource/452958cd-9773-4f02-a82d-d0db5e5c9766>
a ont:Album ;
rdfs:label "Bunyi Bunyi Tumbal"@en ;
rdfs:comment "Album by Aditya Surya Taruna "@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/74f2c977-392a-4340-8e92-a0e24cbb2a9d> ;
.
<https://paulduchesne.github.io/state/resource/45a3fc22-c0d0-4028-8ebb-556684a0214c>
a ont:Album ;
rdfs:label "The Little Match Girl Passion"@en ;
rdfs:comment "Album by David Lang"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/bc951de5-1866-4382-94b9-af5a1760c890> ;
.
<https://paulduchesne.github.io/state/resource/460a2d45-9ba0-4ffa-817f-b7a1acc407d1>
a ont:Album ;
rdfs:label "Stuttershine"@en ;
rdfs:comment "Album by Austin Buckett"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/0e3566bd-2a4f-49ba-8b5f-f4cd4604d24b> ;
.
<https://paulduchesne.github.io/state/resource/4660f75c-85c8-4514-aaf8-da475f704eca>
a ont:Person ;
rdfs:label "Marie Davidson"@en ;
rdfs:comment "Canadian composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/6c7b72b6-ada0-4c40-bfdb-96fafa1ddbba> ;
ont:wikidataIdentifier "Q28363465" ;
.
<https://paulduchesne.github.io/state/resource/46e20a2a-e4e6-48c5-ab85-e6693bfa431e>
a ont:Organisation ;
rdfs:label "Pivixki"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/d4fec829-2adb-4657-a0fa-3f12173fa82c> ;
.
<https://paulduchesne.github.io/state/resource/46ee3c7a-b39d-406b-9a73-9252dc8a87db>
a ont:Person ;
rdfs:label "Vincenzo Latronico"@en ;
rdfs:comment "Italian writer."@en ;
ont:authorOf <https://paulduchesne.github.io/state/resource/9115bd42-8cd7-45d5-8ac2-7e64feab0d71> ;
ont:wikidataIdentifier "Q4013338" ;
.
<https://paulduchesne.github.io/state/resource/46fdd5fd-9f8e-40df-97f8-abd666186d7c>
a ont:Album ;
rdfs:label "Paradise 94"@en ;
rdfs:comment "Album by Lucy Railton"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/90aeac79-84dc-4e2f-8cc1-8540fe4b6929> ;
.
<https://paulduchesne.github.io/state/resource/475fde08-0374-4ce7-a191-1d26a7eff778>
a ont:Album ;
rdfs:label "Hey What"@en ;
rdfs:comment "Album by Low"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/2569fc55-4a93-492c-8290-c0bf511e4a90> ;
ont:wikidataIdentifier "Q108803735" ;
.
<https://paulduchesne.github.io/state/resource/481f1725-0eaa-4d06-9b4b-79b9bb99532b>
a ont:Album ;
rdfs:label "Lily Of The Valley Return Of Happiness"@en ;
rdfs:comment "Album by Dominick Fernow"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/f41743c3-f2cd-494c-913b-196df9de247b> ;
.
<https://paulduchesne.github.io/state/resource/48bedd05-4eb9-4496-9233-f5789d0d4549>
a ont:Album ;
rdfs:label "Transverse"@en ;
rdfs:comment "Album by Carter Tutti Void"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/cbb2e901-9b37-4398-b012-b4c3d55a1e4f> ;
ont:wikidataIdentifier "Q135111543" ;
.
<https://paulduchesne.github.io/state/resource/491a5020-0cfe-4bae-b5d8-c8acdcdf6731>
a ont:Person ;
rdfs:label "Chris Hearn"@en ;
rdfs:comment "Australian composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/c3ceed21-278a-4ca5-a212-a08949f4b687> ;
.
<https://paulduchesne.github.io/state/resource/49490a00-aeef-4c46-abfe-63fdab5eccf9>
a ont:Album ;
rdfs:label "Drum's Not Dead"@en ;
rdfs:comment "Album by Liars"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/ff31e84f-69c2-4850-870b-0eb1839a831d> ;
ont:wikidataIdentifier "Q3040109" ;
.
<https://paulduchesne.github.io/state/resource/496727b7-d53c-4909-84b0-906e77568e51>
a ont:Album ;
rdfs:label "Romeo Must Cry"@en ;
rdfs:comment "Album by Jonathan Black"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/24946da4-9a3d-413e-8ab5-ab3d978ede15> ;
.
<https://paulduchesne.github.io/state/resource/4a19403a-5a2a-4190-9c44-9b2f2618cd96>
a ont:Album ;
rdfs:label "Microclimates"@en ;
rdfs:comment "Album by Reuben Ingall"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/4d3d3d94-438e-4585-abe7-f9a74ac09371> ;
.
<https://paulduchesne.github.io/state/resource/4a87654b-2dc1-4f10-b331-8d8ffc4c11f3>
a ont:Person ;
rdfs:label "Ina Blümel"@en ;
rdfs:comment "German information scientist and architect."@en ;
ont:memberOf <https://paulduchesne.github.io/state/resource/b8744ea7-c182-47c2-bf31-37e6ed6df396> ;
ont:wikidataIdentifier "Q57697004" ;
.
<https://paulduchesne.github.io/state/resource/4ad6ff33-4bbf-431b-9a3c-18be6fed6997>
a ont:Person ;
rdfs:label "Leo Chadburn"@en ;
rdfs:comment "British composer. Has performed as Simon Bookish."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/01ce23b4-dcca-4d7e-82d4-1e4dd647946e> ;
ont:wikidataIdentifier "Q7518310" ;
.
<https://paulduchesne.github.io/state/resource/4b4a0e7f-a203-4d5c-9494-2bc6cb1805a7>
a ont:Album ;
rdfs:label "Load Blown"@en ;
rdfs:comment "Album by Black Dice"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/61b411fc-d144-4cb5-8a79-0284498b5ce7> ;
ont:wikidataIdentifier "Q16961044" ;
.
<https://paulduchesne.github.io/state/resource/4b8464f4-6d20-4fb7-bf3c-d8470ba3d7cb>
a ont:Album ;
rdfs:label "The Pig In The Python"@en ;
rdfs:comment "Album by Dead Boomers"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/0d4a84eb-8ece-49d2-9151-d82b0a843046> ;
.
<https://paulduchesne.github.io/state/resource/4bc24d43-49b1-40b4-8a3f-27f0e48e7a5a>
a ont:Organisation ;
rdfs:label "Sky Needle"@en ;
rdfs:comment "Australian group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/b943201a-debc-4620-831a-17a60b1d5e2c> ;
.
<https://paulduchesne.github.io/state/resource/4be5809b-0bf1-47f0-970e-9f5e31ea436e>
a ont:Album ;
rdfs:label "Times Arrow"@en ;
rdfs:comment "Album by Dominick Fernow"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/f41743c3-f2cd-494c-913b-196df9de247b> ;
.
<https://paulduchesne.github.io/state/resource/4cbdad28-a3cb-4954-a484-ab240f31dc88>
a ont:Album ;
rdfs:label "Third Law"@en ;
rdfs:comment "Album by Roly Porter"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/adad4018-5b7e-4f62-bf57-f74fa837e41b> ;
.
<https://paulduchesne.github.io/state/resource/4d4af50e-d50e-497b-865c-d75a066540e7>
a ont:Album ;
rdfs:label "Embracism"@en ;
rdfs:comment "Album by Kirin J. Callinan"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/52254db8-e5d1-4f30-abad-e364258c326c> ;
.
<https://paulduchesne.github.io/state/resource/4e74c0ba-fb97-4b5a-85b1-b62cd1f7af7a>
a ont:Album ;
rdfs:label "One Pig"@en ;
rdfs:comment "Album by Matthew Herbert"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/2dfba8e5-3f9d-42d7-90d3-90149c9ba44e> ;
ont:wikidataIdentifier "Q4045807" ;
.
<https://paulduchesne.github.io/state/resource/524bdd1b-f156-48ed-9c52-7ae7e45a91ac>
a ont:Organisation ;
rdfs:label "Hebden Reid Gustafsson"@en ;
rdfs:comment "British/American/Swedish group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/2fd90a17-7582-43cf-af54-f4647b2ed676> ;
.
<https://paulduchesne.github.io/state/resource/52ccfd21-c2d6-48c1-b81e-a2a26d395d7a>
a ont:Album ;
rdfs:label "Liars"@en ;
rdfs:comment "Album by Liars"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/ff31e84f-69c2-4850-870b-0eb1839a831d> ;
ont:wikidataIdentifier "Q2734566" ;
.
<https://paulduchesne.github.io/state/resource/5486381d-6fc5-41f7-90b2-307916a80ada>
a ont:Organisation ;
rdfs:label "Ex-Easter Island Head"@en ;
rdfs:comment "British group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/73f26750-0e60-4170-9975-ad6f4dd336af> ;
ont:wikidataIdentifier "Q132132143" ;
.
<https://paulduchesne.github.io/state/resource/549e7e4a-7ddd-4e04-93e6-22c47027f87a>
a ont:Organisation ;
rdfs:label "Health"@en ;
rdfs:comment "American group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/be82ac4e-843d-4c5f-9f70-8eff4d01ac46> ;
ont:wikidataIdentifier "Q656287" ;
.
<https://paulduchesne.github.io/state/resource/54dc674a-3f2b-4016-bf60-a47e8ddec759>
a ont:Album ;
rdfs:label "The Seer"@en ;
rdfs:comment "Album by Swans"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/67739b53-0ac8-4f97-ba94-86e24dbb4ffd> ;
ont:wikidataIdentifier "Q7763235" ;
.
<https://paulduchesne.github.io/state/resource/56af7b27-1ed0-4671-826b-aa489c0585a0>
a ont:Album ;
rdfs:label "She"@en ;
rdfs:comment "Album by Kirin J. Callinan"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/52254db8-e5d1-4f30-abad-e364258c326c> ;
.
<https://paulduchesne.github.io/state/resource/573756ab-f067-42c7-bdef-a1254430a048>
a ont:Album ;
rdfs:label "Street Magick"@en ;
rdfs:comment "Album by Assassins 88"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/16e2df74-028b-4482-a3f8-1c734af74515> ;
.
<https://paulduchesne.github.io/state/resource/5755cd7d-c571-4e13-a987-f26e1ef234b8>
a ont:Album ;
rdfs:label "Work Work Work"@en ;
rdfs:comment "Album by HTRK"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/8435c1b2-5b98-4b8e-ba5d-39492670b546> ;
.
<https://paulduchesne.github.io/state/resource/585e1cc0-3883-40f9-a036-7e9bae25077e>
a ont:Person ;
rdfs:label "Annie Ernaux" ;
rdfs:comment "French Nobel-prize winning author." ;
ont:authorOf <https://paulduchesne.github.io/state/resource/ec0545af-f371-4df8-a0ef-5196c8a27859> ;
ont:wikidataIdentifier "Q1153825" ;
.
<https://paulduchesne.github.io/state/resource/58b85621-9253-43cd-b7be-983c5e4778f0>
a ont:Album ;
rdfs:label "Dont Give Up"@en ;
rdfs:comment "Album by Reuben Ingall"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/4d3d3d94-438e-4585-abe7-f9a74ac09371> ;
.
<https://paulduchesne.github.io/state/resource/5a9a6a40-e16f-4f95-8292-e72939b018ec>
a ont:Album ;
rdfs:label "Family Money"@en ;
rdfs:comment "Album by Dead Boomers"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/0d4a84eb-8ece-49d2-9151-d82b0a843046> ;
.
<https://paulduchesne.github.io/state/resource/5cc3b7ad-b5ca-4c10-b297-b56338c8a7ff>
a ont:Album ;
rdfs:label "Kesto"@en ;
rdfs:comment "Album by Pan Sonic"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/f6d3c940-bbe9-4910-9d80-979f6ee9f32d> ;
.
<https://paulduchesne.github.io/state/resource/5d35aca1-fde5-4149-804e-46ba9baf16e9>
a ont:Person ;
rdfs:label "Scott Walker"@en ;
rdfs:comment "American composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/fb0a0340-3984-4db9-98e9-174746cd682c> ;
ont:wikidataIdentifier "Q488603" ;
.
<https://paulduchesne.github.io/state/resource/5d446f92-c046-4679-910a-ea2123d8174d>
a ont:Album ;
rdfs:label "The Invisibles"@en ;
rdfs:comment "Album by Ben Frost"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/a985587e-2420-4999-966a-0372e2a04af6> ;
.
<https://paulduchesne.github.io/state/resource/5de39763-15b3-4578-9203-d84bb6968a06>
a ont:Album ;
rdfs:label "In The Sudden Distance"@en ;
rdfs:comment "Album by Jimmy Behan"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/d98be5a6-50b7-4007-9ea7-3af0dac221cd> ;
.
<https://paulduchesne.github.io/state/resource/5faa1251-cb45-426a-aebc-b1977426e67b>
a ont:Person ;
rdfs:label "Cathy Petocz"@en ;
rdfs:comment "Australian composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/d6058fb2-a663-4bb4-8c48-d0b6ecda3206> ;
.
<https://paulduchesne.github.io/state/resource/5face8c9-8e6d-411f-a863-272dcef91bfe>
a ont:Album ;
rdfs:label "Hidden"@en ;
rdfs:comment "Album by These New Puritans"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/64c67e99-647b-4c1e-ab99-3facc6959d16> ;
ont:wikidataIdentifier "Q5751708" ;
.
<https://paulduchesne.github.io/state/resource/60f443b7-14ec-486b-9e02-e3f8b6cc169a>
a ont:Person ;
rdfs:label "Tarquin Manek"@en ;
rdfs:comment "Australian composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/1a004ac3-416a-4fba-902c-7474f739a387> ;
.
<https://paulduchesne.github.io/state/resource/60fb697c-ae6f-4286-872f-96f9fadcce0a>
a ont:Person ;
rdfs:label "Kristin Hayter"@en ;
rdfs:comment "American composer. Has performed as Lingua Ignota."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/9a451737-abf9-4a41-960f-e07783373ebe> ;
ont:wikidataIdentifier "Q64744924" ;
.
<https://paulduchesne.github.io/state/resource/614450b5-5f68-4cc9-872f-7cd6217d6c58>
a ont:Organisation ;
rdfs:label "Zs"@en ;
rdfs:comment "American group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/c928ada4-8fdf-40ac-a2a2-b6ea06949f0d> ;
ont:wikidataIdentifier "Q8074779" ;
.
<https://paulduchesne.github.io/state/resource/61be6c2b-7ccc-4732-b035-78454edf9369>
a ont:Album ;
rdfs:label "Bermuda Drain"@en ;
rdfs:comment "Album by Dominick Fernow"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/f41743c3-f2cd-494c-913b-196df9de247b> ;
ont:wikidataIdentifier "Q20014325" ;
.
<https://paulduchesne.github.io/state/resource/61d83df5-7228-4cce-bb7d-ad0f88ec32df>
a ont:Album ;
rdfs:label "Elephant Shoe"@en ;
rdfs:comment "Album by Arab Strap"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/ccdb324f-e96b-4f2b-ae94-2da67c57e101> ;
ont:wikidataIdentifier "Q5359365" ;
.
<https://paulduchesne.github.io/state/resource/61f0314a-a76c-4f5a-aaaf-257654a01b73>
a ont:Person ;
rdfs:label "Dominick Fernow"@en ;
rdfs:comment "American composer."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/9e011ded-6556-4d54-b2fc-2601fc823dfe> ;
ont:wikidataIdentifier "Q287486" ;
.
<https://paulduchesne.github.io/state/resource/6323f545-f103-409a-936b-3d586c60be69>
a ont:Album ;
rdfs:label "All My Relations"@en ;
rdfs:comment "Album by Brian Chippendale"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/35aa6aba-9366-4545-bbfb-c046b5acd68c> ;
.
<https://paulduchesne.github.io/state/resource/64c67e99-647b-4c1e-ab99-3facc6959d16>
a ont:Organisation ;
rdfs:label "These New Puritans"@en ;
rdfs:comment "British group."@en ;
ont:creatorOf <https://paulduchesne.github.io/state/resource/5face8c9-8e6d-411f-a863-272dcef91bfe> ;
ont:wikidataIdentifier "Q1286899" ;
.
<https://paulduchesne.github.io/state/resource/65dce59f-e823-48cd-b8d8-3af4131aa94c>
a ont:Album ;
rdfs:label "Filth Body To Body Job To Job"@en ;
rdfs:comment "Album by Swans"@en ;
ont:hasCreator <https://paulduchesne.github.io/state/resource/67739b53-0ac8-4f97-ba94-86e24dbb4ffd> ;
.
<https://paulduchesne.github.io/state/resource/668150a0-1d55-4389-b3e7-d6613d0f64f4>
a ont:Album ;
rdfs:label "Five Points"@en ;
rdfs:comment "Album by Spartak"@en ;