-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXen_Orchestra_Backups.drawio
1663 lines (1663 loc) · 224 KB
/
Xen_Orchestra_Backups.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="Electron" modified="2023-11-03T01:11:25.273Z" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/22.0.3 Chrome/114.0.5735.289 Electron/25.8.4 Safari/537.36" etag="QXo2RqPROutSnXy0dcZU" version="22.0.3" type="device" pages="6">
<diagram id="AEoEUmx5q7cQljkfjXUp" name="XO Local">
<mxGraphModel dx="3133" dy="862" grid="0" gridSize="20" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1920" pageHeight="1200" background="#353743" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="cnEbUQzOswnmsf1puApR-14" value="" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeWidth=10;flowAnimation=0;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" source="cnEbUQzOswnmsf1puApR-3" target="cnEbUQzOswnmsf1puApR-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="cnEbUQzOswnmsf1puApR-3" value="<font style="font-size: 20px" color="#80ff00"><b>NFS NAS Storage<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-1540" y="540" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="cnEbUQzOswnmsf1puApR-11" value="" style="group;fontStyle=1;fontSize=13;fontColor=#E4FDE1;" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1320" y="275" width="90" height="70" as="geometry" />
</mxCell>
<UserObject label="<font style="font-size: 20px" color="#80ff00"><b>Xen Orchestra</b></font>" id="cnEbUQzOswnmsf1puApR-5">
<mxCell style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="cnEbUQzOswnmsf1puApR-11" vertex="1">
<mxGeometry width="90" height="70" as="geometry" />
</mxCell>
</UserObject>
<mxCell id="cnEbUQzOswnmsf1puApR-7" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xen-orchestra.com/assets/XO-logo-name.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="cnEbUQzOswnmsf1puApR-11" vertex="1">
<mxGeometry x="30" width="52.77" height="50" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-5" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-798.75" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-6" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-777.5" y="621.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-7" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-648.75" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-8" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-627.5" y="621.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-9" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-993.75" y="540" width="469" height="190" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-20" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-993.75" y="320" width="469" height="190" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-22" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-20" vertex="1" connectable="0">
<mxGeometry x="189.5" y="45" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-23" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-22" vertex="1">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-24" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-22" vertex="1">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-21" value="" style="group;fontColor=#E4FDE1;" parent="1" vertex="1" connectable="0">
<mxGeometry x="-955" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-3" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-21" vertex="1">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-4" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-21" vertex="1">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-26" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" source="cnEbUQzOswnmsf1puApR-5" target="yGDAu4qqxWYd56B2USpF-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-27" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" source="cnEbUQzOswnmsf1puApR-5" target="yGDAu4qqxWYd56B2USpF-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-85" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.75;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" source="yGDAu4qqxWYd56B2USpF-29" target="cnEbUQzOswnmsf1puApR-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-29" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-996.1199999999999" y="760" width="473.75" height="210" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-72" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-29" vertex="1" connectable="0">
<mxGeometry x="105" y="40" width="270" height="150" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-58" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-72" vertex="1" connectable="0">
<mxGeometry width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-41" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-58" vertex="1" connectable="0">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-42" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-41" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-43" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-41" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-45" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-58" vertex="1" connectable="0">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-46" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-45" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-47" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-45" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-48" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-58" vertex="1" connectable="0">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-49" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-48" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-50" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-48" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-51" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-58" vertex="1" connectable="0">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-52" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-51" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-53" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-51" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-59" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-72" vertex="1" connectable="0">
<mxGeometry y="80.23255813953489" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-60" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-59" vertex="1" connectable="0">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-61" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-60" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-62" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-60" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-63" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-59" vertex="1" connectable="0">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-64" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-63" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-65" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-63" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-66" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-59" vertex="1" connectable="0">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-67" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-66" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-68" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-66" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-69" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-59" vertex="1" connectable="0">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-70" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-69" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-71" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-69" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-73" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-29" vertex="1" connectable="0">
<mxGeometry x="383.7523076923077" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-74" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-73" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-75" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-73" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-76" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-29" vertex="1" connectable="0">
<mxGeometry x="383.7523076923077" y="120.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-77" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-76" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-78" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-76" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-79" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-29" vertex="1" connectable="0">
<mxGeometry x="33.75230769230768" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-80" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-79" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-81" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-79" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-82" value="" style="group;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-29" vertex="1" connectable="0">
<mxGeometry x="33.75230769230768" y="120.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-83" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-82" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="yGDAu4qqxWYd56B2USpF-84" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="yGDAu4qqxWYd56B2USpF-82" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="ORhLRl9YX7YmBXzLjHyG-4" value="<font style="font-size: 50px;">Remotes<br style="font-size: 50px;">(Backup Locations)<br style="font-size: 50px;"></font>" style="text;strokeColor=none;fillColor=none;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=50;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-1660.75" y="193" width="667" height="30" as="geometry" />
</mxCell>
<mxCell id="ORhLRl9YX7YmBXzLjHyG-7" value="<font style="font-size: 50px;">Hosts &amp; Pools</font>" style="text;strokeColor=none;fillColor=none;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=50;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-993.75" y="230" width="421.25" height="30" as="geometry" />
</mxCell>
<UserObject label="<font style="font-size: 20px" color="#80ff00"><b>SMB NAS Storage<br></b></font>" link="https://192.168.3.213/ui/sessions/signin" id="24Q3yA9QWlI94xl8slYc-1">
<mxCell style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-1540" y="390" width="85" height="80" as="geometry" />
</mxCell>
</UserObject>
<mxCell id="24Q3yA9QWlI94xl8slYc-2" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeWidth=10;flowAnimation=0;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="1" source="cnEbUQzOswnmsf1puApR-5" target="24Q3yA9QWlI94xl8slYc-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="B1MOnL0c1Fp8Pe9FbmRw-1" value="<b style="color: rgb(128, 255, 0); font-size: 20px;">S3 Storage</b>" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.aws_s3;fontFamily=Helvetica;fontSize=24;fontColor=#E4FDE1;" parent="1" vertex="1">
<mxGeometry x="-1540" y="687" width="77" height="95" as="geometry" />
</mxCell>
<mxCell id="B1MOnL0c1Fp8Pe9FbmRw-2" style="edgeStyle=orthogonalEdgeStyle;shape=connector;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=#114B5F;strokeColor=#028090;strokeWidth=10;fontFamily=Helvetica;fontSize=24;fontColor=#E4FDE1;endArrow=none;endFill=0;" parent="1" source="cnEbUQzOswnmsf1puApR-5" target="B1MOnL0c1Fp8Pe9FbmRw-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1388" y="310" />
<mxPoint x="-1388" y="735" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="m3Ibk5H5bHxdS2Vz3TUW-3" value="" style="image;aspect=fixed;html=1;points=[];align=center;fontSize=12;image=img/lib/azure2/intune/Device_Enrollment.svg;fontFamily=Helvetica;fontColor=#E4FDE1;" vertex="1" parent="1">
<mxGeometry x="-1052" y="69" width="157.62" height="140" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="Copy of XO Local" id="DLWsHGWK8zslwgVrLqS2">
<mxGraphModel dx="3906" dy="1011" grid="0" gridSize="20" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1920" pageHeight="1200" background="#353743" math="0" shadow="0">
<root>
<mxCell id="n3502btyAydCcurIhNQl-0" />
<mxCell id="n3502btyAydCcurIhNQl-1" parent="n3502btyAydCcurIhNQl-0" />
<mxCell id="n3502btyAydCcurIhNQl-2" value="" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeWidth=10;flowAnimation=0;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" source="n3502btyAydCcurIhNQl-3" target="n3502btyAydCcurIhNQl-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-3" value="<font style="font-size: 20px" color="#80ff00"><b>NFS NAS Storage<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-1540" y="540" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-4" value="" style="group;fontStyle=1;fontSize=13;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1" connectable="0">
<mxGeometry x="-1320" y="275" width="90" height="70" as="geometry" />
</mxCell>
<UserObject label="<font style="font-size: 20px" color="#80ff00"><b>Xen Orchestra</b></font>" id="n3502btyAydCcurIhNQl-5">
<mxCell style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-4" vertex="1">
<mxGeometry width="90" height="70" as="geometry" />
</mxCell>
</UserObject>
<mxCell id="n3502btyAydCcurIhNQl-6" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xen-orchestra.com/assets/XO-logo-name.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-4" vertex="1">
<mxGeometry x="30" width="52.77" height="50" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-7" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-798.75" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-8" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-777.5" y="621.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-9" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-648.75" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-10" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-627.5" y="621.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-11" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-993.75" y="540" width="469" height="190" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-12" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-993.75" y="320" width="469" height="190" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-13" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-12" vertex="1" connectable="0">
<mxGeometry x="189.5" y="45" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-14" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-13" vertex="1">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-15" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-13" vertex="1">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-16" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1" connectable="0">
<mxGeometry x="-955" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-17" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-16" vertex="1">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-18" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-16" vertex="1">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-19" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" source="n3502btyAydCcurIhNQl-5" target="n3502btyAydCcurIhNQl-12" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-20" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" source="n3502btyAydCcurIhNQl-5" target="n3502btyAydCcurIhNQl-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-21" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.75;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" source="n3502btyAydCcurIhNQl-22" target="n3502btyAydCcurIhNQl-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-22" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-996.1199999999999" y="760" width="473.75" height="210" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-23" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-22" vertex="1" connectable="0">
<mxGeometry x="105" y="40" width="270" height="150" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-24" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-23" vertex="1" connectable="0">
<mxGeometry width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-25" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-24" vertex="1" connectable="0">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-26" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-25" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-27" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-25" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-28" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-24" vertex="1" connectable="0">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-29" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-28" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-30" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-28" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-31" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-24" vertex="1" connectable="0">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-32" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-31" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-33" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-31" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-34" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-24" vertex="1" connectable="0">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-35" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-34" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-36" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-34" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-37" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-23" vertex="1" connectable="0">
<mxGeometry y="80.23255813953489" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-38" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-37" vertex="1" connectable="0">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-39" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-38" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-40" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-38" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-41" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-37" vertex="1" connectable="0">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-42" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-41" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-43" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-41" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-44" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-37" vertex="1" connectable="0">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-45" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-44" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-46" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-44" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-47" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-37" vertex="1" connectable="0">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-48" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-47" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-49" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-47" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-50" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-22" vertex="1" connectable="0">
<mxGeometry x="383.7523076923077" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-51" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-50" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-52" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-50" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-53" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-22" vertex="1" connectable="0">
<mxGeometry x="383.7523076923077" y="120.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-54" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-53" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-55" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-53" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-56" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-22" vertex="1" connectable="0">
<mxGeometry x="33.75230769230768" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-57" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-56" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-58" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-56" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-59" value="" style="group;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-22" vertex="1" connectable="0">
<mxGeometry x="33.75230769230768" y="120.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-60" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-59" vertex="1">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-61" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-59" vertex="1">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-62" value="<font style="font-size: 50px;">Remotes<br style="font-size: 50px;">(Backup Locations)<br style="font-size: 50px;"></font>" style="text;strokeColor=none;fillColor=none;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=50;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-1688" y="192" width="667" height="30" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-63" value="<font style="font-size: 50px;">Hosts &amp; Pools</font>" style="text;strokeColor=none;fillColor=none;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=50;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-993.75" y="230" width="421.25" height="30" as="geometry" />
</mxCell>
<UserObject label="<font style="font-size: 20px" color="#80ff00"><b>SMB NAS Storage<br></b></font>" link="https://192.168.3.213/ui/sessions/signin" id="n3502btyAydCcurIhNQl-64">
<mxCell style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-1540" y="390" width="85" height="80" as="geometry" />
</mxCell>
</UserObject>
<mxCell id="n3502btyAydCcurIhNQl-65" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeWidth=10;flowAnimation=0;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" source="n3502btyAydCcurIhNQl-5" target="n3502btyAydCcurIhNQl-64" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-66" value="<b style="color: rgb(128, 255, 0); font-size: 20px;">S3 Storage</b>" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.aws_s3;fontFamily=Helvetica;fontSize=24;fontColor=#E4FDE1;" parent="n3502btyAydCcurIhNQl-1" vertex="1">
<mxGeometry x="-1540" y="687" width="77" height="95" as="geometry" />
</mxCell>
<mxCell id="n3502btyAydCcurIhNQl-67" style="edgeStyle=orthogonalEdgeStyle;shape=connector;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=#114B5F;strokeColor=#028090;strokeWidth=10;fontFamily=Helvetica;fontSize=24;fontColor=#E4FDE1;endArrow=none;endFill=0;" parent="n3502btyAydCcurIhNQl-1" source="n3502btyAydCcurIhNQl-5" target="n3502btyAydCcurIhNQl-66" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1388" y="310" />
<mxPoint x="-1388" y="735" />
</Array>
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram name="Copy of Copy of XO Local" id="8Cudr-KqsPznAz9vUIhx">
<mxGraphModel dx="3849" dy="2418" grid="0" gridSize="20" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1920" pageHeight="1200" background="#353743" math="0" shadow="0">
<root>
<mxCell id="MHSigr3qXPIshMnVgoxZ-0" />
<mxCell id="MHSigr3qXPIshMnVgoxZ-1" parent="MHSigr3qXPIshMnVgoxZ-0" />
<mxCell id="MHSigr3qXPIshMnVgoxZ-2" value="" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeWidth=10;flowAnimation=0;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" edge="1" parent="MHSigr3qXPIshMnVgoxZ-1" source="MHSigr3qXPIshMnVgoxZ-3" target="MHSigr3qXPIshMnVgoxZ-5">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-3" value="<font style="font-size: 20px" color="#80ff00"><b>NFS NAS Storage<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1540" y="540" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-4" value="" style="group;fontStyle=1;fontSize=20;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1320" y="275" width="90" height="70" as="geometry" />
</mxCell>
<UserObject label="<font style="font-size: 20px" color="#80ff00"><b>Xen Orchestra</b></font>" id="MHSigr3qXPIshMnVgoxZ-5">
<mxCell style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.desktop_pc;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-4">
<mxGeometry width="90" height="70" as="geometry" />
</mxCell>
</UserObject>
<mxCell id="MHSigr3qXPIshMnVgoxZ-6" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xen-orchestra.com/assets/XO-logo-name.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-4">
<mxGeometry x="30" width="52.77" height="50" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-7" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-798.75" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-8" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-777.5" y="621.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-9" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-648.75" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-10" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-627.5" y="621.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-11" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-993.75" y="540" width="469" height="190" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-12" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-993.75" y="320" width="469" height="190" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-13" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-12">
<mxGeometry x="189.5" y="45" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-14" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-13">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-15" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-13">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-16" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-955" y="595" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-17" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-16">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-18" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-16">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-19" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" edge="1" parent="MHSigr3qXPIshMnVgoxZ-1" source="MHSigr3qXPIshMnVgoxZ-5" target="MHSigr3qXPIshMnVgoxZ-12">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-20" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" edge="1" parent="MHSigr3qXPIshMnVgoxZ-1" source="MHSigr3qXPIshMnVgoxZ-5" target="MHSigr3qXPIshMnVgoxZ-11">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-21" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0.75;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeWidth=10;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" edge="1" parent="MHSigr3qXPIshMnVgoxZ-1" source="MHSigr3qXPIshMnVgoxZ-22" target="MHSigr3qXPIshMnVgoxZ-6">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-22" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-996.1199999999999" y="760" width="473.75" height="210" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-23" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-22">
<mxGeometry x="105" y="40" width="270" height="150" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-24" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-23">
<mxGeometry width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-25" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-24">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-26" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-25">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-27" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-25">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-28" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-24">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-29" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-28">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-30" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-28">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-31" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-24">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-32" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-31">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-33" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-31">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-34" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-24">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-35" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-34">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-36" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-34">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-37" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-23">
<mxGeometry y="80.23255813953489" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-47" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-37">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-48" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-47">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-49" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-47">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-50" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-22">
<mxGeometry x="383.7523076923077" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-51" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-50">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-52" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-50">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-53" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-22">
<mxGeometry x="383.7523076923077" y="120.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-54" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-53">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-55" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-53">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-56" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-22">
<mxGeometry x="33.75230769230768" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-57" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-56">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-58" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-56">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-62" value="<font style="font-size: 33px;">Remotes<br style="font-size: 33px;">(Backup Locations)<br style="font-size: 33px;"></font>" style="text;strokeColor=none;fillColor=none;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=33;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1648" y="248" width="313" height="31" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-63" value="<font style="font-size: 50px;">Hosts &amp; Pools</font>" style="text;strokeColor=none;fillColor=none;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;hachureGap=4;pointerEvents=0;fontFamily=Architects Daughter;fontSource=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DArchitects%2BDaughter;fontSize=50;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-993.75" y="230" width="421.25" height="30" as="geometry" />
</mxCell>
<UserObject label="<font style="font-size: 20px" color="#80ff00"><b>SMB NAS Storage<br></b></font>" link="https://192.168.3.213/ui/sessions/signin" id="MHSigr3qXPIshMnVgoxZ-64">
<mxCell style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1540" y="390" width="85" height="80" as="geometry" />
</mxCell>
</UserObject>
<mxCell id="MHSigr3qXPIshMnVgoxZ-65" style="edgeStyle=orthogonalEdgeStyle;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;entryPerimeter=0;endArrow=none;endFill=0;strokeWidth=10;flowAnimation=0;labelBackgroundColor=#114B5F;strokeColor=#028090;fontColor=#E4FDE1;" edge="1" parent="MHSigr3qXPIshMnVgoxZ-1" source="MHSigr3qXPIshMnVgoxZ-5" target="MHSigr3qXPIshMnVgoxZ-64">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-66" value="<b style="color: rgb(128, 255, 0); font-size: 20px;">S3 Storage</b>" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#DF8C42;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;shape=mxgraph.veeam2.aws_s3;fontFamily=Helvetica;fontSize=24;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1540" y="687" width="77" height="95" as="geometry" />
</mxCell>
<mxCell id="MHSigr3qXPIshMnVgoxZ-67" style="edgeStyle=orthogonalEdgeStyle;shape=connector;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;labelBackgroundColor=#114B5F;strokeColor=#028090;strokeWidth=10;fontFamily=Helvetica;fontSize=24;fontColor=#E4FDE1;endArrow=none;endFill=0;" edge="1" parent="MHSigr3qXPIshMnVgoxZ-1" source="MHSigr3qXPIshMnVgoxZ-5" target="MHSigr3qXPIshMnVgoxZ-66">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1388" y="310" />
<mxPoint x="-1388" y="735" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-0" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-738" y="-324" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-1" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-716.75" y="-297.75" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-2" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-588" y="-324" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-3" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-566.75" y="-297.75" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-4" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-933" y="-379" width="469" height="386" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-8" value="<font style="font-size: 20px" color="#80ff00"><b>Shared Storage<br>(VM &amp; ISO)<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-4">
<mxGeometry x="199.87" y="226" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-5" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-894.25" y="-324" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-6" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-5">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-7" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-5">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-9" value="XCP-NG Pool (Min HA Setup)" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1771" y="-423" width="731" height="363" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-10" value="" style="group;fontColor=#E4FDE1;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="159.5" y="51" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-11" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;movable=0;resizable=0;rotatable=0;deletable=0;editable=0;locked=1;connectable=0;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-10">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-12" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;movable=0;resizable=0;rotatable=0;deletable=0;editable=0;locked=1;connectable=0;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-10">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-461" value="Local" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#F45B69;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.hard_disk;fontColor=#80FF00;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="250.5" y="66" width="40" height="54" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-460" value="Pool<br style="font-size: 18px;">Network" style="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;shape=mxgraph.aws3.elastic_network_interface;fillColor=#F58534;gradientColor=none;fontColor=#FF6666;fontStyle=1;fontSize=18;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="32" y="76" width="73" height="73" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-468" value="" style="group;fontColor=#E4FDE1;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="333.5" y="53" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-469" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;movable=0;resizable=0;rotatable=0;deletable=0;editable=0;locked=1;connectable=0;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-468">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-470" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;movable=0;resizable=0;rotatable=0;deletable=0;editable=0;locked=1;connectable=0;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-468">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-471" value="Local" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#F45B69;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.hard_disk;fontColor=#80FF00;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="423.5" y="66" width="40" height="54" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-472" value="<font style="font-size: 20px" color="#80ff00"><b>Shared Storage<br>(VM &amp; ISO)<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="297" y="226" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-477" value="" style="group;fontColor=#E4FDE1;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="491.5" y="54" width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-478" value="<font style="font-size: 20px" color="#80ff00"><b>XCP-NG Host</b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;movable=0;resizable=0;rotatable=0;deletable=0;editable=0;locked=1;connectable=0;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-477">
<mxGeometry width="90" height="100" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-479" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;movable=0;resizable=0;rotatable=0;deletable=0;editable=0;locked=1;connectable=0;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-477">
<mxGeometry x="21.25" y="26.25" width="47.5" height="47.5" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-480" value="Local" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#F45B69;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;outlineConnect=0;align=center;shape=mxgraph.office.devices.hard_disk;fontColor=#80FF00;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="581.5" y="69" width="40" height="54" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-481" value="<font style="font-size: 20px" color="#80ff00"><b>Shared Storage<br>(VM &amp; ISO)<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="450" y="226" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-482" value="<font style="font-size: 20px" color="#80ff00"><b>Shared Storage<br>(VM &amp; ISO)<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="142" y="226" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-483" value="<font style="font-size: 20px" color="#80ff00"><b>Shared Storage<br>(VM &amp; ISO)<br></b></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server_storage;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-9">
<mxGeometry x="603" y="226" width="85" height="80" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-18" value="XCP-NG Pool" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-996.1199999999999" y="760" width="473.75" height="210" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-19" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-18">
<mxGeometry x="105" y="40" width="270" height="150" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-20" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-19">
<mxGeometry width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-21" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-20">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-22" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-21">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-23" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-21">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-24" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-20">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-25" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-24">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-26" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-24">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-27" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-20">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-28" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-27">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-29" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-27">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-30" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-20">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-31" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-30">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-32" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-30">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-33" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-19">
<mxGeometry y="80.23255813953489" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-43" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-33">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-44" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-43">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-45" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-43">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-46" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-18">
<mxGeometry x="383.7523076923077" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-47" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-46">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-48" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-46">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-49" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-18">
<mxGeometry x="383.7523076923077" y="120.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-50" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-49">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-51" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-49">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-52" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-18">
<mxGeometry x="33.75230769230768" y="40" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-53" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-52">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-54" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-52">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-179" value="XCP-NG Pool up to 64 Host" style="swimlane;fontSize=20;startSize=30;strokeWidth=4;collapsible=0;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="MHSigr3qXPIshMnVgoxZ-1">
<mxGeometry x="-1610" y="1436.77" width="898" height="469" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-265" value="" style="group" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-179">
<mxGeometry x="33.75230769230768" y="40" width="412.3076923076923" height="150" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-180" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry x="71.24769230769232" width="270" height="150" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-181" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-180">
<mxGeometry width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-182" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-181">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-183" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-182">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-184" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-182">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-185" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-181">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-186" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-185">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-187" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-185">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-188" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-181">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-189" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-188">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-190" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-188">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-191" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-181">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-192" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-191">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-193" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-191">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-194" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-180">
<mxGeometry y="80.23255813953489" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-195" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-194">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-196" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-195">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-197" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-195">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-198" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-194">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-199" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-198">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-200" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-198">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-201" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-194">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-202" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-201">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-203" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-201">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-204" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-194">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-205" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-204">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-206" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-204">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-306" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-180">
<mxGeometry x="426.25" y="0.0025581395348872604" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-307" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-306">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-308" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-307">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-309" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-307">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-310" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-306">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-311" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-310">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-312" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-310">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-313" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-306">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-314" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-313">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-315" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-313">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-316" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-306">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-317" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-316">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-318" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-316">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-325" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-180">
<mxGeometry x="427.25" y="82.00255813953488" width="270" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-326" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-325">
<mxGeometry x="70.09615384615385" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-327" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-326">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-328" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-326">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-329" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-325">
<mxGeometry x="138.46153846153848" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-330" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-329">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-331" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-329">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-332" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-325">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-333" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-332">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-334" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-332">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-335" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-325">
<mxGeometry x="207.6923076923077" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-336" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-335">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-337" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-335">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-207" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry x="350" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-208" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-207">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-209" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-207">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-210" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry x="350" y="80.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-211" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-210">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-212" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-210">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-213" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-214" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-213">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-215" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-213">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-216" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry y="80.23255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-217" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-216">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-218" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-216">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-319" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry x="776.25" y="0.002558139534830417" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-320" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-319">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-321" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-319">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-322" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry x="426.25" y="0.002558139534830417" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-323" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-322">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-324" value="" style="shape=image;imageAspect=0;aspect=fixed;verticalLabelPosition=bottom;verticalAlign=top;image=https://xcp-ng.org/assets/img/mainlogo.png;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-322">
<mxGeometry x="14.711538461538465" y="18.313953488372096" width="30.448717948717956" height="30.448717948717956" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-338" value="" style="group;fontColor=#E4FDE1;" vertex="1" connectable="0" parent="vwJXq_h6iVgDPBkLrfoX-265">
<mxGeometry x="777.25" y="82.00255813953483" width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>
<mxCell id="vwJXq_h6iVgDPBkLrfoX-339" value="<br><font color="#80ff00"><span style="font-size: 20px"><b><br></b></span></font>" style="verticalAlign=top;verticalLabelPosition=bottom;labelPosition=center;align=center;html=1;outlineConnect=0;gradientDirection=north;strokeWidth=2;shape=mxgraph.networks.server;fillColor=#F45B69;strokeColor=#028090;fontColor=#E4FDE1;" vertex="1" parent="vwJXq_h6iVgDPBkLrfoX-338">
<mxGeometry width="62.30769230769232" height="69.76744186046513" as="geometry" />
</mxCell>