summaryrefslogtreecommitdiffstats
path: root/ONAP Information Model/Service.uml
blob: 7b795fb120073375b8206dcbbc09223474b2f184 (plain)
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
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="20131001" xmlns:xmi="http://www.omg.org/spec/XMI/20131001" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ActionLanguage="http://www.omg.org/spec/ALF/20120827/ActionLanguage-Profile" xmlns:OpenModel_Profile="http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML" xsi:schemaLocation="http://www.omg.org/spec/ALF/20120827/ActionLanguage-Profile pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#_Kv8EIKFXEeS_KNX0nfvIVQ http:///schemas/OpenModel_Profile/_2Rm7cDkrEemjyLkBMGZA1g/27 OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g">
  <uml:Package xmi:id="_Z4LYcDOHEei5Af8DcjrhIQ" name="Service" visibility="public">
    <packagedElement xmi:type="uml:Package" xmi:id="_fXMl4DOHEei5Af8DcjrhIQ" name="Associations">
      <packagedElement xmi:type="uml:Association" xmi:id="_Ihl9ID25Eeiu6I5JfRTxxQ" name="DependenciesHasPrimaryProfileReference" memberEnd="_IhnyUT25Eeiu6I5JfRTxxQ _Ihq1oD25Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_IhnLQD25Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_IhnyUD25Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_Ihq1oD25Eeiu6I5JfRTxxQ" name="_dependencies" type="_beE2IDzFEeiWMf5FLWfdLA" association="_Ihl9ID25Eeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YLVSID25Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YLg4UD25Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_g9Y9oD25Eeiu6I5JfRTxxQ" name="DependenciesHasSecondaryProfileReference" memberEnd="_g9ay0T25Eeiu6I5JfRTxxQ _g9coAT25Eeiu6I5JfRTxxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_g9aLwD25Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_g9ay0D25Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_g9coAT25Eeiu6I5JfRTxxQ" name="dependencies" type="_beE2IDzFEeiWMf5FLWfdLA" association="_g9Y9oD25Eeiu6I5JfRTxxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zH3xED25Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zICwMD25Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_PAOikD27Eeiu6I5JfRTxxQ" name="VirtualLinkProfileReferencesVLDesc">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_PAQXwD27Eeiu6I5JfRTxxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_PAQXwT27Eeiu6I5JfRTxxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <memberEnd xmi:type="uml:Property" href="Common.uml#_PAQXwj27Eeiu6I5JfRTxxQ"/>
        <memberEnd xmi:type="uml:Property" href="#_PASM8j27Eeiu6I5JfRTxxQ"/>
        <ownedEnd xmi:type="uml:Property" xmi:id="_PASM8j27Eeiu6I5JfRTxxQ" name="_virtualLinkProfile" association="_PAOikD27Eeiu6I5JfRTxxQ">
          <type xmi:type="uml:Class" href="Common.uml#_45bWUDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_egDGkD27Eeiu6I5JfRTxxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_egP64D27Eeiu6I5JfRTxxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_y4VdsESzEeiVGPeZpaYNtQ" name="NsiUsesVirtualLink" memberEnd="_y4vGUUSzEeiVGPeZpaYNtQ _y5QDsESzEeiVGPeZpaYNtQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_y4l8YESzEeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_y4vGUESzEeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_y5QDsESzEeiVGPeZpaYNtQ" name="_nsi" type="_1WWbsDzFEeiWMf5FLWfdLA" association="_y4VdsESzEeiVGPeZpaYNtQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_fHipMESyEeiVGPeZpaYNtQ" name="NsiIncludesNf" memberEnd="_fJyE4ESyEeiVGPeZpaYNtQ _fK1NwESyEeiVGPeZpaYNtQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_fJSVoESyEeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_fJXOIESyEeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_fK1NwESyEeiVGPeZpaYNtQ" name="_nsi" type="_1WWbsDzFEeiWMf5FLWfdLA" association="_fHipMESyEeiVGPeZpaYNtQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_sTP1gESyEeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_sTfGEESyEeiVGPeZpaYNtQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_MCJ6cES3EeiVGPeZpaYNtQ" name="NsiExposesSap" memberEnd="_MCMWsES3EeiVGPeZpaYNtQ _MCPaAES3EeiVGPeZpaYNtQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_MCLvoES3EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_MCLvoUS3EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_MCPaAES3EeiVGPeZpaYNtQ" name="_nsi" type="_1WWbsDzFEeiWMf5FLWfdLA" association="_MCJ6cES3EeiVGPeZpaYNtQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_zG_A4ES3EeiVGPeZpaYNtQ" name="NsiHasNestedNsi" memberEnd="_zHBdIUS3EeiVGPeZpaYNtQ _zHpvQES3EeiVGPeZpaYNtQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_zHA2EES3EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_zHBdIES3EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_zHpvQES3EeiVGPeZpaYNtQ" name="_nsi" type="_1WWbsDzFEeiWMf5FLWfdLA" association="_zG_A4ES3EeiVGPeZpaYNtQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Ebf1oES4EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_EisCwES4EeiVGPeZpaYNtQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_bm_E0ES4EeiVGPeZpaYNtQ" name="NsiUsesVnffg" memberEnd="_bnAS8kS4EeiVGPeZpaYNtQ _bnHAoES4EeiVGPeZpaYNtQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_bnAS8ES4EeiVGPeZpaYNtQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_bnAS8US4EeiVGPeZpaYNtQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_bnHAoES4EeiVGPeZpaYNtQ" name="_nsi" type="_1WWbsDzFEeiWMf5FLWfdLA" association="_bm_E0ES4EeiVGPeZpaYNtQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_rUEhgIoAEeiOe-BKGdv_Yg" name="ServiceOrderComprisedOf" memberEnd="_rUHk0IoAEeiOe-BKGdv_Yg _rUIy8ooAEeiOe-BKGdv_Yg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_rUGWsIoAEeiOe-BKGdv_Yg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_rUGWsYoAEeiOe-BKGdv_Yg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_rUIy8ooAEeiOe-BKGdv_Yg" name="serviceorder" type="_mrJV8In9EeiOe-BKGdv_Yg" association="_rUEhgIoAEeiOe-BKGdv_Yg">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_CZQ7cIoBEeiOe-BKGdv_Yg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_CZ2KQIoBEeiOe-BKGdv_Yg" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_LBuJkIoCEeiOe-BKGdv_Yg" name="ServiceOrderItemInvolvesServiceInstance" memberEnd="_LBvXsIoCEeiOe-BKGdv_Yg _LBv-wooCEeiOe-BKGdv_Yg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_LBuwoIoCEeiOe-BKGdv_Yg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_LBuwoYoCEeiOe-BKGdv_Yg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_LBv-wooCEeiOe-BKGdv_Yg" name="serviceorderitem" type="_wng4cIn9EeiOe-BKGdv_Yg" association="_LBuJkIoCEeiOe-BKGdv_Yg">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Zt4DQI9YEeiT7tMsBl6xjA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Zt9i0I9YEeiT7tMsBl6xjA" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_LBvXsIoCEeiOe-BKGdv_Yg" name="serviceinstance" type="_HFfXUD0QEeiWMf5FLWfdLA" association="_LBuJkIoCEeiOe-BKGdv_Yg">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_LBv-wIoCEeiOe-BKGdv_Yg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_LBv-wYoCEeiOe-BKGdv_Yg" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_IdqxoI9WEeiT7tMsBl6xjA" name="ServiceOrderItemInvolvesServiceDescriptor" memberEnd="_IducAI9WEeiT7tMsBl6xjA _IdwRMI9WEeiT7tMsBl6xjA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_Idsm0I9WEeiT7tMsBl6xjA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_IdtN4I9WEeiT7tMsBl6xjA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_IducAI9WEeiT7tMsBl6xjA" name="servicedescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" association="_IdqxoI9WEeiT7tMsBl6xjA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FeYgkI9XEeiT7tMsBl6xjA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_FegcYI9XEeiT7tMsBl6xjA" value="1"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_IdwRMI9WEeiT7tMsBl6xjA" name="serviceorderitem" type="_wng4cIn9EeiOe-BKGdv_Yg" association="_IdqxoI9WEeiT7tMsBl6xjA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_I6qaMI9XEeiT7tMsBl6xjA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_I6uroI9XEeiT7tMsBl6xjA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_Jdyc8I95EeiT7tMsBl6xjA" name="ServiceDescriptorMadeAvailableAsServiceCatalogItem" memberEnd="_JdzrEo95EeiT7tMsBl6xjA _Jd05MI95EeiT7tMsBl6xjA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_JdzrEI95EeiT7tMsBl6xjA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_JdzrEY95EeiT7tMsBl6xjA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_Jd05MI95EeiT7tMsBl6xjA" name="servicecandidate (servicecatalogitem)" type="_lUWJkI94EeiT7tMsBl6xjA" association="_Jdyc8I95EeiT7tMsBl6xjA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3TDUEJDnEei9Vqs7Ti8Wxg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3TjqYJDnEei9Vqs7Ti8Wxg" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_JdzrEo95EeiT7tMsBl6xjA" name="servicedescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" aggregation="shared" association="_Jdyc8I95EeiT7tMsBl6xjA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ordkcI96EeiT7tMsBl6xjA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_or8FkI96EeiT7tMsBl6xjA" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_NBgx4JsrEeiPBvbfaqSLYg" name="ServiceDescCompositeComprisedOfResourceDesc" memberEnd="_NBiAApsrEeiPBvbfaqSLYg _NBj1MJsrEeiPBvbfaqSLYg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_NBiAAJsrEeiPBvbfaqSLYg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_NBiAAZsrEeiPBvbfaqSLYg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_NBiAApsrEeiPBvbfaqSLYg" name="resourcedesc (resourcespecification)" aggregation="shared" association="_NBgx4JsrEeiPBvbfaqSLYg">
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Z5IkkJsrEeiPBvbfaqSLYg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Z5ZDQJsrEeiPBvbfaqSLYg" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_NBj1MJsrEeiPBvbfaqSLYg" name="servicedesccomposite" type="_BQaDwJpZEeidy9iGT_F5-w" association="_NBgx4JsrEeiPBvbfaqSLYg">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_awpbYJsrEeiPBvbfaqSLYg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_axaQYJsrEeiPBvbfaqSLYg" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_y6W3oKLREeiz_K9hWIugxQ" name="ServiceDescCompositeComprisedOfServiceDescriptor" memberEnd="_y6aiAKLREeiz_K9hWIugxQ _y6bwIKLREeiz_K9hWIugxQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_y6ZT4KLREeiz_K9hWIugxQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_y6ZT4aLREeiz_K9hWIugxQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_y6aiAKLREeiz_K9hWIugxQ" name="servicedescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" aggregation="shared" association="_y6W3oKLREeiz_K9hWIugxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_BTp4cKLSEeiz_K9hWIugxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_BTybUKLSEeiz_K9hWIugxQ" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_y6bwIKLREeiz_K9hWIugxQ" name="servicedesccomposite" type="_BQaDwJpZEeidy9iGT_F5-w" association="_y6W3oKLREeiz_K9hWIugxQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_N4hHMKLSEeiz_K9hWIugxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_N4kxkKLSEeiz_K9hWIugxQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_pwlo8JAIEeiv6abVuS_3BQ" name="ServiceCatalogHasServiceCatalogItems" memberEnd="_pxExIJAIEeiv6abVuS_3BQ _pxPJMJAIEeiv6abVuS_3BQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_pwp6YJAIEeiv6abVuS_3BQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_pwp6YZAIEeiv6abVuS_3BQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_pxExIJAIEeiv6abVuS_3BQ" name="servicecatalog" type="_efN6QI93EeiT7tMsBl6xjA" association="_pwlo8JAIEeiv6abVuS_3BQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5Pp_AJAIEeiv6abVuS_3BQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5QqEkJAIEeiv6abVuS_3BQ" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_pxPJMJAIEeiv6abVuS_3BQ" name="servicecandidate (servicecatalogitem)" type="_lUWJkI94EeiT7tMsBl6xjA" association="_pwlo8JAIEeiv6abVuS_3BQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_6-NLgJAIEeiv6abVuS_3BQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_6-dDIJAIEeiv6abVuS_3BQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_AchGsKuGEeiRK6iIVq4LZA" name="ServiceCompositeDescriptorMadeAvailableAs" memberEnd="_AcqQoquGEeiRK6iIVq4LZA _AcqQpquGEeiRK6iIVq4LZA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_AcqQoKuGEeiRK6iIVq4LZA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_AcqQoauGEeiRK6iIVq4LZA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_AcqQpquGEeiRK6iIVq4LZA" name="servicecompositedescriptor" type="_7SrB0D0VEeiWMf5FLWfdLA" association="_AchGsKuGEeiRK6iIVq4LZA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_L-PS4KuFEeiRK6iIVq4LZA" name="ServiceCompositeInstanceHasServiceInstance" memberEnd="_L-PS46uFEeiRK6iIVq4LZA _L-ZD4quFEeiRK6iIVq4LZA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_L-PS4auFEeiRK6iIVq4LZA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_L-PS4quFEeiRK6iIVq4LZA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_L-ZD4quFEeiRK6iIVq4LZA" name="_servicecompositeinstance" type="_YBdfEKuDEeiRK6iIVq4LZA" association="_L-PS4KuFEeiRK6iIVq4LZA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_NVfm0EDMEemk8dYJl29XCQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_NVpX0EDMEemk8dYJl29XCQ" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_L-PS46uFEeiRK6iIVq4LZA" name="_serviceInstance" type="_HFfXUD0QEeiWMf5FLWfdLA" aggregation="shared" association="_L-PS4KuFEeiRK6iIVq4LZA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_L-ZD4KuFEeiRK6iIVq4LZA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_L-ZD4auFEeiRK6iIVq4LZA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_ZzapcJDrEei9Vqs7Ti8Wxg" name="ServiceDescriptorHasAttachments" memberEnd="_Zze64JDrEei9Vqs7Ti8Wxg _ZzrIIJDrEei9Vqs7Ti8Wxg">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ZzdswJDrEei9Vqs7Ti8Wxg" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ZzeT0JDrEei9Vqs7Ti8Wxg" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_ZzrIIJDrEei9Vqs7Ti8Wxg" name="servicedescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" association="_ZzapcJDrEei9Vqs7Ti8Wxg"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_mD6bQKuFEeiRK6iIVq4LZA" name="ServiceAtomicDescriptorMadeAvailableAs" memberEnd="_mD6bQ6uFEeiRK6iIVq4LZA _mEEMQquFEeiRK6iIVq4LZA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_mD6bQauFEeiRK6iIVq4LZA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_mD6bQquFEeiRK6iIVq4LZA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_mEEMQquFEeiRK6iIVq4LZA" name="serviceatomicdescriptor" type="_AAwUkKuCEeiRK6iIVq4LZA" association="_mD6bQKuFEeiRK6iIVq4LZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_-PpncEYNEem7INgoaq_j-g" annotatedElement="_mEEMQquFEeiRK6iIVq4LZA">
            <body>sbnd f </body>
          </ownedComment>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_OGFpEMDiEeiebIKjAGZWdA" name="CharacteristicHasValue" memberEnd="_OGGQIsDiEeiebIKjAGZWdA _OGHeQMDiEeiebIKjAGZWdA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_OGGQIMDiEeiebIKjAGZWdA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_OGGQIcDiEeiebIKjAGZWdA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_OGGQIsDiEeiebIKjAGZWdA" name="value" type="_HFmo4MDiEeiebIKjAGZWdA" association="_OGFpEMDiEeiebIKjAGZWdA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_49DscEYNEem7INgoaq_j-g" annotatedElement="_OGGQIsDiEeiebIKjAGZWdA">
            <body>dbfb</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_oSJdUMGSEeiS695oPTRE1Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_oSYG0MGSEeiS695oPTRE1Q" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_OGHeQMDiEeiebIKjAGZWdA" name="servicecharacteristic" type="_UWL1gMDfEeiebIKjAGZWdA" association="_OGFpEMDiEeiebIKjAGZWdA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_pttcYMGSEeiS695oPTRE1Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_puPn4MGSEeiS695oPTRE1Q" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_Lvny4MDgEeiebIKjAGZWdA" name="ServiceDescriptorHasCharacteristic" memberEnd="_LvrdQMDgEeiebIKjAGZWdA _LvvusMDgEeiebIKjAGZWdA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_LvqPIMDgEeiebIKjAGZWdA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_LvqPIcDgEeiebIKjAGZWdA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_LvrdQMDgEeiebIKjAGZWdA" name="servicecharacteristic" type="_UWL1gMDfEeiebIKjAGZWdA" aggregation="shared" association="_Lvny4MDgEeiebIKjAGZWdA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YXtfUMDhEeiebIKjAGZWdA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YX00EMDhEeiebIKjAGZWdA" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_LvvusMDgEeiebIKjAGZWdA" name="servicedescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" association="_Lvny4MDgEeiebIKjAGZWdA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_aGIwAMDhEeiebIKjAGZWdA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_aGNBcMDhEeiebIKjAGZWdA" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_6z5EwMGTEeiS695oPTRE1Q" name="ServiceDescriptorMadeAvailableAsServiceInstance" memberEnd="_6z658sGTEeiS695oPTRE1Q _6z9WMMGTEeiS695oPTRE1Q">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_6z658MGTEeiS695oPTRE1Q" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_6z658cGTEeiS695oPTRE1Q" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_6z658sGTEeiS695oPTRE1Q" name="serviceinstance" type="_HFfXUD0QEeiWMf5FLWfdLA" aggregation="composite" association="_6z5EwMGTEeiS695oPTRE1Q">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_GE--gMGUEeiS695oPTRE1Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_GFPdMMGUEeiS695oPTRE1Q" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_6z9WMMGTEeiS695oPTRE1Q" name="servicedescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" association="_6z5EwMGTEeiS695oPTRE1Q"/>
      </packagedElement>
      <packagedElement xmi:type="uml:AssociationClass" xmi:id="_hUzLgMGkEeiS695oPTRE1Q" name="OrderItemRelationship" memberEnd="_hU0ZosGkEeiS695oPTRE1Q _hU1AsMGkEeiS695oPTRE1Q">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_hU0ZoMGkEeiS695oPTRE1Q" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_hU0ZocGkEeiS695oPTRE1Q" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_7KUVAMHFEeirPIyAdej0kg" annotatedElement="_hUzLgMGkEeiS695oPTRE1Q">
          <body>Enables specifying any kind of relationships between ServiceOrderItems</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="__mP8gMG_EeiS695oPTRE1Q" name="type">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QqfcUMNPEeik36qdAhNdCw" annotatedElement="__mP8gMG_EeiS695oPTRE1Q">
            <body>The type of relationship such as contains, relies on.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hU0ZosGkEeiS695oPTRE1Q" name="serviceorderitem" type="_wng4cIn9EeiOe-BKGdv_Yg" association="_hUzLgMGkEeiS695oPTRE1Q"/>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hU1AsMGkEeiS695oPTRE1Q" name="serviceorderitem" type="_wng4cIn9EeiOe-BKGdv_Yg" association="_hUzLgMGkEeiS695oPTRE1Q"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_ejprMM4pEeinDdlk3ffduQ" name="ServiceCompositeDescriptorHasServiceDescriptor" memberEnd="_ejq5Uc4pEeinDdlk3ffduQ _ej47wM4pEeinDdlk3ffduQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ejqSQM4pEeinDdlk3ffduQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_ejq5UM4pEeinDdlk3ffduQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_ej47wM4pEeinDdlk3ffduQ" name="servicecompositedescriptor" type="_7SrB0D0VEeiWMf5FLWfdLA" association="_ejprMM4pEeinDdlk3ffduQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:AssociationClass" xmi:id="_MnBKUMGjEeiS695oPTRE1Q" name="OrderRelationship" memberEnd="_MnE0scGjEeiS695oPTRE1Q _MnGp4MGjEeiS695oPTRE1Q">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_MnENoMGjEeiS695oPTRE1Q" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_MnE0sMGjEeiS695oPTRE1Q" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_SeyhEMHGEeirPIyAdej0kg" annotatedElement="_MnBKUMGjEeiS695oPTRE1Q">
          <body>An association between two ServiceOrders.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_R9Rn4MGkEeiS695oPTRE1Q" name="type">
          <ownedComment xmi:type="uml:Comment" xmi:id="_tEYKYMNMEeik36qdAhNdCw" annotatedElement="_R9Rn4MGkEeiS695oPTRE1Q">
            <body>A categorization of the relationship, such as bulk, parent/child, and so forth.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedEnd xmi:type="uml:Property" xmi:id="_MnE0scGjEeiS695oPTRE1Q" name="serviceorder" type="_mrJV8In9EeiOe-BKGdv_Yg" association="_MnBKUMGjEeiS695oPTRE1Q"/>
        <ownedEnd xmi:type="uml:Property" xmi:id="_MnGp4MGjEeiS695oPTRE1Q" name="serviceorder" type="_mrJV8In9EeiOe-BKGdv_Yg" association="_MnBKUMGjEeiS695oPTRE1Q"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_xPZN8MhdEeiSA51ssKbbgA" name="PnfdAssociatedNsVirtualLinkDesc" memberEnd="_xcsqIMhdEeiSA51ssKbbgA _xcw7kchdEeiSA51ssKbbgA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_xcqN4MhdEeiSA51ssKbbgA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_xcq08MhdEeiSA51ssKbbgA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_xcw7kchdEeiSA51ssKbbgA" name="nsvirtuallinkdesc" association="_xPZN8MhdEeiSA51ssKbbgA">
          <type xmi:type="uml:Class" href="Ns.uml#_13WFYDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_U-WIQMhfEeiSA51ssKbbgA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_U-jjoMhfEeiSA51ssKbbgA" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_xcsqIMhdEeiSA51ssKbbgA" name="pnfd" association="_xPZN8MhdEeiSA51ssKbbgA">
          <type xmi:type="uml:Class" href="Pnf.uml#_13TCEDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_xcwUgMhdEeiSA51ssKbbgA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_xcw7kMhdEeiSA51ssKbbgA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_yKT-EMhdEeiSA51ssKbbgA" name="VnfdAssociatedNsVirtualLinkDesc " memberEnd="_yKYPgMhdEeiSA51ssKbbgA _yKbS0chdEeiSA51ssKbbgA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_yKXBYMhdEeiSA51ssKbbgA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_yKXocMhdEeiSA51ssKbbgA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_yKbS0chdEeiSA51ssKbbgA" name="nsvirtuallinkdesc" association="_yKT-EMhdEeiSA51ssKbbgA">
          <type xmi:type="uml:Class" href="Ns.uml#_13WFYDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RwFcgMhfEeiSA51ssKbbgA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RwKVAMhfEeiSA51ssKbbgA" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_yKYPgMhdEeiSA51ssKbbgA" name="vnfd" association="_yKT-EMhdEeiSA51ssKbbgA">
          <type xmi:type="uml:Class" href="Vnf.uml#_aaEZADOREeiHat9KcP8uWA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_yKarwMhdEeiSA51ssKbbgA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_yKbS0MhdEeiSA51ssKbbgA" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_NGtQ4OgMEeiNE-az-riPDQ" name="SDHasReferenceonGlobalType" memberEnd="_NGtQ4-gMEeiNE-az-riPDQ _NHAL0OgMEeiNE-az-riPDQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_NGtQ4egMEeiNE-az-riPDQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_NGtQ4ugMEeiNE-az-riPDQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_NHAL0OgMEeiNE-az-riPDQ" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_NGtQ4OgMEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_jHdyUOgMEeiNE-az-riPDQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_jINZMOgMEeiNE-az-riPDQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_za16MOgMEeiNE-az-riPDQ" name="SDHasReferenceonCustomizedType" memberEnd="_za16M-gMEeiNE-az-riPDQ _za_rMugMEeiNE-az-riPDQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_za16MegMEeiNE-az-riPDQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_za16MugMEeiNE-az-riPDQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_za_rMugMEeiNE-az-riPDQ" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_za16MOgMEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_Di5i4OgNEeiNE-az-riPDQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_DjpJwOgNEeiNE-az-riPDQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_l1QY0OgNEeiNE-az-riPDQ" name="SDHasReferenceonReourceDescriptor" memberEnd="_l1QY0-gNEeiNE-az-riPDQ _l1issOgNEeiNE-az-riPDQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_l1QY0egNEeiNE-az-riPDQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_l1QY0ugNEeiNE-az-riPDQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_l1issOgNEeiNE-az-riPDQ" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_l1QY0OgNEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vV9TAOgNEeiNE-az-riPDQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vWGc8OgNEeiNE-az-riPDQ" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_3c92YOgNEeiNE-az-riPDQ" name="SDMadeAvailableAs" memberEnd="_3c92Y-gNEeiNE-az-riPDQ _3c92Z-gNEeiNE-az-riPDQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_3c92YegNEeiNE-az-riPDQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_3c92YugNEeiNE-az-riPDQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_3c92Z-gNEeiNE-az-riPDQ" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_3c92YOgNEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FHN_4OgOEeiNE-az-riPDQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_FHg60OgOEeiNE-az-riPDQ" value="1"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_hhVcIOuoEeiSZPIvixpf_Q" name="wrapedasNestedService" memberEnd="_hhVcI-uoEeiSZPIvixpf_Q _hhVcJ-uoEeiSZPIvixpf_Q">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_hhVcIeuoEeiSZPIvixpf_Q" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_hhVcIuuoEeiSZPIvixpf_Q" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hhVcJ-uoEeiSZPIvixpf_Q" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_hhVcIOuoEeiSZPIvixpf_Q">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_uEgo0OuoEeiSZPIvixpf_Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_uEzjwOuoEeiSZPIvixpf_Q" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_XEzCQPLvEeiazPylpq3fUA" name="NSextendedintoSD" memberEnd="_XE8MMvLvEeiazPylpq3fUA _XE8MNvLvEeiazPylpq3fUA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_XE8MMPLvEeiazPylpq3fUA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_XE8MMfLvEeiazPylpq3fUA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_XE8MNvLvEeiazPylpq3fUA" name="onboardnsdescriptor" type="_zSX3gOgIEeiNE-az-riPDQ" association="_XEzCQPLvEeiazPylpq3fUA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_vdiuwPLvEeiazPylpq3fUA" name="SDHasAttachments" memberEnd="_vdiuw_LvEeiazPylpq3fUA _vdiux_LvEeiazPylpq3fUA">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_vdiuwfLvEeiazPylpq3fUA" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_vdiuwvLvEeiazPylpq3fUA" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_vdiux_LvEeiazPylpq3fUA" name="attachment" type="_nrfckI93EeiT7tMsBl6xjA" association="_vdiuwPLvEeiazPylpq3fUA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_vaul4Bg_EembeqMx64UEWQ" name="ServiceDescriptorHasResourceDesc" memberEnd="_va498Bg_EembeqMx64UEWQ _va7aMRg_EembeqMx64UEWQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_va0FcBg_EembeqMx64UEWQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_va0sgBg_EembeqMx64UEWQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedEnd xmi:type="uml:Property" xmi:id="_va7aMRg_EembeqMx64UEWQ" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_vaul4Bg_EembeqMx64UEWQ"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_hxFFYCC7Eemw1L3J4dNy4w" name="SerivceCompositeDescriptorMadeAvailableAsServiceCompositeInstance" memberEnd="_hxFsciC7Eemw1L3J4dNy4w _hxLzECC7Eemw1L3J4dNy4w">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_hxFscCC7Eemw1L3J4dNy4w" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_hxFscSC7Eemw1L3J4dNy4w" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_qc4zwEDMEemk8dYJl29XCQ" annotatedElement="_hxFFYCC7Eemw1L3J4dNy4w">
          <body>An implementation of composite Service corresponding to a ServiceCompositeDescriptor.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hxFsciC7Eemw1L3J4dNy4w" name="_serviceCompositeInstance" type="_YBdfEKuDEeiRK6iIVq4LZA" aggregation="shared" association="_hxFFYCC7Eemw1L3J4dNy4w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_HDJ0wCC8Eemw1L3J4dNy4w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_HDaTcCC8Eemw1L3J4dNy4w" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_hxLzECC7Eemw1L3J4dNy4w" name="_servicecompositedescriptor" type="_7SrB0D0VEeiWMf5FLWfdLA" association="_hxFFYCC7Eemw1L3J4dNy4w"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_6lxVwCC1Eemw1L3J4dNy4w" name="ServiceCompositeDescriptorComprisedOfServiceDescriptor" memberEnd="_6lzyACC1Eemw1L3J4dNy4w _6l54oCC1Eemw1L3J4dNy4w">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_6lzK8CC1Eemw1L3J4dNy4w" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_6lzK8SC1Eemw1L3J4dNy4w" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_k3iU0EDMEemk8dYJl29XCQ" annotatedElement="_6lxVwCC1Eemw1L3J4dNy4w">
          <body> Describe the nested relationship between multiple Serive Descriptors.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_6l54oCC1Eemw1L3J4dNy4w" name="servicecompositedescriptor" type="_7SrB0D0VEeiWMf5FLWfdLA" association="_6lxVwCC1Eemw1L3J4dNy4w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_KkKsICC2Eemw1L3J4dNy4w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_KktesCC2Eemw1L3J4dNy4w" value="*"/>
        </ownedEnd>
        <ownedEnd xmi:type="uml:Property" xmi:id="_6lzyACC1Eemw1L3J4dNy4w" name="_serviceDescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" aggregation="shared" association="_6lxVwCC1Eemw1L3J4dNy4w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_JNo-ECC2Eemw1L3J4dNy4w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_JOddcCC2Eemw1L3J4dNy4w" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_9m-qsCC6Eemw1L3J4dNy4w" name="ServiceAtomicDescriptorMadeAvailableAsServiceAtomicInstance" memberEnd="_9nAf4CC6Eemw1L3J4dNy4w _9nF_cCC6Eemw1L3J4dNy4w">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_9m_40CC6Eemw1L3J4dNy4w" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_9m_40SC6Eemw1L3J4dNy4w" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_wt-XUEDMEemk8dYJl29XCQ" annotatedElement="_9m-qsCC6Eemw1L3J4dNy4w">
          <body> An implementation of atomic Service corresponding to a ServicecAtomicDescriptor.</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_9nF_cCC6Eemw1L3J4dNy4w" name="_serviceatomicdescriptor" type="_AAwUkKuCEeiRK6iIVq4LZA" association="_9m-qsCC6Eemw1L3J4dNy4w"/>
        <ownedEnd xmi:type="uml:Property" xmi:id="_9nAf4CC6Eemw1L3J4dNy4w" name="_serviceAtomicInstance" type="_XCul8KuDEeiRK6iIVq4LZA" aggregation="shared" association="_9m-qsCC6Eemw1L3J4dNy4w">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_U0AK8CC7Eemw1L3J4dNy4w"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_U0YlcCC7Eemw1L3J4dNy4w" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_uulWADJ0EembsLjrwaSXHQ" name="ServiceAtomicDescriptorReferencesResourceDesc" memberEnd="_uuuf8jJ0EembsLjrwaSXHQ _uuuf9jJ0EembsLjrwaSXHQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_uuuf8DJ0EembsLjrwaSXHQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_uuuf8TJ0EembsLjrwaSXHQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_y4CbIEDMEemk8dYJl29XCQ" annotatedElement="_uulWADJ0EembsLjrwaSXHQ">
          <body>Resource components of constituting a serivce descriptor. &#xD;
</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_uuuf9jJ0EembsLjrwaSXHQ" name="_serviceatomicdescriptor" type="_AAwUkKuCEeiRK6iIVq4LZA" association="_uulWADJ0EembsLjrwaSXHQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_P_sfcDJ3Eem5adcA1c6ckw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_P_sfcTJ3Eem5adcA1c6ckw" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_5Ip2QDJ2Eem5adcA1c6ckw" name="ServiceAtomicInstanceReferencesResourceInstance" memberEnd="_5IznQjJ2Eem5adcA1c6ckw _5JGiMjJ2Eem5adcA1c6ckw">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_5IznQDJ2Eem5adcA1c6ckw" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_5IznQTJ2Eem5adcA1c6ckw" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_-Er5wEDMEemk8dYJl29XCQ" annotatedElement="_5Ip2QDJ2Eem5adcA1c6ckw">
          <body>Resource instance components of constituting a serivce instance. </body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_5JGiMjJ2Eem5adcA1c6ckw" name="_serviceatomicinstance" type="_XCul8KuDEeiRK6iIVq4LZA" association="_5Ip2QDJ2Eem5adcA1c6ckw">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_R6uowDJ3Eem5adcA1c6ckw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_R64ZwDJ3Eem5adcA1c6ckw" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_-s0pcDJ2Eem5adcA1c6ckw" name="ServiceCompositeInstanceReferencesResourceInstance" memberEnd="_-s0pczJ2Eem5adcA1c6ckw _-s0pdzJ2Eem5adcA1c6ckw">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_-s0pcTJ2Eem5adcA1c6ckw" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_-s0pcjJ2Eem5adcA1c6ckw" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_7K3M8EDMEemk8dYJl29XCQ" annotatedElement="_-s0pcDJ2Eem5adcA1c6ckw">
          <body>Resource instance components of constituting a serivce instance.&#xD;
</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_-s0pdzJ2Eem5adcA1c6ckw" name="_servicecompositeinstance" type="_YBdfEKuDEeiRK6iIVq4LZA" association="_-s0pcDJ2Eem5adcA1c6ckw">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_TeHHEDJ3Eem5adcA1c6ckw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_TeQ4EDJ3Eem5adcA1c6ckw" value="*"/>
        </ownedEnd>
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="_qdIu8DJ0EembsLjrwaSXHQ" name="ServiceCompositeDescriptorReferencesResourceDesc" memberEnd="_qdIu8zJ0EembsLjrwaSXHQ _qdIu9zJ0EembsLjrwaSXHQ">
        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_qdIu8TJ0EembsLjrwaSXHQ" source="org.eclipse.papyrus">
          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_qdIu8jJ0EembsLjrwaSXHQ" key="nature" value="UML_Nature"/>
        </eAnnotations>
        <ownedComment xmi:type="uml:Comment" xmi:id="_smDfsEDMEemk8dYJl29XCQ" annotatedElement="_qdIu8DJ0EembsLjrwaSXHQ">
          <body>Resource components of constituting a serivce descriptor. &#xD;
</body>
        </ownedComment>
        <ownedEnd xmi:type="uml:Property" xmi:id="_qdIu9zJ0EembsLjrwaSXHQ" name="_service compositedescriptor" type="_7SrB0D0VEeiWMf5FLWfdLA" association="_qdIu8DJ0EembsLjrwaSXHQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_OBiJoDJ3Eem5adcA1c6ckw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_OBr6oDJ3Eem5adcA1c6ckw" value="*"/>
        </ownedEnd>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_fXNM8DOHEei5Af8DcjrhIQ" name="Diagrams">
      <ownedComment xmi:type="uml:Comment" xmi:id="_eIxScJAiEei1uKE-hf_HvQ">
        <body>Some Questions:&#xD;
1. Do we have a business need to have multiple service catalogs?&#xD;
-&#xD;
2. Do we have a need to have a service descriptor in a given catalog multiple times for different time periods?&#xD;
-&#xD;
3. How do we handle moving a descriptor from a test catalog to a production catalog?&#xD;
-&#xD;
4. What is the attachment class?</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_A-91QJAjEei1uKE-hf_HvQ">
        <body>Presently, SDC stores the descriptor directly in the catalog.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_Bs8YsJDrEei9Vqs7Ti8Wxg">
        <body>I don't think SDC uses the SID Characteristic patern.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_ZFF6wCC9Eemw1L3J4dNy4w">
        <body>Removed recursive associations, given we are using the composite/atomic pattern.</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_ehLI8CC9Eemw1L3J4dNy4w">
        <body>Do we need this diagram?</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_nzFWMLg8Eem9SoGzhP7GLQ">
        <body>Option 1</body>
      </ownedComment>
      <ownedComment xmi:type="uml:Comment" xmi:id="_r0yRELg8Eem9SoGzhP7GLQ">
        <body>Option 2</body>
      </ownedComment>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_fXNM8TOHEei5Af8DcjrhIQ" name="Interfaces">
      <packagedElement xmi:type="uml:Package" xmi:id="_-6ecYEYpEem7INgoaq_j-g" name="Interfaces"/>
      <packagedElement xmi:type="uml:Package" xmi:id="__MmHIEYpEem7INgoaq_j-g" name="CopyOf_Interfaces_1"/>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_fXN0ADOHEei5Af8DcjrhIQ" name="ObjectClasses">
      <packagedElement xmi:type="uml:Class" xmi:id="_13eBMDzEEeiWMf5FLWfdLA" name="Nfpd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_13eBMTzEEeiWMf5FLWfdLA" annotatedElement="_13eBMDzEEeiWMf5FLWfdLA">
          <body>The Nfpd class associates traffic flow criteria to a list of descriptors associated to the connection points and service access points to be visited by traffic flows matching these criteria. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13eBMjzEEeiWMf5FLWfdLA" name="nfpdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13eBMzzEEeiWMf5FLWfdLA" annotatedElement="_13eBMjzEEeiWMf5FLWfdLA">
            <body>Identifies this nfpd class within a VNFFGD.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13eBNDzEEeiWMf5FLWfdLA" name="nfpRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13eBNTzEEeiWMf5FLWfdLA" annotatedElement="_13eBNDzEEeiWMf5FLWfdLA">
            <body>Provides an NFP classification and selection rule. &#xD;
The rule may be expressed as a criteria constructed out of atomic assertions linked by Boolean operators AND, OR and NOT. &#xD;
NOTE: 	Examples of atomic assertions are assertions on packet header fields’ values, date and time ranges, etc.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_13eBODzEEeiWMf5FLWfdLA" name="cpd">
          <ownedComment xmi:type="uml:Comment" xmi:id="_13eBOTzEEeiWMf5FLWfdLA" annotatedElement="_13eBODzEEeiWMf5FLWfdLA">
            <body>References the descriptor of a connection point to be traversed by the traffic flows matching the criteria. This shall be a connection point attached to one of the constituent VNFs and PNFs of the parent VNFFG, or a SAP of one of the constituent nested NSs of the parent VNFFG.&#xD;
NOTE: 	When multiple values are provided, the order is significant and specifies the sequence of connection points to be traversed.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_bd_WkDzFEeiWMf5FLWfdLA" name="NsOrVnfProfile" isAbstract="true">
        <ownedComment xmi:type="uml:Comment" xmi:id="_bd_9oDzFEeiWMf5FLWfdLA" annotatedElement="_bd_WkDzFEeiWMf5FLWfdLA">
          <body>This is an abstract proxy class, allowing to provide reference to either NsProfile or VnfProfile. </body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_beE2IDzFEeiWMf5FLWfdLA" name="Dependencies">
        <ownedComment xmi:type="uml:Comment" xmi:id="_beE2ITzFEeiWMf5FLWfdLA" annotatedElement="_beE2IDzFEeiWMf5FLWfdLA">
          <body>The Dependencies class provides indications on the order in which VNFs associated to different VNF Profiles and/or nested NSs associated to different NS Profiles are to be instantiated.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IhnyUT25Eeiu6I5JfRTxxQ" name="_primaryProfileReference" type="_bd_WkDzFEeiWMf5FLWfdLA" association="_Ihl9ID25Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PgqCsEPoEeiVGPeZpaYNtQ" annotatedElement="_IhnyUT25Eeiu6I5JfRTxxQ">
            <body>References a VnfProfile or NsProfile.&#xD;
NOTE:  NFV Management and Orchestration functions shall instantiate VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the primary attribute before instantiating VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the secondary attribute.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_IhqOkD25Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_IhqOkT25Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_g9ay0T25Eeiu6I5JfRTxxQ" name="_secondaryProfileReference" type="_bd_WkDzFEeiWMf5FLWfdLA" association="_g9Y9oD25Eeiu6I5JfRTxxQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ThCH4EPoEeiVGPeZpaYNtQ" annotatedElement="_g9ay0T25Eeiu6I5JfRTxxQ">
            <body>References a VnfProfile or NsProfile.&#xD;
NOTE:  NFV Management and Orchestration functions shall instantiate VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the primary attribute before instantiating VNFs from the VnfProfile and/or nested NSs from the NsProfile referenced in the secondary attribute&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_g9cA8D25Eeiu6I5JfRTxxQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_g9coAD25Eeiu6I5JfRTxxQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_1Wb7QDzFEeiWMf5FLWfdLA" name="Sap">
        <ownedComment xmi:type="uml:Comment" xmi:id="_1Wb7QTzFEeiWMf5FLWfdLA" annotatedElement="_1Wb7QDzFEeiWMf5FLWfdLA">
          <body>Provides information on a Service Access Point (SAP) of a NS</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_B4dtoES3EeiVGPeZpaYNtQ">
          <general xmi:type="uml:Class" href="Common.uml#_8naVoES0EeiVGPeZpaYNtQ"/>
        </generalization>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_Jvy-QD0MEeiWMf5FLWfdLA" name="ServiceDescriptor" visibility="package" isAbstract="true">
        <ownedComment xmi:type="uml:Comment" xmi:id="_R35GwD0MEeiWMf5FLWfdLA" annotatedElement="_Jvy-QD0MEeiWMf5FLWfdLA">
          <body>ServiceDescriptor is used to model the design time representation of a service. </body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_JFlw4IMEEemyVus8T4NvCQ">
          <general xmi:type="uml:Class" href="Common.uml#_v04t4DFPEemw1_Ys6rcLWw"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_biWkcD0NEeiWMf5FLWfdLA" name="serviceInvariantId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nieHYD0NEeiWMf5FLWfdLA" annotatedElement="_biWkcD0NEeiWMf5FLWfdLA">
            <body> Constant identifier of the service model.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_rj6jkD0NEeiWMf5FLWfdLA" name="serviceId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xE0nYD0NEeiWMf5FLWfdLA" annotatedElement="_rj6jkD0NEeiWMf5FLWfdLA">
            <body>Versioned identifier of the service model (this uuid is changed for every major version of the service)</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_0_MLMD0NEeiWMf5FLWfdLA" name="name" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_7nNBAD0NEeiWMf5FLWfdLA" annotatedElement="_0_MLMD0NEeiWMf5FLWfdLA">
            <body>The name of the service model designed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_BLHVgD0OEeiWMf5FLWfdLA" name="description" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_HmTQQD0OEeiWMf5FLWfdLA" annotatedElement="_BLHVgD0OEeiWMf5FLWfdLA">
            <body>The description of the service model designed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MiRbAD0OEeiWMf5FLWfdLA" name="category" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_VjMo8D0OEeiWMf5FLWfdLA" annotatedElement="_MiRbAD0OEeiWMf5FLWfdLA">
            <body>A predefined list which identifies the construct's category. There is a predefined list of service categories.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_R9RrID0OEeiWMf5FLWfdLA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_R-B5ED0OEeiWMf5FLWfdLA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bJNPMD0OEeiWMf5FLWfdLA" name="version" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iVsEAD0OEeiWMf5FLWfdLA" annotatedElement="_bJNPMD0OEeiWMf5FLWfdLA">
            <body>The service model version.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_lzY58D0OEeiWMf5FLWfdLA" name="serviceType" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_rjM8cD0OEeiWMf5FLWfdLA" annotatedElement="_lzY58D0OEeiWMf5FLWfdLA">
            <body>An optional string field defining a generic type (like category) of the service. E.g. this field can be used for defining the service as “TRANSPORT”.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_M_AjkEYpEem7INgoaq_j-g"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_M_Mw0EYpEem7INgoaq_j-g" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vyTaID0OEeiWMf5FLWfdLA" name="serviceRole" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_221M0D0OEeiWMf5FLWfdLA" annotatedElement="_vyTaID0OEeiWMf5FLWfdLA">
            <body>An optional string field for shortcode that defines the function that the service is providing. E.g. “MISVPN” or “AIM”.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_0mJjoD0OEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_0o1EMD0OEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_5tq3ED0OEeiWMf5FLWfdLA" name="icon" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ASXTID0PEeiWMf5FLWfdLA" annotatedElement="_5tq3ED0OEeiWMf5FLWfdLA">
            <body>The icon path of the service.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Zze64JDrEei9Vqs7Ti8Wxg" name="attachment" type="_nrfckI93EeiT7tMsBl6xjA" aggregation="composite" association="_ZzapcJDrEei9Vqs7Ti8Wxg">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ZzkacJDrEei9Vqs7Ti8Wxg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_Zzm2sJDrEei9Vqs7Ti8Wxg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_E2FYoIMGEemyVus8T4NvCQ" name="configurableProperties">
          <ownedComment xmi:type="uml:Comment" xmi:id="_f4O54IMSEemIU81rY2FFFw" annotatedElement="_E2FYoIMGEemyVus8T4NvCQ">
            <body>Describes the configurable properties of the service.&#xD;
</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_EUn-wKFtEemY46Vmc0cZBg">
            <body>Describes the configurable properties of the service.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_YP8JQIMGEemyVus8T4NvCQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_YQF6QIMGEemyVus8T4NvCQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_sekREIdsEem5i7slCUMe6w" name="isShared">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WZSfMIdwEem5i7slCUMe6w" annotatedElement="_sekREIdsEem5i7slCUMe6w">
            <body>Describe whether this service descriptor is shared or not in the service design. </body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_e7RHUIdwEem5i7slCUMe6w" name="lifecycleManagementScript" type="_QsPsoF0aEemiOP02o5T8tA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_wRl58IdwEem5i7slCUMe6w" annotatedElement="_e7RHUIdwEem5i7slCUMe6w">
            <body>Includes a list of events and corresponding management scripts performed for the&#xD;
Service.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fBfcYId2Eemz_I38RrvOQg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fHVlsId2Eemz_I38RrvOQg" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_HFfXUD0QEeiWMf5FLWfdLA" name="ServiceInstance" isAbstract="true">
        <ownedComment xmi:type="uml:Comment" xmi:id="_cnoqID0QEeiWMf5FLWfdLA" annotatedElement="_HFfXUD0QEeiWMf5FLWfdLA">
          <body>ServiceInstance is used to model the run time representation of a service. </body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_xnyJAIMLEemyVus8T4NvCQ">
          <general xmi:type="uml:Class" href="Common.uml#_0Zik0DFPEemw1_Ys6rcLWw"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mDZZ8D0QEeiWMf5FLWfdLA" name="serviceInstanceId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_uP_n8D0QEeiWMf5FLWfdLA" annotatedElement="_mDZZ8D0QEeiWMf5FLWfdLA">
            <body>Uniquely identifies this instance of a service.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_w3sqAD0QEeiWMf5FLWfdLA" name="serviceInstanceName" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6aDxED0QEeiWMf5FLWfdLA" annotatedElement="_w3sqAD0QEeiWMf5FLWfdLA">
            <body>The name assigned to the service-instance.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_oCNEIEYpEem7INgoaq_j-g"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_oCTKwEYpEem7INgoaq_j-g" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_AuX84D0TEeiWMf5FLWfdLA" name="serviceType" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_HaWFoD0TEeiWMf5FLWfdLA" annotatedElement="_AuX84D0TEeiWMf5FLWfdLA">
            <body>An optional string field defining a generic type (like category) of the service. E.g. this field can be used for defining the service as “TRANSPORT”.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_FqSdQD0TEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_FrIx0D0TEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KWqFwD0TEeiWMf5FLWfdLA" name="serviceRole" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QeK2kD0TEeiWMf5FLWfdLA" annotatedElement="_KWqFwD0TEeiWMf5FLWfdLA">
            <body>An optional string field for shortcode that defines the function that the service is providing. E.g. “MISVPN” or “AIM”.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-faVgD0TEeiWMf5FLWfdLA" name="selfLink" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_FfXKMD0UEeiWMf5FLWfdLA" annotatedElement="_-faVgD0TEeiWMf5FLWfdLA">
            <body>URL to endpoint where more details can be gotten.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_8dlAoD0TEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GtqJUD0UEeiWMf5FLWfdLA" name="orchestrationStatus" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RDU8oD0UEeiWMf5FLWfdLA" annotatedElement="_GtqJUD0UEeiWMf5FLWfdLA">
            <body>Orchestration status of the service instance.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1Rt9wPL4EeiazPylpq3fUA" name="nsStatus">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3KrVAEDMEemk8dYJl29XCQ" annotatedElement="_1Rt9wPL4EeiazPylpq3fUA">
            <body>Describe NS instance staus: instantiating(creating the Networek Service instance), active(the existed Network Service instance is under using), terminating(the existed Network Service instance stops using) or etc(healing and other possible status). </body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OmeeoId6Eemz_I38RrvOQg" name="instanceSharingNumber">
          <ownedComment xmi:type="uml:Comment" xmi:id="_6hlXgId6EemlroDdeOKzBQ" annotatedElement="_OmeeoId6Eemz_I38RrvOQg">
            <body>Record the number of services that are using this service instance.&#xD;
Note: This attribute can be used when a service instance is prepared to be deleted, the detected number will help to find how many services are using this instance. If number is greater than 1, it shows this instance is used by other service(s), otherwise it can be deleted.&#xD;
 &#xD;
&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_eFOEkId6Eemz_I38RrvOQg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_eFULMId6Eemz_I38RrvOQg" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_7SrB0D0VEeiWMf5FLWfdLA" name="ServiceCompositeDescriptor">
        <ownedComment xmi:type="uml:Comment" xmi:id="__fC7oD0VEeiWMf5FLWfdLA" annotatedElement="_7SrB0D0VEeiWMf5FLWfdLA">
          <body>ServcieCompositeDescriptor is used to model the design time representation of a service component or network service.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_yX44MB9eEemLMI6HKP6Lbw" general="_Jvy-QD0MEeiWMf5FLWfdLA"/>
        <generalization xmi:type="uml:Generalization" xmi:id="_0KAlEM4oEeinDdlk3ffduQ" general="_Jvy-QD0MEeiWMf5FLWfdLA"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ejq5Uc4pEeinDdlk3ffduQ" name="_serviceDescriptor" type="_Jvy-QD0MEeiWMf5FLWfdLA" aggregation="shared" association="_ejprMM4pEeinDdlk3ffduQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zQiEIEYxEem7INgoaq_j-g" annotatedElement="_ejq5Uc4pEeinDdlk3ffduQ">
            <body>Describe the nested relationship between multiple Service Descriptors.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_ej3toM4pEeinDdlk3ffduQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_ej4UsM4pEeinDdlk3ffduQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_AcqQoquGEeiRK6iIVq4LZA" name="_serviceCompositeInstance" type="_YBdfEKuDEeiRK6iIVq4LZA" association="_AchGsKuGEeiRK6iIVq4LZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_9mMQYEYxEem7INgoaq_j-g" annotatedElement="_AcqQoquGEeiRK6iIVq4LZA">
            <body>An implementation of composite Service corresponding to a ServiceCompositeDescriptor.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_AcqQpKuGEeiRK6iIVq4LZA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_AcqQpauGEeiRK6iIVq4LZA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qdIu8zJ0EembsLjrwaSXHQ" name="_resourceDesc (resourcespecification)" association="_qdIu8DJ0EembsLjrwaSXHQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_K8dK4EYGEem7INgoaq_j-g" annotatedElement="_qdIu8zJ0EembsLjrwaSXHQ">
            <body>Resource components of constituting a serivce descriptor. </body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_qdIu9TJ0EembsLjrwaSXHQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_qdIu9jJ0EembsLjrwaSXHQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_mrJV8In9EeiOe-BKGdv_Yg" name="ServiceOrder">
        <ownedComment xmi:type="uml:Comment" xmi:id="_u8BdMI9yEeiT7tMsBl6xjA" annotatedElement="_mrJV8In9EeiOe-BKGdv_Yg">
          <body>A type of Request that represents a Customer Order's products decomposed into the services through which the products are realized.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_ZNf7gFcFEemLJovD_F1O1A">
          <general xmi:type="uml:Class" href="Common.uml#_4vw1QDqyEemOl5OHBoqS_w"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Q-9g4In-EeiOe-BKGdv_Yg" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_HDAXcIxWEeil1cj9avVx5g" annotatedElement="_Q-9g4In-EeiOe-BKGdv_Yg">
            <body>Unique identifier for Interaction.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_W04LYIn-EeiOe-BKGdv_Yg" name="externalId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_yIzpkLwlEeifWa7EkiXrHA" annotatedElement="_W04LYIn-EeiOe-BKGdv_Yg">
            <body>ID given by the order requester and only understandable by him (to facilitate his searches afterwards). It could an order number reference from the triggering system (OM)</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_XqlEUIn-EeiOe-BKGdv_Yg" name="priority" type="_DwZV4LwnEeifWa7EkiXrHA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_2izvsLwlEeifWa7EkiXrHA" annotatedElement="_XqlEUIn-EeiOe-BKGdv_Yg">
            <body>A way that can be used by order requester to prioritize orders in Service Order </body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_YPjZoIn-EeiOe-BKGdv_Yg" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_I8w48IxXEeil1cj9avVx5g" annotatedElement="_YPjZoIn-EeiOe-BKGdv_Yg">
            <body>Narrative that explains the interaction and details about the interaction, such as why the interaction is taking place.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_YvjIUIn-EeiOe-BKGdv_Yg" name="category">
          <ownedComment xmi:type="uml:Comment" xmi:id="_N4ShALwpEeifWa7EkiXrHA" annotatedElement="_YvjIUIn-EeiOe-BKGdv_Yg">
            <body>Used to categorize the order - Requester valued it and this category can be useful for the Service Order Management system and/or requester (e.g. &quot;broadband&quot;, &quot;TV option”,).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZM2IUIn-EeiOe-BKGdv_Yg" name="state" type="_3a0cEI6OEeiLSKWGMeE9mQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PTmPEI6PEeiLSKWGMeE9mQ" annotatedElement="_ZM2IUIn-EeiOe-BKGdv_Yg">
            <body>State of the order</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bNd8QIn-EeiOe-BKGdv_Yg" name="completionDate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_NtzmEIxXEeil1cj9avVx5g" annotatedElement="_bNd8QIn-EeiOe-BKGdv_Yg">
            <body>The date on which an interaction is closed or completed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_dOQ54In_EeiOe-BKGdv_Yg" name="requestedStartDate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_x_JoII6PEeiLSKWGMeE9mQ" annotatedElement="_dOQ54In_EeiOe-BKGdv_Yg">
            <body>The date that was requested to start processing the order.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_eNHu0In_EeiOe-BKGdv_Yg" name="requestedCompletionDate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_VkMVUI6NEeiLSKWGMeE9mQ" annotatedElement="_eNHu0In_EeiOe-BKGdv_Yg">
            <body>The date on which an interaction is closed or completed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_eyBysIn_EeiOe-BKGdv_Yg" name="expectedCompletionDate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZklBkI6NEeiLSKWGMeE9mQ" annotatedElement="_eyBysIn_EeiOe-BKGdv_Yg">
            <body>The date on which an interaction is expected to be completed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fTdEwIn_EeiOe-BKGdv_Yg" name="startDate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_dZs5AI6NEeiLSKWGMeE9mQ" annotatedElement="_fTdEwIn_EeiOe-BKGdv_Yg">
            <body>The date on which an interaction is started.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fvaA8In_EeiOe-BKGdv_Yg" name="notificationContact">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sDhwkLwpEeifWa7EkiXrHA" annotatedElement="_fvaA8In_EeiOe-BKGdv_Yg">
            <body>Contact attached to the order to send back information regarding this order</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_rUHk0IoAEeiOe-BKGdv_Yg" name="_serviceOrderItem" type="_wng4cIn9EeiOe-BKGdv_Yg" aggregation="composite" association="_rUEhgIoAEeiOe-BKGdv_Yg">
          <ownedComment xmi:type="uml:Comment" xmi:id="_iFnW4MHEEeiS695oPTRE1Q" annotatedElement="_rUHk0IoAEeiOe-BKGdv_Yg">
            <body>Reference to ServiceOrderItem</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_rUIy8IoAEeiOe-BKGdv_Yg" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_rUIy8YoAEeiOe-BKGdv_Yg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uatGcI6OEeiLSKWGMeE9mQ" name="OrderDate">
          <ownedComment xmi:type="uml:Comment" xmi:id="_oM8uQI6PEeiLSKWGMeE9mQ" annotatedElement="_uatGcI6OEeiLSKWGMeE9mQ">
            <body>The date the order was placed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_wng4cIn9EeiOe-BKGdv_Yg" name="ServiceOrderItem">
        <ownedComment xmi:type="uml:Comment" xmi:id="_ylEjII9UEeiT7tMsBl6xjA" annotatedElement="_wng4cIn9EeiOe-BKGdv_Yg">
          <body>The purpose for the ServiceOrder expressed in terms of a ServiceSpecification or a Service.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tFrMkIoBEeiOe-BKGdv_Yg" name="id">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xrg3ULwqEeifWa7EkiXrHA" annotatedElement="_tFrMkIoBEeiOe-BKGdv_Yg">
            <body>Identifier of the line item (generally it is a sequence number 01, 02, 03, ...).&#xD;
 &#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ttCHgIoBEeiOe-BKGdv_Yg" name="action" type="_pWPaEMA-Eei02ItngDf4ZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LsUUcI6REeiLSKWGMeE9mQ" annotatedElement="_ttCHgIoBEeiOe-BKGdv_Yg">
            <body>The action to take for an InteractionItem, such as add, change, remove.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uN6nAIoBEeiOe-BKGdv_Yg" name="state" type="_3a0cEI6OEeiLSKWGMeE9mQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5cQbYMA-Eei02ItngDf4ZA" annotatedElement="_uN6nAIoBEeiOe-BKGdv_Yg">
            <body>State of the order item: described in the state machine diagram. This is the requested state.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_up_fAIoBEeiOe-BKGdv_Yg" name="Quantity">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ge_5MI6REeiLSKWGMeE9mQ" annotatedElement="_up_fAIoBEeiOe-BKGdv_Yg">
            <body>Quantity of an interaction item involved in an interaction.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_iQkugJpYEeidy9iGT_F5-w" name="ServiceDescAtomic">
        <generalization xmi:type="uml:Generalization" xmi:id="_5lowcJpYEeidy9iGT_F5-w" general="_Jvy-QD0MEeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_BQaDwJpZEeidy9iGT_F5-w" name="ServiceDescComposite">
        <generalization xmi:type="uml:Generalization" xmi:id="_LfWkAJpZEeidy9iGT_F5-w" general="_Jvy-QD0MEeiWMf5FLWfdLA"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_nrfckI93EeiT7tMsBl6xjA" name="Attachment">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_tYjQcJEAEei9Vqs7Ti8Wxg" name="id">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_v4DYwJEAEei9Vqs7Ti8Wxg" name="href">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_wiI3kJEAEei9Vqs7Ti8Wxg" name="name">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_xmgeoJEAEei9Vqs7Ti8Wxg" name="description">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ynD8sJEAEei9Vqs7Ti8Wxg" name="type">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="__dI3QJEAEei9Vqs7Ti8Wxg" name="uri">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_BD-SMJEBEei9Vqs7Ti8Wxg" name="mimeType">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_9p9M8JEBEei9Vqs7Ti8Wxg" name="validFor" type="_RZ1sQJAjEei1uKE-hf_HvQ"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_vdiuw_LvEeiazPylpq3fUA" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_vdiuwPLvEeiazPylpq3fUA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_vdiuxfLvEeiazPylpq3fUA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_vdiuxvLvEeiazPylpq3fUA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_AAwUkKuCEeiRK6iIVq4LZA" name="ServiceAtomicDescriptor">
        <generalization xmi:type="uml:Generalization" xmi:id="_xMGpgM4oEeinDdlk3ffduQ" general="_Jvy-QD0MEeiWMf5FLWfdLA"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mD6bQ6uFEeiRK6iIVq4LZA" name="_serviceAtomicInstance" type="_XCul8KuDEeiRK6iIVq4LZA" association="_mD6bQKuFEeiRK6iIVq4LZA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xno-QEYyEem7INgoaq_j-g" annotatedElement="_mD6bQ6uFEeiRK6iIVq4LZA">
            <body>An implementation of atomic Service corresponding to a ServicecAtomicDescriptor.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_mEEMQKuFEeiRK6iIVq4LZA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_mEEMQauFEeiRK6iIVq4LZA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_uuuf8jJ0EembsLjrwaSXHQ" name="_resourceDesc (resourcespecification)" association="_uulWADJ0EembsLjrwaSXHQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1aouwEYyEem7INgoaq_j-g" annotatedElement="_uuuf8jJ0EembsLjrwaSXHQ">
            <body>Resource components of constituting a serivce descriptor. </body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_uuuf9DJ0EembsLjrwaSXHQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_uuuf9TJ0EembsLjrwaSXHQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_XCul8KuDEeiRK6iIVq4LZA" name="ServiceAtomicInstance">
        <generalization xmi:type="uml:Generalization" xmi:id="_o4dRYKuDEeiRK6iIVq4LZA" general="_HFfXUD0QEeiWMf5FLWfdLA"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_5IznQjJ2Eem5adcA1c6ckw" name="_resourceInstance" association="_5Ip2QDJ2Eem5adcA1c6ckw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_KQzFUEYzEem7INgoaq_j-g" annotatedElement="_5IznQjJ2Eem5adcA1c6ckw">
            <body>Resource instance components of constituting a service instance.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Resource.uml#_hZfC0DEkEemRSoIWRX3jNw"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5JGiMDJ2Eem5adcA1c6ckw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5JGiMTJ2Eem5adcA1c6ckw" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_lUWJkI94EeiT7tMsBl6xjA" name="ServiceCandidate (ServiceCatalogItem)">
        <ownedComment xmi:type="uml:Comment" xmi:id="_OCzoYJAKEeiv6abVuS_3BQ" annotatedElement="_lUWJkI94EeiT7tMsBl6xjA">
          <body>A ServiceCandidate (ServiceCatalogItem) is an entity that makes a ServiceSpecification available to a catalog. A ServiceCandidate and its associated ServiceSpecification may be “published” (made visible) in any number of ServiceCatalogs, or in none. One ServiceSpecification can be composed of other ServiceSpecifications. These ServiceSpecifications may also be published. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KO_1AJAJEeiv6abVuS_3BQ" name="ID">
          <ownedComment xmi:type="uml:Comment" xmi:id="_brMJoJAKEeiv6abVuS_3BQ" annotatedElement="_KO_1AJAJEeiv6abVuS_3BQ">
            <body>A unique identifier for the ServiceCandidate</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_LffzkJAJEeiv6abVuS_3BQ" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_m9I_AJAKEeiv6abVuS_3BQ" annotatedElement="_LffzkJAJEeiv6abVuS_3BQ">
            <body>A word or phrase that a ServiceCandidate is known and distinguished from other ServiceCandidates.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MH6ecJAJEeiv6abVuS_3BQ" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qd5wAJAKEeiv6abVuS_3BQ" annotatedElement="_MH6ecJAJEeiv6abVuS_3BQ">
            <body>A narrative that explains the ServiceCandidate.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_M-s8gJAJEeiv6abVuS_3BQ" name="validFor">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ZuCFEJDpEei9Vqs7Ti8Wxg" annotatedElement="_M-s8gJAJEeiv6abVuS_3BQ">
            <body>The period of time during which the ServiceCandidate is applicable.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_NcwxgJAJEeiv6abVuS_3BQ" name="status">
          <ownedComment xmi:type="uml:Comment" xmi:id="_cottgJDpEei9Vqs7Ti8Wxg" annotatedElement="_NcwxgJAJEeiv6abVuS_3BQ">
            <body>The condition at which the ServiceCandidate exists such as planned, active and Obsolete.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_efN6QI93EeiT7tMsBl6xjA" name="ServiceCatalog">
        <ownedComment xmi:type="uml:Comment" xmi:id="_IhPKcJEAEei9Vqs7Ti8Wxg" annotatedElement="_efN6QI93EeiT7tMsBl6xjA">
          <body>A ServiceCatalog is a collection of ServiceCandidates representing ServiceSpecifications. ServiceCandidates define the underlying services that support a ProductOffering. ServiceCandidates are exposed to one or more Product Catalogs to be utilized to configure one or more ProductOfferings. ServiceCandidates can be exposed to one or more Service Catalogs to be utilized or incorporated in one or more ServiceCandidates. A collection may consist of similar ServiceCandidates, such as a collection of broadband ServiceCatalogCandidates or a collection of wireless ServiceCatalogCandidates. A Service Catalog contents can expose a collection of ServiceCandidates to be utilized internal/external to an enterprise.</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_YBdfEKuDEeiRK6iIVq4LZA" name="ServiceCompositeInstance">
        <generalization xmi:type="uml:Generalization" xmi:id="_pmW5MKuDEeiRK6iIVq4LZA" general="_HFfXUD0QEeiWMf5FLWfdLA"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_-s0pczJ2Eem5adcA1c6ckw" name="_resourceInstance" association="_-s0pcDJ2Eem5adcA1c6ckw">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Al8JkEYzEem7INgoaq_j-g" annotatedElement="_-s0pczJ2Eem5adcA1c6ckw">
            <body>Resource instance components of constituting a service instance.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Resource.uml#_hZfC0DEkEemRSoIWRX3jNw"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_-s0pdTJ2Eem5adcA1c6ckw"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_-s0pdjJ2Eem5adcA1c6ckw" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_UWL1gMDfEeiebIKjAGZWdA" name="ServiceCharacteristic">
        <ownedComment xmi:type="uml:Comment" xmi:id="_pdNhcFuREemhIbrwQ6FkuQ" annotatedElement="_UWL1gMDfEeiebIKjAGZWdA">
          <body>A quality or distinctive feature that defines an entity, including the name of this feature (attribute), and the type of the actual value.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_gEq14MDfEeiebIKjAGZWdA" name="name">
          <ownedComment xmi:type="uml:Comment" xmi:id="_v4hKQFuMEemhIbrwQ6FkuQ" annotatedElement="_gEq14MDfEeiebIKjAGZWdA">
            <body>Name of dynamic characteristic (attribute).</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_j0sK4MDfEeiebIKjAGZWdA" name="valueType">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0B1JAFuMEemhIbrwQ6FkuQ" annotatedElement="_j0sK4MDfEeiebIKjAGZWdA">
            <body>Type of the dynamic characteristic value.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:StateMachine" xmi:id="_26_M0NB2EeijRJbJ9rGSQQ" name="OrderState">
        <region xmi:type="uml:Region" xmi:id="_4k5J4NB2EeijRJbJ9rGSQQ" name="Region1">
          <transition xmi:type="uml:Transition" xmi:id="_dT8EsNB3EeijRJbJ9rGSQQ" source="_62pxINB2EeijRJbJ9rGSQQ" target="_WqfEcNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_rBKpsNB3EeijRJbJ9rGSQQ" name="YES" source="_WqfEcNB3EeijRJbJ9rGSQQ" target="_C02WwNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_yjZFANB3EeijRJbJ9rGSQQ" name="NO" source="_WqfEcNB3EeijRJbJ9rGSQQ" target="_EnO6YNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_CupLoNB4EeijRJbJ9rGSQQ" name="start order processing" source="_C02WwNB3EeijRJbJ9rGSQQ" target="_H6HAYNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_P3TD8NB4EeijRJbJ9rGSQQ" name="missing order data" source="_H6HAYNB3EeijRJbJ9rGSQQ" target="_F-vf4NB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_dtYqANB4EeijRJbJ9rGSQQ" name="order fall-out" source="_H6HAYNB3EeijRJbJ9rGSQQ" target="_J2M5oNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_ilj54NB4EeijRJbJ9rGSQQ" name="problem solved" source="_J2M5oNB3EeijRJbJ9rGSQQ" target="_H6HAYNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_kZYA4NB4EeijRJbJ9rGSQQ" name="order data supplied" source="_F-vf4NB3EeijRJbJ9rGSQQ" target="_H6HAYNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_2NgJ0NB4EeijRJbJ9rGSQQ" name="incomplete order" source="_F-vf4NB3EeijRJbJ9rGSQQ" target="_0L6FgNB4EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="__VsdYNB4EeijRJbJ9rGSQQ" name="blocking issue" source="_J2M5oNB3EeijRJbJ9rGSQQ" target="_0L6FgNB4EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_KqImENB5EeijRJbJ9rGSQQ" name="processing finished" source="_H6HAYNB3EeijRJbJ9rGSQQ" target="_LVBoENB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_OUf_ANB5EeijRJbJ9rGSQQ" name="processing failed" source="_H6HAYNB3EeijRJbJ9rGSQQ" target="_MVniYNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_YfvrANB5EeijRJbJ9rGSQQ" name="partial processing" source="_H6HAYNB3EeijRJbJ9rGSQQ" target="_PnHIUNB3EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_r7LI8NB5EeijRJbJ9rGSQQ" source="_EnO6YNB3EeijRJbJ9rGSQQ" target="_oESW8NB5EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_b3cKINB6EeijRJbJ9rGSQQ" source="_0L6FgNB4EeijRJbJ9rGSQQ" target="_oESW8NB5EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_gS9TMNB6EeijRJbJ9rGSQQ" source="_PnHIUNB3EeijRJbJ9rGSQQ" target="_oESW8NB5EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="_3xQakNCDEeijRJbJ9rGSQQ" source="_MVniYNB3EeijRJbJ9rGSQQ" target="_oESW8NB5EeijRJbJ9rGSQQ"/>
          <transition xmi:type="uml:Transition" xmi:id="__k7LMNCDEeijRJbJ9rGSQQ" source="_LVBoENB3EeijRJbJ9rGSQQ" target="_oESW8NB5EeijRJbJ9rGSQQ"/>
          <subvertex xmi:type="uml:Pseudostate" xmi:id="_62pxINB2EeijRJbJ9rGSQQ" name="Initial1"/>
          <subvertex xmi:type="uml:State" xmi:id="_C02WwNB3EeijRJbJ9rGSQQ" name="Acknowledged"/>
          <subvertex xmi:type="uml:State" xmi:id="_EnO6YNB3EeijRJbJ9rGSQQ" name="Rejected"/>
          <subvertex xmi:type="uml:State" xmi:id="_F-vf4NB3EeijRJbJ9rGSQQ" name="Pending"/>
          <subvertex xmi:type="uml:State" xmi:id="_H6HAYNB3EeijRJbJ9rGSQQ" name="InProgress"/>
          <subvertex xmi:type="uml:State" xmi:id="_J2M5oNB3EeijRJbJ9rGSQQ" name="Held"/>
          <subvertex xmi:type="uml:State" xmi:id="_LVBoENB3EeijRJbJ9rGSQQ" name="Completed"/>
          <subvertex xmi:type="uml:State" xmi:id="_MVniYNB3EeijRJbJ9rGSQQ" name="Failed"/>
          <subvertex xmi:type="uml:State" xmi:id="_PnHIUNB3EeijRJbJ9rGSQQ" name="Partial"/>
          <subvertex xmi:type="uml:Pseudostate" xmi:id="_WqfEcNB3EeijRJbJ9rGSQQ" name="Accept Order" kind="choice"/>
          <subvertex xmi:type="uml:State" xmi:id="_0L6FgNB4EeijRJbJ9rGSQQ" name="Cancelled"/>
          <subvertex xmi:type="uml:FinalState" xmi:id="_oESW8NB5EeijRJbJ9rGSQQ" name="Final"/>
        </region>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_HFmo4MDiEeiebIKjAGZWdA" name="Value">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1_pvIMGSEeiS695oPTRE1Q" name="value">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nT4ykMHEEeiS695oPTRE1Q" annotatedElement="_1_pvIMGSEeiS695oPTRE1Q">
            <body>The value of a given ServiceCharacteristic</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_ztURIEYNEem7INgoaq_j-g">
            <body>The value of a given ServiceCharacteristic</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_45TagDzEEeiWMf5FLWfdLA" name="Sapd">
        <ownedComment xmi:type="uml:Comment" xmi:id="_45TagTzEEeiWMf5FLWfdLA" annotatedElement="_45TagDzEEeiWMf5FLWfdLA">
          <body>The SAPD class specifies the information used to instantiate the service access points of an NS. A Sapd inherits from the Cpd class. All attributes of the Cpd are also attributes of the Sapd.</body>
        </ownedComment>
        <generalization xmi:type="uml:Generalization" xmi:id="_TsplgD2nEeiu6I5JfRTxxQ">
          <general xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
        </generalization>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45TagzzEEeiWMf5FLWfdLA" name="sapAddressAssignment">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45TahDzEEeiWMf5FLWfdLA" annotatedElement="_45TagzzEEeiWMf5FLWfdLA">
            <body>Specify whether the SAP address assignment is under the responsibility of management and orchestration functions or not. &#xD;
If it is set to True, management and orchestration functions are responsible for assigning addresses to the access points instantiated from this SAPD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Boolean"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_45TahTzEEeiWMf5FLWfdLA" name="associatedCpdId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_45TahjzEEeiWMf5FLWfdLA" annotatedElement="_45TahTzEEeiWMf5FLWfdLA">
            <body>References the descriptor of VNF or PNF external connection points the SAPs instantiated from this SAPD are mapped to. </body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Common.uml#_7pUNEDa7EeivvI-m1BaAbA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_45TahzzEEeiWMf5FLWfdLA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_45TaiDzEEeiWMf5FLWfdLA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_KDyg0JmcEeiSm9XNElOsxQ" name="nsVirtualLinkDescId" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QkChwJmcEeiSm9XNElOsxQ" annotatedElement="_KDyg0JmcEeiSm9XNElOsxQ">
            <body>References the descriptor of the NS VL instance to which the SAP instantiated from this SAPD connects to.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Ns.uml#_13WFYDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_SJxwgJmcEeiSm9XNElOsxQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_SKT8AJmcEeiSm9XNElOsxQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_W1wF4OgIEeiNE-az-riPDQ" name="InternalServiceDescriptor">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_NGtQ4-gMEeiNE-az-riPDQ" name="globaltype" type="_5Tkk8OgIEeiNE-az-riPDQ" aggregation="shared" association="_NGtQ4OgMEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_NG3B4OgMEeiNE-az-riPDQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_NG3B4egMEeiNE-az-riPDQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_za16M-gMEeiNE-az-riPDQ" name="customizedtype" type="_7Y7u8OgIEeiNE-az-riPDQ" aggregation="shared" association="_za16MOgMEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_za_rMOgMEeiNE-az-riPDQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_za_rMegMEeiNE-az-riPDQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_l1QY0-gNEeiNE-az-riPDQ" name="resourcedescriptor" association="_l1QY0OgNEeiNE-az-riPDQ">
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_l1Y7sOgNEeiNE-az-riPDQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_l1Y7segNEeiNE-az-riPDQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_3c92Y-gNEeiNE-az-riPDQ" name="serviceinstance" type="_HFfXUD0QEeiWMf5FLWfdLA" aggregation="shared" association="_3c92YOgNEeiNE-az-riPDQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_3c92ZegNEeiNE-az-riPDQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_3c92ZugNEeiNE-az-riPDQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_hhVcI-uoEeiSZPIvixpf_Q" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_hhVcIOuoEeiSZPIvixpf_Q">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hhVcJeuoEeiSZPIvixpf_Q"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hhVcJuuoEeiSZPIvixpf_Q" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OdfSwOvfEeiEwrkYFEP6YA" name="invariantUuid" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_OdfSwevfEeiEwrkYFEP6YA" annotatedElement="_OdfSwOvfEeiEwrkYFEP6YA">
            <body> Constant identifier of the service model.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_YQwQ0D0NEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_RANuMOvfEeiEwrkYFEP6YA" name="uuid" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RANuMevfEeiEwrkYFEP6YA" annotatedElement="_RANuMOvfEeiEwrkYFEP6YA">
            <body>Versioned identifier of the service model (this uuid is changed for every major version of the service)</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_YQwQ0D0NEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_SdAKYOvhEeiEwrkYFEP6YA" name="name" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_SdAKYevhEeiEwrkYFEP6YA" annotatedElement="_SdAKYOvhEeiEwrkYFEP6YA">
            <body>The name of the service model designed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_WD0gEOvhEeiEwrkYFEP6YA" name="description" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_WD0gEevhEeiEwrkYFEP6YA" annotatedElement="_WD0gEOvhEeiEwrkYFEP6YA">
            <body>The description of the service model designed.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_82uooOyoEeiEwrkYFEP6YA" name="category" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_82uooeyoEeiEwrkYFEP6YA" annotatedElement="_82uooOyoEeiEwrkYFEP6YA">
            <body>A predefined list which identifies the construct's category. There is a predefined list of service categories.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_82uoouyoEeiEwrkYFEP6YA" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_82uoo-yoEeiEwrkYFEP6YA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_oYJgwPLsEeiazPylpq3fUA" name="version" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_oYJgwfLsEeiazPylpq3fUA" annotatedElement="_oYJgwPLsEeiazPylpq3fUA">
            <body>The service model version.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_p4kxsPLsEeiazPylpq3fUA" name="serviceType" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_p4kxsfLsEeiazPylpq3fUA" annotatedElement="_p4kxsPLsEeiazPylpq3fUA">
            <body>An optional string field defining a generic type (like category) of the service. E.g. this field can be used for defining the service as “TRANSPORT”.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_q6RfQPLsEeiazPylpq3fUA" name="serviceRole" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_q6RfQfLsEeiazPylpq3fUA" annotatedElement="_q6RfQPLsEeiazPylpq3fUA">
            <body>An optional string field for shortcode that defines the function that the service is providing. E.g. “MISVPN” or “AIM”.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_q6RfQvLsEeiazPylpq3fUA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_q6RfQ_LsEeiazPylpq3fUA" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_sMhxUPLsEeiazPylpq3fUA" name="icon" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_sMhxUfLsEeiazPylpq3fUA" annotatedElement="_sMhxUPLsEeiazPylpq3fUA">
            <body>The icon path of the service.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_krzOAPLwEeiazPylpq3fUA" name="ProviderDetails"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IkER0PLxEeiazPylpq3fUA" name="SLA">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OHUfAPLxEeiazPylpq3fUA" name="bandwith">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_F7mhIPL5EeiazPylpq3fUA" name="QoS">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MbCpwPL5EeiazPylpq3fUA" name="serviceLevel"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_va498Bg_EembeqMx64UEWQ" name="resourcedesc (resourcespecification)" association="_vaul4Bg_EembeqMx64UEWQ">
          <type xmi:type="uml:Class" href="Resource.uml#_DAQisJpXEeidy9iGT_F5-w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_va6zIBg_EembeqMx64UEWQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_va7aMBg_EembeqMx64UEWQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_zSX3gOgIEeiNE-az-riPDQ" name="OnboardNSDescriptor">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_E9fK4OvZEeiEwrkYFEP6YA" name="nsdIdentifier">
          <ownedComment xmi:type="uml:Comment" xmi:id="_E9fK4evZEeiEwrkYFEP6YA" annotatedElement="_E9fK4OvZEeiEwrkYFEP6YA">
            <body>Identifier of this NSD class. It globally uniquely identifies an instance of the NSD</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Muh98OvcEeiEwrkYFEP6YA" name="designer">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Muh98evcEeiEwrkYFEP6YA" annotatedElement="_Muh98OvcEeiEwrkYFEP6YA">
            <body>Identifies the designer of the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_OJk_oOvcEeiEwrkYFEP6YA" name="version">
          <ownedComment xmi:type="uml:Comment" xmi:id="_OJk_oevcEeiEwrkYFEP6YA" annotatedElement="_OJk_oOvcEeiEwrkYFEP6YA">
            <body>Identifies the version of the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_oXexoD2uEeiu6I5JfRTxxQ"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PQXBgOvcEeiEwrkYFEP6YA" name="nsdName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_PQXBgevcEeiEwrkYFEP6YA" annotatedElement="_PQXBgOvcEeiEwrkYFEP6YA">
            <body>Provides the human readable name of the NSD.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_QiUYoOvcEeiEwrkYFEP6YA" name="nsdInvariantId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_QiUYoevcEeiEwrkYFEP6YA" annotatedElement="_QiUYoOvcEeiEwrkYFEP6YA">
            <body>Identifies an NSD in a version independent manner. This attribute is invariant across versions of NSD.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_RtkDwOvcEeiEwrkYFEP6YA" name="autoScalingRule">
          <ownedComment xmi:type="uml:Comment" xmi:id="_RtkDwevcEeiEwrkYFEP6YA" annotatedElement="_RtkDwOvcEeiEwrkYFEP6YA">
            <body>Specifies a rule to trigger a scaling action on a NS instantiated according to the NSD.&#xD;
NOTE 1: 	The rule is based on a combination of assertions on the values of virtualised resource-related performance metrics and VNF Indicators identified by the monitoredInfo attribute.&#xD;
NOTE 2: 	There may be multiple data sources (each identified as monitoredInfo) per rule&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="Common.uml#_8rNJgD2uEeiu6I5JfRTxxQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_RtkDwuvcEeiEwrkYFEP6YA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_RtkDw-vcEeiEwrkYFEP6YA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_TGYQ0OvcEeiEwrkYFEP6YA" name="monitoredInfo" visibility="public">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TGYQ0evcEeiEwrkYFEP6YA" annotatedElement="_TGYQ0OvcEeiEwrkYFEP6YA">
            <body>Identifies either a virtualised resource-related performance metric or a VNF Indicator.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Ns.uml#_kEZoSDzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_TGYQ0uvcEeiEwrkYFEP6YA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_TGYQ0-vcEeiEwrkYFEP6YA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_UC3uQOvcEeiEwrkYFEP6YA" name="lifeCycleManagementScript">
          <ownedComment xmi:type="uml:Comment" xmi:id="_UC3uQevcEeiEwrkYFEP6YA" annotatedElement="_UC3uQOvcEeiEwrkYFEP6YA">
            <body>Provides a life cycle management script written in a Domain Specific Language (DSL).</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Ns.uml#_kEaPVjzEEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_UC3uQuvcEeiEwrkYFEP6YA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_UC3uQ-vcEeiEwrkYFEP6YA" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_XE8MMvLvEeiazPylpq3fUA" name="internalservicedescriptor" type="_W1wF4OgIEeiNE-az-riPDQ" association="_XEzCQPLvEeiazPylpq3fUA">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_XE8MNPLvEeiazPylpq3fUA"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_XE8MNfLvEeiazPylpq3fUA" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_5Tkk8OgIEeiNE-az-riPDQ" name="GlobalType"/>
      <packagedElement xmi:type="uml:Class" xmi:id="_7Y7u8OgIEeiNE-az-riPDQ" name="CustomizedType"/>
      <packagedElement xmi:type="uml:Class" xmi:id="_uOXPwPL4EeiazPylpq3fUA" name="sliceProfile?"/>
      <packagedElement xmi:type="uml:Class" xmi:id="_1WWbsDzFEeiWMf5FLWfdLA" name="NetworkServiceInstance">
        <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbsTzFEeiWMf5FLWfdLA" annotatedElement="_1WWbsDzFEeiWMf5FLWfdLA">
          <body>A composition of Network Functions and defined by its functional and behavioural specification. &#xD;
NOTE: The Network Service (NS) contributes to the behaviour of the higher layer service, which is characterized by at least performance, dependability, and security specifications. The end-to-end network service behaviour is the result of the combination of the individual network function behaviours as well as the behaviours of the network infrastructure composition mechanism.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WWbsjzFEeiWMf5FLWfdLA" name="nsInstanceId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbszzFEeiWMf5FLWfdLA" annotatedElement="_1WWbsjzFEeiWMf5FLWfdLA">
            <body>Identifier of this NetworkService, identifying the NS instance.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WWbtDzFEeiWMf5FLWfdLA" name="nsName">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbtTzFEeiWMf5FLWfdLA" annotatedElement="_1WWbtDzFEeiWMf5FLWfdLA">
            <body>Human readable name of the NS instance.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_1WWbtjzFEeiWMf5FLWfdLA" name="description">
          <ownedComment xmi:type="uml:Comment" xmi:id="_1WWbtzzFEeiWMf5FLWfdLA" annotatedElement="_1WWbtjzFEeiWMf5FLWfdLA">
            <body>Human readable description of the NS instance</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_fJyE4ESyEeiVGPeZpaYNtQ" name="_nf" aggregation="shared" association="_fHipMESyEeiVGPeZpaYNtQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_m4JFcES3EeiVGPeZpaYNtQ" annotatedElement="_fJyE4ESyEeiVGPeZpaYNtQ">
            <body>Reference to consistituent VNFs and PNFs on this NS.&#xD;
NOTE: Cardinality of zero is only valid for a non-instantiated NS.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Nf.uml#_VtzSoESyEeiVGPeZpaYNtQ"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_fKR0IESyEeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_fKf2kESyEeiVGPeZpaYNtQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_y4vGUUSzEeiVGPeZpaYNtQ" name="_nsVirtualLink" aggregation="composite" association="_y4VdsESzEeiVGPeZpaYNtQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_q9a4wES3EeiVGPeZpaYNtQ" annotatedElement="_y4vGUUSzEeiVGPeZpaYNtQ">
            <body>Information on the VLs of this NS.&#xD;
NOTE: Cardinality of zero is only valid for a non-instantiated NS.&#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Ns.uml#_6GPSQDzFEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_y4-98ESzEeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_y5PcoESzEeiVGPeZpaYNtQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_MCMWsES3EeiVGPeZpaYNtQ" name="_sap" type="_1Wb7QDzFEeiWMf5FLWfdLA" aggregation="composite" association="_MCJ6cES3EeiVGPeZpaYNtQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_ucMswES3EeiVGPeZpaYNtQ" annotatedElement="_MCMWsES3EeiVGPeZpaYNtQ">
            <body>Information on the SAPs of this NS.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_MCOL4ES3EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_MCOy8ES3EeiVGPeZpaYNtQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_zHBdIUS3EeiVGPeZpaYNtQ" name="_nestedNsi" type="_1WWbsDzFEeiWMf5FLWfdLA" aggregation="shared" association="_zG_A4ES3EeiVGPeZpaYNtQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_MWzfUES4EeiVGPeZpaYNtQ" annotatedElement="_zHBdIUS3EeiVGPeZpaYNtQ">
            <body>Reference to information on nested NSs of this NS.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zHTJ8ES3EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zHeJEES3EeiVGPeZpaYNtQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bnAS8kS4EeiVGPeZpaYNtQ" name="_vnffg" aggregation="composite" association="_bm_E0ES4EeiVGPeZpaYNtQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_zppMkES4EeiVGPeZpaYNtQ" annotatedElement="_bnAS8kS4EeiVGPeZpaYNtQ">
            <body>Information on the VNFFGs of this NS.</body>
          </ownedComment>
          <type xmi:type="uml:Class" href="Vnf.uml#_1WdwcDzFEeiWMf5FLWfdLA"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_bnGZkES4EeiVGPeZpaYNtQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_bnGZkUS4EeiVGPeZpaYNtQ" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_tJhnkLdZEemG6epU56F5-w" name="BBSProperties">
        <ownedComment xmi:type="uml:Comment" xmi:id="_fQgAMLgzEem9SoGzhP7GLQ" annotatedElement="_tJhnkLdZEemG6epU56F5-w">
          <body>A set of BBS case specific properties information, which are needed for BBS service with the function realization. </body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_rS7SULdZEemG6epU56F5-w" name="NetworkSlicingProperties">
        <ownedComment xmi:type="uml:Comment" xmi:id="_aHk-kLgzEem9SoGzhP7GLQ" annotatedElement="_rS7SULdZEemG6epU56F5-w">
          <body>A set of Slicing case specific properties information, which are needed for network slicing service with the function realization. </body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_qL1j0LgcEem9SoGzhP7GLQ" name="propertiesId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_qL1j0bgcEem9SoGzhP7GLQ" annotatedElement="_qL1j0LgcEem9SoGzhP7GLQ">
            <body>A unique identifier of property of network slice related requirement should be supported by the network slice instance.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YGOMLgcEem9SoGzhP7GLQ" name="perfReq" type="_-BN-YLgSEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YGOMbgcEem9SoGzhP7GLQ" annotatedElement="_4YGOMLgcEem9SoGzhP7GLQ">
            <body>This parameter specifies the requirements to the NSI in terms of the scenarios defined in the TS 22.261 [28], such as Experienced data rate, Area traffic capacity (density) information of UE density.</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YGOMrgcEem9SoGzhP7GLQ" annotatedElement="_4YGOMLgcEem9SoGzhP7GLQ">
            <body>It is a structure containing the following elements:&#xD;
-	list of perfRequirements&#xD;
Depending on the sST value, the list of perfRequirements will be&#xD;
-	list of eMBBPerfReq&#xD;
or&#xD;
-	list of uRLLCPerfReq&#xD;
or&#xD;
-	list of mIoTPerfReq&#xD;
NOTE: the list of mIoTPerfReq is not addressed in the present document.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4YGOM7gcEem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4YGONLgcEem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YGONrgcEem9SoGzhP7GLQ" name="sNSSAIList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YGON7gcEem9SoGzhP7GLQ" annotatedElement="_4YGONrgcEem9SoGzhP7GLQ">
            <body>This parameter specifies the S-NSSAI list to be supported by the new NSI to be created or the existing NSI to be re-used.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YGOObgcEem9SoGzhP7GLQ" name="resourceSharingLevel" type="_MDy5kLgZEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YGOOrgcEem9SoGzhP7GLQ" annotatedElement="_4YGOObgcEem9SoGzhP7GLQ">
            <body>An attribute specifies whether the resources to be allocated to the network slice instance may be shared with another network slice instance(s).&#xD;
AllowedValues: shared, non-shared.&#xD;
</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YGOPLgcEem9SoGzhP7GLQ" name="maxNumberofUEs">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YGOPbgcEem9SoGzhP7GLQ" annotatedElement="_4YGOPLgcEem9SoGzhP7GLQ">
            <body>An attribute specifies the maximum number of UEs may simultaneously access the network slice instance.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4YGOPrgcEem9SoGzhP7GLQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4YGOP7gcEem9SoGzhP7GLQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YGOQbgcEem9SoGzhP7GLQ" name="sST">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YGOQrgcEem9SoGzhP7GLQ" annotatedElement="_4YGOQbgcEem9SoGzhP7GLQ">
            <body>This parameter specifies the slice/service type for a ServiceProfile.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_QxdlwLgdEem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_QxjsYLgdEem9SoGzhP7GLQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YMU0bgcEem9SoGzhP7GLQ" name="latency">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YMU0rgcEem9SoGzhP7GLQ" annotatedElement="_4YMU0bgcEem9SoGzhP7GLQ">
            <body>An attribute specifies the packet transmission latency (millisecond) through the RAN, CN, and TN part of 5G network and is used to evaluate utilization performance of the end-to-end network slice instance.  See clause 6.3.1 of 28.554.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YMU1LgcEem9SoGzhP7GLQ" name="pLMNIdList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YMU1bgcEem9SoGzhP7GLQ" annotatedElement="_4YMU1LgcEem9SoGzhP7GLQ">
            <body>List of unique identities for PLMN.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_V7yZ8Lg7Eem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_V74gkLg7Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YMU17gcEem9SoGzhP7GLQ" name="uEMobilityLevel" type="_sNGAALgTEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YMU2LgcEem9SoGzhP7GLQ" annotatedElement="_4YMU17gcEem9SoGzhP7GLQ">
            <body>An attribute specifies the mobility level of UE accessing the network slice instance. See 6.2.1 of TS 22.261.&#xD;
AllowedValues: stationary, nomadic, restricted mobility, fully mobility.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YMU2rgcEem9SoGzhP7GLQ" name="coverageAreaTAList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YMU27gcEem9SoGzhP7GLQ" annotatedElement="_4YMU2rgcEem9SoGzhP7GLQ">
            <body>An attribute specifies a list of TrackingAreas where the NSI can be selected.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_r7faMLg1Eem9SoGzhP7GLQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_r7lg0Lg1Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_4YMU3bgcEem9SoGzhP7GLQ" name="availability">
          <ownedComment xmi:type="uml:Comment" xmi:id="_4YMU3rgcEem9SoGzhP7GLQ" annotatedElement="_4YMU3bgcEem9SoGzhP7GLQ">
            <body>This parameter specifies the availability requirement for an network slice instance, expressed as a percentage. </body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EFloat"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_4YMU37gcEem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_4YMU4LgcEem9SoGzhP7GLQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_sR5G4LdXEemG6epU56F5-w" name="GST">
        <ownedComment xmi:type="uml:Comment" xmi:id="_ScQE8LdfEemG6epU56F5-w" annotatedElement="_sR5G4LdXEemG6epU56F5-w">
          <body>The set of GSMA defined GST properties for network slicing service fuction realization.&#xD;
</body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_4dD4sLdWEemG6epU56F5-w" name="3GPPSliceProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_Jpl8gLdfEemG6epU56F5-w" annotatedElement="_4dD4sLdWEemG6epU56F5-w">
          <body>The set of 3GPP defined SliceProfile for network slicing subnet service fuction realization.&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_VFsicLgaEem9SoGzhP7GLQ" name="sliceProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_rc_LMLgzEem9SoGzhP7GLQ" annotatedElement="_VFsicLgaEem9SoGzhP7GLQ">
            <body>A unique identifier of the property of network slice subnet related requirement should be supported by the network slice subnet instance.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZdKxoLgdEem9SoGzhP7GLQ" name="nSSSNSSAIList"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_ZxMg4LgdEem9SoGzhP7GLQ" name="nSSPLMNIdList">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_9pO_kLg7Eem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_9pbM0Lg7Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_aJCZILgdEem9SoGzhP7GLQ" name="nSSPerfReq" type="_-BN-YLgSEem9SoGzhP7GLQ">
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_cRUjMLg8Eem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_cRgwcLg8Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_afETgLgdEem9SoGzhP7GLQ" name="nSSMaxNumberofUEs">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_awtdILgdEem9SoGzhP7GLQ" name="nSSCoverageAreaTALis">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_wTTH8Lg1Eem9SoGzhP7GLQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_wTZOkLg1Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bCWmwLgdEem9SoGzhP7GLQ" name="nSSLatency">
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_bWNW4LgdEem9SoGzhP7GLQ" name="nSSUEMobilityLevel" type="_sNGAALgTEem9SoGzhP7GLQ"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_cpT9gLgdEem9SoGzhP7GLQ" name="nSSResourceSharingLevel" type="_MDy5kLgZEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_bsU5YLg0Eem9SoGzhP7GLQ" annotatedElement="_cpT9gLgdEem9SoGzhP7GLQ">
            <body>An attribute specifies whether the resources to be allocated to the network slice subnet instance may be shared with another network slice subnet instance(s).&#xD;
AllowedValues: shared, non-shared.&#xD;
</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_4CcZQLdWEemG6epU56F5-w" name="3GPPServiceProfile">
        <ownedComment xmi:type="uml:Comment" xmi:id="_4rzlsLdeEemG6epU56F5-w" annotatedElement="_4CcZQLdWEemG6epU56F5-w">
          <body>The set of 3GPP defined ServiceProfile for network slicing service function realization.&#xD;
</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_GgGmkLdgEemG6epU56F5-w" name="serviceProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="__6w4ALdkEemG6epU56F5-w" annotatedElement="_GgGmkLdgEemG6epU56F5-w">
            <body>A unique identifier of property of network slice related requirement should be supported by the network slice instance.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_AuYtcDkBEeiWMf5FLWfdLA"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_G3tOQLdgEemG6epU56F5-w" name="nSSNSSAIList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_65TbMLdiEemG6epU56F5-w" annotatedElement="_G3tOQLdgEemG6epU56F5-w">
            <body>This parameter specifies the S-NSSAI list to be supported by the new NSI to be created or the existing NSI to be re-used.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_HQqg0LdgEemG6epU56F5-w" name="nSPLMNIdList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_blHCsLdmEemG6epU56F5-w" annotatedElement="_HQqg0LdgEemG6epU56F5-w">
            <body>List of unique identities for PLMN.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_5ZiE8Lg7Eem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_5ZiE8bg7Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Hmp-8LdgEemG6epU56F5-w" name="nSPerfReq" type="_-BN-YLgSEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Fn6oELdlEemG6epU56F5-w" annotatedElement="_Hmp-8LdgEemG6epU56F5-w">
            <body>This parameter specifies the requirements to the NSI in terms of the scenarios defined in the TS 22.261 [28], such as Experienced data rate, Area traffic capacity (density) information of UE density.</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_6PbHwLgSEem9SoGzhP7GLQ" annotatedElement="_Hmp-8LdgEemG6epU56F5-w">
            <body>It is a structure containing the following elements:&#xD;
-	list of perfRequirements&#xD;
Depending on the sST value, the list of perfRequirements will be&#xD;
-	list of eMBBPerfReq&#xD;
or&#xD;
-	list of uRLLCPerfReq&#xD;
or&#xD;
-	list of mIoTPerfReq&#xD;
NOTE: the list of mIoTPerfReq is not addressed in the present document.&#xD;
</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_leSW8LgZEem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_leYdkLgZEem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_H8iIULdgEemG6epU56F5-w" name="nSMaxNumberofUEs">
          <ownedComment xmi:type="uml:Comment" xmi:id="_LVpm8LdlEemG6epU56F5-w" annotatedElement="_H8iIULdgEemG6epU56F5-w">
            <body>An attribute specifies the maximum number of UEs may simultaneously access the network slice instance.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_rH0yULgZEem9SoGzhP7GLQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_rH98QLgZEem9SoGzhP7GLQ" value="1"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_IS-5cLdgEemG6epU56F5-w" name="nSCoverageAreaTAList">
          <ownedComment xmi:type="uml:Comment" xmi:id="_nJJR4Lf7Eem9SoGzhP7GLQ" annotatedElement="_IS-5cLdgEemG6epU56F5-w">
            <body>An attribute specifies a list of TrackingAreas where the NSI can be selected.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_uIQMsLg1Eem9SoGzhP7GLQ" value="1"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_uIcZ8Lg1Eem9SoGzhP7GLQ" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_Iq2m4LdgEemG6epU56F5-w" name="nSLatency">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Q8O08LdlEemG6epU56F5-w" annotatedElement="_Iq2m4LdgEemG6epU56F5-w">
            <body>An attribute specifies the packet transmission latency (millisecond) through the RAN, CN, and TN part of 5G network and is used to evaluate utilization performance of the end-to-end network slice instance.  See clause 6.3.1 of 28.554.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_I8bfELdgEemG6epU56F5-w" name="nSUEMobilityLevel" type="_sNGAALgTEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="_TJrj8LdlEemG6epU56F5-w" annotatedElement="_I8bfELdgEemG6epU56F5-w">
            <body>An attribute specifies the mobility level of UE accessing the network slice instance. See 6.2.1 of TS 22.261.&#xD;
AllowedValues: stationary, nomadic, restricted mobility, fully mobility.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_JNJboLdgEemG6epU56F5-w" name="nSResourceSharingLevel" type="_MDy5kLgZEem9SoGzhP7GLQ">
          <ownedComment xmi:type="uml:Comment" xmi:id="__TsxYLf7Eem9SoGzhP7GLQ" annotatedElement="_JNJboLdgEemG6epU56F5-w">
            <body>An attribute specifies whether the resources to be allocated to the network slice instance may be shared with another network slice instance(s).&#xD;
AllowedValues: shared, non-shared.&#xD;
</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mCRM0LdgEemG6epU56F5-w" name="sST">
          <ownedComment xmi:type="uml:Comment" xmi:id="_Y5OgsLdlEemG6epU56F5-w" annotatedElement="_mCRM0LdgEemG6epU56F5-w">
            <body>This parameter specifies the slice/service type for a ServiceProfile.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#Integer"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_mZZTYLdgEemG6epU56F5-w" name="availability">
          <ownedComment xmi:type="uml:Comment" xmi:id="_er4twLdjEemG6epU56F5-w" annotatedElement="_mZZTYLdgEemG6epU56F5-w">
            <body>This parameter specifies the availability requirement for an network slice instance, expressed as a percentage. </body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EFloat"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_hWQKkLgZEem9SoGzhP7GLQ"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_hWWRMLgZEem9SoGzhP7GLQ" value="1"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_3s_tsLdWEemG6epU56F5-w" name="CcvpnProperties">
        <ownedComment xmi:type="uml:Comment" xmi:id="_J3ENQLdeEemG6epU56F5-w" annotatedElement="_3s_tsLdWEemG6epU56F5-w">
          <body>A set of CCVPN case specific properties information, which are needed for CCVPN service with the function realization. </body>
        </ownedComment>
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="_WNfqILcsEemG6epU56F5-w" name="CcvpnProperties">
        <ownedComment xmi:type="uml:Comment" xmi:id="_AEjfcLdgEemG6epU56F5-w" annotatedElement="_WNfqILcsEemG6epU56F5-w">
          <body>A set of CCVPN case specific properties information, which are needed for CCVPN service with the function realization. </body>
        </ownedComment>
      </packagedElement>
    </packagedElement>
    <packagedElement xmi:type="uml:Package" xmi:id="_fXObEDOHEei5Af8DcjrhIQ" name="TypeDefinitions">
      <packagedElement xmi:type="uml:DataType" xmi:id="_kEZoxzzEEeiWMf5FLWfdLA" name="VirtualLinkToLevelMapping">
        <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoyDzEEeiWMf5FLWfdLA" annotatedElement="_kEZoxzzEEeiWMf5FLWfdLA">
          <body>The VirtualLinkToLevelMapping datatype specifies the profile to be used for a VL involved in a given NS level and bitrate requirements.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoyTzEEeiWMf5FLWfdLA" name="virtualLinkProfileId">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZoyjzEEeiWMf5FLWfdLA" annotatedElement="_kEZoyTzEEeiWMf5FLWfdLA">
            <body>Identifies the profile to be used for a VL involved in an NS level.</body>
          </ownedComment>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_kEZoyzzEEeiWMf5FLWfdLA" name="bitRateRequirements">
          <ownedComment xmi:type="uml:Comment" xmi:id="_kEZozDzEEeiWMf5FLWfdLA" annotatedElement="_kEZoyzzEEeiWMf5FLWfdLA">
            <body>Specifies the bit rate requirements for the NS level.&#xD;
NOTE: 	It shall be in the range of minBitrateRequirements - maxBitrateRequirements, as specified in the referenced VirtualLinkProfile.</body>
          </ownedComment>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_3a0cEI6OEeiLSKWGMeE9mQ" name="OrderState">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_7KgZ4I6OEeiLSKWGMeE9mQ" name="ACKNOWLEDGED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_9e8hsI6OEeiLSKWGMeE9mQ" name="IN_PROGRESS"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_A5qVEI6PEeiLSKWGMeE9mQ" name="PENDING"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_CIzBsI6PEeiLSKWGMeE9mQ" name="HELD"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Ded0II6PEeiLSKWGMeE9mQ" name="CANCELLED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_EoLOMI6PEeiLSKWGMeE9mQ" name="COMPLETED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_GBApYI6PEeiLSKWGMeE9mQ" name="FAILED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_HE9ZsI6PEeiLSKWGMeE9mQ" name="PARTIAL"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_JHmm4I6PEeiLSKWGMeE9mQ" name="REJECTED"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_RZ1sQJAjEei1uKE-hf_HvQ" name="TimePeriod">
        <ownedComment xmi:type="uml:Comment" xmi:id="_5k0icJAjEei1uKE-hf_HvQ" annotatedElement="_RZ1sQJAjEei1uKE-hf_HvQ">
          <body>A base / value business entity used to represent a period of time, between two timepoints</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_WjFeAJAjEei1uKE-hf_HvQ" name="startDateTime">
          <ownedComment xmi:type="uml:Comment" xmi:id="_xD1Y0JAjEei1uKE-hf_HvQ" annotatedElement="_WjFeAJAjEei1uKE-hf_HvQ">
            <body>An instant of time, starting at the TimePeriod&#xD;
&#xD;
Notes:&#xD;
If null, then represents to the beginning of time</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_YZov8JAjEei1uKE-hf_HvQ" name="endDateTime">
          <ownedComment xmi:type="uml:Comment" xmi:id="_yuinIJAjEei1uKE-hf_HvQ" annotatedElement="_YZov8JAjEei1uKE-hf_HvQ">
            <body>An instant of time, ending at the TimePeriod:&#xD;
&#xD;
Notes:&#xD;
If null, then represents to the end of time&#xD;
 &#xD;
</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/EcorePrimitiveTypes.library.uml#EDate"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_pWPaEMA-Eei02ItngDf4ZA" name="Action">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_t-VmkMA-Eei02ItngDf4ZA" name="ADD"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_vKPZAMA-Eei02ItngDf4ZA" name="MODIFY"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_wjzM8MA-Eei02ItngDf4ZA" name="DELETE"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_yj4OUMA-Eei02ItngDf4ZA" name="NO_CHANGE"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_DwZV4LwnEeifWa7EkiXrHA" name="OrderPriority">
        <ownedComment xmi:type="uml:Comment" xmi:id="_ShbhQLwnEeifWa7EkiXrHA" annotatedElement="_DwZV4LwnEeifWa7EkiXrHA">
          <body>A way that can be used by order requester to prioritize orders in Service Order Management system (from 0 to 4: 0 is the highest priority, and 4 the lowest). It could be for example valued by BSS based on customer order requested priority.</body>
        </ownedComment>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_I95VgLwnEeifWa7EkiXrHA" name="0"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_JzrG8LwnEeifWa7EkiXrHA" name="1"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_K5KvYLwnEeifWa7EkiXrHA" name="2"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_LyHJkLwnEeifWa7EkiXrHA" name="3"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_M98qkLwnEeifWa7EkiXrHA" name="4"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_l9rd4PL2EeiazPylpq3fUA" name="ProviderDetails">
        <ownedAttribute xmi:type="uml:Property" xmi:id="_swQIcPL3EeiazPylpq3fUA" name="nsdInvariantid"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_w32P8PL3EeiazPylpq3fUA" name="nsPackageId"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_L4ZFIPL4EeiazPylpq3fUA" name="nsdId"/>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_PXXtcPL4EeiazPylpq3fUA" name="productName"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_QsPsoF0aEemiOP02o5T8tA" name="ServiceLifecycleManagementScript">
        <ownedComment xmi:type="uml:Comment" xmi:id="_hM4AwId0Eemz_I38RrvOQg" annotatedElement="_QsPsoF0aEemiOP02o5T8tA">
          <body>The LifeCycleManagementScript information element specifies a script for the service.</body>
        </ownedComment>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_DW2osIdzEemz_I38RrvOQg" name="event" type="_gFg8sF0aEemiOP02o5T8tA">
          <ownedComment xmi:type="uml:Comment" xmi:id="_vQxHYId2Eemz_I38RrvOQg" annotatedElement="_DW2osIdzEemz_I38RrvOQg">
            <body>Describes Service lifecycle event(s) or an external stimulus detected on an orchestrator &#xD;
reference point.</body>
          </ownedComment>
          <ownedComment xmi:type="uml:Comment" xmi:id="_656UwId2Eemz_I38RrvOQg">
            <body>Describes Service lifecycle event(s) or an external stimulus detected on an orchestrator &#xD;
reference point.</body>
          </ownedComment>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_imXt0Id1Eemz_I38RrvOQg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_iqwekId1Eemz_I38RrvOQg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_VmInIId0Eemz_I38RrvOQg" name="lcmTransitionEvent">
          <ownedComment xmi:type="uml:Comment" xmi:id="_yPuL0Id2Eemz_I38RrvOQg" annotatedElement="_VmInIId0Eemz_I38RrvOQg">
            <body>Describes the transition Service lifecycle event(s) that cannot be mapped to any of the enumerated values defined for the event attribute.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="_zH1VAId1Eemz_I38RrvOQg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="_zIT2IId1Eemz_I38RrvOQg" value="*"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_XaAYgId0Eemz_I38RrvOQg" name="script">
          <ownedComment xmi:type="uml:Comment" xmi:id="_0xiBQId2Eemz_I38RrvOQg" annotatedElement="_XaAYgId0Eemz_I38RrvOQg">
            <body>Includes a Service LCM script (e.g. written in a DSL) triggered to react to one of the events listed in the event attribute.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_aBy6IId0Eemz_I38RrvOQg" name="scriptDsl">
          <ownedComment xmi:type="uml:Comment" xmi:id="_3XZQQId2Eemz_I38RrvOQg" annotatedElement="_aBy6IId0Eemz_I38RrvOQg">
            <body>Defines the domain specific language (i.e. the type) of script that is provided. Types of scripts could include bash, python, etc.</body>
          </ownedComment>
          <type xmi:type="uml:PrimitiveType" href="pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml#String"/>
        </ownedAttribute>
        <ownedAttribute xmi:type="uml:Property" xmi:id="_neWwcId1Eemz_I38RrvOQg" name="scriptInput">
          <ownedComment xmi:type="uml:Comment" xmi:id="_5nIeQId2Eemz_I38RrvOQg" annotatedElement="_neWwcId1Eemz_I38RrvOQg">
            <body>Array of KVP requirements with the key as the parameter name and the value as the parameter that need to be passed as an input to the script. Note: The scriptInput values are passed to the scripts in addition to the parameters received in the operation invocation request or indicator value change.</body>
          </ownedComment>
          <type xmi:type="uml:DataType" href="Common.uml#_vxJ9ADafEei23_xWdimG9w"/>
          <lowerValue xmi:type="uml:LiteralInteger" xmi:id="__sTiMId1Eemz_I38RrvOQg"/>
          <upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="__sr8sId1Eemz_I38RrvOQg" value="*"/>
        </ownedAttribute>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_gFg8sF0aEemiOP02o5T8tA" name="ServiceLcmEvent">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Dk8AoId2Eemz_I38RrvOQg" name="EVENT_START_DEPLOYMENT"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_EEH3AId2Eemz_I38RrvOQg" name="EVENT_END_DEPLOYMENT"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_EiQkgId2Eemz_I38RrvOQg" name="EVENT_START_CONFIGURATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_Fq3yYId2Eemz_I38RrvOQg" name="EVENT_END_CONFIGURATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_GUKnAId2Eemz_I38RrvOQg" name="EVENT_START_TERMINATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_H1LGwId2Eemz_I38RrvOQg" name="EVENT_END_TERMINATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_cZl7IId4Eemz_I38RrvOQg" name="EVENT_START_DEPLOYMENT"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_cymRAId4Eemz_I38RrvOQg" name="EVENT_END_DEPLOYMENT"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_dLlYwId4Eemz_I38RrvOQg" name="EVENT_START_CONFIGURATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_dlPO4Id4Eemz_I38RrvOQg" name="EVENT_END_CONFIGURATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_i4w-AId4Eemz_I38RrvOQg" name="EVENT_START_TERMINATION"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_jRV2EId4Eemz_I38RrvOQg" name="EVENT_END_TERMINATION"/>
      </packagedElement>
      <packagedElement xmi:type="uml:DataType" xmi:id="_-BN-YLgSEem9SoGzhP7GLQ" name="PerfReq"/>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_sNGAALgTEem9SoGzhP7GLQ" name="UEMobilityLevel">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_y_qgALgTEem9SoGzhP7GLQ" name="STATIONARY"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zTLR4LgTEem9SoGzhP7GLQ" name="NOMADIC"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_zoVpkLgTEem9SoGzhP7GLQ" name="RESTRICTED MOBILITY"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_4agl0LgYEem9SoGzhP7GLQ" name="FULLY MOBILITY"/>
      </packagedElement>
      <packagedElement xmi:type="uml:Enumeration" xmi:id="_MDy5kLgZEem9SoGzhP7GLQ" name="ResourceSharingLevel">
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_OwvA8LgZEem9SoGzhP7GLQ" name="SHARED"/>
        <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_PHpFELgZEem9SoGzhP7GLQ" name="NON-SHARED"/>
      </packagedElement>
    </packagedElement>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_ouVZoKVwEeikF6xsfT18UA">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_BdJm0DksEemjyLkBMGZA1g" source="PapyrusVersion">
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BdJm0TksEemjyLkBMGZA1g" key="Version" value="0.2.15"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BdJm0jksEemjyLkBMGZA1g" key="Comment" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BdJm0zksEemjyLkBMGZA1g" key="Copyright" value=""/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BdJm1DksEemjyLkBMGZA1g" key="Date" value="2019-02-25"/>
        <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_BdJm1TksEemjyLkBMGZA1g" key="Author" value=""/>
      </eAnnotations>
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_ouXO0KVwEeikF6xsfT18UA" source="http://www.eclipse.org/uml2/2.0.0/UML">
        <references xmi:type="ecore:EPackage" href="OpenModel_Profile.profile.uml#_2RzvwDkrEemjyLkBMGZA1g"/>
      </eAnnotations>
      <appliedProfile xmi:type="uml:Profile" href="OpenModel_Profile.profile.uml#_m1xqsHBgEd6FKu9XX1078A"/>
    </profileApplication>
    <profileApplication xmi:type="uml:ProfileApplication" xmi:id="_jY4psNB3EeijRJbJ9rGSQQ">
      <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_jY6e4NB3EeijRJbJ9rGSQQ" source="http://www.eclipse.org/uml2/2.0.0/UML">
        <references xmi:type="ecore:EPackage" href="pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#_Kv8EIKFXEeS_KNX0nfvIVQ"/>
      </eAnnotations>
      <appliedProfile xmi:type="uml:Profile" href="pathmap://PAPYRUS_ACTIONLANGUAGE_PROFILE/ActionLanguage-Profile.profile.uml#ActionLanguage"/>
    </profileApplication>
  </uml:Package>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGTssTzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZoyTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_kGTssjzEEeiWMf5FLWfdLA" base_StructuralFeature="_kEZoyzzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_13eBPDzEEeiWMf5FLWfdLA" base_Class="_13eBMDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_13eoQDzEEeiWMf5FLWfdLA" base_StructuralFeature="_13eBMjzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_13eoQTzEEeiWMf5FLWfdLA" base_StructuralFeature="_13eBNDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_13eoQjzEEeiWMf5FLWfdLA" base_StructuralFeature="_13eBODzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_nzt9kKe3Eeixw5Ke5QD1pQ" base_Class="_45TagDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nzyPAKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_45TagzzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_nz3ukKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_45TahTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_beAksDzFEeiWMf5FLWfdLA" base_Class="_bd_WkDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_beGEQDzFEeiWMf5FLWfdLA" base_Class="_beE2IDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_1WXCxDzFEeiWMf5FLWfdLA" base_Class="_1WWbsDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1WYQ4DzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WWbsjzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1WY38DzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WWbtDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1WY38TzFEeiWMf5FLWfdLA" base_StructuralFeature="_1WWbtjzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_1Wb7QzzFEeiWMf5FLWfdLA" base_Class="_1Wb7QDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_JvzlUD0MEeiWMf5FLWfdLA" base_Class="_Jvy-QD0MEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_biWkcT0NEeiWMf5FLWfdLA" base_StructuralFeature="_biWkcD0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rj6jkT0NEeiWMf5FLWfdLA" base_StructuralFeature="_rj6jkD0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_0_MLMT0NEeiWMf5FLWfdLA" base_StructuralFeature="_0_MLMD0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BLHVgT0OEeiWMf5FLWfdLA" base_StructuralFeature="_BLHVgD0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MiSCED0OEeiWMf5FLWfdLA" base_StructuralFeature="_MiRbAD0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bJNPMT0OEeiWMf5FLWfdLA" base_StructuralFeature="_bJNPMD0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lzY58T0OEeiWMf5FLWfdLA" base_StructuralFeature="_lzY58D0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vyTaIT0OEeiWMf5FLWfdLA" base_StructuralFeature="_vyTaID0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5tq3ET0OEeiWMf5FLWfdLA" base_StructuralFeature="_5tq3ED0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_HFfXUT0QEeiWMf5FLWfdLA" base_Class="_HFfXUD0QEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mDaBAD0QEeiWMf5FLWfdLA" base_StructuralFeature="_mDZZ8D0QEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w3tRED0QEeiWMf5FLWfdLA" base_StructuralFeature="_w3sqAD0QEeiWMf5FLWfdLA" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AuYj8D0TEeiWMf5FLWfdLA" base_StructuralFeature="_AuX84D0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KWqFwT0TEeiWMf5FLWfdLA" base_StructuralFeature="_KWqFwD0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-fa8kD0TEeiWMf5FLWfdLA" base_StructuralFeature="_-faVgD0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GtqJUT0UEeiWMf5FLWfdLA" base_StructuralFeature="_GtqJUD0UEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_7Sro4D0VEeiWMf5FLWfdLA" base_Class="_7SrB0D0VEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IhnyUj25Eeiu6I5JfRTxxQ" base_StructuralFeature="_IhnyUT25Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Ihq1oT25Eeiu6I5JfRTxxQ" base_StructuralFeature="_Ihq1oD25Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g9bZ4D25Eeiu6I5JfRTxxQ" base_StructuralFeature="_g9ay0T25Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_g9coAj25Eeiu6I5JfRTxxQ" base_StructuralFeature="_g9coAT25Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PAS0AD27Eeiu6I5JfRTxxQ" base_StructuralFeature="_PASM8j27Eeiu6I5JfRTxxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fJ3kcESyEeiVGPeZpaYNtQ" base_StructuralFeature="_fJyE4ESyEeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fK100USyEeiVGPeZpaYNtQ" base_StructuralFeature="_fK1NwESyEeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_y410AESzEeiVGPeZpaYNtQ" base_StructuralFeature="_y4vGUUSzEeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_y5TuEESzEeiVGPeZpaYNtQ" base_StructuralFeature="_y5QDsESzEeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MCNk0ES3EeiVGPeZpaYNtQ" base_StructuralFeature="_MCMWsES3EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MCQBEES3EeiVGPeZpaYNtQ" base_StructuralFeature="_MCPaAES3EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zHCrQES3EeiVGPeZpaYNtQ" base_StructuralFeature="_zHBdIUS3EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_zHqWUUS3EeiVGPeZpaYNtQ" base_StructuralFeature="_zHpvQES3EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bnBhEES4EeiVGPeZpaYNtQ" base_StructuralFeature="_bnAS8kS4EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bnHAokS4EeiVGPeZpaYNtQ" base_StructuralFeature="_bnHAoES4EeiVGPeZpaYNtQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_mrLLIYn9EeiOe-BKGdv_Yg" base_Class="_mrJV8In9EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_wnhfgIn9EeiOe-BKGdv_Yg" base_Class="_wng4cIn9EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Q--H8Yn-EeiOe-BKGdv_Yg" base_StructuralFeature="_Q-9g4In-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W04ycIn-EeiOe-BKGdv_Yg" base_StructuralFeature="_W04LYIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XqlrYIn-EeiOe-BKGdv_Yg" base_StructuralFeature="_XqlEUIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YPkAsIn-EeiOe-BKGdv_Yg" base_StructuralFeature="_YPjZoIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YvjvYYn-EeiOe-BKGdv_Yg" base_StructuralFeature="_YvjIUIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZM2IUon-EeiOe-BKGdv_Yg" base_StructuralFeature="_ZM2IUIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bNd8Qon-EeiOe-BKGdv_Yg" base_StructuralFeature="_bNd8QIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_dORg8Yn_EeiOe-BKGdv_Yg" base_StructuralFeature="_dOQ54In_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eNIV4In_EeiOe-BKGdv_Yg" base_StructuralFeature="_eNHu0In_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_eyByson_EeiOe-BKGdv_Yg" base_StructuralFeature="_eyBysIn_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fTdr0Yn_EeiOe-BKGdv_Yg" base_StructuralFeature="_fTdEwIn_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_fvaA8on_EeiOe-BKGdv_Yg" base_StructuralFeature="_fvaA8In_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rUIL4YoAEeiOe-BKGdv_Yg" base_StructuralFeature="_rUHk0IoAEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_rUIy9IoAEeiOe-BKGdv_Yg" base_StructuralFeature="_rUIy8ooAEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tFrMkooBEeiOe-BKGdv_Yg" base_StructuralFeature="_tFrMkIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ttCHgooBEeiOe-BKGdv_Yg" base_StructuralFeature="_ttCHgIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uN7OEYoBEeiOe-BKGdv_Yg" base_StructuralFeature="_uN6nAIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_up_fAooBEeiOe-BKGdv_Yg" base_StructuralFeature="_up_fAIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LBvXsooCEeiOe-BKGdv_Yg" base_StructuralFeature="_LBvXsIoCEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LBv-xIoCEeiOe-BKGdv_Yg" base_StructuralFeature="_LBv-wooCEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uattgI6OEeiLSKWGMeE9mQ" base_StructuralFeature="_uatGcI6OEeiLSKWGMeE9mQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IdvDEI9WEeiT7tMsBl6xjA" base_StructuralFeature="_IducAI9WEeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IdwRMo9WEeiT7tMsBl6xjA" base_StructuralFeature="_IdwRMI9WEeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_efN6QY93EeiT7tMsBl6xjA" base_Class="_efN6QI93EeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_nrfckY93EeiT7tMsBl6xjA" base_Class="_nrfckI93EeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_lUWJkY94EeiT7tMsBl6xjA" base_Class="_lUWJkI94EeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jd0SII95EeiT7tMsBl6xjA" base_StructuralFeature="_JdzrEo95EeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Jd05Mo95EeiT7tMsBl6xjA" base_StructuralFeature="_Jd05MI95EeiT7tMsBl6xjA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pxFYMJAIEeiv6abVuS_3BQ" base_StructuralFeature="_pxExIJAIEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_pxPJMZAIEeiv6abVuS_3BQ" base_StructuralFeature="_pxPJMJAIEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_KO_1AZAJEeiv6abVuS_3BQ" base_StructuralFeature="_KO_1AJAJEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LffzkZAJEeiv6abVuS_3BQ" base_StructuralFeature="_LffzkJAJEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MH7FgJAJEeiv6abVuS_3BQ" base_StructuralFeature="_MH6ecJAJEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_M-s8gZAJEeiv6abVuS_3BQ" base_StructuralFeature="_M-s8gJAJEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NcxYkJAJEeiv6abVuS_3BQ" base_StructuralFeature="_NcwxgJAJEeiv6abVuS_3BQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WjGsIJAjEei1uKE-hf_HvQ" base_StructuralFeature="_WjFeAJAjEei1uKE-hf_HvQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_YZov8ZAjEei1uKE-hf_HvQ" base_StructuralFeature="_YZov8JAjEei1uKE-hf_HvQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Zzfh8JDrEei9Vqs7Ti8Wxg" base_StructuralFeature="_Zze64JDrEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZzrvMJDrEei9Vqs7Ti8Wxg" base_StructuralFeature="_ZzrIIJDrEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_tYjQcpEAEei9Vqs7Ti8Wxg" base_StructuralFeature="_tYjQcJEAEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_v4D_0JEAEei9Vqs7Ti8Wxg" base_StructuralFeature="_v4DYwJEAEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_wiI3kpEAEei9Vqs7Ti8Wxg" base_StructuralFeature="_wiI3kJEAEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xmhFsZEAEei9Vqs7Ti8Wxg" base_StructuralFeature="_xmgeoJEAEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ynD8spEAEei9Vqs7Ti8Wxg" base_StructuralFeature="_ynD8sJEAEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__dJeUZEAEei9Vqs7Ti8Wxg" base_StructuralFeature="__dI3QJEAEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_BD-5QZEBEei9Vqs7Ti8Wxg" base_StructuralFeature="_BD-SMJEBEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9p9M8pEBEei9Vqs7Ti8Wxg" base_StructuralFeature="_9p9M8JEBEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:Experimental xmi:id="_nzwZ0Ke3Eeixw5Ke5QD1pQ" base_Element="_45TagDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_nz15YKe3Eeixw5Ke5QD1pQ" base_Element="_45TagzzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Experimental xmi:id="_nz8AAKe3Eeixw5Ke5QD1pQ" base_Element="_45TahTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:PassedByReference xmi:id="_nz91MKe3Eeixw5Ke5QD1pQ" base_Property="_45TahTzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_n0ARcKe3Eeixw5Ke5QD1pQ" base_StructuralFeature="_KDyg0JmcEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:Experimental xmi:id="_n0D70Ke3Eeixw5Ke5QD1pQ" base_Element="_KDyg0JmcEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:PassedByReference xmi:id="_n0FxAKe3Eeixw5Ke5QD1pQ" base_Property="_KDyg0JmcEeiSm9XNElOsxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_y6aiAqLREeiz_K9hWIugxQ" base_StructuralFeature="_y6aiAKLREeiz_K9hWIugxQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_y6bwIqLREeiz_K9hWIugxQ" base_StructuralFeature="_y6bwIKLREeiz_K9hWIugxQ"/>
  <OpenModel_Profile:Future xmi:id="_WmuCEKVyEeikF6xsfT18UA" base_Element="_13eBMDzEEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_U0fXoKewEeixw5Ke5QD1pQ" base_Element="_bd_WkDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_Wk-d0KewEeixw5Ke5QD1pQ" base_Element="_beE2IDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_YWbNUKewEeixw5Ke5QD1pQ" base_Element="_1WWbsDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Future xmi:id="_aRpj4KewEeixw5Ke5QD1pQ" base_Element="_1Wb7QDzFEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_AAwUkauCEeiRK6iIVq4LZA" base_Class="_AAwUkKuCEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_XCul8auDEeiRK6iIVq4LZA" base_Class="_XCul8KuDEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_YBnQEKuDEeiRK6iIVq4LZA" base_Class="_YBdfEKuDEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L-PS5KuFEeiRK6iIVq4LZA" base_StructuralFeature="_L-PS46uFEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L-ZD46uFEeiRK6iIVq4LZA" base_StructuralFeature="_L-ZD4quFEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mD6bRKuFEeiRK6iIVq4LZA" base_StructuralFeature="_mD6bQ6uFEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mEEMQ6uFEeiRK6iIVq4LZA" base_StructuralFeature="_mEEMQquFEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AcqQo6uGEeiRK6iIVq4LZA" base_StructuralFeature="_AcqQoquGEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_AcqQp6uGEeiRK6iIVq4LZA" base_StructuralFeature="_AcqQpquGEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_UWORwMDfEeiebIKjAGZWdA" base_Class="_UWL1gMDfEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_gErc8MDfEeiebIKjAGZWdA" base_StructuralFeature="_gEq14MDfEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_j0sK4cDfEeiebIKjAGZWdA" base_StructuralFeature="_j0sK4MDfEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LvrdQcDgEeiebIKjAGZWdA" base_StructuralFeature="_LvrdQMDgEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_LvwVwMDgEeiebIKjAGZWdA" base_StructuralFeature="_LvvusMDgEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_HFmo4cDiEeiebIKjAGZWdA" base_Class="_HFmo4MDiEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OGG3MMDiEeiebIKjAGZWdA" base_StructuralFeature="_OGGQIsDiEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OGHeQcDiEeiebIKjAGZWdA" base_StructuralFeature="_OGHeQMDiEeiebIKjAGZWdA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1_pvIcGSEeiS695oPTRE1Q" base_StructuralFeature="_1_pvIMGSEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6z7hAMGTEeiS695oPTRE1Q" base_StructuralFeature="_6z658sGTEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6z9WMcGTEeiS695oPTRE1Q" base_StructuralFeature="_6z9WMMGTEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_MnBxYMGjEeiS695oPTRE1Q" base_Class="_MnBKUMGjEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MnE0ssGjEeiS695oPTRE1Q" base_StructuralFeature="_MnE0scGjEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MnGp4cGjEeiS695oPTRE1Q" base_StructuralFeature="_MnGp4MGjEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_R9Rn4cGkEeiS695oPTRE1Q" base_StructuralFeature="_R9Rn4MGkEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_hUzLgcGkEeiS695oPTRE1Q" base_Class="_hUzLgMGkEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hU0Zo8GkEeiS695oPTRE1Q" base_StructuralFeature="_hU0ZosGkEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hU1nwMGkEeiS695oPTRE1Q" base_StructuralFeature="_hU1AsMGkEeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="__mP8gcG_EeiS695oPTRE1Q" base_StructuralFeature="__mP8gMG_EeiS695oPTRE1Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xcxioMhdEeiSA51ssKbbgA" base_StructuralFeature="_xcw7kchdEeiSA51ssKbbgA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_yKb54MhdEeiSA51ssKbbgA" base_StructuralFeature="_yKbS0chdEeiSA51ssKbbgA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ejrgYM4pEeinDdlk3ffduQ" base_StructuralFeature="_ejq5Uc4pEeinDdlk3ffduQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ej47wc4pEeinDdlk3ffduQ" base_StructuralFeature="_ej47wM4pEeinDdlk3ffduQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_26_z4NB2EeijRJbJ9rGSQQ" base_Class="_26_M0NB2EeijRJbJ9rGSQQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_W1wF4egIEeiNE-az-riPDQ" base_Class="_W1wF4OgIEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_zSX3gegIEeiNE-az-riPDQ" base_Class="_zSX3gOgIEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_5Tkk8egIEeiNE-az-riPDQ" base_Class="_5Tkk8OgIEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_7Y7u8egIEeiNE-az-riPDQ" base_Class="_7Y7u8OgIEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NGtQ5OgMEeiNE-az-riPDQ" base_StructuralFeature="_NGtQ4-gMEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_NHAL0egMEeiNE-az-riPDQ" base_StructuralFeature="_NHAL0OgMEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_za16NOgMEeiNE-az-riPDQ" base_StructuralFeature="_za16M-gMEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_za_rM-gMEeiNE-az-riPDQ" base_StructuralFeature="_za_rMugMEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l1QY1OgNEeiNE-az-riPDQ" base_StructuralFeature="_l1QY0-gNEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_l1issegNEeiNE-az-riPDQ" base_StructuralFeature="_l1issOgNEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3c92ZOgNEeiNE-az-riPDQ" base_StructuralFeature="_3c92Y-gNEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_3c92aOgNEeiNE-az-riPDQ" base_StructuralFeature="_3c92Z-gNEeiNE-az-riPDQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hhVcJOuoEeiSZPIvixpf_Q" base_StructuralFeature="_hhVcI-uoEeiSZPIvixpf_Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hhfNIOuoEeiSZPIvixpf_Q" base_StructuralFeature="_hhVcJ-uoEeiSZPIvixpf_Q"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E9fK4uvZEeiEwrkYFEP6YA" base_StructuralFeature="_E9fK4OvZEeiEwrkYFEP6YA" isInvariant="true"/>
  <OpenModel_Profile:Preliminary xmi:id="_E9o74uvZEeiEwrkYFEP6YA" base_Element="_E9fK4OvZEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Muh98uvcEeiEwrkYFEP6YA" base_StructuralFeature="_Muh98OvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Muru8uvcEeiEwrkYFEP6YA" base_Element="_Muh98OvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OJk_ouvcEeiEwrkYFEP6YA" base_StructuralFeature="_OJk_oOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_OJuwoOvcEeiEwrkYFEP6YA" base_Element="_OJk_oOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PQXBguvcEeiEwrkYFEP6YA" base_StructuralFeature="_PQXBgOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_PQgLcuvcEeiEwrkYFEP6YA" base_Element="_PQXBgOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_QiUYouvcEeiEwrkYFEP6YA" base_StructuralFeature="_QiUYoOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_QiUYpevcEeiEwrkYFEP6YA" base_Element="_QiUYoOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RtkDxOvcEeiEwrkYFEP6YA" base_StructuralFeature="_RtkDwOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Rtt0wuvcEeiEwrkYFEP6YA" base_Element="_RtkDwOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_TGYQ1OvcEeiEwrkYFEP6YA" base_StructuralFeature="_TGYQ0OvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_TGYQ1-vcEeiEwrkYFEP6YA" base_Element="_TGYQ0OvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_UC3uROvcEeiEwrkYFEP6YA" base_StructuralFeature="_UC3uQOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:Preliminary xmi:id="_UDBfQuvcEeiEwrkYFEP6YA" base_Element="_UC3uQOvcEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OdfSwuvfEeiEwrkYFEP6YA" base_StructuralFeature="_OdfSwOvfEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_RANuMuvfEeiEwrkYFEP6YA" base_StructuralFeature="_RANuMOvfEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_SdAKYuvhEeiEwrkYFEP6YA" base_StructuralFeature="_SdAKYOvhEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_WD0gEuvhEeiEwrkYFEP6YA" base_StructuralFeature="_WD0gEOvhEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_82uopOyoEeiEwrkYFEP6YA" base_StructuralFeature="_82uooOyoEeiEwrkYFEP6YA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_oYJgwvLsEeiazPylpq3fUA" base_StructuralFeature="_oYJgwPLsEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_p4kxsvLsEeiazPylpq3fUA" base_StructuralFeature="_p4kxsPLsEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_q6RfRPLsEeiazPylpq3fUA" base_StructuralFeature="_q6RfQPLsEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_sMhxUvLsEeiazPylpq3fUA" base_StructuralFeature="_sMhxUPLsEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XE8MM_LvEeiazPylpq3fUA" base_StructuralFeature="_XE8MMvLvEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XE8MN_LvEeiazPylpq3fUA" base_StructuralFeature="_XE8MNvLvEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vdiuxPLvEeiazPylpq3fUA" base_StructuralFeature="_vdiuw_LvEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_vdiuyPLvEeiazPylpq3fUA" base_StructuralFeature="_vdiux_LvEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_krzOAfLwEeiazPylpq3fUA" base_StructuralFeature="_krzOAPLwEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IkER0fLxEeiazPylpq3fUA" base_StructuralFeature="_IkER0PLxEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OHUfAfLxEeiazPylpq3fUA" base_StructuralFeature="_OHUfAPLxEeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_swQIcfL3EeiazPylpq3fUA" base_StructuralFeature="_swQIcPL3EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_w32P8fL3EeiazPylpq3fUA" base_StructuralFeature="_w32P8PL3EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_L4ZFIfL4EeiazPylpq3fUA" base_StructuralFeature="_L4ZFIPL4EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_PXXtcfL4EeiazPylpq3fUA" base_StructuralFeature="_PXXtcPL4EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_uOXPwfL4EeiazPylpq3fUA" base_Class="_uOXPwPL4EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_1Rt9wfL4EeiazPylpq3fUA" base_StructuralFeature="_1Rt9wPL4EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_F7mhIfL5EeiazPylpq3fUA" base_StructuralFeature="_F7mhIPL5EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_MbCpwfL5EeiazPylpq3fUA" base_StructuralFeature="_MbCpwPL5EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_va5lABg_EembeqMx64UEWQ" base_StructuralFeature="_va498Bg_EembeqMx64UEWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_va8BQBg_EembeqMx64UEWQ" base_StructuralFeature="_va7aMRg_EembeqMx64UEWQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6lzyASC1Eemw1L3J4dNy4w" base_StructuralFeature="_6lzyACC1Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_6l54oSC1Eemw1L3J4dNy4w" base_StructuralFeature="_6l54oCC1Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9nAf4SC6Eemw1L3J4dNy4w" base_StructuralFeature="_9nAf4CC6Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_9nF_cSC6Eemw1L3J4dNy4w" base_StructuralFeature="_9nF_cCC6Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hxFscyC7Eemw1L3J4dNy4w" base_StructuralFeature="_hxFsciC7Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_hxLzESC7Eemw1L3J4dNy4w" base_StructuralFeature="_hxLzECC7Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_f1WjECC8Eemw1L3J4dNy4w" base_StructuralFeature="_yKYPgMhdEeiSA51ssKbbgA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_xctRMMhdEeiSA51ssKbbgA" base_StructuralFeature="_xcsqIMhdEeiSA51ssKbbgA"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_f72YgKeuEeixw5Ke5QD1pQ" base_Class="_iQkugJpYEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_f76p8KeuEeixw5Ke5QD1pQ" base_Class="_BQaDwJpZEeidy9iGT_F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_erHJYKeuEeixw5Ke5QD1pQ" base_StructuralFeature="_NBiAApsrEeiPBvbfaqSLYg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ftBSUKeuEeixw5Ke5QD1pQ" base_StructuralFeature="_NBj1MJsrEeiPBvbfaqSLYg"/>
  <OpenModel_Profile:Preliminary xmi:id="_qahYsC9nEemMV6PO6VJAGw" base_Element="_biWkcD0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_x30QsC9nEemMV6PO6VJAGw" base_Element="_rj6jkD0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_zK30AC9nEemMV6PO6VJAGw" base_Element="_0_MLMD0NEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_0T1nMC9nEemMV6PO6VJAGw" base_Element="_BLHVgD0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_1ooP4C9nEemMV6PO6VJAGw" base_Element="_MiRbAD0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_3CoIsC9nEemMV6PO6VJAGw" base_Element="_bJNPMD0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_4JtskC9nEemMV6PO6VJAGw" base_Element="_lzY58D0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_6O-v8C9nEemMV6PO6VJAGw" base_Element="_vyTaID0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_7SdmMC9nEemMV6PO6VJAGw" base_Element="_5tq3ED0OEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_8WRMkC9nEemMV6PO6VJAGw" base_Element="_Zze64JDrEei9Vqs7Ti8Wxg"/>
  <OpenModel_Profile:Preliminary xmi:id="_TdYtgDA2EemfJIA7XFfVEg" base_Element="_mDZZ8D0QEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_UsGjYDA2EemfJIA7XFfVEg" base_Element="_w3sqAD0QEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="__b-_QDA2EemfJIA7XFfVEg" base_Element="_AuX84D0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_O3QacDA3EemfJIA7XFfVEg" base_Element="_KWqFwD0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_P_t3UDA3EemfJIA7XFfVEg" base_Element="_-faVgD0TEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_RTRJ4DA3EemfJIA7XFfVEg" base_Element="_GtqJUD0UEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qdIu9DJ0EembsLjrwaSXHQ" base_StructuralFeature="_qdIu8zJ0EembsLjrwaSXHQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qdIu-DJ0EembsLjrwaSXHQ" base_StructuralFeature="_qdIu9zJ0EembsLjrwaSXHQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uuuf8zJ0EembsLjrwaSXHQ" base_StructuralFeature="_uuuf8jJ0EembsLjrwaSXHQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_uuuf9zJ0EembsLjrwaSXHQ" base_StructuralFeature="_uuuf9jJ0EembsLjrwaSXHQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5IznQzJ2Eem5adcA1c6ckw" base_StructuralFeature="_5IznQjJ2Eem5adcA1c6ckw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_5JGiMzJ2Eem5adcA1c6ckw" base_StructuralFeature="_5JGiMjJ2Eem5adcA1c6ckw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-s0pdDJ2Eem5adcA1c6ckw" base_StructuralFeature="_-s0pczJ2Eem5adcA1c6ckw"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_-s0peDJ2Eem5adcA1c6ckw" base_StructuralFeature="_-s0pdzJ2Eem5adcA1c6ckw"/>
  <ActionLanguage:TextualRepresentation xmi:id="_ztgeYEYNEem7INgoaq_j-g" base_Comment="_ztURIEYNEem7INgoaq_j-g" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty"/>
  <OpenModel_Profile:Preliminary xmi:id="_kJpQ0Fn2EemSNe5QiI5UBQ" base_Element="_Jvy-QD0MEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_mLw5kFn2EemSNe5QiI5UBQ" base_Element="_HFfXUD0QEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nkoJ8Fn2EemSNe5QiI5UBQ" base_Element="_7SrB0D0VEeiWMf5FLWfdLA"/>
  <OpenModel_Profile:Preliminary xmi:id="_orOloFn2EemSNe5QiI5UBQ" base_Element="_AAwUkKuCEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_qMp8IFn2EemSNe5QiI5UBQ" base_Element="_XCul8KuDEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_rP13cFn2EemSNe5QiI5UBQ" base_Element="_YBdfEKuDEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_xV1lUFn2EemSNe5QiI5UBQ" base_Element="_6lxVwCC1Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:Preliminary xmi:id="_0W6JoFn2EemSNe5QiI5UBQ" base_Element="_yX44MB9eEemLMI6HKP6Lbw"/>
  <OpenModel_Profile:Preliminary xmi:id="_aoMTQFn3EemSNe5QiI5UBQ" base_Element="_xMGpgM4oEeinDdlk3ffduQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_loG9cFn3EemSNe5QiI5UBQ" base_Element="_o4dRYKuDEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_nqcooFn3EemSNe5QiI5UBQ" base_Element="_pmW5MKuDEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_sl-HcFn3EemSNe5QiI5UBQ" base_Element="_L-PS4KuFEeiRK6iIVq4LZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_u5BvMFn3EemSNe5QiI5UBQ" base_Element="_9m-qsCC6Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:Preliminary xmi:id="_3-DaAFn3EemSNe5QiI5UBQ" base_Element="_hxFFYCC7Eemw1L3J4dNy4w"/>
  <OpenModel_Profile:Preliminary xmi:id="_85rmgFn3EemSNe5QiI5UBQ" base_Element="_-s0pcDJ2Eem5adcA1c6ckw"/>
  <OpenModel_Profile:Preliminary xmi:id="_-6YS8Fn3EemSNe5QiI5UBQ" base_Element="_5Ip2QDJ2Eem5adcA1c6ckw"/>
  <OpenModel_Profile:Preliminary xmi:id="_CILrsFn4EemSNe5QiI5UBQ" base_Element="_uulWADJ0EembsLjrwaSXHQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_D_rY0Fn4EemSNe5QiI5UBQ" base_Element="_qdIu8DJ0EembsLjrwaSXHQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_kLJngFoIEemSNe5QiI5UBQ" base_Element="_mrJV8In9EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_oMbEkFoIEemSNe5QiI5UBQ" base_Element="_Q-9g4In-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_pobvkFoIEemSNe5QiI5UBQ" base_Element="_W04LYIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_q2wj4FoIEemSNe5QiI5UBQ" base_Element="_XqlEUIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_swbbQFoIEemSNe5QiI5UBQ" base_Element="_YPjZoIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_uKKOUFoIEemSNe5QiI5UBQ" base_Element="_YvjIUIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_veVL8FoIEemSNe5QiI5UBQ" base_Element="_uatGcI6OEeiLSKWGMeE9mQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_w1_icFoIEemSNe5QiI5UBQ" base_Element="_ZM2IUIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_yb6-cFoIEemSNe5QiI5UBQ" base_Element="_bNd8QIn-EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_0Qaa4FoIEemSNe5QiI5UBQ" base_Element="_dOQ54In_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_1ey5kFoIEemSNe5QiI5UBQ" base_Element="_eNHu0In_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_2neY4FoIEemSNe5QiI5UBQ" base_Element="_eyBysIn_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_35uq8FoIEemSNe5QiI5UBQ" base_Element="_fTdEwIn_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_5PEGMFoIEemSNe5QiI5UBQ" base_Element="_fvaA8In_EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_HIBaEFoJEemSNe5QiI5UBQ" base_Element="_wng4cIn9EeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_J7Rk0FoJEemSNe5QiI5UBQ" base_Element="_UWL1gMDfEeiebIKjAGZWdA"/>
  <OpenModel_Profile:Preliminary xmi:id="_LwwfwFoJEemSNe5QiI5UBQ" base_Element="_HFmo4MDiEeiebIKjAGZWdA"/>
  <OpenModel_Profile:Preliminary xmi:id="_NXgbIFoJEemSNe5QiI5UBQ" base_Element="_DwZV4LwnEeifWa7EkiXrHA"/>
  <OpenModel_Profile:Preliminary xmi:id="_OYZQYFoJEemSNe5QiI5UBQ" base_Element="_pWPaEMA-Eei02ItngDf4ZA"/>
  <OpenModel_Profile:Preliminary xmi:id="_PngH0FoJEemSNe5QiI5UBQ" base_Element="_3a0cEI6OEeiLSKWGMeE9mQ"/>
  <OpenModel_Profile:Preliminary xmi:id="_d9Kl0FoJEemSNe5QiI5UBQ" base_Element="_MnBKUMGjEeiS695oPTRE1Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_fzhDcFoJEemSNe5QiI5UBQ" base_Element="_hUzLgMGkEeiS695oPTRE1Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_iR9b0FoJEemSNe5QiI5UBQ" base_Element="_tFrMkIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_jkXe4FoJEemSNe5QiI5UBQ" base_Element="_ttCHgIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_k8hkoFoJEemSNe5QiI5UBQ" base_Element="_uN6nAIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_mK1K0FoJEemSNe5QiI5UBQ" base_Element="_up_fAIoBEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_w4oxUFoJEemSNe5QiI5UBQ" base_Element="__mP8gMG_EeiS695oPTRE1Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_yaTYYFoJEemSNe5QiI5UBQ" base_Element="_R9Rn4MGkEeiS695oPTRE1Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_2gKagFoJEemSNe5QiI5UBQ" base_Element="_1_pvIMGSEeiS695oPTRE1Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_54ZhoFoJEemSNe5QiI5UBQ" base_Element="_gEq14MDfEeiebIKjAGZWdA"/>
  <OpenModel_Profile:Preliminary xmi:id="_7H4zkFoJEemSNe5QiI5UBQ" base_Element="_j0sK4MDfEeiebIKjAGZWdA"/>
  <OpenModel_Profile:Preliminary xmi:id="_C5qt0FoKEemSNe5QiI5UBQ" base_Element="_rUEhgIoAEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_FatuQFoKEemSNe5QiI5UBQ" base_Element="_LBuJkIoCEeiOe-BKGdv_Yg"/>
  <OpenModel_Profile:Preliminary xmi:id="_G-c8cFoLEemSNe5QiI5UBQ" base_Element="_6z5EwMGTEeiS695oPTRE1Q"/>
  <OpenModel_Profile:Preliminary xmi:id="_MyglwFoLEemSNe5QiI5UBQ" base_Element="_OGFpEMDiEeiebIKjAGZWdA"/>
  <OpenModel_Profile:Preliminary xmi:id="_Q5paQFoLEemSNe5QiI5UBQ" base_Element="_Lvny4MDgEeiebIKjAGZWdA"/>
  <OpenModel_Profile:Preliminary xmi:id="_xyntQFrNEem07dac9irJSQ" base_Element="_IdqxoI9WEeiT7tMsBl6xjA"/>
  <OpenModel_Profile:Preliminary xmi:id="_1OLh4F0BEemiOP02o5T8tA" base_Element="_1Rt9wPL4EeiazPylpq3fUA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_lpEDIILdEemyVus8T4NvCQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Common.uml#_lo6SIILdEemyVus8T4NvCQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_h8AhkYLoEemyVus8T4NvCQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Common.uml#_h8AhkILoEemyVus8T4NvCQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_smVWQILoEemyVus8T4NvCQ">
    <base_Element xmi:type="uml:Property" href="Common.uml#_h8AhkILoEemyVus8T4NvCQ"/>
  </OpenModel_Profile:Experimental>
  <ActionLanguage:TextualRepresentation xmi:id="_093-EILqEemyVus8T4NvCQ" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty">
    <base_Comment xmi:type="uml:Comment" href="Common.uml#_09MBkILqEemyVus8T4NvCQ"/>
  </ActionLanguage:TextualRepresentation>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_U92FMYLsEemyVus8T4NvCQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Common.uml#_U92FMILsEemyVus8T4NvCQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VorK4YLsEemyVus8T4NvCQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Common.uml#_VorK4ILsEemyVus8T4NvCQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_W1j0wYLsEemyVus8T4NvCQ">
    <base_StructuralFeature xmi:type="uml:Property" href="Common.uml#_W1j0wILsEemyVus8T4NvCQ"/>
  </OpenModel_Profile:OpenModelAttribute>
  <OpenModel_Profile:Experimental xmi:id="_GGe9cILuEemyVus8T4NvCQ">
    <base_Element xmi:type="uml:Property" href="Common.uml#_U92FMILsEemyVus8T4NvCQ"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_G_vgsILuEemyVus8T4NvCQ">
    <base_Element xmi:type="uml:Property" href="Common.uml#_VorK4ILsEemyVus8T4NvCQ"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:Experimental xmi:id="_H_r6wILuEemyVus8T4NvCQ">
    <base_Element xmi:type="uml:Property" href="Common.uml#_W1j0wILsEemyVus8T4NvCQ"/>
  </OpenModel_Profile:Experimental>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_E2F_sIMGEemyVus8T4NvCQ" base_StructuralFeature="_E2FYoIMGEemyVus8T4NvCQ" support="OPTIONAL"/>
  <OpenModel_Profile:Experimental xmi:id="_QCAegIMGEemyVus8T4NvCQ" base_Element="_E2FYoIMGEemyVus8T4NvCQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_seqXsIdsEem5i7slCUMe6w" base_StructuralFeature="_sekREIdsEem5i7slCUMe6w"/>
  <OpenModel_Profile:Experimental xmi:id="_-Gmz4IduEem5i7slCUMe6w" base_Element="_sekREIdsEem5i7slCUMe6w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_e7RHUYdwEem5i7slCUMe6w" base_StructuralFeature="_e7RHUIdwEem5i7slCUMe6w" support="OPTIONAL"/>
  <OpenModel_Profile:Experimental xmi:id="_ikROUIdwEem5i7slCUMe6w" base_Element="_e7RHUIdwEem5i7slCUMe6w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_DW2osYdzEemz_I38RrvOQg" base_StructuralFeature="_DW2osIdzEemz_I38RrvOQg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VmInIYd0Eemz_I38RrvOQg" base_StructuralFeature="_VmInIId0Eemz_I38RrvOQg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_XaAYgYd0Eemz_I38RrvOQg" base_StructuralFeature="_XaAYgId0Eemz_I38RrvOQg"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aBy6IYd0Eemz_I38RrvOQg" base_StructuralFeature="_aBy6IId0Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_onexIId0Eemz_I38RrvOQg" base_Element="_QsPsoF0aEemiOP02o5T8tA"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_neWwcYd1Eemz_I38RrvOQg" base_StructuralFeature="_neWwcId1Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_LJq9YId2Eemz_I38RrvOQg" base_Element="_gFg8sF0aEemiOP02o5T8tA"/>
  <ActionLanguage:TextualRepresentation xmi:id="_66AbYId2Eemz_I38RrvOQg" base_Comment="_656UwId2Eemz_I38RrvOQg" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_OmeeoYd6Eemz_I38RrvOQg" base_StructuralFeature="_OmeeoId6Eemz_I38RrvOQg"/>
  <ActionLanguage:TextualRepresentation xmi:id="_EUv6kKFtEemY46Vmc0cZBg" base_Comment="_EUn-wKFtEemY46Vmc0cZBg" language="org.eclipse.papyrus.uml.textedit.property.xtext.UmlProperty"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_WNgRMLcsEemG6epU56F5-w" base_Class="_WNfqILcsEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_3s_tsbdWEemG6epU56F5-w" base_Class="_3s_tsLdWEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_4CcZQbdWEemG6epU56F5-w" base_Class="_4CcZQLdWEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_4dD4sbdWEemG6epU56F5-w" base_Class="_4dD4sLdWEemG6epU56F5-w"/>
  <OpenModel_Profile:Experimental xmi:id="_JLfk4LdXEemG6epU56F5-w" base_Element="_4dD4sLdWEemG6epU56F5-w"/>
  <OpenModel_Profile:Experimental xmi:id="_J_M5wLdXEemG6epU56F5-w" base_Element="_4CcZQLdWEemG6epU56F5-w"/>
  <OpenModel_Profile:Experimental xmi:id="_KwOuELdXEemG6epU56F5-w" base_Element="_3s_tsLdWEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_sR5G4bdXEemG6epU56F5-w" base_Class="_sR5G4LdXEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_rS75YLdZEemG6epU56F5-w" base_Class="_rS7SULdZEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelClass xmi:id="_tJhnkbdZEemG6epU56F5-w" base_Class="_tJhnkLdZEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_GgHNoLdgEemG6epU56F5-w" base_StructuralFeature="_GgGmkLdgEemG6epU56F5-w" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_G3tOQbdgEemG6epU56F5-w" base_StructuralFeature="_G3tOQLdgEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HQqg0bdgEemG6epU56F5-w" base_StructuralFeature="_HQqg0LdgEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_HmqmALdgEemG6epU56F5-w" base_StructuralFeature="_Hmp-8LdgEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_H8iIUbdgEemG6epU56F5-w" base_StructuralFeature="_H8iIULdgEemG6epU56F5-w" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_IS_ggLdgEemG6epU56F5-w" base_StructuralFeature="_IS-5cLdgEemG6epU56F5-w" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_Iq2m4bdgEemG6epU56F5-w" base_StructuralFeature="_Iq2m4LdgEemG6epU56F5-w" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_I8cGILdgEemG6epU56F5-w" base_StructuralFeature="_I8bfELdgEemG6epU56F5-w" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_JNJbobdgEemG6epU56F5-w" base_StructuralFeature="_JNJboLdgEemG6epU56F5-w" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mCRM0bdgEemG6epU56F5-w" base_StructuralFeature="_mCRM0LdgEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_mZZTYbdgEemG6epU56F5-w" base_StructuralFeature="_mZZTYLdgEemG6epU56F5-w" support="OPTIONAL"/>
  <OpenModel_Profile:Experimental xmi:id="_w1oowLdgEemG6epU56F5-w" base_Element="_OmeeoId6Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_3LafELdgEemG6epU56F5-w" base_Element="_sR5G4LdXEemG6epU56F5-w"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_VFsicbgaEem9SoGzhP7GLQ" base_StructuralFeature="_VFsicLgaEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_qL1j0rgcEem9SoGzhP7GLQ" base_StructuralFeature="_qL1j0LgcEem9SoGzhP7GLQ" isInvariant="true"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YGONbgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YGOMLgcEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YGOOLgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YGONrgcEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YGOO7gcEem9SoGzhP7GLQ" base_StructuralFeature="_4YGOObgcEem9SoGzhP7GLQ" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YGOQLgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YGOPLgcEem9SoGzhP7GLQ" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YMU0LgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YGOQbgcEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YMU07gcEem9SoGzhP7GLQ" base_StructuralFeature="_4YMU0bgcEem9SoGzhP7GLQ" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YMU1rgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YMU1LgcEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YMU2bgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YMU17gcEem9SoGzhP7GLQ" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YMU3LgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YMU2rgcEem9SoGzhP7GLQ" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_4YMU4bgcEem9SoGzhP7GLQ" base_StructuralFeature="_4YMU3bgcEem9SoGzhP7GLQ" support="OPTIONAL"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZdKxobgdEem9SoGzhP7GLQ" base_StructuralFeature="_ZdKxoLgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_ZxMg4bgdEem9SoGzhP7GLQ" base_StructuralFeature="_ZxMg4LgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_aJCZIbgdEem9SoGzhP7GLQ" base_StructuralFeature="_aJCZILgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_afETgbgdEem9SoGzhP7GLQ" base_StructuralFeature="_afETgLgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_awtdIbgdEem9SoGzhP7GLQ" base_StructuralFeature="_awtdILgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bCWmwbgdEem9SoGzhP7GLQ" base_StructuralFeature="_bCWmwLgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_bWNW4bgdEem9SoGzhP7GLQ" base_StructuralFeature="_bWNW4LgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:OpenModelAttribute xmi:id="_cpT9gbgdEem9SoGzhP7GLQ" base_StructuralFeature="_cpT9gLgdEem9SoGzhP7GLQ"/>
  <OpenModel_Profile:Experimental xmi:id="_BDJjsLgmEem9SoGzhP7GLQ" base_Element="_DW2osIdzEemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_B5pG0LgmEem9SoGzhP7GLQ" base_Element="_VmInIId0Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_C1Js0LgmEem9SoGzhP7GLQ" base_Element="_XaAYgId0Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_DuZB8LgmEem9SoGzhP7GLQ" base_Element="_aBy6IId0Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_E3LO8LgmEem9SoGzhP7GLQ" base_Element="_neWwcId1Eemz_I38RrvOQg"/>
  <OpenModel_Profile:Experimental xmi:id="_6zFdYLgxEem9SoGzhP7GLQ" base_Element="_WNfqILcsEemG6epU56F5-w"/>
  <OpenModel_Profile:Experimental xmi:id="__Af5ALgxEem9SoGzhP7GLQ" base_Element="_tJhnkLdZEemG6epU56F5-w"/>
  <OpenModel_Profile:Experimental xmi:id="_B5gtgLgyEem9SoGzhP7GLQ" base_Element="_rS7SULdZEemG6epU56F5-w"/>
</xmi:XMI>