-
Notifications
You must be signed in to change notification settings - Fork 139
/
Untitled Diagram.drawio
975 lines (975 loc) · 114 KB
/
Untitled Diagram.drawio
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
<mxfile host="app.diagrams.net" modified="2021-05-28T11:28:30.434Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Safari/605.1.15" etag="NOUc41q4MqQI-9dhoxFz" version="14.7.2" type="github" pages="2">
<diagram name="Page-1" id="03018318-947c-dd8e-b7a3-06fadd420f32">
<mxGraphModel dx="1426" dy="694" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1100" pageHeight="850" background="none" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="677b7b8949515195-1" value="" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeColor=#000000;strokeWidth=1;fillColor=none;fontFamily=Verdana;fontSize=12;fontColor=#000000;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="20" y="20" width="1060" height="810" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-2" value="LOGO" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeWidth=1;fontFamily=Verdana;fontSize=28;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="40" y="60" width="190" height="50" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-3" value="Search" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;rounded=0;labelBackgroundColor=none;comic=1;" parent="1" vertex="1">
<mxGeometry x="840" y="95" width="220" height="30" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-4" value="Topic 1" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="780" y="40" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-5" value="Topic 2" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="40" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-6" value="Topic 3" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="930" y="40" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-7" value="Topic 4" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="1000" y="40" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-8" value="" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeWidth=1;fillColor=none;fontFamily=Verdana;fontSize=12;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="30" y="230" width="200" height="590" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-9" value="" style="line;strokeWidth=1;html=1;rounded=0;shadow=0;labelBackgroundColor=none;fillColor=none;fontFamily=Verdana;fontSize=14;fontColor=#000000;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="20" y="140" width="1060" height="10" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-10" value="" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeWidth=1;fillColor=none;fontFamily=Verdana;fontSize=12;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="30" y="160" width="1040" height="50" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-11" value="Section 1" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="330" y="175" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-12" value="Section 2" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="477" y="175" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-13" value="Section 3" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="623" y="175" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-14" value="Section 4" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="770" y="175" width="60" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-15" value="<div style="text-align: justify"><span>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span></div><div style="text-align: justify"><span>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.&nbsp;</span></div>" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeWidth=1;fillColor=none;fontFamily=Verdana;fontSize=12;align=center;verticalAlign=top;spacing=10;comic=1;" parent="1" vertex="1">
<mxGeometry x="250" y="640" width="580" height="180" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-16" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.graphics.simpleIcon;strokeColor=#999999;rounded=0;labelBackgroundColor=none;fontFamily=Verdana;fontSize=14;fontColor=#000000;comic=1;" parent="1" vertex="1">
<mxGeometry x="250" y="230" width="580" height="400" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-25" value="" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeWidth=1;fillColor=none;fontFamily=Verdana;fontSize=12;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="840" y="230" width="230" height="400" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-26" value="" style="whiteSpace=wrap;html=1;rounded=0;shadow=0;labelBackgroundColor=none;strokeWidth=1;fillColor=none;fontFamily=Verdana;fontSize=12;align=center;comic=1;" parent="1" vertex="1">
<mxGeometry x="840" y="640" width="230" height="180" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-27" value="Section 1" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="250" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-28" value="Section 2" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="286" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-29" value="Section 3" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="321" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-30" value="Section 4" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="357" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-31" value="Section 7" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="464" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-32" value="Section 8" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="500" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-33" value="Section 9" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="536" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-34" value="Section 10" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="571" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-35" value="Section 11" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="607" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-36" value="Section 12" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="643" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-37" value="Section 13" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="679" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-38" value="Section 14" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="714" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-39" value="Section 5" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="393" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-40" value="Section 6" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="429" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-41" value="Section 15" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="40" y="750" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-42" value="External Links" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="653" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-44" value="Feature 1" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="250" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-45" value="Feature 2" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="285" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-46" value="Feature 3" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="320" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-47" value="Feature 4" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="355" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-48" value="Feature 5" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="390" width="170" height="20" as="geometry" />
</mxCell>
<mxCell id="677b7b8949515195-49" value="Feature 6" style="text;html=1;points=[];align=left;verticalAlign=top;spacingTop=-4;fontSize=14;fontFamily=Verdana" parent="1" vertex="1">
<mxGeometry x="860" y="425" width="170" height="20" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="eirNKkz0It7rpVvgPNyu" name="Page-2">
<mxGraphModel dx="4901" dy="3152" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-0" />
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-1" parent="OgX_j4Ksv-_iXJRbJ3sl-0" />
<mxCell id="5aGE9Jm9snDKNL3rAzUf-94" value="" style="shape=mxgraph.mockup.containers.marginRect;rectMarginTop=10;strokeColor=#666666;strokeWidth=1;dashed=0;rounded=1;arcSize=5;recursiveResize=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=25;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1300" y="-360" width="1710" height="1240" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-179" value="" style="rounded=0;whiteSpace=wrap;html=1;shadow=0;dashed=1;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=#f8cecc;align=center;verticalAlign=top;strokeColor=#b85450;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1810" y="80" width="294" height="145" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-178" value="" style="rounded=0;whiteSpace=wrap;html=1;shadow=0;dashed=1;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=#f8cecc;align=center;verticalAlign=top;strokeColor=#b85450;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="2510" y="375" width="294" height="145" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-1" value="" style="shape=mxgraph.mockup.containers.marginRect;rectMarginTop=10;strokeColor=#666666;strokeWidth=1;dashed=0;rounded=1;arcSize=5;recursiveResize=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=25;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-740" y="-350" width="1710" height="1240" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-6" value="<table cellpadding="4" cellspacing="0" border="1" style="font-size:1em;width:100%;height:100%;"><tr><th>Header 1</th><th>Header 2</th></tr><tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table> " style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=0;shadow=0;comic=1;strokeWidth=1;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-503" y="170" width="180" height="80" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-19" value="" style="strokeWidth=1;shadow=0;align=left;html=1;shape=mxgraph.mockup.forms.rrect;rSize=5;strokeColor=#000000;fillColor=none;rounded=0;comic=1;fontFamily=Helvetica;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-493" y="370" width="160" height="175" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-20" value="October 2014" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="8" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-21" value="<" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="8" y="8" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-22" value=">" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="127" y="8" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-23" value="Mo" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-24" value="Tu" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-25" value="We" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-26" value="Th" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-27" value="Fr" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-28" value="Sa" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-29" value="Su" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-30" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-31" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-32" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-33" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-34" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-35" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-36" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-37" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-38" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-39" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-40" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-41" value="12" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-42" value="13" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-43" value="14" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-44" value="15" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-45" value="16" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-46" value="17" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-47" value="18" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-48" value="19" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-49" value="20" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-50" value="21" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-51" value="22" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-52" value="23" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-53" value="25" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-54" value="26" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-55" value="27" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-56" value="28" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-57" value="29" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-58" value="30" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-59" value="31" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-60" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-61" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-62" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-63" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-64" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="10" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-65" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="30" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-66" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-67" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="70" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-68" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="90" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-69" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="110" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-70" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="130" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-71" value="24" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#ff0000;fontColor=#ffffff;strokeWidth=2;fillColor=#008cff;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-19">
<mxGeometry x="50" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-76" value="<font style="font-size: 18px">Shared Library</font>" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-270" y="30" width="390" height="630" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-182" value="" style="rounded=0;whiteSpace=wrap;html=1;shadow=0;dashed=1;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=#f8cecc;align=center;verticalAlign=top;strokeColor=#b85450;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="30" y="50" width="294" height="145" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-8" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.misc.progressBar;fillColor=#cccccc;strokeColor=none;fillColor2=#99ddff;barPos=80;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="95" y="325" width="200" height="20" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-10" value="<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td style="width:85%">100</td><td style="width:15%"></td></tr></table>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.spinner;strokeColor=#999999;spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=17;fontColor=#666666;mainText=;html=1;overflow=fill;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="120" y="425" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-14" value="Search" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="120" y="375" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-15" value="Option 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.comboBox;strokeColor=#999999;fillColor=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=17;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="120" y="525" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-16" value="Tab 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="85" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-17" value="Tab 2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#ffffff;align=left;spacingLeft=5;strokeColor=#008cff;fillColor=#008cff;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="160" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-18" value="Tab 3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="235" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-88" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-76">
<mxGeometry x="180" y="100" width="170" height="110" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-77" value="Smart Office" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="414" y="-240" width="390" height="490" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-180" value="" style="rounded=0;whiteSpace=wrap;html=1;shadow=0;dashed=1;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=#f8cecc;align=center;verticalAlign=top;strokeColor=#b85450;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-77">
<mxGeometry x="56" y="35" width="294" height="145" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-80" value="SO Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-77">
<mxGeometry x="120" y="190" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-83" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-77">
<mxGeometry x="120" y="50" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-89" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-77">
<mxGeometry x="170" y="80" width="180" height="100" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-90" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1.1</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-77">
<mxGeometry x="176" y="210" width="164" height="80" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-78" value="Think Reality" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="414" y="350" width="390" height="490" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-181" value="" style="rounded=0;whiteSpace=wrap;html=1;shadow=0;dashed=1;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=#f8cecc;align=center;verticalAlign=top;strokeColor=#b85450;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-78">
<mxGeometry x="56" y="40" width="294" height="145" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-81" value="TR Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-78">
<mxGeometry x="120" y="205" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-91" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-78">
<mxGeometry x="170" y="85" width="150" height="105" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-92" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2.1</li><li style="font-size: 18px;">Action 4</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-78">
<mxGeometry x="176" y="235" width="164" height="95" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-79" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=-0.016;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" target="OgX_j4Ksv-_iXJRbJ3sl-80">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="18" y="114" as="sourcePoint" />
<mxPoint x="480" y="-120" as="targetPoint" />
<Array as="points">
<mxPoint x="280" y="-10" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-82" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="534" y="400" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-85" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=-0.02;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="OgX_j4Ksv-_iXJRbJ3sl-5" target="OgX_j4Ksv-_iXJRbJ3sl-83">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="20" y="120" as="sourcePoint" />
<mxPoint x="541.5999999999995" y="-114.34000000000015" as="targetPoint" />
<Array as="points">
<mxPoint x="278" y="-30" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-86" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=0.002;entryY=0.467;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="OgX_j4Ksv-_iXJRbJ3sl-5" target="OgX_j4Ksv-_iXJRbJ3sl-82">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="20" y="120" as="sourcePoint" />
<mxPoint x="150" y="280" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-87" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=0.002;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.996;exitY=0.411;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="OgX_j4Ksv-_iXJRbJ3sl-5" target="OgX_j4Ksv-_iXJRbJ3sl-81">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="30" y="130" as="sourcePoint" />
<mxPoint x="544.2999999999993" y="424.00999999999976" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-3" value="intergrate" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=18;fontFamily=Verdana;" vertex="1" connectable="0" parent="OgX_j4Ksv-_iXJRbJ3sl-87">
<mxGeometry x="-0.688" y="1" relative="1" as="geometry">
<mxPoint x="34" y="-21" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-2" value="1 (Current): Shared Library only" style="shape=rect;strokeColor=none;fillColor=#008cff;strokeWidth=1;dashed=0;rounded=1;arcSize=20;fontColor=#ffffff;fontSize=60;spacing=2;spacingTop=-2;align=center;autosize=1;spacingLeft=4;resizeWidth=0;resizeHeight=0;perimeter=none;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-690" y="-380" width="870" height="90" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-4" value="" style="shape=mxgraph.mockup.containers.marginRect;rectMarginTop=10;strokeColor=#666666;strokeWidth=1;dashed=0;rounded=1;arcSize=5;recursiveResize=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=25;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-740" y="1050" width="1710" height="1770" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-5" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-135" y="1500" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-6" value="<table cellpadding="4" cellspacing="0" border="1" style="font-size:1em;width:100%;height:100%;"><tr><th>Header 1</th><th>Header 2</th></tr><tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table> " style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=0;shadow=0;comic=1;strokeWidth=1;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-503" y="1570" width="180" height="80" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-7" value="" style="strokeWidth=1;shadow=0;align=left;html=1;shape=mxgraph.mockup.forms.rrect;rSize=5;strokeColor=#000000;fillColor=none;rounded=0;comic=1;fontFamily=Helvetica;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-493" y="1770" width="160" height="175" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-8" value="October 2014" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="8" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-9" value="<" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="8" y="8" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-10" value=">" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="127" y="8" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-11" value="Mo" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-12" value="Tu" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-13" value="We" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-14" value="Th" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-15" value="Fr" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-16" value="Sa" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-17" value="Su" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-18" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-19" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-20" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-21" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-22" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-23" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-24" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-25" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-26" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-27" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-28" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-29" value="12" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-30" value="13" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-31" value="14" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-32" value="15" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-33" value="16" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-34" value="17" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-35" value="18" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-36" value="19" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-37" value="20" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-38" value="21" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-39" value="22" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-40" value="23" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-41" value="25" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-42" value="26" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-43" value="27" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-44" value="28" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-45" value="29" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-46" value="30" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-47" value="31" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-48" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-49" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-50" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-51" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-52" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="10" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-53" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="30" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-54" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-55" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="70" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-56" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="90" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-57" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="110" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-58" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="130" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-59" value="24" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#ff0000;fontColor=#ffffff;strokeWidth=2;fillColor=#008cff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-7">
<mxGeometry x="50" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-60" value="<font style="font-size: 18px">Shared Library</font>" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-270" y="1430" width="390" height="630" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-61" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.misc.progressBar;fillColor=#cccccc;strokeColor=none;fillColor2=#99ddff;barPos=80;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="95" y="325" width="200" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-62" value="<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td style="width:85%">100</td><td style="width:15%"></td></tr></table>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.spinner;strokeColor=#999999;spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=17;fontColor=#666666;mainText=;html=1;overflow=fill;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="120" y="425" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-63" value="Search" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="120" y="375" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-64" value="Option 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.comboBox;strokeColor=#999999;fillColor=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=17;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="120" y="525" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-65" value="Tab 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="85" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-66" value="Tab 2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#ffffff;align=left;spacingLeft=5;strokeColor=#008cff;fillColor=#008cff;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="160" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-67" value="Tab 3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="235" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-68" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-60">
<mxGeometry x="180" y="100" width="170" height="110" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-69" value="Smart Office" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="414" y="1160" width="390" height="490" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-70" value="SO Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-69">
<mxGeometry x="120" y="190" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-71" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-69">
<mxGeometry x="120" y="50" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-72" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-69">
<mxGeometry x="170" y="80" width="180" height="100" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-73" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1.1</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-69">
<mxGeometry x="176" y="210" width="164" height="80" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-74" value="Think Reality" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="414" y="1750" width="390" height="490" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-75" value="TR Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-74">
<mxGeometry x="120" y="205" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-76" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-74">
<mxGeometry x="170" y="85" width="150" height="105" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-77" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2.1</li><li style="font-size: 18px;">Action 4</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-74">
<mxGeometry x="176" y="235" width="164" height="95" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-78" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=-0.016;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" target="5aGE9Jm9snDKNL3rAzUf-70">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="18" y="1514" as="sourcePoint" />
<mxPoint x="480" y="1280" as="targetPoint" />
<Array as="points">
<mxPoint x="280" y="1390" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-79" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="534" y="1800" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-80" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=-0.02;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="5aGE9Jm9snDKNL3rAzUf-5" target="5aGE9Jm9snDKNL3rAzUf-71">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="20" y="1520" as="sourcePoint" />
<mxPoint x="541.5999999999995" y="1285.6599999999999" as="targetPoint" />
<Array as="points">
<mxPoint x="278" y="1370" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-81" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=0.002;entryY=0.467;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="5aGE9Jm9snDKNL3rAzUf-5" target="5aGE9Jm9snDKNL3rAzUf-79">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="20" y="1520" as="sourcePoint" />
<mxPoint x="150" y="1680" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-82" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=0.002;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.996;exitY=0.411;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="5aGE9Jm9snDKNL3rAzUf-5" target="5aGE9Jm9snDKNL3rAzUf-75">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="30" y="1530" as="sourcePoint" />
<mxPoint x="544.2999999999993" y="1824.0099999999998" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-83" value="intergrate" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=18;fontFamily=Verdana;" vertex="1" connectable="0" parent="5aGE9Jm9snDKNL3rAzUf-82">
<mxGeometry x="-0.688" y="1" relative="1" as="geometry">
<mxPoint x="34" y="-21" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-84" value="2: Think Reality + NEW UI Catalog" style="shape=rect;strokeColor=none;fillColor=#008cff;strokeWidth=1;dashed=0;rounded=1;arcSize=20;fontColor=#ffffff;fontSize=60;spacing=2;spacingTop=-2;align=center;autosize=1;spacingLeft=4;resizeWidth=0;resizeHeight=0;perimeter=none;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-730" y="1020" width="1070" height="90" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-85" value="<font style="font-size: 18px">Shared Library</font>" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-270" y="2150" width="390" height="630" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-86" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.misc.progressBar;fillColor=#cccccc;strokeColor=none;fillColor2=#99ddff;barPos=80;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="95" y="325" width="200" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-87" value="<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td style="width:85%">100</td><td style="width:15%"></td></tr></table>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.spinner;strokeColor=#999999;spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=17;fontColor=#666666;mainText=;html=1;overflow=fill;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="120" y="425" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-88" value="Search" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="120" y="375" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-89" value="Option 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.comboBox;strokeColor=#999999;fillColor=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=17;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="120" y="525" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-90" value="Tab 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="85" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-91" value="Tab 2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#ffffff;align=left;spacingLeft=5;strokeColor=#008cff;fillColor=#008cff;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="160" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-92" value="Tab 3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="235" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-93" value="<ol style="font-size: 18px;"><li style="font-size: 18px;">Action 1</li><li style="font-size: 18px;">Action 2</li><li style="font-size: 18px;">Action 3</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-85">
<mxGeometry x="180" y="100" width="170" height="110" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-95" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1905" y="90" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-96" value="<table cellpadding="4" cellspacing="0" border="1" style="font-size:1em;width:100%;height:100%;"><tr><th>Header 1</th><th>Header 2</th></tr><tr><td>row 1, cell 1</td><td>row 1, cell 2</td></tr><tr><td>row 2, cell 1</td><td>row 2, cell 2</td></tr></table> " style="verticalAlign=top;align=left;overflow=fill;fontSize=12;fontFamily=Helvetica;html=1;rounded=0;shadow=0;comic=1;strokeWidth=1;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1537" y="160" width="180" height="80" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-97" value="" style="strokeWidth=1;shadow=0;align=left;html=1;shape=mxgraph.mockup.forms.rrect;rSize=5;strokeColor=#000000;fillColor=none;rounded=0;comic=1;fontFamily=Helvetica;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1547" y="360" width="160" height="175" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-98" value="October 2014" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="8" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-99" value="<" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="8" y="8" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-100" value=">" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=4;strokeColor=#999999;fontColor=#008cff;fontSize=19;fontStyle=1;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="127" y="8" width="25" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-101" value="Mo" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-102" value="Tu" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-103" value="We" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-104" value="Th" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-105" value="Fr" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-106" value="Sa" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-107" value="Su" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.anchor;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="28" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-108" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-109" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-110" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-111" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-112" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-113" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-114" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="48" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-115" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-116" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-117" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-118" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-119" value="12" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-120" value="13" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-121" value="14" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="68" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-122" value="15" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-123" value="16" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-124" value="17" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-125" value="18" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-126" value="19" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-127" value="20" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-128" value="21" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="88" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-129" value="22" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-130" value="23" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-131" value="25" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-132" value="26" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-133" value="27" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-134" value="28" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-135" value="29" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-136" value="30" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-137" value="31" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-138" value="1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-139" value="2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-140" value="3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-141" value="4" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="128" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-142" value="5" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="10" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-143" value="6" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="30" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-144" value="7" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-145" value="8" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="70" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-146" value="9" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="90" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-147" value="10" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="110" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-148" value="11" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#999999;fontColor=#999999;fillColor=#ddeeff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="130" y="148" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-149" value="24" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.rrect;rSize=0;strokeColor=#ff0000;fontColor=#ffffff;strokeWidth=2;fillColor=#008cff;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-97">
<mxGeometry x="50" y="108" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-150" value="<font style="font-size: 18px">Shared Library</font>" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1770" y="20" width="390" height="630" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-151" value="" style="verticalLabelPosition=bottom;shadow=0;dashed=0;align=center;html=1;verticalAlign=top;strokeWidth=1;shape=mxgraph.mockup.misc.progressBar;fillColor=#cccccc;strokeColor=none;fillColor2=#99ddff;barPos=80;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="95" y="325" width="200" height="20" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-152" value="<table cellpadding="0" cellspacing="0" style="width:100%;height:100%;"><tr><td style="width:85%">100</td><td style="width:15%"></td></tr></table>" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.spinner;strokeColor=#999999;spinLayout=right;spinStyle=normal;adjStyle=triangle;fillColor=#aaddff;fontSize=17;fontColor=#666666;mainText=;html=1;overflow=fill;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="120" y="425" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-153" value="Search" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.searchBox;strokeColor=#999999;mainText=;strokeColor2=#008cff;fontColor=#666666;fontSize=17;align=left;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="120" y="375" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-154" value="Option 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.comboBox;strokeColor=#999999;fillColor=#ddeeff;align=left;fillColor2=#aaddff;mainText=;fontColor=#666666;fontSize=17;spacingLeft=3;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="120" y="525" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-155" value="Tab 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="85" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-156" value="Tab 2" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#ffffff;align=left;spacingLeft=5;strokeColor=#008cff;fillColor=#008cff;rounded=0;comic=1;fontFamily=Verdana;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="160" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-157" value="Tab 3" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.forms.uRect;fontSize=17;fontColor=#666666;align=left;spacingLeft=5;strokeColor=#666666;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="235" y="265" width="70" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-158" value="<ol style="font-size: 18px"><li style="font-size: 18px">Action 1.2</li><li style="font-size: 18px">Action 2</li><li style="font-size: 18px">Action 3</li><li style="font-size: 18px">Action 5</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-150">
<mxGeometry x="170" y="90" width="170" height="110" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-159" value="Smart Office" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="2454" y="-250" width="390" height="490" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-177" value="" style="rounded=0;whiteSpace=wrap;html=1;shadow=0;dashed=1;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=#f8cecc;align=center;verticalAlign=top;strokeColor=#b85450;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-159">
<mxGeometry x="56" y="35" width="294" height="145" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-160" value="SO Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-159">
<mxGeometry x="120" y="190" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-161" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-159">
<mxGeometry x="120" y="50" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-162" value="<ol style="font-size: 18px"><li>Action 1.2</li><li>Action 2</li><li>Action 3</li><li>Action 5</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-159">
<mxGeometry x="176" y="70" width="180" height="110" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-163" value="<ol style="font-size: 18px"><li style="font-size: 18px">Action 1.1</li><li style="font-size: 18px">Action 3</li><li style="font-size: 18px">Action 5</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-159">
<mxGeometry x="176" y="210" width="164" height="110" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-164" value="Think Reality" style="swimlane;rounded=0;shadow=0;comic=1;fontFamily=Verdana;strokeWidth=1;fillColor=none;html=1;fontSize=18;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="2454" y="340" width="390" height="490" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-165" value="TR Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-164">
<mxGeometry x="120" y="205" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-166" value="<ol style="font-size: 18px"><li>Action 1.2</li><li>Action 2</li><li>Action 3</li><li>Action 5</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-164">
<mxGeometry x="166" y="70" width="150" height="105" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-167" value="<ol style="font-size: 18px"><li style="font-size: 18px">Action 1.2</li><li style="font-size: 18px">Action 2.1</li><li style="font-size: 18px">Action 4</li><li style="font-size: 18px">Action 5</li></ol>" style="text;strokeColor=none;fillColor=none;html=1;whiteSpace=wrap;verticalAlign=middle;overflow=hidden;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;" vertex="1" parent="5aGE9Jm9snDKNL3rAzUf-164">
<mxGeometry x="176" y="235" width="164" height="115" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-168" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=-0.016;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" target="5aGE9Jm9snDKNL3rAzUf-160">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2058" y="104" as="sourcePoint" />
<mxPoint x="2520" y="-130" as="targetPoint" />
<Array as="points">
<mxPoint x="2320" y="-20" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-169" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="2574" y="390" width="150" height="30" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-170" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=-0.02;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="5aGE9Jm9snDKNL3rAzUf-95" target="5aGE9Jm9snDKNL3rAzUf-161">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2060" y="110" as="sourcePoint" />
<mxPoint x="2581.5999999999995" y="-124.34000000000015" as="targetPoint" />
<Array as="points">
<mxPoint x="2318" y="-40" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-171" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=0.002;entryY=0.467;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="5aGE9Jm9snDKNL3rAzUf-95" target="5aGE9Jm9snDKNL3rAzUf-169">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2060" y="110" as="sourcePoint" />
<mxPoint x="2190" y="270" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-172" value="" style="edgeStyle=elbowEdgeStyle;elbow=horizontal;endArrow=classic;html=1;fontFamily=Verdana;entryX=0.002;entryY=0.522;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.996;exitY=0.411;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1" source="5aGE9Jm9snDKNL3rAzUf-95" target="5aGE9Jm9snDKNL3rAzUf-165">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2070" y="120" as="sourcePoint" />
<mxPoint x="2584.2999999999993" y="414.00999999999976" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-173" value="intergrate" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontSize=18;fontFamily=Verdana;" vertex="1" connectable="0" parent="5aGE9Jm9snDKNL3rAzUf-172">
<mxGeometry x="-0.688" y="1" relative="1" as="geometry">
<mxPoint x="34" y="-21" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-174" value="1.1: Shared Library only" style="shape=rect;strokeColor=none;fillColor=#008cff;strokeWidth=1;dashed=0;rounded=1;arcSize=20;fontColor=#ffffff;fontSize=60;spacing=2;spacingTop=-2;align=center;autosize=1;spacingLeft=4;resizeWidth=0;resizeHeight=0;perimeter=none;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1455" y="-390" width="660" height="80" as="geometry" />
</mxCell>
<mxCell id="5aGE9Jm9snDKNL3rAzUf-175" value="" style="shape=singleArrow;whiteSpace=wrap;html=1;rounded=0;shadow=0;comic=1;fontFamily=Verdana;fontSize=18;strokeWidth=1;fillColor=none;align=center;verticalAlign=top;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="1090" y="240" width="100" height="60" as="geometry" />
</mxCell>
<mxCell id="OgX_j4Ksv-_iXJRbJ3sl-5" value="Line 1" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.text.textBox;fontColor=#666666;align=left;fontSize=17;spacingLeft=4;spacingTop=-3;strokeColor=#666666;mainText=;rounded=0;comic=1;fontFamily=Verdana;fillColor=none;" vertex="1" parent="OgX_j4Ksv-_iXJRbJ3sl-1">
<mxGeometry x="-135" y="100" width="150" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>