-
Notifications
You must be signed in to change notification settings - Fork 6
/
sim.xmi
1043 lines (1043 loc) · 122 KB
/
sim.xmi
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
<?xml version="1.0" encoding="UTF-8"?>
<XMI verified="false" xmi.version="1.2" timestamp="2016-05-18T21:46:46" xmlns:UML="http://schema.omg.org/spec/UML/1.3">
<XMI.header>
<XMI.documentation>
<XMI.exporter>umbrello uml modeller http://umbrello.kde.org</XMI.exporter>
<XMI.exporterVersion>1.6.4</XMI.exporterVersion>
<XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
</XMI.documentation>
<XMI.metamodel xmi.version="1.3" href="UML.xml" xmi.name="UML"/>
</XMI.header>
<XMI.content>
<UML:Model isSpecification="false" isAbstract="false" isLeaf="false" xmi.id="m1" isRoot="false" name="UML Model">
<UML:Namespace.ownedElement>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="folder" name="folder"/>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="datatype" name="datatype"/>
<UML:Stereotype visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="interface" name="interface"/>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Logical View" name="Logical View">
<UML:Namespace.ownedElement>
<UML:Package stereotype="folder" visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Datatypes" name="Datatypes">
<UML:Namespace.ownedElement>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="JMHTbHOVN3Ut" name="int"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="BXPXYdksqdsG" name="char"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="psa0Xp0qAHHj" name="bool"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="XgCujeltBAOi" name="float"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="l6acjQqWHQWm" name="double"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="EUaMks5HWI9F" name="short"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ws660UmlaMLH" name="long"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="lAn0aHmmmM8U" name="unsigned int"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ECjkUqyOi2Ui" name="unsigned short"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="VGT5bnNKx8KV" name="unsigned long"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Q6IAQOcdYLL2" name="string"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="wXJvO8D8WJyx" name="vector< int >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="8AjRcO6BItGS" name="vector< CodeType >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="9EZP40GzWzoj" isRoot="false" xmi.id="cI3PKj7Gr6Vm" name="sql::Driver*"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="EZxiWmS62TUK" isRoot="false" xmi.id="Cba1h4nSDlCz" name="sql::Statement*"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="4NK7ooRyN002" isRoot="false" xmi.id="4nTFWfFxR6LS" name="sql::Connection*"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="IejdcjggU9vz" isRoot="false" xmi.id="m8wDCFdUyIT1" name="sql::PreparedStatement*"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="1iDUp6RbDLnP" isRoot="false" xmi.id="aQsYjJXcxgR6" name="sql::ResultSet*"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="ilis3J55nYmS" isRoot="false" xmi.id="BLYuggmFtOMD" name="fstream&"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="JMHTbHOVN3Ut" isRoot="false" xmi.id="jkq1g50H5EkQ" name="int&"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="4NK7ooRyN002" isRoot="false" xmi.id="I2kck57RpvST" name="sql::Connection&"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="p7V3AoHxEZyU" isRoot="false" xmi.id="liKJnw2JPudn" name="MemberLoad*"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="aCH9P8THcAJn" name="vector< Joint >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="U7ydv552FM8z" name="vector< Member >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="soFWwzVSblaB" name="vector< Material >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="3WZgh7HE7bob" name="vector< MemPro >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="yvkmSN5aEw9E" name="vector< Load >"/>
<UML:DataType stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" isAbstract="false" isLeaf="false" elementReference="lEG6k6rdaE6L" isRoot="false" xmi.id="3GllXARv15bt" name="vector< MemberLoad >"/>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="pDzkMJGkNWsl" name="CodeType">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="uUOTniTyzspJ" type="Q6IAQOcdYLL2" name="code"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="kQ6qQzXECUyW" type="Q6IAQOcdYLL2" name="section"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="GT9Rv7vgMAm6" type="wXJvO8D8WJyx" name="member_id"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="GdhprlAlJUhh" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="lEG6k6rdaE6L" name="vector"/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="aun5Bj0QA9r5" name="ConcreteDesign">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="GmlawXhB8M0y" type="Q6IAQOcdYLL2" name="code"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="mnNoa64vxive" type="8AjRcO6BItGS" name="cty"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="8BXQuyQKJofQ" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="pDzkMJGkNWsl" xmi.id="cGsmPhpdRaEO" client="aun5Bj0QA9r5" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="TuxuUBIX2pjI" client="aun5Bj0QA9r5" name=""/>
<UML:Package visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="y81FwgeB0eov" name="sql">
<UML:Namespace.ownedElement>
<UML:Class visibility="public" isSpecification="false" namespace="y81FwgeB0eov" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="9EZP40GzWzoj" name="Driver"/>
<UML:Class visibility="public" isSpecification="false" namespace="y81FwgeB0eov" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="EZxiWmS62TUK" name="Statement"/>
<UML:Class visibility="public" isSpecification="false" namespace="y81FwgeB0eov" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4NK7ooRyN002" name="Connection"/>
<UML:Class visibility="public" isSpecification="false" namespace="y81FwgeB0eov" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="IejdcjggU9vz" name="PreparedStatement"/>
<UML:Class visibility="public" isSpecification="false" namespace="y81FwgeB0eov" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="1iDUp6RbDLnP" name="ResultSet"/>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="U95QnWUmXzeo" name="Job">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="U56kjroR0RNV"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="xBhwc4RRm15d" type="Q6IAQOcdYLL2" name="date"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="ACyTQiY7vOL8" type="Q6IAQOcdYLL2" name="name"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="pNnOUCdPOKLy" type="Q6IAQOcdYLL2" name="client"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="OmO8lRjwdgN1" type="Q6IAQOcdYLL2" name="job_id"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="Ov9JHUP7qCVK" type="Q6IAQOcdYLL2" name="comment"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="N6hjR3fnn3uZ" type="Q6IAQOcdYLL2" name="checker_name"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="UdT7Jq7fjGx1" type="Q6IAQOcdYLL2" name="engineer_name"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="iM8YXbqsfYb4" type="Q6IAQOcdYLL2" name="approved_name"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="bGsMKkvmNOsf" type="Q6IAQOcdYLL2" name="checker_date"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="CzKwDFxvc3S7" type="Q6IAQOcdYLL2" name="ref"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="cIzHqYKPmAm6" type="Q6IAQOcdYLL2" name="part"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="ufrF4juGgDCt" type="Q6IAQOcdYLL2" name="rev"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="S7o28G7kX40N" type="Q6IAQOcdYLL2" name="approved_date"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="cKlPUXTMAKbE" type="Q6IAQOcdYLL2" name="type"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="1UThhda7lN8t" type="Q6IAQOcdYLL2" name="title"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="bFc6KcUuuDJM" comment="!
\brief This member function is used to initialize job property 
\param file file to be parsed" name="get">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" xmi.id="BeHxC1PMKxE0" type="Q6IAQOcdYLL2"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="yo6q1PCj8ubC" type="BLYuggmFtOMD" value="" name="file"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="b0EVMagIOm8P" comment="!
\brief This member function is used to print job property " name="print"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="AK6IEfSQKhLW" comment="!
\brief This member function is used to insert job 
property
\param z value of jobid" name="insert">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="oRiCBrZL9fcM" type="jkq1g50H5EkQ" value="" name=""/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="0Sj4gTUSuAc4" type="I2kck57RpvST" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Generalization discriminator="" visibility="public" isSpecification="false" namespace="Logical View" child="U95QnWUmXzeo" xmi.id="U56kjroR0RNV" parent="wVjrDeUJp1ih" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ilis3J55nYmS" name="fstream"/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ImB5idZg4Ikk" name="JointLoad">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="lCBeLniKx5Rl" type="JMHTbHOVN3Ut" name="FX"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="3uq35WnNGyTw" type="JMHTbHOVN3Ut" name="FY"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="Z0ddILM1YXdr" type="JMHTbHOVN3Ut" name="FZ"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="IL9FPZ1QRpTX" type="JMHTbHOVN3Ut" name="MX"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="JEuaALWjJ7Lb" type="JMHTbHOVN3Ut" name="MY"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="Thb1CEqUYzkv" type="JMHTbHOVN3Ut" name="MZ"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="YjL0YmXqyPQ8" name="JointLoad"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="jup22AcVpDU1" name="print"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="RKWxJGsqzBqV" name="insert">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" xmi.id="YW2Vgq1bBKVw" type="Q6IAQOcdYLL2"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="xLLtkj1TepUe" type="jkq1g50H5EkQ" value="" name="r"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="z69pJboivKeC" type="I2kck57RpvST" value="" name="con"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4WNiJrKJvT6E" name="Joint">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="2svxDZ7j38Fj"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="p8mqG1aCFtKn" type="JMHTbHOVN3Ut" name="id"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="hMS1mkdzNW7S" type="l6acjQqWHQWm" name="x"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="TUYJkYJXg5Mu" type="l6acjQqWHQWm" name="y"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="4w7HnP5UmVTW" type="l6acjQqWHQWm" name="z"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="F5Vcbc335ZMp" type="Q6IAQOcdYLL2" comment="who are fixed will be modified in the function." name="support"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="7fLmjhglbl3O" type="ImB5idZg4Ikk" name="jointload"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="B8qxbJTqOwRy" name="Joint"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="YS1dzNR40kqh" name="print"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="RVT0EUOPaEKB" name="insert">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" xmi.id="nlnLx6WTpTLV" type="Q6IAQOcdYLL2"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="VlzufOqEqrpp" type="jkq1g50H5EkQ" value="" name="r"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="CEuCyisPDJPQ" type="I2kck57RpvST" value="" name="con"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Generalization discriminator="" visibility="public" isSpecification="false" namespace="Logical View" child="4WNiJrKJvT6E" xmi.id="2svxDZ7j38Fj" parent="wVjrDeUJp1ih" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="6E7IXUgIGTdB" name="Material">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="Z7cPZxuR6Z76" type="Q6IAQOcdYLL2" name="name"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="5bGozdW4pbKL" type="Q6IAQOcdYLL2" name="type"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="50bJTDT1K5Qr" type="Q6IAQOcdYLL2" name="strength"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="1II5rQCu1Qhz" type="l6acjQqWHQWm" name="E"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="1D1rmLApJl7k" type="l6acjQqWHQWm" name="poisson"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="yalHd98eRPkG" type="l6acjQqWHQWm" name="alpha"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="nuBoKslM3mBn" type="l6acjQqWHQWm" name="density"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="5JcO4h71FsIt" type="l6acjQqWHQWm" name="damp"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="2OXRnFia7rNS" type="l6acjQqWHQWm" name="G"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="h6mitvVwE5JG" name="Material"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="nQH2GXvGwRih" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="p7V3AoHxEZyU" name="MemberLoad">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="4rj0IRgvnwf0" type="Q6IAQOcdYLL2" name="code"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="XruElUpaZKbj" type="Q6IAQOcdYLL2" name="specCode"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="6shIRfkUWTSn" type="XgCujeltBAOi" name="spec"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="qDYGfKZEOtlT" type="wXJvO8D8WJyx" name="f"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Sc80Nv4OaVtr" name="MemberLoad"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="vpy3oBOcMuq0" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="u8gf2LfZCXox" client="p7V3AoHxEZyU" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="ug34ErzDSUoL" client="p7V3AoHxEZyU" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="CPEaGx1gZ9gu" name="Member">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="CczwZI3hVhNo" type="BD9HZzVJGBmW" name="joint_id"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="UqAPk8bnY7cl" type="JMHTbHOVN3Ut" name="id"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="WTrLQqwcQvXy" type="Q6IAQOcdYLL2" name="material"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="CYffD0Uhoe7Z" type="Q6IAQOcdYLL2" name="beta"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="iZQ9Uv7eTkKg" type="liKJnw2JPudn" name="memberload"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="FQD0wX2yBx39" type="3WZgh7HE7bob" name="memberProperty"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="joMXQT699QTu" name="Member"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="KTDjLqX4NvBq" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="2iIdB9U6yQAk" client="CPEaGx1gZ9gu" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="wP6spGdPkxJ6" client="CPEaGx1gZ9gu" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="qGUHyovhaHD1" name="MemPro">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="ymr1ghSAL2ds" type="Q6IAQOcdYLL2" name="type"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="VhtgORSQrZ3d" type="Q6IAQOcdYLL2" name="country"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="APG8RawQMmP0" type="l6acjQqWHQWm" name="YD"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="TqAmqndLTW2p" type="l6acjQqWHQWm" name="ZD"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="vUFn1GQ9efI5" type="l6acjQqWHQWm" name="ZB"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="FCTbyrZQhjCX" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="iJ8piZj23xkO" client="qGUHyovhaHD1" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="VheWcMvMbJTj" client="qGUHyovhaHD1" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="FRVt6lzJyQuu" name="Load">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="HTIyATVfGMbY" type="JMHTbHOVN3Ut" name="id"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="ENoZMotbDOTH" type="Q6IAQOcdYLL2" name="type"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="AQa6qSy8vH46" type="Q6IAQOcdYLL2" name="title"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="kYjyuLX6iJd2" type="psa0Xp0qAHHj" name="reduce"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="5WdJv6Y3U97L" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="b5RVMVZ41I1v" name="Structure">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="bY2JpfJuAxB3"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="IzuSu5VunZOg" type="U95QnWUmXzeo" name="job"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="kD70R4b8ZDtK" type="Q6IAQOcdYLL2" name="width"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="rWi4AM3SMvsE" type="Q6IAQOcdYLL2" name="unit"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="1N8ouWTehYd8" type="Q6IAQOcdYLL2" name="group"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="7vOFX0eUKFuj" type="aCH9P8THcAJn" name="job_joints"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="jAf5iHAJWFsz" type="U7ydv552FM8z" name="job_members"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="wdqAJalrLBtj" type="soFWwzVSblaB" name="job_material"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="NdyXGwiWARkN" type="Q6IAQOcdYLL2" name="units"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="rvbUZNQTyGdH" type="Q6IAQOcdYLL2" name="widht"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="oM99X0qubmSr" type="Q6IAQOcdYLL2" name="x"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="0HTr2F9SOkrz" type="wXJvO8D8WJyx" name="beam"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="twYYhJTEUiqU" type="wXJvO8D8WJyx" name="column"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="GFFhMT86nYfL" type="3WZgh7HE7bob" name="member_pr"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="8rrYzj8cy1rF" type="aun5Bj0QA9r5" name="con_des"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="O1Czt4KAJXpf" type="Q6IAQOcdYLL2" name="message"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="BwTEJilaivsr" type="yvkmSN5aEw9E" name="load"/>
<UML:Attribute visibility="private" isSpecification="false" xmi.id="XKb5tX4eRsPr" type="3GllXARv15bt" name="memberload"/>
<UML:Operation visibility="private" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="z0ughRHVmF50" name="getSupportsTypes">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="MR4kaef8yFDr" type="Q6IAQOcdYLL2" value="" name="temp1"/>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="mGUE8r57pxnW" type="Q6IAQOcdYLL2" value="" name="type"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="P209H39bVBJ5" name="Structure">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="pxDlCPbwf3Al" type="BLYuggmFtOMD" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="uDskBdEYdEhs" comment="!
\brief This member function is used to get units nad input widht
and is called in structure()
\param temp string to be parsed" name="getUnits">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="IqTnzkqmh4Vr" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="T6o69yr2AhmL" comment="!
\brief This member function is used to print all properties 
of job and calls job::print() " name="print"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="I0tvDanVOEGL" comment="!
\brief This member function is used to initialize material 
property and is called in structure()
\param temp string to be parsed" name="getMaterial">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="y67g8cXZhLfo" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="IWqSBalTZeOm" comment="!
\brief This member function is used to initialize member property 
and is called in structure() 
\param temp string to be parsed" name="getMemberPro">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="C9FYNTtMXy0g" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="aVFFpt45NsVZ" comment="!
\brief This member function is used to initialize design property 
and is called in structure() 
\param temp string to be parsed" name="getDesign">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="TG00sNm2WzYs" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="SRCzNCdvfrBS" comment="!
\brief This member function is used to initialize design column 
and is called in structure() 
\param temp string to be parsed" name="getDesignColumn">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="kDX752eWGfW8" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="2GAWFiOf7adS" comment="!
\brief This member function is used to initialize design beam 
and is called in structure() 
\param temp string to be parsed" name="getDesignBeam">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="kGOQ5XqpkOvn" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="OZIfColC5ujI" comment="!
\brief This member function is used to initialize joints 
and is called in structure()
\param temp string to be parsed" name="getJoint">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="a7yggZ8QpUov" type="Q6IAQOcdYLL2" value="" name="str"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="1fij1dVPBn2L" comment="!
\brief This member function is used to initialize members 
and is called in structure()

JOINT COORDINATES (CYLINDRICAL (REVERSE))
(NOCHECK)band-spec
i 1 , x 1 , y 1 , z 1 , ( i 2 , x 2 , y 2 , z 2 , i 3 )

REPEAT n, xi 1 , yi 1 , zi 1 , (xi 2 , yi 2 , zi 2 ,..., xi n , yi n , zi n )
REPEAT ALL n, xi 1 , yi 1 , zi 1 , (xi 2 , yi 2 , zi 2 ,..., xi n , yi n ,
zi n )
\param temp string to be parsed" name="getMember">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="bmYegFvEMru2" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Q3RFXF8XurGv" comment="!
\brief This member function is to add BETA to joint

SUPPORTS
{ joint-list | ni TO nj GENERATE } { PINNED | FIXED ( BUT
release-spec (spring-spec) ) | ENFORCED ( BUT release-spec)
}
release-sepc = { FX | FY | FZ | MX | MY | MZ }
spring-spec = *{KFX f1 | KFY f2 | KFZ f3 | KMX f4 | KMY f5
| KMZ f6 }


Where:
ni, nj = Start and end node numbers, respectively, for generating
supports along a SURFACE element edge.
f ... f = Spring constants corresponding to support spring directions
1
6
X, Y, and Z and rotations about X, Y, and Z, repsectively.
\param temp string to be parsed" name="getSupports">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="SlJbWJx65Tij" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="idy2Us3utU8P" comment="!
\brief This member function is to add BETA to joint

CONSTANTS
MATERIAL name { MEMBER member/element-list | (ALL) }
\n
Where:
name = material name as specified in the DEFINE MATERIAL
command (See "Define Material" on page 386 ).
or
\n
{ E f 1 | G f 2 | POISSON f 3 | DENSITY f 4 | BETA { f 5 | ANGLE
| RANGLE } | ALPHA f 6 | CDAMP f 7 } { MEMBER memb/elem-list |
BEAM | PLATE | SOLID | (ALL) }
{ REF f8 , f9 , f10 | REFJT f 11 | REFVECTOR f 12 f 13 f 14 } MEMBER
memb/elem-list
and is called in structure()
\param temp string to be parsed" name="getBeta">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="jEwc3AVWuo5Q" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="80WBTFt9qrCL" comment="!
\brief This member function is to add load

LOADING i 1 ( LOADTYPE a 1 ) ( REDUCIBLE ) ( TITLE any_load_
title ) \n
and is called in structure()
\param temp string to be parsed" name="getLoad">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="hDDZfLyMauyd" type="Q6IAQOcdYLL2" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4U7yGDNMBtYf" comment="!
\brief This member function is to add load to
joint

JOINT LOAD
joint-list *{ FX f7 | FY f8 | FZ f9 | MX f10 | MY f11 | MZ f12

and is called in structure()
\param temp string to be parsed" name="getJointLoad">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="6RmxGwIv9TUo" type="Q6IAQOcdYLL2" value="" name="temp"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="nS9NK7yPZ4Lq" comment="!
\brief This member function is to add load to
member
MEMBER LOAD
member-list { { UNI | UMOM } dir-spec f 1 f 2 f 3 f 4 | { CON |
CMOM } dir-spec f 5 f 6 f 4 | LIN dir-spec f 7 f 8 f 9 | TRAP dir-
spec f 10 f 11 f 12 f 13 }
Where:
dir-spec = { X | Y | Z | GX | GY | GZ | PX | PY | PZ }
and is called in structure()
\param temp string to be parsed" name="getMemberLoad">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="FiAQai3g7qdL" type="Q6IAQOcdYLL2" value="" name="temp"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="mtHuLji8CrVW" comment="!
\brief This member function is used to insert data into DB." name="insert"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="xRtUTFIivT7V" comment="!
\brief This member function is used to insert members 
\param z unique id of job generated by job::insert() 
" name="insertMember">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="9ACF0nalfpf0" type="JMHTbHOVN3Ut" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="ZL8jBbD607aU" comment="!
\brief This member function is used to insert material 
property into Database.
\param z unique id of job generated by job::insert()
" name="insertMaterial">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="KtADMHjTStiQ" type="JMHTbHOVN3Ut" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="eJBJ6oHfAPML" comment="!
\brief This function is used to insert member property
into Database.
\param z unique id of job generated by job::insert()

" name="insertMemberPro">
<UML:BehavioralFeature.parameter>
<UML:Parameter visibility="private" isSpecification="false" xmi.id="yaPzfzRxqbAC" type="JMHTbHOVN3Ut" value="" name=""/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="trgLkOjPftgm" name="~ Structure"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="wVjrDeUJp1ih" name="base">
<UML:Classifier.feature>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="n9xlmjevyEJ0" type="cI3PKj7Gr6Vm" name="driver"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="SotO0CPFjKxD" type="Cba1h4nSDlCz" name="stmt"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="Ikfz3cC7yWEk" type="4nTFWfFxR6LS" name="connection"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="te8r8LbRxI4Z" type="m8wDCFdUyIT1" name="prep_stmt"/>
<UML:Attribute visibility="public" isSpecification="false" xmi.id="z0VuJXTIGek5" type="aQsYjJXcxgR6" name="result"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Generalization discriminator="" visibility="public" isSpecification="false" namespace="Logical View" child="b5RVMVZ41I1v" xmi.id="bY2JpfJuAxB3" parent="wVjrDeUJp1ih" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="WKDqG65FRD1M" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="4WNiJrKJvT6E" xmi.id="WkVwvWIdzE3z" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="53Z4Ga347ecR" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="P7pWegsmbH18" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="CPEaGx1gZ9gu" xmi.id="yB9YQ8egmFDf" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="7UgtjuYOOab6" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="tktVZVmGdSML" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="6E7IXUgIGTdB" xmi.id="ZTkAt4Vaa8nH" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="2DUaLHruEhkd" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="i8LtX6EMznoY" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="FnoEZdlhrnoK" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="kl1w558Fy0L2" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="WjPUkkU9ellx" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="YYZFh1dav96a" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="qGUHyovhaHD1" xmi.id="GBd9KiklGXhU" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="hDhvkONuR6DQ" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="dFocEfrdh1aa" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="FRVt6lzJyQuu" xmi.id="2AbhC9GH3yeR" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="CxjDuMeM3PEW" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="RjzgWHpiBIwU" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="p7V3AoHxEZyU" xmi.id="Zk4i00CzgFdE" client="b5RVMVZ41I1v" name=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cGsmPhpdRaEO" xmi.id="sJnWYOkgYayz" client="b5RVMVZ41I1v" name=""/>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="RAPja8CTJxLo" name="structure">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="U8kfI6Rm5LC2" name="Structure"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Vx4FRdUWWMIv" name="insert"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="XGz9JxVgSQhc" name="print()"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="vsHL3c99zWcr" name="print"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="mGhTGCihN7Ov" name="job">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="oVihUCtY8qgN" name="Job"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="IR2exxdkkUh3" name="insert"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="BD9HZzVJGBmW" name="joint">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="tg4LVAJjWTpz" name="joint()"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="mfmMCHbiLNnq" name="joint"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="LbJjfGsrDXM8" name="getJoint"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="9I8lVdJejYYI" name="insertJoint"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="jZIczuk85rPc" name="member">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="40uxpz1tgnJi" name="member"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="k05e02jaE7Mz" name="getMember"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="fO9jdRBVDAuJ" name="insertmember"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="JnQTof6VCO5B" name="member_property">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="qIYDmdl64qDK" name="insertMemberProperty"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="EwgXxrNKB1PQ" name="getMemberProperty"/>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="4JB1kKZaecb9" name="insertmaterial"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="W07cjEG30hUo" name="material">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="EKrJpT6wq194" name="getMaterial"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="eUGEIksokxOU" name="joint_load">
<UML:Classifier.feature>
<UML:Operation visibility="public" isSpecification="false" isQuery="false" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="PJe5Hjahv2w7" name="geJointLoad"/>
</UML:Classifier.feature>
</UML:Class>
<UML:Class visibility="public" isSpecification="false" namespace="Logical View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="EoPXQ0mxkytj" name="user"/>
</UML:Namespace.ownedElement>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="class diagram" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="816.3947874856774" canvaswidth="1156.153900146484" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="104" xmi.id="MFvzQC2LDeF0" documentation="" showscope="1" snapgrid="0" showatts="1" type="1">
<widgets>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-905.076904296875" showattsigs="601" showstereotype="1" y="-563.3846435546875" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="XiuNH2YAuCTc" width="222" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="b5RVMVZ41I1v" showscope="1" height="225" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-565.5384521484375" showattsigs="601" showstereotype="1" y="-549" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="YDzE6gylcLbv" width="188" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="wVjrDeUJp1ih" showscope="1" height="65" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-863.076904296875" showattsigs="601" showstereotype="1" y="-184.3846130371094" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="5jDNHUKoAC9S" width="141" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="pDzkMJGkNWsl" showscope="1" height="50" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-857.076904296875" showattsigs="601" showstereotype="1" y="-280.6153869628906" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="Fha7r4jQFjcJ" width="137" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="aun5Bj0QA9r5" showscope="1" height="40" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-575.5384521484375" showattsigs="601" showstereotype="1" y="-698.5384521484375" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="1kROqj2RKQ88" width="172" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="U95QnWUmXzeo" showscope="1" height="45" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-292.7307762732872" showattsigs="601" showstereotype="1" y="-497.8461655836839" showattributes="1" font="Sans Serif,9,-1,5,75,0,0,0,0,0" localid="1sMMJSSHjaSh" width="227" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="4WNiJrKJvT6E" showscope="1" height="100" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-236.1538391113281" showattsigs="601" showstereotype="1" y="-700.1538696289062" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="ohTrRGQEMudq" width="227" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="ImB5idZg4Ikk" showscope="1" height="100" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-1163.615356445312" showattsigs="601" showstereotype="1" y="-531.5384521484375" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="8AHU5uIHOZaA" width="80" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="FRVt6lzJyQuu" showscope="1" height="60" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-1165.307739257812" showattsigs="601" showstereotype="1" y="-440.5384521484375" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="hoxhK5yKcUzi" width="96" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="6E7IXUgIGTdB" showscope="1" height="120" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-315.4685977628861" showattsigs="601" showstereotype="1" y="-120.0044214533663" showattributes="1" font="Sans Serif,9,-1,5,75,0,0,0,0,0" localid="QOd3EN6KVLmY" width="192" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="CPEaGx1gZ9gu" showscope="1" height="116.9230769230769" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-232.3076934814453" showattsigs="601" showstereotype="1" y="-368.3076782226562" showattributes="1" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="F4qbbQlIDjzX" width="99" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="p7V3AoHxEZyU" showscope="1" height="70" showopsigs="601"/>
<classwidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" showoperations="1" textcolor="#000000" usesdiagramusefillcolor="0" showpubliconly="1" showpackage="1" x="-689.7948811848959" showattsigs="601" showstereotype="1" y="-118.4261762246318" showattributes="1" font="Sans Serif,9,-1,5,75,0,0,0,0,0" localid="PE5v9D2T5Rzf" width="141" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="qGUHyovhaHD1" showscope="1" height="80" showopsigs="601"/>
</widgets>
<messages/>
<associations>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="bY2JpfJuAxB3" widgetbid="wVjrDeUJp1ih" totalcountb="2" type="500" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-683.076904296875" starty="-535.1538696289062"/>
<endpoint endx="-565.5384521484375" endy="-535.1538696289062"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="aun5Bj0QA9r5" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="cGsmPhpdRaEO" widgetbid="pDzkMJGkNWsl" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-800.5384521484375" starty="-240.6153869628906"/>
<endpoint endx="-800.5384521484375" endy="-184.3846130371094"/>
</linepath>
</assocwidget>
<assocwidget linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="aun5Bj0QA9r5" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" widgetaid="b5RVMVZ41I1v" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="1" visibilityB="1" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" xmi.id="8rrYzj8cy1rF" changeabilityB="900" type="510">
<linepath layout="Polyline">
<startpoint startx="-792.4615478515625" starty="-338.3846435546875"/>
<endpoint endx="-792.4615478515625" endy="-280.6153869628906"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-867" showstereotype="1" y="-285" text="con_des" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="NY4ztfuxN8Ke" pretext="-" role="710" width="48" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="adQjnZ90Fj74" height="14"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="U95QnWUmXzeo" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="U56kjroR0RNV" widgetbid="wVjrDeUJp1ih" totalcountb="2" type="500" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-475.8461608886719" starty="-653.5384521484375"/>
<endpoint endx="-475.8461608886719" endy="-549"/>
</linepath>
</assocwidget>
<assocwidget linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="U95QnWUmXzeo" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" totalcounta="2" totalcountb="2" widgetaid="b5RVMVZ41I1v" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="1" visibilityB="1" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" xmi.id="IzuSu5VunZOg" changeabilityB="900" type="510">
<linepath layout="Polyline">
<startpoint startx="-683.076904296875" starty="-563.3846435546875"/>
<endpoint endx="-575.5384521484375" endy="-653.5384521484375"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-579" showstereotype="1" y="-646" text="job" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="yH8D0GHm5kob" pretext="-" role="710" width="25" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="o8URUMtT6Isv" height="14"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="4WNiJrKJvT6E" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="2svxDZ7j38Fj" widgetbid="wVjrDeUJp1ih" totalcountb="2" type="500" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-292.7307762732872" starty="-484"/>
<endpoint endx="-377.5384521484375" endy="-484"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="1" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="WkVwvWIdzE3z" widgetbid="4WNiJrKJvT6E" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-683.076904296875" starty="-431.50001173753"/>
<endpoint endx="-292.7307762732872" endy="-431.50001173753"/>
</linepath>
</assocwidget>
<assocwidget linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="ImB5idZg4Ikk" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" widgetaid="4WNiJrKJvT6E" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" xmi.id="7fLmjhglbl3O" changeabilityB="900" type="510">
<linepath layout="Polyline">
<startpoint startx="-236.1538391113281" starty="-497.8461655836839"/>
<endpoint endx="-236.1538391113281" endy="-600.1538696289062"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-288" showstereotype="1" y="-590" text="jointload" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="EWJJo9En0Y7H" pretext="+" role="710" width="54" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="0ZWh8yOudsk3" height="14"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="2AbhC9GH3yeR" widgetbid="FRVt6lzJyQuu" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-905.076904296875" starty="-510"/>
<endpoint endx="-1083.615356445312" endy="-510"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="ZTkAt4Vaa8nH" widgetbid="6E7IXUgIGTdB" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-905.076904296875" starty="-382.0769348144531"/>
<endpoint endx="-1069.307739257812" endy="-382.0769348144531"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="yB9YQ8egmFDf" widgetbid="CPEaGx1gZ9gu" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-683.076904296875" starty="-338.3846435546875"/>
<endpoint endx="-315.4685977628861" endy="-120.0044214533663"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="Zk4i00CzgFdE" widgetbid="p7V3AoHxEZyU" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-683.076904296875" starty="-338.3846435546875"/>
<endpoint endx="-232.3076934814453" endy="-338.3846435546875"/>
</linepath>
</assocwidget>
<assocwidget linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="p7V3AoHxEZyU" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" totalcounta="2" totalcountb="2" widgetaid="CPEaGx1gZ9gu" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" xmi.id="iZQ9Uv7eTkKg" changeabilityB="900" type="501">
<linepath layout="Polyline">
<startpoint startx="-208.1467586824264" starty="-120.0044214533663"/>
<endpoint endx="-208.1467586824264" endy="-298.3076782226562"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-204" showstereotype="1" y="-291" text="0..1" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="mxqOPp7pBirP" pretext="" role="702" width="25" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="3xjYJV7WXx89" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-206.0243902439024" showstereotype="1" y="-252.5121951219512" text="memberload" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="LtPWaP4MKslk" pretext="+" role="710" width="73" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="fqXpWOEZKw7b" height="14"/>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="b5RVMVZ41I1v" usesdiagramfillcolor="0" fillcolor="#ffff00" linecolor="none" seqnum="" totalcounta="2" xmi.id="GBd9KiklGXhU" widgetbid="qGUHyovhaHD1" totalcountb="2" type="502" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-683.076904296875" starty="-338.3846435546875"/>
<endpoint endx="-683.076904296875" endy="-118.4261762246318"/>
</linepath>
</assocwidget>
<assocwidget linecolor="#ff0000" indexa="1" usesdiagramfillcolor="0" widgetbid="qGUHyovhaHD1" indexb="1" linewidth="0" seqnum="" textcolor="#000000" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" widgetaid="CPEaGx1gZ9gu" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" xmi.id="FQD0wX2yBx39" changeabilityB="900" type="510">
<linepath layout="Polyline">
<startpoint startx="-315.4685977628861" starty="-66.70203829359735"/>
<endpoint endx="-548.7948811848959" endy="-66.70203829359735"/>
</linepath>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-331" showstereotype="1" y="-82" text="1" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="oV60Q89C4xx2" pretext="" role="701" width="14" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="pLDwDXoAGuqV" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-546" showstereotype="1" y="-82" text="1..*" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="ew0qFTw2z32P" pretext="" role="702" width="24" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="B9ZD7XEuqRr1" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-541.9098237136315" showstereotype="1" y="-67.15384674072266" text="memberProperty" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="lwql0sOD9tJr" pretext="+" role="710" width="92" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="zl6gFl8VCJV8" height="14"/>
</assocwidget>
</associations>
</diagram>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="sim_sequence" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="469" canvaswidth="607" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" autoincrementsequence="1" usefillcolor="1" fillcolor="#ffff00" zoom="100" xmi.id="q129rlrXZMM5" documentation="" showscope="1" snapgrid="0" showatts="1" type="3">
<widgets>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-833" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="AB9xHjd18LsE" width="60" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="RAPja8CTJxLo" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-916" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="DZPWWiIetScA" width="50" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="mGhTGCihN7Ov" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-980" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="NSCiZaek91Gf" width="50" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="BD9HZzVJGBmW" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-1056" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="ouv25gXR8j9g" width="57" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="jZIczuk85rPc" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-1169" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="GpJMeiwTaqVg" width="100" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="JnQTof6VCO5B" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-1235" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="MaIWxNhDByXp" width="56" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="W07cjEG30hUo" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-1305" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="CfVCKzyeZEAW" width="62" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="eUGEIksokxOU" height="20" drawasactor="0"/>
<objectwidget linecolor="none" usesdiagramfillcolor="1" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="1" x="-748" decon="0" showstereotype="1" y="80" font="Sans Serif,9,-1,0,50,0,1,0,0,0" localid="W0mjaKfByyVw" width="50" isinstance="0" multipleinstance="0" usefillcolor="1" fillcolor="none" xmi.id="EoPXQ0mxkytj" height="20" drawasactor="0"/>
</widgets>
<messages>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="AB9xHjd18LsE" textid="b9Pa7oy3yIk6" operation="U8kfI6Rm5LC2" linewidth="none" seqnum="1" textcolor="none" usesdiagramusefillcolor="1" x="-802" showstereotype="1" y="137" widgetaid="W0mjaKfByyVw" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="IR5NhBbvzyRO" width="78" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="U8kfI6Rm5LC2" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-797" showstereotype="1" y="123" text="Structure()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="U1uSxPMDpRaW" pretext="" role="704" width="69" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="b9Pa7oy3yIk6" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="DZPWWiIetScA" textid="7WG1vO07U3Hr" operation="oVihUCtY8qgN" linewidth="none" seqnum="2" textcolor="none" usesdiagramusefillcolor="1" x="-890" showstereotype="1" y="163" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="jZDY0n2ZuPA1" width="86" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="oVihUCtY8qgN" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-850" showstereotype="1" y="149" text="Job()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="4vw9F99yiMUg" pretext="" role="704" width="40" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="7WG1vO07U3Hr" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="NSCiZaek91Gf" textid="X4n7VIEeD3CY" operation="LbJjfGsrDXM8" linewidth="none" seqnum="3" textcolor="none" usesdiagramusefillcolor="1" x="-954" showstereotype="1" y="192" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="KHglf0XYbRV9" width="150" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="LbJjfGsrDXM8" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-871" showstereotype="1" y="178" text="getJoint()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="GMC6VLsncXXF" pretext="" role="704" width="61" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="X4n7VIEeD3CY" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="ouv25gXR8j9g" textid="KtUbIhLuCoxB" operation="k05e02jaE7Mz" linewidth="none" seqnum="4" textcolor="none" usesdiagramusefillcolor="1" x="-1026" showstereotype="1" y="218" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="dzSq3dPuJRFm" width="222" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="k05e02jaE7Mz" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-888" showstereotype="1" y="204" text="getMember()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="6hmQ4XGhWhWZ" pretext="" role="704" width="78" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="KtUbIhLuCoxB" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="GpJMeiwTaqVg" textid="xKyo38UmK1CI" operation="EwgXxrNKB1PQ" linewidth="none" seqnum="5" textcolor="none" usesdiagramusefillcolor="1" x="-1118" showstereotype="1" y="241" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="WPviDtrFtlAg" width="314" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="EwgXxrNKB1PQ" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-927" showstereotype="1" y="227" text="getMemberProperty()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="MT57IBAma4Sl" pretext="" role="704" width="117" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="xKyo38UmK1CI" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="MaIWxNhDByXp" textid="93ByKIohsRMS" operation="EKrJpT6wq194" linewidth="none" seqnum="6" textcolor="none" usesdiagramusefillcolor="1" x="-1206" showstereotype="1" y="262" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="1L6ZPXIKpG8s" width="402" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="EKrJpT6wq194" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-888" showstereotype="1" y="248" text="getMaterial()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="8NvDE8XDRcnr" pretext="" role="704" width="78" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="93ByKIohsRMS" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="CfVCKzyeZEAW" textid="aErdjAzXI1Ds" operation="PJe5Hjahv2w7" linewidth="none" seqnum="7" textcolor="none" usesdiagramusefillcolor="1" x="-1273" showstereotype="1" y="292" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="7eGZG1ON4XLM" width="469" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="PJe5Hjahv2w7" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-889" showstereotype="1" y="278" text="geJointLoad()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="QCRHDaJJDZqT" pretext="" role="704" width="79" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="aErdjAzXI1Ds" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="DZPWWiIetScA" textid="P46G3962xXFq" operation="IR2exxdkkUh3" linewidth="none" seqnum="9" textcolor="none" usesdiagramusefillcolor="1" x="-890" showstereotype="1" y="339" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="MjTVisvTs15s" width="86" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="IR2exxdkkUh3" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-860" showstereotype="1" y="325" text="insert()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="mnqxID6fwZAf" pretext="" role="704" width="52" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="P46G3962xXFq" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="NSCiZaek91Gf" textid="N1hEKd7lh18F" operation="9I8lVdJejYYI" linewidth="none" seqnum="10" textcolor="none" usesdiagramusefillcolor="1" x="-954" showstereotype="1" y="375" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="flgbIoEisIyt" width="150" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="9I8lVdJejYYI" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-886" showstereotype="1" y="361" text="insertJoint()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="98HuaxvDibpz" pretext="" role="704" width="78" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="N1hEKd7lh18F" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="AB9xHjd18LsE" textid="qDE81qiSV4bE" operation="Vx4FRdUWWMIv" linewidth="none" seqnum="8" textcolor="none" usesdiagramusefillcolor="1" x="-802" showstereotype="1" y="317" widgetaid="W0mjaKfByyVw" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="VRVC0I9OKqcc" width="78" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="Vx4FRdUWWMIv" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-780" showstereotype="1" y="303" text="insert()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="5stoRQ4urY4s" pretext="" role="704" width="52" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="qDE81qiSV4bE" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="ouv25gXR8j9g" textid="xzC0e03AXbB5" operation="fO9jdRBVDAuJ" linewidth="none" seqnum="11" textcolor="none" usesdiagramusefillcolor="1" x="-1026" showstereotype="1" y="401" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="mNndtsTh3hq5" width="222" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="fO9jdRBVDAuJ" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-904" showstereotype="1" y="387" text="insertmember()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="umyO8HJuc7VV" pretext="" role="704" width="96" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="xzC0e03AXbB5" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="GpJMeiwTaqVg" textid="BQZn9j5qwV2j" operation="4JB1kKZaecb9" linewidth="none" seqnum="12" textcolor="none" usesdiagramusefillcolor="1" x="-1118" showstereotype="1" y="431" widgetaid="AB9xHjd18LsE" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="RBB3GgWDdiCI" width="314" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="4JB1kKZaecb9" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-903" showstereotype="1" y="417" text="insertmaterial()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="qM53UxKt7VuN" pretext="" role="704" width="95" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="BQZn9j5qwV2j" height="14"/>
</messagewidget>
<messagewidget linecolor="none" usesdiagramfillcolor="1" widgetbid="AB9xHjd18LsE" textid="8NOTujyB9EM2" operation="vsHL3c99zWcr" linewidth="none" seqnum="13" textcolor="none" usesdiagramusefillcolor="1" x="-802" showstereotype="1" y="461" widgetaid="W0mjaKfByyVw" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="av2fQx2aNZNU" width="78" isinstance="0" usefillcolor="1" fillcolor="none" xmi.id="vsHL3c99zWcr" height="8" sequencemessagetype="1001">
<floatingtext linecolor="none" usesdiagramfillcolor="1" linewidth="none" textcolor="none" usesdiagramusefillcolor="1" x="-781" showstereotype="1" y="447" text="print()" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="NXv19WAhQDMo" pretext="" role="704" width="53" isinstance="0" posttext="" usefillcolor="1" fillcolor="none" xmi.id="8NOTujyB9EM2" height="14"/>
</messagewidget>
</messages>
<associations/>
</diagram>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="activity diagram" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="0" canvaswidth="0" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="100" xmi.id="blAStW4Z67e7" documentation="" showscope="1" snapgrid="0" showatts="1" type="6">
<widgets/>
<messages/>
<associations/>
</diagram>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="state diagram" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="271" canvaswidth="360" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="100" xmi.id="RAsbSm6LngFo" documentation="" showscope="1" snapgrid="0" showatts="1" type="5">
<widgets>
<statewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-579" showstereotype="1" y="-450" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="5CxU9b7UPk6B" statename="State" statetype="0" width="10" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="fMVZYmtzwmZN" documentation="" height="10">
<Activities/>
</statewidget>
<statewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-609" showstereotype="1" y="-278" font="Sans Serif,9,-1,5,50,0,0,0,0,0" localid="WfiJJx5O73sE" statename="tokens" statetype="1" width="69" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="cxjzipBN9gui" documentation="" height="20">
<Activities/>
</statewidget>
<statewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-600" showstereotype="1" y="-403" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="SmfNYEk2sQLB" statename="file" statetype="1" width="40" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="LRaQSQe4ON26" documentation="" height="20">
<Activities/>
</statewidget>
<statewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-612" showstereotype="1" y="-341" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="ADRItJ0J5deb" statename="text stream" statetype="1" width="69" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="sMdimzt5ORVq" documentation="" height="20">
<Activities/>
</statewidget>
<statewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-618" showstereotype="1" y="-199" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="s8sGTuKc7juy" statename="stored in database" statetype="1" width="105" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="2sG8VujLHN31" documentation="" height="20">
<Activities/>
</statewidget>
<statewidget linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-357" showstereotype="1" y="-291" font="Sans Serif,9,-1,0,75,0,0,0,0,0" localid="XJNoeQqyLvek" statename="State" statetype="2" width="10" isinstance="0" usefillcolor="1" fillcolor="#ffff00" xmi.id="VAyCZRKsD4Gf" documentation="" height="10">
<Activities/>
</statewidget>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-466" showstereotype="1" y="-367" text="wrong file" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="ifBEIlDq4ach" pretext="" role="700" width="53" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="zSdKLI2rQ11z" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-514" showstereotype="1" y="-273" text="wrong syntax" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="pL3EK2BkJ1Le" pretext="" role="700" width="69" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="5eho3uoENcRM" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-516" showstereotype="1" y="-261" text="connection error" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="3LKusc6gv8uD" pretext="" role="700" width="82" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="A5xU4J69voyy" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-707" showstereotype="1" y="-231" text="connection established" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="fDeazcZgNjhi" pretext="" role="700" width="112" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="N56JmO84kdIF" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-680" showstereotype="1" y="-246" text="syntax correct" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="0jsT5xylAcL8" pretext="" role="700" width="73" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="DsmYcTExWKGJ" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-667" showstereotype="1" y="-321" text="correct data" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="iPLQ0df1KXSO" pretext="" role="700" width="63" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="UQ7d0QjBJVht" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-691" showstereotype="1" y="-359" text="correct file" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="wvqTD6kvT5MS" pretext="" role="700" width="56" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="hzTzXvNzJScH" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-476" showstereotype="1" y="-321" text="wrong data" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="4W2VoeQzaNRy" pretext="" role="700" width="59" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="v9FmHgRW8slT" height="14"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-568" showstereotype="1" y="-428" text="file recieved" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="SGlvrRNuxNNk" pretext="" role="700" width="63" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="2nha99Y2IloX" height="14"/>
</widgets>
<messages/>
<associations>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="LRaQSQe4ON26" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="fMVZYmtzwmZN" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-575" starty="-440"/>
<endpoint endx="-575" endy="-403"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="sMdimzt5ORVq" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="LRaQSQe4ON26" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-578" starty="-383"/>
<endpoint endx="-578" endy="-341"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="cxjzipBN9gui" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="sMdimzt5ORVq" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-574" starty="-321"/>
<endpoint endx="-574" endy="-278"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="2sG8VujLHN31" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="cxjzipBN9gui" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-575" starty="-258"/>
<endpoint endx="-575" endy="-199"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="VAyCZRKsD4Gf" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="1" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="2sG8VujLHN31" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-513" starty="-199"/>
<endpoint endx="-357" endy="-281"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="VAyCZRKsD4Gf" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="LRaQSQe4ON26" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-560" starty="-383"/>
<endpoint endx="-357" endy="-291"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="VAyCZRKsD4Gf" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="sMdimzt5ORVq" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-543" starty="-321"/>
<endpoint endx="-357" endy="-291"/>
</linepath>
</assocwidget>
<assocwidget roleBdoc="" linecolor="none" indexa="1" usesdiagramfillcolor="0" widgetbid="VAyCZRKsD4Gf" indexb="1" linewidth="none" seqnum="" textcolor="none" usesdiagramusefillcolor="0" totalcounta="2" totalcountb="2" roleAdoc="" widgetaid="cxjzipBN9gui" font="Sans Serif,9,-1,0,50,0,0,0,0,0" visibilityA="0" visibilityB="0" usefillcolor="1" fillcolor="#ffff00" changeabilityA="900" changeabilityB="900" documentation="" type="514">
<linepath layout="Polyline">
<startpoint startx="-540" starty="-278"/>
<endpoint endx="-357" endy="-281"/>
</linepath>
</assocwidget>
</associations>
</diagram>
</diagrams>
</XMI.extension>
</UML:Model>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Use Case View" name="Use Case View">
<UML:Namespace.ownedElement>
<UML:Actor visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="2anZPl6TEMs9" name="user"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="8RWJ7J5S6ci0" name="make model"/>
<UML:UseCase visibility="public" isSpecification="false" namespace="Use Case View" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="JEJU0uH8JnRP" name="make query"/>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="Ww4QMxpd9657" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="zMGI7ffACVKH" type="2anZPl6TEMs9" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="0RhhorDIlIi7" type="JEJU0uH8JnRP" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="DWkMcnTb9hsE" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="NVOXyhnz8Ugw" type="2anZPl6TEMs9" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="JuD4AvBNPth2" type="8RWJ7J5S6ci0" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Use Case View" xmi.id="frmaDVUJ0KVy" name="">
<UML:Association.connection>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="rZIGtep69jgY" type="2anZPl6TEMs9" name="" aggregation="none"/>
<UML:AssociationEnd changeability="changeable" visibility="public" isNavigable="true" isSpecification="false" xmi.id="KJc6XRfAIQjT" type="JEJU0uH8JnRP" name="" aggregation="none"/>
</UML:Association.connection>
</UML:Association>
</UML:Namespace.ownedElement>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="sim_use_case" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="174.6666717529297" canvaswidth="248.6666793823242" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="150" xmi.id="8G5WJJP2H1qH" documentation="" showscope="1" snapgrid="0" showatts="1" type="2">
<widgets>
<actorwidget width="50" showstereotype="1" x="-490" usesdiagramusefillcolor="0" y="-389.3333435058594" usesdiagramfillcolor="0" isinstance="0" localid="7rt3dg2ku7GE" fillcolor="#ffff00" height="125.6666641235352" linecolor="none" xmi.id="2anZPl6TEMs9" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,50,0,0,0,0,0"/>
<boxwidget width="121.3333358764648" showstereotype="1" x="-362.6666564941406" usesdiagramusefillcolor="0" y="-415.3333435058594" usesdiagramfillcolor="0" isinstance="0" localid="OfEde4veegD1" fillcolor="#ffff00" height="174.6666717529297" linecolor="#000000" xmi.id="RKVgeLpjBimm" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,50,0,0,0,0,0"/>
<usecasewidget width="72" showstereotype="1" x="-340" usesdiagramusefillcolor="0" y="-388.6666564941406" usesdiagramfillcolor="0" isinstance="0" localid="LBFjrAmYvSsP" fillcolor="#ffff00" height="45" linecolor="none" xmi.id="8RWJ7J5S6ci0" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,0,0,0,0,0"/>
<usecasewidget width="70" showstereotype="1" x="-338.6666564941406" usesdiagramusefillcolor="0" y="-324.6666564941406" usesdiagramfillcolor="0" isinstance="0" localid="4XpA7X9SjOBY" fillcolor="#ffff00" height="45" linecolor="none" xmi.id="JEJU0uH8JnRP" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,0,0,0,0,0"/>
<floatingtext linecolor="none" usesdiagramfillcolor="0" linewidth="0" textcolor="#000000" usesdiagramusefillcolor="0" x="-316" showstereotype="1" y="-266" text="Sim" font="Sans Serif,9,-1,0,50,0,0,0,0,0" localid="tDmtVFqNp8bg" pretext="" role="700" width="25" isinstance="0" posttext="" usefillcolor="1" fillcolor="#ffff00" xmi.id="kPkt8QQTj2XE" height="14"/>
</widgets>
<messages/>
<associations>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="2anZPl6TEMs9" usesdiagramfillcolor="1" fillcolor="none" linecolor="none" seqnum="" totalcounta="2" xmi.id="DWkMcnTb9hsE" widgetbid="8RWJ7J5S6ci0" totalcountb="2" type="503" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-440" starty="-373.3333435058594"/>
<endpoint endx="-340" endy="-373.3333435058594"/>
</linepath>
</assocwidget>
<assocwidget indexa="1" indexb="1" usesdiagramusefillcolor="0" widgetaid="2anZPl6TEMs9" usesdiagramfillcolor="1" fillcolor="none" linecolor="none" seqnum="" totalcounta="2" xmi.id="frmaDVUJ0KVy" widgetbid="JEJU0uH8JnRP" totalcountb="2" type="503" textcolor="none" usefillcolor="1" linewidth="none" font="Sans Serif,9,-1,0,50,0,0,0,0,0">
<linepath layout="Polyline">
<startpoint startx="-440" starty="-307.3333435058594"/>
<endpoint endx="-338.6666564941406" endy="-307.3333435058594"/>
</linepath>
</assocwidget>
</associations>
</diagram>
</diagrams>
</XMI.extension>
</UML:Model>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Component View" name="Component View">
<UML:Namespace.ownedElement>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="BHPtKtbp82sh" comment="/*!
 *	\file ConcertDesign.h 
 *
 * \brief It contain declarations for ConcertDesgin to be defined
 *
 * 
 *	Compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="ConcreteDesign.h"/>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="HK0cwVSgIqTq" comment="/*!
 *	\file header.h 
 *
 * \brief It contain directives to include all necessary headers and bases 
 *	function split used to parse. 
 *
 * 
 *	compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="header.h"/>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="kBfxWQL5oBbV" comment="/*!
 *	\file job.h 
 *
 *	\brief It contain class to define Job
 *
 * 
 * Compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="job.h"/>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="zBN9ozT52Dhk" comment="/*!
 *	\file joint.h 
 *
 * \brief It contain declarations for Joint and JointLoad to be defined
 *
 * 
 *	Compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="joint.h"/>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="sBhi0WWClOMh" comment="/*!
 *	\file material.h 
 *
 * \brief It contain declarations for Material to be defined
 *
 * 
 *	Compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="material.h"/>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="eOGmDdCujwca" comment="/*!
 *	\file member.h 
 *
 * \brief It contain declarations for Member,MemberLoad,MemPro to be defined
 *
 * 
 *	Compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="member.h"/>
<UML:Artifact visibility="public" isSpecification="false" namespace="Component View" drawas="1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="VnsyKslFK12M" comment="/*!
 *	\file structure.h 
 *
 * \brief It contain declarations for Structure to be defined
 *
 * 
 *	Compiler g++
 *
 * \author amarjeet singh kapoor
 * 
 */" name="structure.h"/>
</UML:Namespace.ownedElement>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="simcomponent" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="445" canvaswidth="579" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="100" xmi.id="jtD8F7Er7MMO" documentation="" showscope="1" snapgrid="0" showatts="1" type="7">
<widgets>
<artifactwidget width="100" showstereotype="1" x="-300" usesdiagramusefillcolor="0" y="-670" usesdiagramfillcolor="0" isinstance="0" localid="svgZoQUul9OL" fillcolor="#ffff00" height="60" linecolor="none" xmi.id="HK0cwVSgIqTq" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,1,0,0,0,0"/>
<artifactwidget width="100" showstereotype="1" x="-285" usesdiagramusefillcolor="0" y="-285" usesdiagramfillcolor="0" isinstance="0" localid="i43WkXGTQRcd" fillcolor="#ffff00" height="60" linecolor="none" xmi.id="kBfxWQL5oBbV" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,1,0,0,0,0"/>
<artifactwidget width="100" showstereotype="1" x="100" usesdiagramusefillcolor="0" y="-349" usesdiagramfillcolor="0" isinstance="0" localid="WoVb9r01mgYZ" fillcolor="#ffff00" height="60" linecolor="none" xmi.id="BHPtKtbp82sh" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,1,0,0,0,0"/>
<artifactwidget width="100" showstereotype="1" x="-336" usesdiagramusefillcolor="0" y="-369" usesdiagramfillcolor="0" isinstance="0" localid="42TqBp9rtAOb" fillcolor="#ffff00" height="60" linecolor="none" xmi.id="sBhi0WWClOMh" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,1,0,0,0,0"/>
<artifactwidget width="100" showstereotype="1" x="-379" usesdiagramusefillcolor="0" y="-466" usesdiagramfillcolor="0" isinstance="0" localid="hc551fjYTC7c" fillcolor="#ffff00" height="60" linecolor="none" xmi.id="eOGmDdCujwca" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,1,0,0,0,0"/>
<artifactwidget width="100" showstereotype="1" x="-173" usesdiagramusefillcolor="0" y="-511" usesdiagramfillcolor="0" isinstance="0" localid="17bol9Lq9meI" fillcolor="#ffff00" height="60" linecolor="none" xmi.id="VnsyKslFK12M" textcolor="#000000" usefillcolor="1" linewidth="0" font="Sans Serif,9,-1,0,75,1,0,0,0,0"/>
</widgets>
<messages/>
<associations/>
</diagram>
</diagrams>
</XMI.extension>
</UML:Model>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Deployment View" name="Deployment View">
<UML:Namespace.ownedElement/>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="1" showpackage="1" showpubliconly="0" showstereotype="1" name="ad" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="0" canvaswidth="0" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="100" xmi.id="mLdDXjoZqNLc" documentation="" showscope="1" snapgrid="0" showatts="1" type="8">
<widgets/>
<messages/>
<associations/>
</diagram>
</diagrams>
</XMI.extension>
</UML:Model>
<UML:Model stereotype="folder" visibility="public" isSpecification="false" namespace="m1" isAbstract="false" isLeaf="false" isRoot="false" xmi.id="Entity Relationship Model" name="Entity Relationship Model">
<UML:Namespace.ownedElement/>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram showopsig="1" linecolor="#ff0000" snapx="25" showattribassocs="1" snapy="25" linewidth="0" showattsig="1" textcolor="#000000" isopen="0" showpackage="1" showpubliconly="0" showstereotype="1" name="entity relationship diagram" font="Sans Serif,9,-1,0,50,0,0,0,0,0" canvasheight="0" canvaswidth="0" localid="-1" snapcsgrid="0" showgrid="0" showops="1" griddotcolor="#d3d3d3" backgroundcolor="#ffffff" usefillcolor="1" fillcolor="#ffff00" zoom="100" xmi.id="jYe3Sjcswhn5" documentation="" showscope="1" snapgrid="0" showatts="1" type="9">
<widgets/>
<messages/>
<associations/>
</diagram>
</diagrams>
</XMI.extension>
</UML:Model>
</UML:Namespace.ownedElement>
</UML:Model>
</XMI.content>
<XMI.extensions xmi.extender="umbrello">
<docsettings viewid="MFvzQC2LDeF0" uniqueid="B9ZD7XEuqRr1" documentation=""/>
<listview>
<listitem open="1" type="800" id="Views">
<listitem open="1" type="821" id="Component View">
<listitem open="1" type="824" id="BHPtKtbp82sh"/>
<listitem open="1" type="824" id="HK0cwVSgIqTq"/>
<listitem open="1" type="824" id="kBfxWQL5oBbV"/>
<listitem open="1" type="824" id="zBN9ozT52Dhk"/>
<listitem open="1" type="824" id="sBhi0WWClOMh"/>
<listitem open="1" type="824" id="eOGmDdCujwca"/>
<listitem open="0" type="819" id="jtD8F7Er7MMO" label="simcomponent"/>
<listitem open="1" type="824" id="VnsyKslFK12M"/>
</listitem>
<listitem open="1" type="827" id="Deployment View">
<listitem open="0" type="825" id="mLdDXjoZqNLc" label="ad"/>
</listitem>
<listitem open="0" type="836" id="Entity Relationship Model">
<listitem open="0" type="834" id="jYe3Sjcswhn5" label="entity relationship diagram"/>
</listitem>
<listitem open="1" type="801" id="Logical View">
<listitem open="0" type="809" id="blAStW4Z67e7" label="activity diagram"/>
<listitem open="1" type="813" id="wVjrDeUJp1ih">
<listitem open="1" type="814" id="Ikfz3cC7yWEk"/>
<listitem open="1" type="814" id="n9xlmjevyEJ0"/>
<listitem open="1" type="814" id="te8r8LbRxI4Z"/>
<listitem open="1" type="814" id="z0VuJXTIGek5"/>
<listitem open="1" type="814" id="SotO0CPFjKxD"/>
</listitem>
<listitem open="1" type="807" id="MFvzQC2LDeF0" label="class diagram"/>
<listitem open="1" type="813" id="pDzkMJGkNWsl">
<listitem open="1" type="814" id="uUOTniTyzspJ"/>
<listitem open="1" type="814" id="GT9Rv7vgMAm6"/>
<listitem open="1" type="815" id="GdhprlAlJUhh"/>
<listitem open="1" type="814" id="kQ6qQzXECUyW"/>
</listitem>
<listitem open="1" type="813" id="aun5Bj0QA9r5">
<listitem open="1" type="814" id="GmlawXhB8M0y"/>
<listitem open="1" type="814" id="mnNoa64vxive"/>
<listitem open="1" type="815" id="8BXQuyQKJofQ"/>
</listitem>
<listitem open="0" type="830" id="Datatypes">
<listitem open="1" type="829" id="psa0Xp0qAHHj"/>
<listitem open="1" type="829" id="BXPXYdksqdsG"/>
<listitem open="1" type="829" id="l6acjQqWHQWm"/>
<listitem open="1" type="829" id="XgCujeltBAOi"/>
<listitem open="1" type="829" id="BLYuggmFtOMD"/>
<listitem open="1" type="829" id="JMHTbHOVN3Ut"/>
<listitem open="1" type="829" id="jkq1g50H5EkQ"/>
<listitem open="1" type="829" id="ws660UmlaMLH"/>
<listitem open="1" type="829" id="liKJnw2JPudn"/>
<listitem open="1" type="829" id="EUaMks5HWI9F"/>
<listitem open="1" type="829" id="4nTFWfFxR6LS"/>
<listitem open="1" type="829" id="I2kck57RpvST"/>
<listitem open="1" type="829" id="cI3PKj7Gr6Vm"/>
<listitem open="1" type="829" id="m8wDCFdUyIT1"/>
<listitem open="1" type="829" id="aQsYjJXcxgR6"/>
<listitem open="1" type="829" id="Cba1h4nSDlCz"/>
<listitem open="1" type="829" id="Q6IAQOcdYLL2"/>
<listitem open="1" type="829" id="lAn0aHmmmM8U"/>
<listitem open="1" type="829" id="VGT5bnNKx8KV"/>
<listitem open="1" type="829" id="ECjkUqyOi2Ui"/>
<listitem open="1" type="829" id="8AjRcO6BItGS"/>
<listitem open="1" type="829" id="wXJvO8D8WJyx"/>
<listitem open="1" type="829" id="aCH9P8THcAJn"/>
<listitem open="1" type="829" id="yvkmSN5aEw9E"/>
<listitem open="1" type="829" id="soFWwzVSblaB"/>
<listitem open="1" type="829" id="U7ydv552FM8z"/>
<listitem open="1" type="829" id="3GllXARv15bt"/>
<listitem open="1" type="829" id="3WZgh7HE7bob"/>
</listitem>
<listitem open="1" type="813" id="ilis3J55nYmS"/>
<listitem open="1" type="813" id="mGhTGCihN7Ov">
<listitem open="0" type="815" id="IR2exxdkkUh3"/>
<listitem open="0" type="815" id="oVihUCtY8qgN"/>
</listitem>
<listitem open="1" type="813" id="U95QnWUmXzeo">
<listitem open="1" type="814" id="S7o28G7kX40N"/>
<listitem open="1" type="814" id="iM8YXbqsfYb4"/>
<listitem open="1" type="814" id="bGsMKkvmNOsf"/>
<listitem open="1" type="814" id="N6hjR3fnn3uZ"/>
<listitem open="1" type="814" id="pNnOUCdPOKLy"/>
<listitem open="1" type="814" id="Ov9JHUP7qCVK"/>
<listitem open="1" type="814" id="xBhwc4RRm15d"/>
<listitem open="1" type="814" id="UdT7Jq7fjGx1"/>
<listitem open="1" type="815" id="bFc6KcUuuDJM"/>
<listitem open="1" type="815" id="AK6IEfSQKhLW"/>
<listitem open="1" type="814" id="OmO8lRjwdgN1"/>
<listitem open="1" type="814" id="ACyTQiY7vOL8"/>
<listitem open="1" type="814" id="cIzHqYKPmAm6"/>
<listitem open="1" type="815" id="b0EVMagIOm8P"/>
<listitem open="1" type="814" id="CzKwDFxvc3S7"/>
<listitem open="1" type="814" id="ufrF4juGgDCt"/>
<listitem open="1" type="814" id="1UThhda7lN8t"/>
<listitem open="1" type="814" id="cKlPUXTMAKbE"/>
</listitem>
<listitem open="1" type="813" id="BD9HZzVJGBmW">
<listitem open="0" type="815" id="LbJjfGsrDXM8"/>
<listitem open="0" type="815" id="9I8lVdJejYYI"/>
<listitem open="0" type="815" id="mfmMCHbiLNnq"/>
<listitem open="0" type="815" id="tg4LVAJjWTpz"/>
</listitem>
<listitem open="1" type="813" id="4WNiJrKJvT6E">
<listitem open="1" type="814" id="p8mqG1aCFtKn"/>
<listitem open="1" type="815" id="RVT0EUOPaEKB"/>
<listitem open="1" type="815" id="B8qxbJTqOwRy"/>
<listitem open="1" type="814" id="7fLmjhglbl3O"/>
<listitem open="1" type="815" id="YS1dzNR40kqh"/>
<listitem open="1" type="814" id="F5Vcbc335ZMp"/>
<listitem open="1" type="814" id="hMS1mkdzNW7S"/>
<listitem open="1" type="814" id="TUYJkYJXg5Mu"/>
<listitem open="1" type="814" id="4w7HnP5UmVTW"/>
</listitem>
<listitem open="1" type="813" id="eUGEIksokxOU">
<listitem open="0" type="815" id="PJe5Hjahv2w7"/>
</listitem>
<listitem open="1" type="813" id="ImB5idZg4Ikk">
<listitem open="1" type="814" id="lCBeLniKx5Rl"/>
<listitem open="1" type="814" id="3uq35WnNGyTw"/>
<listitem open="1" type="814" id="Z0ddILM1YXdr"/>
<listitem open="1" type="815" id="RKWxJGsqzBqV"/>
<listitem open="1" type="815" id="YjL0YmXqyPQ8"/>
<listitem open="1" type="814" id="IL9FPZ1QRpTX"/>
<listitem open="1" type="814" id="JEuaALWjJ7Lb"/>
<listitem open="1" type="814" id="Thb1CEqUYzkv"/>
<listitem open="1" type="815" id="jup22AcVpDU1"/>
</listitem>
<listitem open="1" type="813" id="FRVt6lzJyQuu">
<listitem open="1" type="814" id="HTIyATVfGMbY"/>
<listitem open="1" type="815" id="5WdJv6Y3U97L"/>
<listitem open="1" type="814" id="kYjyuLX6iJd2"/>
<listitem open="1" type="814" id="AQa6qSy8vH46"/>
<listitem open="1" type="814" id="ENoZMotbDOTH"/>
</listitem>
<listitem open="1" type="813" id="W07cjEG30hUo">
<listitem open="0" type="815" id="EKrJpT6wq194"/>
</listitem>
<listitem open="1" type="813" id="6E7IXUgIGTdB">
<listitem open="1" type="814" id="yalHd98eRPkG"/>
<listitem open="1" type="814" id="5JcO4h71FsIt"/>
<listitem open="1" type="814" id="nuBoKslM3mBn"/>
<listitem open="1" type="814" id="1II5rQCu1Qhz"/>
<listitem open="1" type="814" id="2OXRnFia7rNS"/>
<listitem open="1" type="815" id="h6mitvVwE5JG"/>
<listitem open="1" type="814" id="Z7cPZxuR6Z76"/>
<listitem open="1" type="814" id="1D1rmLApJl7k"/>
<listitem open="1" type="815" id="nQH2GXvGwRih"/>
<listitem open="1" type="814" id="50bJTDT1K5Qr"/>
<listitem open="1" type="814" id="5bGozdW4pbKL"/>
</listitem>
<listitem open="1" type="813" id="jZIczuk85rPc">
<listitem open="0" type="815" id="k05e02jaE7Mz"/>
<listitem open="0" type="815" id="fO9jdRBVDAuJ"/>
<listitem open="0" type="815" id="40uxpz1tgnJi"/>
</listitem>
<listitem open="1" type="813" id="CPEaGx1gZ9gu">
<listitem open="1" type="814" id="CYffD0Uhoe7Z"/>
<listitem open="1" type="814" id="UqAPk8bnY7cl"/>
<listitem open="1" type="814" id="CczwZI3hVhNo"/>
<listitem open="1" type="814" id="WTrLQqwcQvXy"/>
<listitem open="1" type="815" id="joMXQT699QTu"/>
<listitem open="1" type="814" id="iZQ9Uv7eTkKg"/>
<listitem open="0" type="814" id="FQD0wX2yBx39"/>
<listitem open="1" type="815" id="KTDjLqX4NvBq"/>
</listitem>
<listitem open="1" type="813" id="JnQTof6VCO5B">
<listitem open="0" type="815" id="EwgXxrNKB1PQ"/>
<listitem open="0" type="815" id="4JB1kKZaecb9"/>
<listitem open="0" type="815" id="qIYDmdl64qDK"/>
</listitem>
<listitem open="1" type="813" id="p7V3AoHxEZyU">
<listitem open="1" type="814" id="4rj0IRgvnwf0"/>
<listitem open="1" type="814" id="qDYGfKZEOtlT"/>
<listitem open="1" type="815" id="Sc80Nv4OaVtr"/>
<listitem open="1" type="815" id="vpy3oBOcMuq0"/>
<listitem open="1" type="814" id="6shIRfkUWTSn"/>
<listitem open="1" type="814" id="XruElUpaZKbj"/>
</listitem>
<listitem open="1" type="813" id="qGUHyovhaHD1">
<listitem open="1" type="814" id="VhtgORSQrZ3d"/>
<listitem open="1" type="815" id="FCTbyrZQhjCX"/>
<listitem open="1" type="814" id="ymr1ghSAL2ds"/>
<listitem open="1" type="814" id="APG8RawQMmP0"/>
<listitem open="1" type="814" id="vUFn1GQ9efI5"/>
<listitem open="1" type="814" id="TqAmqndLTW2p"/>
</listitem>
<listitem open="0" type="810" id="q129rlrXZMM5" label="sim_sequence"/>
<listitem open="1" type="818" id="y81FwgeB0eov">
<listitem open="1" type="813" id="4NK7ooRyN002"/>
<listitem open="1" type="813" id="9EZP40GzWzoj"/>
<listitem open="1" type="813" id="IejdcjggU9vz"/>
<listitem open="1" type="813" id="1iDUp6RbDLnP"/>
<listitem open="1" type="813" id="EZxiWmS62TUK"/>
</listitem>
<listitem open="0" type="808" id="RAsbSm6LngFo" label="state diagram"/>
<listitem open="1" type="813" id="RAPja8CTJxLo">
<listitem open="0" type="815" id="Vx4FRdUWWMIv"/>
<listitem open="0" type="815" id="vsHL3c99zWcr"/>
<listitem open="0" type="815" id="XGz9JxVgSQhc"/>
<listitem open="0" type="815" id="U8kfI6Rm5LC2"/>
</listitem>
<listitem open="1" type="813" id="b5RVMVZ41I1v">
<listitem open="1" type="815" id="trgLkOjPftgm"/>
<listitem open="1" type="814" id="0HTr2F9SOkrz"/>
<listitem open="1" type="814" id="twYYhJTEUiqU"/>
<listitem open="1" type="814" id="8rrYzj8cy1rF"/>
<listitem open="1" type="815" id="idy2Us3utU8P"/>
<listitem open="1" type="815" id="aVFFpt45NsVZ"/>
<listitem open="1" type="815" id="2GAWFiOf7adS"/>
<listitem open="1" type="815" id="SRCzNCdvfrBS"/>
<listitem open="1" type="815" id="OZIfColC5ujI"/>
<listitem open="1" type="815" id="4U7yGDNMBtYf"/>
<listitem open="1" type="815" id="80WBTFt9qrCL"/>
<listitem open="1" type="815" id="I0tvDanVOEGL"/>