sdml-core 0.4.1

Core Model for Simple Domain Modeling Language (SDML)
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
/*!
This Rust module contains the SDML model of the SDML library module `dc_terms`.
*/

use crate::model::{
    annotations::{AnnotationOnlyBody, HasAnnotations},
    modules::Module,
    HasBody,
};
use std::str::FromStr;

// ------------------------------------------------------------------------------------------------
// Public Types
// ------------------------------------------------------------------------------------------------

pub const MODULE_NAME: &str = "dcterms";
pub const MODULE_URL: &str = "http://purl.org/dc/terms/";

pub const CONTRIBUTOR: &str = "contributor";
pub const COVERAGE: &str = "coverage";
pub const CREATOR: &str = "creator";
pub const DATE: &str = "date";
pub const DESCRIPTION: &str = "description";
pub const FORMAT: &str = "format";
pub const IDENTIFIER: &str = "identifier";
pub const LANGUAGE: &str = "language";
pub const PUBLISHER: &str = "publisher";
pub const RELATION: &str = "relation";
pub const RIGHTS: &str = "rights";
pub const SOURCE: &str = "source";
pub const SUBJECT: &str = "subject";
pub const TITLE: &str = "title";
pub const TYPE: &str = "type";

// ------------------------------------------------------------------------------------------------
// Public Functions
// ------------------------------------------------------------------------------------------------

module_function!(|| {
    let module_uri: url::Url = url::Url::parse(MODULE_URL).unwrap();

    module!(
        id!(unchecked dcterms), module_uri ; call |module: Module|
        module.with_imports([import_statement!(
            id!(unchecked dc),
            id!(unchecked rdf),
            id!(unchecked rdfs),
            id!(unchecked skos)
        )])
            .with_annotations([
                 annotation!(id!(unchecked modified), v!(id!(unchecked xsd:date), "2012-06-14")),
                 annotation!(id!(unchecked publisher), url!("http://purl.org/dc/aboutdcmi#DCMI")),
                 annotation!(id!(unchecked title), v!("DCMI Metadata Terms - other")),
            ])
            .with_definitions([
                // ---------------------------------------------------------------------------------
                // Classes
                // ---------------------------------------------------------------------------------
                rdf!(
                    id!(unchecked Agent) ;
                    class id!(unchecked AgentClass) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked AgentClass)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Agent"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A resource that acts or has the power to act."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked AgentClass) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("AgentClass"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A group of agents."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked BibliographicResource) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("BibliographicResource"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Bibliographic Resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked Box) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("DCMI Box"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of regions in space defined by their geographic coordinates according to the DCMI Box Encoding Scheme."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("https://www.dublincore.org/specifications/dublin-core/dcmi-box/")),
                    ])).into(),
                rdf!(
                    id!(unchecked DCMIType) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("DCMI Type Vocabulary"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://purl.org/dc/dcmitype/")),
                    ])).into(),
                rdf!(
                    id!(unchecked DDC) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("DDC"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of conceptual resources specified by the Dewey Decimal Classification."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.oclc.org/dewey/")),
                    ])).into(),
                rdf!(
                    id!(unchecked FileFormat) ;
                    class id!(unchecked MediaType) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("File Format"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A digital resource format."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked Frequency) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Frequency"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A rate at which something recurs."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked IMT) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked dcam:VocabularyEncodingScheme)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("IMT"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2007-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of media types specified by the Internet Assigned Numbers Authority."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.iana.org/assignments/media-types/")),
                    ])).into(),
                rdf!(
                    id!(unchecked ISO3166) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("ISO 3166"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2007-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of codes listed in ISO 3166-1 for the representation of names of countries."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked ISO639_2) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("ISO 639-2"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2007-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of two-letter codes listed in ISO 639-3 for the representation of names of languages."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked ISO639_3) ;
                    datatype  ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("ISO 639-3"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2007-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of three-letter codes listed in ISO 639-3 for the representation of names of languages."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked ISO639_3) ;
                    datatype  ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("ISO 639-3"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2007-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of three-letter codes listed in ISO 639-3 for the representation of names of languages."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked Jurisdiction) ;
                    class id!(unchecked LocationPeriodOrJurisdiction) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Jurisdiction"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The extent or range of judicial, law enforcement, or other authority."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked LCC) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked dcam:VocabularyEncodingScheme)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("LCC"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of conceptual resources specified by the Library of Congress Classification."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://lcweb.loc.gov/catdir/cpso/lcco/lcco.html")),
                    ])).into(),
                rdf!(
                    id!(unchecked LCSH) ;
                    class id!(unchecked LocationPeriodOrJurisdiction) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked dcam:VocabularyEncodingScheme)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("LCSH"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of labeled concepts specified by the Library of Congress Subject Headings."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked LicenseDocument) ;
                    class id!(unchecked RightsStatement) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("License Document"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A legal document giving official permission to do something with a resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked LinguisticSystem) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Linguistic System"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A system of signs, symbols, sounds, gestures, or rules used in communication."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked Location) ;
                    class id!(unchecked LocationPeriodOrJurisdiction) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Location, Period, or Jurisdiction"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A spatial region or named place."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked LocationPeriodOrJurisdiction) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Location"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A location, period of time, or jurisdiction."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked MESH) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked dcam:VocabularyEncodingScheme)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("MeSH"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of labeled concepts specified by the Medical Subject Headings."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.nlm.nih.gov/mesh/meshhome.html")),
                    ])).into(),
                rdf!(
                    id!(unchecked MediaType) ;
                    class id!(unchecked MediaTypeOrExtent) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Media Type"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A file format or physical medium."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked MediaTypeOrExtent) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Media Type or Extent"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A media type or extent."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked MethodOfAccrual) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Method of Accrual"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A method by which resources are added to a collection."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked MethodOfInstruction) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Method of Instruction"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A process that is used to engender knowledge, attitudes, and skills."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked NLM) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("NLM"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2005-06-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of conceptual resources specified by the National Library of Medicine Classification."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://wwwcf.nlm.nih.gov/class/")),
                    ])).into(),
                rdf!(
                    id!(unchecked Period) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Period"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of time intervals defined by their limits according to the DCMI Period Encoding Scheme."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("https://www.dublincore.org/specifications/dublin-core/dcmi-period/")),
                    ])).into(),
                rdf!(
                    id!(unchecked PeriodOfTime) ;
                    class id!(unchecked LocationPeriodOrJurisdiction) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Period of Time"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An interval of time that is named or defined by its start and end dates."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked PhysicalMedium) ;
                    class id!(unchecked MediaType) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Physical Medium"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A physical material or carrier."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked PhysicalResource) ;
                    class id!(unchecked MediaType) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Physical Resource"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A material thing."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked Point) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("DCMI Point"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of points in space defined by their geographic coordinates according to the DCMI Point Encoding Scheme."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("https://www.dublincore.org/specifications/dublin-core/dcmi-point/")),
                    ])).into(),
                rdf!(
                    id!(unchecked Policy) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Policy"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A plan or course of action by an authority, intended to influence and determine decisions, actions, and other matters."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked ProvenanceStatement) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Provenance Statement"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Any changes in ownership and custody of a resource since its creation that are significant for its authenticity, integrity, and interpretation."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked RFC1766) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("RFC 1766"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of tags, constructed according to RFC 1766, for the identification of languages."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.ietf.org/rfc/rfc1766.txt")),
                    ])).into(),
                rdf!(
                    id!(unchecked RFC3066) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("RFC 3066"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2002-07-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of tags constructed according to RFC 3066 for the identification of languages."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.ietf.org/rfc/rfc3066.txt")),
                    ])).into(),
                rdf!(
                    id!(unchecked RFC4646) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("RFC 4646"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of tags constructed according to RFC 4646 for the identification of languages."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.ietf.org/rfc/rfc4646.txt")),
                    ])).into(),
                rdf!(
                    id!(unchecked RFC5646) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("RFC 5646"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2010-10-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of tags constructed according to RFC 5646 for the identification of languages."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.ietf.org/rfc/rfc5646.txt")),
                    ])).into(),
                rdf!(
                    id!(unchecked RightsStatement) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Rights Statement"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A statement about the intellectual property rights (IPR) held in or over a resource, a legal document giving official permission to do something with a resource, or a statement about access rights."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked SizeOrDuration) ;
                    class id!(unchecked MediaTypeOrExtent) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Size or Duration"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A dimension or extent, or a time taken to play or execute."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked Standard) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Standard"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A reference point against which other things can be evaluated or compared."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked TGN) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked dcam:VocabularyEncodingScheme)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("TGN"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of places specified by the Getty Thesaurus of Geographic Names."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.getty.edu/research/tools/vocabulary/tgn/index.html")),
                    ])).into(),
                rdf!(
                    id!(unchecked UDC) ;
                    class ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdf:type), id!(unchecked dcam:VocabularyEncodingScheme)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("UDC"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of conceptual resources specified by the Universal Decimal Classification."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.udcc.org/")),
                    ])).into(),
                rdf!(
                    id!(unchecked URI) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("URI"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of identifiers constructed according to the generic syntax for Uniform Resource Identifiers as specified by the Internet Engineering Task Force."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.ietf.org/rfc/rfc3986.txt")),
                    ])).into(),
                rdf!(
                    id!(unchecked W3CDTF) ;
                    datatype ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("W3C-DTF"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The set of dates and times constructed according to the W3C Date and Time Formats Specification."@en)),
                        annotation!(id!(unchecked rdfs:seeAlso), url!("http://www.w3.org/TR/NOTE-datetime")),
                    ])).into(),
                // ---------------------------------------------------------------------------------
                // Properties
                // ---------------------------------------------------------------------------------
                rdf!(
                    id!(unchecked abstract) ;
                    property id!(unchecked dc:description), id!(unchecked description) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Abstract"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A summary of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked accessRights) ;
                    property id!(unchecked dc:rights), id!(unchecked rights) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Access Rights"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2003-02-15")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Information about who access the resource or an indication of its security status."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked accrualMethod) ;
                    property id!(unchecked dc:rights), id!(unchecked rights) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:domain), id!(unchecked dcmitype:Collection)),
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked MethodOfAccrual)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Accrual Method"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2005-06-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The method by which items are added to a collection."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked accrualPeriodicity) ;
                    property ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:domain), id!(unchecked dcmitype:Collection)),
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked Frequency)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Accrual Periodicity"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2005-06-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The frequency with which items are added to a collection."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked accrualPolicy) ;
                    property ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:domain), id!(unchecked dcmitype:Collection)),
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked Policy)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Accrual Policy"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2005-06-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The policy governing the addition of items to a collection."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked alternative) ;
                    property id!(unchecked dc:title), id!(unchecked title) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Alternative"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Alternative Title."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked available) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Available"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date that the resource became or will become available."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked bibliographicCitation) ;
                    property id!(unchecked dc:identifier), id!(unchecked identifier) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Bibliographic Citation"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2003-02-15")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A bibliographic reference for the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked conformsTo) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked Standard)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Conforms To"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2001-05-21")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An established standard to which the described resource conforms."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked contributor) ;
                    property id!(unchecked dc:contributor) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked Agent)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Contributor"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An entity responsible for making contributions to the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked coverage) ;
                    property id!(unchecked dc:coverage) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked Jurisdiction), id!(unchecked Location), id!(unchecked Period))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Coverage"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked created) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Created"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date of creation of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked creator) ;
                    property id!(unchecked dc:creator), id!(unchecked contributor) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked Agent)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Creator"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An entity primarily responsible for making the resource."@en)),
                        // TODO: owl:equivalentProperty <http://xmlns.com/foaf/0.1/maker>
                    ])).into(),
                rdf!(
                    id!(unchecked date) ;
                    property id!(unchecked dc:date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A point or period of time associated with an event in the lifecycle of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked dateAccepted) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Accepted"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2002-07-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date of acceptance of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked dateCopyrighted) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Copyrighted"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2002-07-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date of copyright of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked dateSubmitted) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Submitted"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2002-07-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date of submission of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked description) ;
                    property id!(unchecked dc:description) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Description"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An account of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked educationLevel) ;
                    property id!(unchecked audience) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked dcam:rangeIncludes), id!(unchecked AgentClass)),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Description"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2002-07-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Audience Education Level"@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked extent) ;
                    property id!(unchecked dc:format), id!(unchecked format) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Extent"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The size or duration of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked format) ;
                    property id!(unchecked dc:format) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked Extent), id!(unchecked MediaType))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("format"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The file format, physical medium, or dimensions of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked hasPart) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Has Part"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that is substantially the same as the pre-existing described resource, but in another format."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked hasFormat) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Has Format"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that is included either physically or logically in the described resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked identifier) ;
                    property id!(unchecked dc:identifier) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Identifier"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An unambiguous reference to the resource within a given context."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked instructionalMethod) ;
                    property ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked MethodOfInstruction))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Instructional Method"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2005-06-13")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked isFormatOf) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Is Format Of"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A pre-existing related resource that is substantially the same as the described resource, but in another format."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked isPartOf) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Is Replaced By"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that references, cites, or otherwise points to the described resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked isReplacedBy) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Is Part Of"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that supplants, displaces, or supersedes the described resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked isRequiredBy) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Is Required By"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that requires the described resource to support its function, delivery, or coherence."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked isVersionOf) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Is Version Of"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource of which the described resource is a version, edition, or adaptation."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked issued) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), id!(unchecked rdfs:Literal)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Issued"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date of formal issuance of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked language) ;
                    property id!(unchecked dc:language) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked LinguisticSystem))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Language"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A language of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked license) ;
                    property id!(unchecked dc:rights), id!(unchecked rights) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked LicenseDocument))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("License"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2004-06-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A legal document giving official permission to do something with the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked mediator) ;
                    property id!(unchecked audience) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked AgentClass))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Mediator"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2001-05-21")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An entity that mediates access to the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked medium) ;
                    property id!(unchecked dc:format), id!(unchecked format) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:domainIncludes), vs!(id!(unchecked PhysicalResource))),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked PhysicalMedium))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Medium"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The material or physical carrier of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked modified) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), vs!(id!(unchecked rdfs:Literal))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Modified"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Date on which the resource was changed."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked provenance) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked ProvenanceStatement))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Provenance"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2004-09-20")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked publisher) ;
                    property id!(unchecked dc:publisher) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked Agent))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Publisher"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("An entity responsible for making the resource available."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked references) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("References"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that is referenced, cited, or otherwise pointed to by the described resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked relation) ;
                    property id!(unchecked dc:relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Relation"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked replaces) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Replaces"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that is supplanted, displaced, or superseded by the described resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked requires) ;
                    property id!(unchecked dc:relation), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Requires"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource that is required by the described resource to support its function, delivery, or coherence."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked rights) ;
                    property id!(unchecked dc:rights) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked RightsStatement))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Rights"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Information about rights held in and over the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked rightsHolder) ;
                    property id!(unchecked dc:rights) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked Agent))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Rights Holder"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2004-06-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A person or organization owning or managing rights over the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked source) ;
                    property id!(unchecked dc:source), id!(unchecked relation) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Source"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A related resource from which the described resource is derived."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked spatial) ;
                    property id!(unchecked dc:coverage), id!(unchecked coverage) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked Location))),
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Spatial Coverage"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Spatial characteristics of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked subject) ;
                    property id!(unchecked dc:subject) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Subject"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A topic of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked tableOfContents) ;
                    property id!(unchecked dc:description), id!(unchecked description) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Table Of Contents"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A list of subunits of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked temporal) ;
                    property id!(unchecked dc:coverage), id!(unchecked coverage) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked dcam:rangeIncludes), vs!(id!(unchecked PeriodOfTime))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Temporal Coverage"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("Temporal characteristics of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked title) ;
                    property id!(unchecked dc:title) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), vs!(id!(unchecked rdfs:Literal))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Title"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("A name given to the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked type) ;
                    property id!(unchecked dc:type) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Type"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2008-01-14")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The nature or genre of the resource."@en)),
                    ])).into(),
                rdf!(
                    id!(unchecked valid) ;
                    property id!(unchecked dc:date), id!(unchecked date) ;
                    call |body: AnnotationOnlyBody|
                    body.with_annotations([
                        annotation!(id!(unchecked rdfs:isDefinedBy), id!(unchecked dct)),
                        annotation!(id!(unchecked rdfs:range), vs!(id!(unchecked rdfs:Literal))),
                        annotation!(id!(unchecked skos:prefLabel), rdf_str!("Date Valid"@en)),
                        annotation!(id!(unchecked issued), v!(id!(unchecked xsd:date), "2000-07-11")),
                        annotation!(id!(unchecked rdfs:comment), rdf_str!("The nature or genre of the resource."@en)),
                    ])).into(),
            ])
    )
});