-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSA assignment.drawio
1734 lines (1734 loc) · 344 KB
/
SA assignment.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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" modified="2022-10-23T06:31:34.826Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36" etag="83ck8Gv-IPhhEyp6Ow31" version="20.4.0" type="github" pages="12">
<diagram id="-ivZDV_DeqCRNgWoUYwM" name="Page-1">
<mxGraphModel dx="1568" dy="1165" grid="0" 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="0" />
<mxCell id="1" parent="0" />
<mxCell id="QQuImMC7gx-3Ca40FIIh-2" value="TME" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;" parent="1" vertex="1">
<mxGeometry x="70" y="90" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-1" value="<b><font face="Verdana">Aruba Central</font></b>" style="ellipse;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="310" y="210" width="140" height="100" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-20" value="Show Demo" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0.4;entryY=-0.035;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-2" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="366" y="105" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Verdana;entryX=0;entryY=0;entryDx=0;entryDy=0;" parent="1" source="QQuImMC7gx-3Ca40FIIh-2" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="330" y="120" />
<mxPoint x="330" y="220" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-22" value="Pull data for marketing dahsboard" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-21" vertex="1" connectable="0">
<mxGeometry x="-0.45" y="1" relative="1" as="geometry">
<mxPoint x="3" y="31" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.793;entryY=0.095;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-3" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="560" y="80" />
<mxPoint x="421" y="80" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-24" value="Network Planning" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-23" vertex="1" connectable="0">
<mxGeometry x="0.2831" y="2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.75;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-3" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="447" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-28" value="Monitoring Devices <br>and Topology" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-27" vertex="1" connectable="0">
<mxGeometry x="0.3682" y="1" relative="1" as="geometry">
<mxPoint x="42" y="15" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-3" value="Customer" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;" parent="1" vertex="1">
<mxGeometry x="560" y="70" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=1;entryDx=0;entryDy=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-4" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="130" y="295" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-15" value="Validate Issues" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-14" vertex="1" connectable="0">
<mxGeometry x="-0.5367" y="-1" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=0.007;entryY=0.625;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-4" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-17" value="Live Debugging with customer/DEV" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-16" vertex="1" connectable="0">
<mxGeometry x="-0.4806" y="3" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;fontFamily=Verdana;entryX=0.171;entryY=0.925;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="QQuImMC7gx-3Ca40FIIh-4" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="300" y="390" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-19" value="Apply workarounds" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-18" vertex="1" connectable="0">
<mxGeometry x="-0.5238" y="-1" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-4" value="TAC" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;" parent="1" vertex="1">
<mxGeometry x="70" y="410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-7" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-5" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="392" y="310" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-8" value="Competative Analysis" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-7" vertex="1" connectable="0">
<mxGeometry x="0.2652" y="-1" relative="1" as="geometry">
<mxPoint y="-1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-9" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=1;exitDx=0;exitDy=0;entryX=0.671;entryY=0.965;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-5" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="600" y="460" />
<mxPoint x="420" y="460" />
<mxPoint x="420" y="320" />
<mxPoint x="404" y="320" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-10" value="Understand Customer Painpoints" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-9" vertex="1" connectable="0">
<mxGeometry x="-0.2102" y="-3" relative="1" as="geometry">
<mxPoint x="22" y="3" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-12" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-5" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-13" value="Brainstorm New Ideas" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-12" vertex="1" connectable="0">
<mxGeometry x="-0.3714" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-5" value="PLM" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;" parent="1" vertex="1">
<mxGeometry x="600" y="410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-6" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="620" y="260" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-30" value="PLV Tests" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-29" vertex="1" connectable="0">
<mxGeometry x="0.1474" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-31" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.929;entryY=0.78;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;exitX=0.175;exitY=1.017;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="QQuImMC7gx-3Ca40FIIh-6" target="QQuImMC7gx-3Ca40FIIh-1" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="630" y="350" as="sourcePoint" />
<Array as="points">
<mxPoint x="611" y="343" />
<mxPoint x="610" y="343" />
<mxPoint x="610" y="370" />
<mxPoint x="520" y="370" />
<mxPoint x="520" y="288" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-32" value="Performance Check" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-31" vertex="1" connectable="0">
<mxGeometry x="-0.3628" y="-1" relative="1" as="geometry">
<mxPoint x="30" y="16" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-6" value="DEV/QA" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;" parent="1" vertex="1">
<mxGeometry x="590" y="280" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-25" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="QQuImMC7gx-3Ca40FIIh-3" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="570" y="120" as="sourcePoint" />
<mxPoint x="431" y="220" as="targetPoint" />
<Array as="points">
<mxPoint x="560" y="100" />
<mxPoint x="431" y="100" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="QQuImMC7gx-3Ca40FIIh-26" value="Network Diagnosis" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="QQuImMC7gx-3Ca40FIIh-25" vertex="1" connectable="0">
<mxGeometry x="0.2831" y="2" relative="1" as="geometry">
<mxPoint y="15" as="offset" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="-Wb7OWDnRTRxgCEOe970" name="Page-2">
<mxGraphModel dx="4876" dy="1165" grid="0" 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="0" />
<mxCell id="1" parent="0" />
<mxCell id="qv53UhpOGK3gpaJgKTyG-1" value="UI " style="swimlane;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="-3203" y="51" width="303" height="159" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-2" value="Angular Engine" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-1" vertex="1">
<mxGeometry x="15" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-3" value="Google Clojure" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-1" vertex="1">
<mxGeometry x="15" y="99" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-4" value="Rest interface" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-1" vertex="1">
<mxGeometry x="163" y="60" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-5" value="Platform" style="swimlane;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="-3203" y="260" width="303" height="210" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-6" value="Kubernetes" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-5" vertex="1">
<mxGeometry x="15" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-7" value="Networking
 Overlay" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-5" vertex="1">
<mxGeometry x="15" y="99" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-8" value="Container Runtime" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-5" vertex="1">
<mxGeometry x="160" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-9" value="Nginx Rproxy" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-5" vertex="1">
<mxGeometry x="160" y="99" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-24" value="Deployment 
tools" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-5" vertex="1">
<mxGeometry x="15" y="160" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-10" value="Infrastructure" style="swimlane;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="-2850" y="45.5" width="300" height="184.5" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-11" value="Postgres" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-10" vertex="1">
<mxGeometry x="15" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-12" value="Prometheus
 monitoring" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-10" vertex="1">
<mxGeometry x="15" y="84.5" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-13" value="Kafka" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-10" vertex="1">
<mxGeometry x="160" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-14" value="Grafana 
dashboard" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-10" vertex="1">
<mxGeometry x="160" y="99" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-15" value="Humio 
Log ingest" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-10" vertex="1">
<mxGeometry x="15" y="138" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-16" value="Application" style="swimlane;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="-2850" y="260" width="310" height="210" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-17" value="Device 
connector" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-16" vertex="1">
<mxGeometry x="15" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-18" value="Configurarion" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-16" vertex="1">
<mxGeometry x="15" y="84.5" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-19" value="Monitoring" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-16" vertex="1">
<mxGeometry x="160" y="41" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-20" value="Packet capture" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-16" vertex="1">
<mxGeometry x="160" y="99" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-21" value="Network 
Planner" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-16" vertex="1">
<mxGeometry x="15" y="131" width="115" height="39" as="geometry" />
</mxCell>
<mxCell id="qv53UhpOGK3gpaJgKTyG-23" value="AI insights" style="shape=module;align=left;spacingLeft=20;align=center;verticalAlign=top;fontFamily=Verdana;" parent="qv53UhpOGK3gpaJgKTyG-16" vertex="1">
<mxGeometry x="160" y="150" width="115" height="39" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="Kf8XaKeNI-lBQs4RoVRc" name="Page-3">
<mxGraphModel dx="1568" dy="1165" grid="0" 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="0" />
<mxCell id="1" parent="0" />
<mxCell id="DerYnWazT5LfiBZjRy-q-3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.013;entryY=0.19;entryDx=0;entryDy=0;fontFamily=Verdana;entryPerimeter=0;" parent="1" source="DerYnWazT5LfiBZjRy-q-1" target="DerYnWazT5LfiBZjRy-q-2" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="251" y="123" />
<mxPoint x="251" y="125" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-4" value="ingress" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" parent="DerYnWazT5LfiBZjRy-q-3" vertex="1" connectable="0">
<mxGeometry x="-0.0417" y="2" relative="1" as="geometry">
<mxPoint x="-15" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-1" value="UI" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="46" y="93" width="108" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-2" target="DerYnWazT5LfiBZjRy-q-14" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="526" y="141" as="targetPoint" />
<Array as="points">
<mxPoint x="395" y="168" />
<mxPoint x="400" y="168" />
<mxPoint x="400" y="123" />
<mxPoint x="545" y="123" />
<mxPoint x="545" y="143" />
<mxPoint x="543" y="143" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-2" target="DerYnWazT5LfiBZjRy-q-12" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="443" y="224" />
<mxPoint x="443" y="276" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-2" value="Backend Service" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="251" y="93" width="144" height="164" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-5" value="Database" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="677" y="150" width="136" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-7" value="Service instance 1" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="261" y="100" width="120" height="37" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-9" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Verdana;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" target="DerYnWazT5LfiBZjRy-q-7" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="321" y="207" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-11" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-8" target="DerYnWazT5LfiBZjRy-q-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-8" value="<span>Service instance N</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="261" y="215" width="120" height="34" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-12" target="DerYnWazT5LfiBZjRy-q-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-12" value="Observability Engine" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="514" y="241" width="105" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-14" target="DerYnWazT5LfiBZjRy-q-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-14" value="Caching" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="475" y="150" width="122" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Verdana;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="DerYnWazT5LfiBZjRy-q-16" target="DerYnWazT5LfiBZjRy-q-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-16" value="AccessPoint /Switch" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="51" y="253" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-19" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-18" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="317" y="258.5" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-18" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="479" y="390" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-18" value="Messege Bus" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="257" y="360" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-20" value="Observability Dashboard" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="687" y="316" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-25" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-22" target="DerYnWazT5LfiBZjRy-q-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-22" value="Analytics Engine" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="483" y="358" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-24" value="AI Insights" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="667" y="434" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-26" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=2;rounded=0;fontFamily=Verdana;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="2" y="526" as="sourcePoint" />
<mxPoint x="821" y="521" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-27" target="DerYnWazT5LfiBZjRy-q-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-27" value="Kubernetes" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="63" y="609" width="628" height="32" as="geometry" />
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-30" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Verdana;" parent="1" source="DerYnWazT5LfiBZjRy-q-28" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="377" y="525" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="DerYnWazT5LfiBZjRy-q-28" value="Docker Runtime" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;gradientColor=none;" parent="1" vertex="1">
<mxGeometry x="189" y="557" width="376" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="_YIfZj8tVLt_dvL9mBui" name="Page-4">
<mxGraphModel dx="1568" dy="1165" grid="0" 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="0" />
<mxCell id="1" parent="0" />
</root>
</mxGraphModel>
</diagram>
<diagram id="6QuJd25rt9c4DnNZyFCL" name="Page-5">
<mxGraphModel dx="2768" dy="1165" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="5YhDHw9-SCcAPZygZfme-1" value="Utilitty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-1186" y="571" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-2" value="<b>Quality Attribute</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-998" y="41" width="112" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-3" value="Usability" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-973.5" y="114" width="63" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-4" value="<b>Attribute Refinement</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-751" y="41" width="137" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-5" value="<span style="font-size: 10pt;">User satisfaction</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-751" y="104" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-6" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-986" y="310" as="sourcePoint" />
<mxPoint x="-152" y="310" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-7" value="<span style="font-size: 10pt;"><font color="#0d0c0c">All Connected network devices list should have pagination <b>(M.M)&nbsp;</b></font></span>" style="text;whiteSpace=wrap;html=1;fontFamily=Helvetica;fontColor=#000000;" parent="1" vertex="1">
<mxGeometry x="-454.99609375" y="90.00390625" width="342" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-9" value="<b>ASR</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-378" y="41" width="43" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-10" value="<span style="font-size: 10pt;">Proficiency training</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-751" y="148" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-11" value="<span style="font-size: 13.3333px;">Industry standard terms should be used and steps should be clear enough for an admin to understand Monitoring , and Configuration(<b>M,L)</b></span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-460" y="148" width="353" height="56" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-14" value="<br/><br/><br/><br/><br/><br/><div style="language:en-IN;margin-top:0pt;margin-bottom:0pt;margin-left:.31in;<br/>text-indent:-.31in;text-align:left;direction:ltr;unicode-bidi:embed;vertical-align:<br/>baseline"><span style="color: black;"><font style="font-size: 13px;">Minimize the impact of errors</font></span></div><br/><br/>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontFamily=Helvetica;fontColor=#0D0C0C;" parent="1" vertex="1">
<mxGeometry x="-760" y="130" width="185" height="143" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-16" value="<span style="font-size: 13.3333px;">If there are any errors in device configuration by user or device anmoly it should be detected immediately(<b>M,H)</b></span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-458" y="217" width="353" height="56" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-17" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1004" y="571" as="sourcePoint" />
<mxPoint x="-170" y="571" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-18" value="Availabilty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-982.5" y="411" width="72" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-19" value="<span style="font-size: 10pt;">Application SLA</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-760" y="343" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-20" value="<span style="font-size: 10pt;">Application Should have an availability of 99.5 percent of the time (</span><b style="font-size: 13.3333px;">M,H)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-462" y="332" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-21" value="<span style="font-size: 10pt;">Hardware failover</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-760" y="409" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-22" value="<span style="font-size: 10pt;">In case of node failover app should switchover to other node within 1 minute&nbsp;</span><span style="font-size: 10pt;">(</span><b style="font-size: 13.3333px;">M,M)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-460" y="403" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-23" value="<span style="font-size: 10pt;">Network failure</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-760" y="491" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-24" value="<span style="font-size: 13.3333px;">There should be a alternate network configured to recover within 20 seconds(</span><b style="font-size: 13.3333px;">H,M)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-460" y="480" width="310" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-25" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1006" y="915" as="sourcePoint" />
<mxPoint x="-172" y="915" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-26" value="Security" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-979" y="746" width="61" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-27" value="<span style="font-size: 10pt;">Data confidentiality</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-760" y="624" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-28" value="<span style="font-size: 13.3333px;">No hardcoded secrets should be present . all secrets should be encrypted <b>(H</b></span><b style="font-size: 13.3333px;">,L)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-460" y="611" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-29" value="<span style="font-size: 10pt;">Data Integrity</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-760" y="706" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-30" value="<span style="font-size: 13.3333px;">There should be enough security present to&nbsp; make sure Users without permission will not be able to make changes to customer data</span><span style="font-size: 13.3333px;"><b>(H</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-460" y="706" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-31" value="<span style="font-size: 13.3333px;">There should not be any unintended modification to data without user interaction</span><span style="font-size: 13.3333px;"><b>(M</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-460" y="778" width="194" height="61" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-34" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1006" y="1207" as="sourcePoint" />
<mxPoint x="-172" y="1207" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-35" value="Testability" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-987.5" y="1031" width="71" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-36" value="<span style="font-size: 10pt;">Data Availabilty</span>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-760" y="856" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-37" value="Test Coverage" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-772" y="967" width="95" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-38" value="Code coverage should&nbsp; be above 75 percent otherwise CI should fail<br><span style="text-align: left; font-size: 13.3333px;"><b>(M</b></span><b style="text-align: left; font-size: 13.3333px;">,L)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-455" y="936" width="382" height="43" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-39" value="Adequate&nbsp; Functional testing should be done(<span style="text-align: left; font-size: 13.3333px;"><b>M</b></span><b style="text-align: left; font-size: 13.3333px;">,M)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-472" y="974" width="290" height="29" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-40" value="Contract testing using framework such as PACT . Otherwise CI fails<br><span style="text-align: left; font-size: 13.3333px;"><b>(L,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-460" y="1013" width="376" height="43" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-41" value="QA Acceptance" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-774" y="1061" width="100" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-42" value="Smoke and automation tests should be present <br>and they should&nbsp; pass&nbsp;<span style="text-align: left; font-size: 13.3333px;"><b>(M,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-458" y="1056" width="269" height="43" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-43" value="There should be enough error messeges <br>and next action suggestion when API fails&nbsp;<span style="text-align: left; font-size: 13.3333px;"><b>(H,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-475" y="1139" width="273" height="43" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-44" value="Production qualification" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-774" y="1155" width="142" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-45" value="Modifiabilty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-1002" y="1350" width="78" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-46" value="Runtime" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-747" y="1249" width="63" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-47" value="There should be&nbsp; configurations exposed<br><span style=""> </span><span style=""> </span>&nbsp; &nbsp; &nbsp; to devops to&nbsp; modify certain features such as logging ,<br>Device messege rate caching etc.&nbsp;<span style="text-align: left; font-size: 13.3333px;"><b>(M,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-497" y="1225" width="325" height="57" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-48" value="Users also should have knobs to&nbsp; apply device configuration on individual<br>device level or Cluster level&nbsp;&nbsp;<span style="text-align: left; font-size: 13.3333px;"><b>(M,M</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-458" y="1295" width="407" height="43" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-49" value="Plug and Play" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-765" y="1350" width="92" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-50" value="Services should be stateless and have single responsibility <br>so that we can replace with different componant <br>EX . WIFI keycache should not affect Device monitoring<br><span style="text-align: left; font-size: 13.3333px;"><b>(M,H</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-458" y="1353" width="330" height="72" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-54" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1006" y="1453" as="sourcePoint" />
<mxPoint x="-150" y="1445" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-56" value="Performance" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-1002" y="1531" width="87" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-57" value="API Performance" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-774" y="1494" width="109" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-58" value="Customer facing&nbsp; public API has rate limit of <br>1000 request/min per minute per customer this is a min SLA<br><span style="text-align: left; font-size: 13.3333px;"><b>(M,M</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-460" y="1457" width="337" height="57" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-59" value="Each device produces messege every 1 minutes. <br>With 500k scale Kafka lag should be under 5000<br><span style="text-align: left; font-size: 13.3333px;"><b>(M,M</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-458" y="1557" width="279" height="57" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-60" value="Messege queue performance" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-804" y="1568" width="174" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-61" value="Resource consumption" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-782" y="1649" width="141" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-62" value="CPU utilization should be below 70 percent&nbsp; .<br>Memory below 80 percent otherwise <br>there shopuld be horizontal autoscale&nbsp;<br><span style="text-align: left; font-size: 13.3333px;"><b>(M,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-458" y="1638" width="257" height="72" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-63" value="Interoperability" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-1011.5" y="1819" width="97" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-64" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1036" y="1733" as="sourcePoint" />
<mxPoint x="-180" y="1725" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-65" value="AP site survey import export&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-807" y="1765" width="171" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-66" value="System shoudl support importing Netowk Plan&nbsp; <br>from other systems like ekhau , Cisco etc<br><span style="text-align: left; font-size: 13.3333px;"><b>(M,M</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-460" y="1753" width="267" height="57" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-67" value="Standard API format" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-780" y="1829" width="126" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-68" value="All APIs should be designed in&nbsp; RESTfu with tokens for customer use<br><span style="text-align: left; font-size: 13.3333px;"><b>(H,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-462" y="1834" width="384" height="43" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-69" value="Standard format" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-780" y="1899" width="104" height="26" as="geometry" />
</mxCell>
<mxCell id="5YhDHw9-SCcAPZygZfme-70" value="Geojson for Location, Standard CLI commands for AP<br><span style="text-align: left; font-size: 13.3333px;"><b>(M,L</b></span><b style="text-align: left; font-size: 13.3333px;">)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-455" y="1904" width="304" height="43" as="geometry" />
</mxCell>
<mxCell id="GmOvAK_6rk7belDSUUBG-3" value="<span style="font-size: 13.3333px;">Better protection against attacks such as DDOS&nbsp;<b>(M</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-465" y="856" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="GmOvAK_6rk7belDSUUBG-4" value="Utilitty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-1177" y="1247" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="GmOvAK_6rk7belDSUUBG-5" value="Utilitty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" parent="1" vertex="1">
<mxGeometry x="-1190" y="1817" width="60" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="PERYS2xDJYPHwfVV9pDr" name="Page-6">
<mxGraphModel dx="1568" dy="1165" grid="0" 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="0" />
<mxCell id="1" parent="0" />
<mxCell id="piVZpo2k9zNVUqgTRxxU-1" value="Release cycle imrovement using better devops strategy" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="259" y="460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-2" value="Time to market" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="605" y="170" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-3" value="Detect security threats such as Rogue AP" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="259" y="270" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-4" value="Latest technology to reduce developer effort and quick to market" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="105" y="370" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-5" value="Cloud migration toreduce cost and improve availbilty" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="105" y="570" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-6" value="Improve User experience&nbsp;&nbsp;" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="105" y="460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-7" value="Singal place to manage all device<br>AP/SESOR/IOT" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="259" y="170" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-8" value="Revenue increase by offering better solution" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="105" y="170" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-9" value="Network segmentation" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="435" y="360" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-10" value="Better AI insights" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="605" y="270" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-11" value="Reduce time spent in troubleshooting" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="605" y="360" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-21" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;" parent="1" source="piVZpo2k9zNVUqgTRxxU-12" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="475" y="610" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-12" value="Edge connectivity" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="435" y="570" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-13" value="Real time client usage and location monitoring" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="259" y="370" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-14" value="IOT device monitoring" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="105" y="270" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-15" value="3rd party network API support" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="435" y="460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-16" value="Ease of configuration" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="435" y="270" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-17" value="Scalability" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="435" y="170" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-18" value="Reduce time spent in troubleshooting" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="605" y="460" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-19" value="Time travel to see the status back in time" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="611" y="567" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-20" value="Hybrid solutions&nbsp; to meet Fedramp requirement" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="259" y="570" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="piVZpo2k9zNVUqgTRxxU-22" value="Goals" style="ellipse;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="360" y="40" width="120" height="80" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="pUJKrc9_-0zSbmeQ6PLn" name="Page-7">
<mxGraphModel dx="3222" dy="1165" 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="0" />
<mxCell id="1" parent="0" />
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-1" value="Utilitty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-1210" y="400" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-2" value="<b>Quality Attribute</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-998" y="41" width="112" height="26" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-3" value="Usability" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-973.5" y="114" width="63" height="26" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-4" value="<b>Attribute Refinement</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-751" y="41" width="137" height="26" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-5" value="<span style="font-size: 10pt;">Alert and Notification</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-765.25" y="93" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-6" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" edge="1" parent="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-986" y="310" as="sourcePoint" />
<mxPoint x="-152" y="310" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-7" value="<span style="font-size: 10pt;"><font color="#0d0c0c">User should get notified when subscription is abount to end&nbsp;&nbsp;<b>(M.L)&nbsp;</b></font></span>" style="text;whiteSpace=wrap;html=1;fontFamily=Helvetica;fontColor=#000000;" vertex="1" parent="1">
<mxGeometry x="-456.49609375" y="80.00390625" width="342" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-8" value="<b>ASR&nbsp; &nbsp;(<font color="#994c00">Business Value ,Impact On architecture</font>)</b>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-450" y="41" width="290" height="30" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-9" value="<span style="font-size: 10pt;">Easy Navigation</span>" style="text;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" vertex="1" parent="1">
<mxGeometry x="-760" y="149" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-10" value="<span style="font-size: 13.3333px;">User should be able to Navigate to interested genre and content without much hassle .also get better recommendations (H<b>,M)</b></span>" style="text;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" vertex="1" parent="1">
<mxGeometry x="-456.5" y="131" width="353" height="56" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-12" value="<span style="font-size: 13.3333px;">If network bandwidth is low video should buffer in low bitrate but should not stop streaming(<b>M,H)</b></span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-462" y="217" width="353" height="56" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-13" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" edge="1" parent="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1014" y="800" as="sourcePoint" />
<mxPoint x="-180" y="800" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-14" value="Availabilty" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-982.5" y="411" width="72" height="26" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-15" value="<span style="font-size: 10pt;">Application SLA</span>" style="text;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" vertex="1" parent="1">
<mxGeometry x="-761" y="320" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-16" value="<span style="font-size: 10pt;">Application Should have an availability of 99.5 percent of the time (H</span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" vertex="1" parent="1">
<mxGeometry x="-470" y="320" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-17" value="<span style="font-size: 10pt;">Hardware failover</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-760" y="380" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-18" value="<span style="font-size: 10pt;">In case of node failover app should switchover to other node within 1 minute&nbsp;</span><span style="font-size: 10pt;">(</span><b style="font-size: 13.3333px;">M,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-467.5" y="373" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-19" value="<span style="font-size: 10pt;">Network failure (Server Side)</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-762.5" y="430" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-20" value="<span style="font-size: 13.3333px;">There should be a alternate network configured to recover within 20 seconds(</span><b style="font-size: 13.3333px;">H,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-467" y="422" width="310" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-21" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" edge="1" parent="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1016" y="1144" as="sourcePoint" />
<mxPoint x="-182" y="1144" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-22" value="Security" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-989" y="975" width="61" height="26" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-23" value="<span style="font-size: 10pt;">Data confidentiality</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-770" y="829" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-24" value="<span style="font-size: 13.3333px;">No hardcoded secrets should be present . all secrets should be encrypted <b>(H</b></span><b style="font-size: 13.3333px;">,H)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-470" y="819" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-25" value="<span style="font-size: 10pt;">Data Integrity</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-770" y="909" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-26" value="<span style="font-size: 13.3333px;">There should be enough security present to&nbsp; make sure Users without permission will not be able to make changes to customer data such as preference&nbsp;</span><span style="font-size: 13.3333px;"><b>(H</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-472" y="919" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-27" value="<span style="font-size: 13.3333px;">There should not be any unintended modification to data without user interaction</span><span style="font-size: 13.3333px;"><b>(M</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-470" y="1007" width="194" height="61" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-30" value="<span style="font-size: 10pt;">Data Availabilty</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-770" y="1085" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-51" value="<span style="font-size: 13.3333px;">Better protection against attacks such as DDOS,&nbsp;<b>(M</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-475" y="1085" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="Qhu_8WAzKQ8fNCI5rcHy-54" value="<span style="font-size: 13px;">Adaptive Streaming</span>" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-770" y="217" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="u5Xu4MF3x50w8Ct2YiJU-2" value="<span style="font-size: 10pt;">Network failure (Client Side)</span>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-765.25" y="480" width="148.5" height="38" as="geometry" />
</mxCell>
<mxCell id="u5Xu4MF3x50w8Ct2YiJU-3" value="<span style="font-size: 13.3333px;">There should be an option to save content locally in a app (&nbsp;<b>M</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-467.5" y="480" width="337" height="38" as="geometry" />
</mxCell>
<mxCell id="u5Xu4MF3x50w8Ct2YiJU-4" value="<span style="font-size: 13.3333px;">Credit card Data , Personal data should not be leaked&nbsp;<b>(H</b></span><b style="font-size: 13.3333px;">,M)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-472" y="857" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="3iqi4kMKEmVQBR3_dYPh-2" value="" style="endArrow=none;html=1;rounded=0;fontFamily=Helvetica;fontColor=#000000;dashed=1;" edge="1" parent="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1010" y="540" as="sourcePoint" />
<mxPoint x="-176" y="540" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="3iqi4kMKEmVQBR3_dYPh-3" value="Performance" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-991.5" y="658" width="90" height="30" as="geometry" />
</mxCell>
<mxCell id="3iqi4kMKEmVQBR3_dYPh-4" value="Continuous <br>Streaming&nbsp;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=#A50040;fillColor=#d80073;fontColor=#ffffff;" vertex="1" parent="1">
<mxGeometry x="-755" y="565" width="80" height="40" as="geometry" />
</mxCell>
<mxCell id="3iqi4kMKEmVQBR3_dYPh-5" value="<span style="font-size: 10pt;">Video streaming should not buffer even when multiple users are connected&nbsp; (H</span><b style="font-size: 13.3333px;">,H)</b>" style="text;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" vertex="1" parent="1">
<mxGeometry x="-470" y="560" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="3iqi4kMKEmVQBR3_dYPh-6" value="<span style="font-size: 10pt;">Video streaming should provide better performance even with less bandwidth (M</span><b style="font-size: 13.3333px;">,H)</b>" style="text;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-470" y="620" width="305" height="38" as="geometry" />
</mxCell>
<mxCell id="3iqi4kMKEmVQBR3_dYPh-7" value="Resource usage" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1">
<mxGeometry x="-766" y="635" width="110" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="G_hWyupdlTdmVyHWdvSf" name="Page-8">
<mxGraphModel dx="1568" dy="1165" 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="0" />
<mxCell id="1" parent="0" />
<mxCell id="-sSfoxtbpAh-gDEcjtSF-1" value="Data Scientist" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="70" y="90" width="110" height="60" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-2" value="<b><font face="Verdana">NetFlix</font></b>" style="ellipse;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="310" y="210" width="140" height="100" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-3" value="Behaviour analysis" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0.4;entryY=-0.035;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-1" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="366" y="105" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Verdana;entryX=0;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-1" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="330" y="120" />
<mxPoint x="330" y="220" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-5" value="Pull data for marketing dahsboard" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-4">
<mxGeometry x="-0.45" y="1" relative="1" as="geometry">
<mxPoint x="30" y="31" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-6" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.793;entryY=0.095;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-10" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="700" y="80" />
<mxPoint x="421" y="80" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-7" value="Renew Subscription" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-6">
<mxGeometry x="0.2831" y="2" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.75;exitDx=0;exitDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-10">
<mxGeometry relative="1" as="geometry">
<mxPoint x="447" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-9" value="Stream Live Sports" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-8">
<mxGeometry x="0.3682" y="1" relative="1" as="geometry">
<mxPoint x="42" y="15" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-10" value="Subscriber" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="680" y="90" width="90" height="60" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-11" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=1;entryDx=0;entryDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-17" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="130" y="295" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-12" value="Validate Issues" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-11">
<mxGeometry x="-0.5367" y="-1" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=0.007;entryY=0.625;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-17" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-14" value="Live Debugging with customer/DEV" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-13">
<mxGeometry x="-0.4806" y="3" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-15" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;fontFamily=Verdana;entryX=0.171;entryY=0.925;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-17" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<mxPoint x="300" y="390" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-16" value="Apply workarounds" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-15">
<mxGeometry x="-0.5238" y="-1" relative="1" as="geometry">
<mxPoint y="1" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-17" value="TAC" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="70" y="410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-18" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-24">
<mxGeometry relative="1" as="geometry">
<mxPoint x="392" y="310" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-19" value="Competative Analysis" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-18">
<mxGeometry x="0.2652" y="-1" relative="1" as="geometry">
<mxPoint x="87" y="6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-20" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=-0.017;exitY=0.146;exitDx=0;exitDy=0;entryX=0.671;entryY=0.965;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;exitPerimeter=0;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-24" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="404" y="419" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-21" value="Understand Subscriber Painpoints" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-20">
<mxGeometry x="-0.2102" y="-3" relative="1" as="geometry">
<mxPoint x="23" y="-6" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-22" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-24" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="600" y="460" />
<mxPoint x="380" y="460" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-23" value="Brainstorm New Ideas" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-22">
<mxGeometry x="-0.3714" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-24" value="PLM" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="600" y="410" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-25" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-29" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="620" y="260" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-26" value="Pre Live Tests" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-25">
<mxGeometry x="0.1474" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.929;entryY=0.78;entryDx=0;entryDy=0;entryPerimeter=0;fontFamily=Verdana;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-29" target="-sSfoxtbpAh-gDEcjtSF-2">
<mxGeometry relative="1" as="geometry">
<mxPoint x="630" y="350" as="sourcePoint" />
<Array as="points">
<mxPoint x="440" y="310" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-28" value="Performance Check" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-27">
<mxGeometry x="-0.3628" y="-1" relative="1" as="geometry">
<mxPoint x="-25" y="16" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-29" value="DEV/QA" style="rounded=0;whiteSpace=wrap;html=1;fontFamily=Verdana;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="590" y="280" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-30" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-10">
<mxGeometry relative="1" as="geometry">
<mxPoint x="570" y="120" as="sourcePoint" />
<mxPoint x="431" y="220" as="targetPoint" />
<Array as="points">
<mxPoint x="680" y="100" />
<mxPoint x="431" y="100" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-31" value="Look for recommedations" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-30">
<mxGeometry x="0.2831" y="2" relative="1" as="geometry">
<mxPoint y="15" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-32" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;fontFamily=Verdana;" edge="1" parent="1" source="-sSfoxtbpAh-gDEcjtSF-29">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="590" y="285" />
</Array>
<mxPoint x="570" y="340" as="sourcePoint" />
<mxPoint x="440" y="285" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="-sSfoxtbpAh-gDEcjtSF-33" value="Chaos Test" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Verdana;" vertex="1" connectable="0" parent="-sSfoxtbpAh-gDEcjtSF-32">
<mxGeometry x="0.1474" y="1" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>