-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharch_template_task2_solution.drawio
1729 lines (1729 loc) · 224 KB
/
arch_template_task2_solution.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" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/25.0.2 Chrome/128.0.6613.186 Electron/32.2.5 Safari/537.36" version="25.0.2">
<diagram name="DF" id="BleSmaJVXqo2yb7Co1eL">
<mxGraphModel dx="4429" dy="2130" grid="0" gridSize="10" guides="0" tooltips="0" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="cKbgiC5qh_IXnBO1eU4K-99" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-2502" y="-992" width="3630" height="2239" as="geometry" />
</mxCell>
<mxCell id="kQWFD41fJFxlXKQhT5sF-1" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1321" y="-1305" width="155" height="49" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-166" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=33;" parent="kQWFD41fJFxlXKQhT5sF-1" vertex="1">
<mxGeometry y="13" width="155" height="34" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-165" value="<font style="font-size: 18px;"><i>React/HTML/CSS</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="kQWFD41fJFxlXKQhT5sF-1" vertex="1">
<mxGeometry x="29" width="89" height="49" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-98" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" parent="1" vertex="1">
<mxGeometry x="-2486" y="-1575" width="4365" height="568" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-100" value="WAN" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1;arcSize=50;" parent="1" vertex="1">
<mxGeometry x="-2441" y="-1550" width="85" height="49" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-101" value="LAN" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="-2451" y="-960" width="85" height="49" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-163" value="" style="rounded=1;whiteSpace=wrap;html=1;arcSize=3;fillColor=#f5f5f5;strokeColor=#1C57CD;strokeWidth=3;align=center;verticalAlign=middle;fontFamily=Helvetica;fontSize=12;fontColor=#333333;resizable=1;" parent="1" vertex="1">
<mxGeometry x="-1342" y="-1262" width="650" height="210" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-164" value="Портал электронной площадки" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="-1275" y="-1260" width="380" height="49" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-4" value="Клиент" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;rounded=1;" parent="1" vertex="1">
<mxGeometry x="-1059" y="-1569" width="65" height="141" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-10" value="" style="endArrow=classic;html=1;rounded=1;dashed=1;entryX=0.727;entryY=0.031;entryDx=0;entryDy=0;entryPerimeter=0;fontSize=12;" parent="1" source="Tz6aEU4ManMyac2rpAqn-4" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-1027" y="-1522" as="sourcePoint" />
<mxPoint x="-1025.7399999999998" y="-1258.4809999999998" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-1" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1332" y="-1202" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-53" value="" style="group" parent="BZBJQn5B5M7l6MrAMs_o-1" vertex="1" connectable="0">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-175" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-53" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-176" value="" style="sketch=0;outlineConnect=0;fontColor=#FFFFFF;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-53" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-177" value="Зарегистрироваться на площадке" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;" parent="BZBJQn5B5M7l6MrAMs_o-53" vertex="1">
<mxGeometry x="9" y="4.5" width="218" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-2" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1332" y="-1152" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-54" value="" style="group" parent="BZBJQn5B5M7l6MrAMs_o-2" vertex="1" connectable="0">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-178" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-54" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-179" value="" style="sketch=0;outlineConnect=0;fontColor=#FFFFFF;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-54" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-180" value="Редактировать профиль" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;" parent="BZBJQn5B5M7l6MrAMs_o-54" vertex="1">
<mxGeometry x="8" y="4.5" width="164" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-3" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1332" y="-1102" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-55" value="" style="group" parent="BZBJQn5B5M7l6MrAMs_o-3" vertex="1" connectable="0">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-181" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-55" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-182" value="" style="sketch=0;outlineConnect=0;fontColor=#FFFFFF;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-55" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-183" value="Разместить заказ" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;" parent="BZBJQn5B5M7l6MrAMs_o-55" vertex="1">
<mxGeometry x="14" y="3" width="117" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-4" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1012" y="-1202" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-56" value="" style="group" parent="BZBJQn5B5M7l6MrAMs_o-4" vertex="1" connectable="0">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-184" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-56" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-185" value="" style="sketch=0;outlineConnect=0;fontColor=#FFFFFF;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-56" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-186" value="Разместить услугу" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;" parent="BZBJQn5B5M7l6MrAMs_o-56" vertex="1">
<mxGeometry x="6" y="4.5" width="132" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-5" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1012" y="-1152" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-57" value="" style="group" parent="BZBJQn5B5M7l6MrAMs_o-5" vertex="1" connectable="0">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-187" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-57" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-188" value="" style="sketch=0;outlineConnect=0;fontColor=#FFFFFF;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-57" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-189" value="Создать аукцион" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;" parent="BZBJQn5B5M7l6MrAMs_o-57" vertex="1">
<mxGeometry x="10" y="4.5" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-6" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-1012" y="-1102" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-58" value="" style="group" parent="BZBJQn5B5M7l6MrAMs_o-6" vertex="1" connectable="0">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-190" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-58" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-191" value="" style="sketch=0;outlineConnect=0;fontColor=#FFFFFF;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-58" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-192" value="Подать заявку на аукцион" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;" parent="BZBJQn5B5M7l6MrAMs_o-58" vertex="1">
<mxGeometry x="10" y="4.5" width="167" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-8" value="Профиль" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="-2445" y="-1437" width="143" height="49" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-254" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-2797" y="363" width="293" height="371" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-95" value="Администратор" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;rounded=1;" parent="IenV7c3uarRnQCwYBT8g-254" vertex="1">
<mxGeometry width="65" height="141" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-96" value="" style="endArrow=classic;html=1;rounded=1;dashed=1;entryX=0.961;entryY=0.023;entryDx=0;entryDy=0;entryPerimeter=0;" parent="IenV7c3uarRnQCwYBT8g-254" source="cKbgiC5qh_IXnBO1eU4K-95" target="cKbgiC5qh_IXnBO1eU4K-154" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="166" y="164" as="sourcePoint" />
<mxPoint x="162" y="599" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-154" value="Редактировать аукцион<div>Валидировать заявку</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;" parent="IenV7c3uarRnQCwYBT8g-254" vertex="1">
<mxGeometry x="50" y="70" width="243" height="30" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-157" value="Специалист поддержки" style="shape=umlActor;verticalLabelPosition=bottom;verticalAlign=top;html=1;outlineConnect=0;rounded=1;" parent="IenV7c3uarRnQCwYBT8g-254" vertex="1">
<mxGeometry y="230" width="65" height="141" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-160" value="" style="endArrow=classic;html=1;rounded=1;dashed=1;" parent="IenV7c3uarRnQCwYBT8g-254" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="70" y="290.43434343434365" as="sourcePoint" />
<mxPoint x="285" y="290" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-162" value="<div>Изменить статус заявки</div><div>на поддержку</div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;" parent="IenV7c3uarRnQCwYBT8g-254" vertex="1">
<mxGeometry x="50" y="290" width="243" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-43" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-2076" y="-856" width="340" height="768" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-7" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#FF0000;" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1">
<mxGeometry width="340" height="768" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-13" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1" connectable="0">
<mxGeometry x="27" y="168.67415730337075" width="309" height="46.8876404494382" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-69" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-13" vertex="1">
<mxGeometry width="309" height="46.8876404494382" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-70" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-13" vertex="1">
<mxGeometry x="282" y="13.224719101123597" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-71" value="Удалить товар пользователя" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-13" vertex="1">
<mxGeometry x="2" y="5.410112359550562" width="188" height="36.06741573033708" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-23" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1" connectable="0">
<mxGeometry x="26" y="113.37078651685397" width="309" height="46.8876404494382" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-54" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-23" vertex="1">
<mxGeometry width="309" height="46.8876404494382" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-55" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-23" vertex="1">
<mxGeometry x="286" y="13.224719101123597" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-56" value="Добавить товар в профиль пользователя" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-23" vertex="1">
<mxGeometry x="8" y="4.808988764044944" width="262" height="36.06741573033708" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-25" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1" connectable="0">
<mxGeometry x="26" y="229.98876404494382" width="309" height="46.8876404494382" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-60" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-25" vertex="1">
<mxGeometry width="309" height="46.8876404494382" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-61" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-25" vertex="1">
<mxGeometry x="286" y="13.224719101123597" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-62" value="Изменить товар пользователя" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-25" vertex="1">
<mxGeometry x="7" y="3.606741573033708" width="195" height="36.06741573033708" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-60" value="Каталог товаров и услуг" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1">
<mxGeometry x="80" y="36.42696629213481" width="202" height="58.91011235955057" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-24" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1" connectable="0">
<mxGeometry x="22" y="285" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-57" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-24" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-58" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-24" vertex="1">
<mxGeometry x="286" y="10" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-59" value="Добавить услугу в профиль пользователя" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-24" vertex="1">
<mxGeometry x="2" y="5" width="273" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-56" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1">
<mxGeometry x="82" y="473" width="168" height="285.88" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-12" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1" connectable="0">
<mxGeometry x="22" y="332" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-66" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-12" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-67" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-12" vertex="1">
<mxGeometry x="282" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-68" value="Удалить услугу пользователя" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-12" vertex="1">
<mxGeometry x="3" y="4.5" width="189" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-26" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-43" vertex="1" connectable="0">
<mxGeometry x="13" y="386" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-63" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-26" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-64" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-26" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-65" value="Изменить услугу пользователя" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-26" vertex="1">
<mxGeometry x="4" y="4.5" width="195" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-33" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-43">
<mxGeometry x="103" y="494.004606741573" width="120" height="241.68539325842698" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-87" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Товар.ID</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1">
<mxGeometry x="28" y="51.69662921348316" width="78" height="25.247191011235955" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-88" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Товар.Название</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1">
<mxGeometry x="9" y="82.95505617977528" width="111" height="25.247191011235955" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-89" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Товар.Описание</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1">
<mxGeometry x="13" y="111.80898876404495" width="107" height="25.247191011235955" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-141" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1" connectable="0">
<mxGeometry x="5" width="110" height="36.06741573033708" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-142" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" parent="800U-4hlmmSY4489oO7n-141" vertex="1">
<mxGeometry y="6.624627379041505" width="109.99999999999999" height="24.29030038981885" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-143" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="800U-4hlmmSY4489oO7n-141" vertex="1">
<mxGeometry x="22.58278145695364" width="64.8344370860927" height="36.06741573033708" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-84" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Услуга.ID</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1">
<mxGeometry x="7" y="157.68539325842698" width="87" height="21" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-86" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Услуга. Описание</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1">
<mxGeometry x="8" y="187.68539325842698" width="112" height="21" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-85" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Услуга.Название</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-33" vertex="1">
<mxGeometry y="220.68539325842698" width="110" height="21" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-53" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-1574" y="-514.9954608879314" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-52" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-53">
<mxGeometry width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-21" value="<font style="font-size: 12px;">[Услуга.ID]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-52">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-50" value="<span style="font-size: 12px;">Добавить услугу в Профиль</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-52">
<mxGeometry x="41.99608444659816" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-54" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=-0.003;entryY=0.189;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-7" target="800U-4hlmmSY4489oO7n-1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-55" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-1578" y="-699.9954608879314" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-56" value="<font style="font-size: 12px;">[Товар.ID]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-55">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-57" value="<span style="font-size: 12px;">Добавить товар в Профиль</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-55">
<mxGeometry x="41.99608444659816" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-51" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.676;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-7" target="800U-4hlmmSY4489oO7n-1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-64" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-1374" y="39" width="325" height="316" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-65" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#FF0000;" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1">
<mxGeometry width="325" height="316" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-104" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1">
<mxGeometry x="44" y="188" width="151" height="105" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-46" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman"><span style="font-size: 14px;">JWT</span></font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1">
<mxGeometry x="99" y="233" width="49" height="21" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-8" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1" connectable="0">
<mxGeometry x="27" y="59" width="233" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-42" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;movable=1;resizable=1;rotatable=1;deletable=1;editable=1;locked=0;connectable=1;" parent="BZBJQn5B5M7l6MrAMs_o-8" vertex="1">
<mxGeometry width="233" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-43" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-8" vertex="1">
<mxGeometry x="211.1326860841424" y="11" width="12.818770226537218" height="12.818770226537218" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-44" value="Аутентификация" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;arcSize=23;" parent="BZBJQn5B5M7l6MrAMs_o-8" vertex="1">
<mxGeometry x="19.004498381877024" y="4" width="85.96116504854369" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-11" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1" connectable="0">
<mxGeometry x="26" y="116" width="231" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-48" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-11" vertex="1">
<mxGeometry width="230.99999999999997" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-49" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-11" vertex="1">
<mxGeometry x="209.32038834951456" y="11" width="10.94822006472492" height="10.94822006472492" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-50" value="Валидация токена безопасности" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-11" vertex="1">
<mxGeometry x="2.242718446601942" y="4.5" width="156.2427184466019" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-66" value="Аутентификация" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1">
<mxGeometry x="50" width="202" height="49" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-138" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-64" vertex="1" connectable="0">
<mxGeometry x="67" y="187" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-139" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" parent="800U-4hlmmSY4489oO7n-138" vertex="1">
<mxGeometry y="5.510204081632653" width="109.99999999999999" height="20.20408163265306" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-63" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=1;exitDx=0;exitDy=0;" edge="1" parent="800U-4hlmmSY4489oO7n-138" source="800U-4hlmmSY4489oO7n-140">
<mxGeometry relative="1" as="geometry">
<mxPoint x="98" y="30" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-140" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="800U-4hlmmSY4489oO7n-138" vertex="1">
<mxGeometry x="22.58278145695364" width="64.8344370860927" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-104" value="" style="endArrow=classic;html=1;rounded=0;exitX=1.008;exitY=0.712;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;strokeColor=#FF0000;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-1" target="SBzpf0IvcHdCeyiS7mUa-5">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-893.0009999999997" y="-346.3399999999999" as="sourcePoint" />
<mxPoint x="-751.1909999999998" y="-508.30899999999997" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-105" value="" style="shape=message;html=1;outlineConnect=0;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-104">
<mxGeometry width="20" height="14" relative="1" as="geometry">
<mxPoint x="-10" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-111" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-880" y="-424" width="73" height="31" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-112" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-111">
<mxGeometry width="73" height="31" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-113" value="<font style="font-size: 12px;">[Пользователь.ID]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-112">
<mxGeometry y="1.933376979395391" width="73" height="29.06662302060461" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-114" value="<span style="font-size: 12px;">Publish Новый Пользователь</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-112">
<mxGeometry x="41.99608444659816" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-115" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#FF0000;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-67" target="800U-4hlmmSY4489oO7n-7">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-116" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-1950" y="3.0045391120686418" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-117" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-116">
<mxGeometry width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-119" value="<span style="font-size: 12px;">Найти услугу/товар</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-117">
<mxGeometry x="41.99608444659816" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-126" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#FF0000;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-22" target="800U-4hlmmSY4489oO7n-13">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-22" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#FF0000;" parent="1" vertex="1">
<mxGeometry x="-740" y="-95" width="346" height="556" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-126" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-725" y="-87" width="317" height="501" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-27" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="4" y="58" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-135" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-27" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-136" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-27" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-137" value="Создать аукцион" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-27" vertex="1">
<mxGeometry x="3" y="4.5" width="113" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-28" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="4" y="101" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-140" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-28" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-141" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-28" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-142" value="Редактировать аукцион" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-28" vertex="1">
<mxGeometry x="3" y="4.5" width="160" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-29" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="4" y="144" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-143" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-29" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-144" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-29" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-145" value="Обработать новую заявку на аукцион" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-29" vertex="1">
<mxGeometry x="3" y="4.5" width="241" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-30" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="6" y="194" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-146" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-30" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-147" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-30" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-148" value="Обновление ставок аукциона" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-30" vertex="1">
<mxGeometry x="4" y="4.5" width="189" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-24" value="Аукцион" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="800U-4hlmmSY4489oO7n-126" vertex="1">
<mxGeometry width="307" height="49" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-38" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="8" y="250" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-19" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-38" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-20" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-38" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-21" value="Обновление ставок аукциона" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-38" vertex="1">
<mxGeometry y="4.5" width="202" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-37" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="5" y="300" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-37" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-37" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-38" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-37" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-39" value="Обновление статуса аукциона" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-37" vertex="1">
<mxGeometry y="4.5" width="202" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-101" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="800U-4hlmmSY4489oO7n-126" vertex="1">
<mxGeometry x="43" y="360" width="212" height="141" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-7" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Заявка на аукцион.ID</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="800U-4hlmmSY4489oO7n-126" vertex="1">
<mxGeometry x="64" y="464" width="151" height="21" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-74" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Торговая площадка.ID</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="800U-4hlmmSY4489oO7n-126" vertex="1">
<mxGeometry x="79" y="405" width="144.5" height="21" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-75" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Торговая площадка.Наименование</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" parent="800U-4hlmmSY4489oO7n-126" vertex="1">
<mxGeometry x="44" y="436" width="214" height="21" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-174" value="" style="group" parent="800U-4hlmmSY4489oO7n-126" vertex="1" connectable="0">
<mxGeometry x="96" y="352" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-175" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" parent="800U-4hlmmSY4489oO7n-174" vertex="1">
<mxGeometry y="5.510204081632653" width="109.99999999999999" height="20.20408163265306" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-176" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="800U-4hlmmSY4489oO7n-174" vertex="1">
<mxGeometry x="22.58278145695364" width="64.8344370860927" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-120" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-629" y="-220" width="102" height="44" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-121" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-120">
<mxGeometry width="102" height="44" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-122" value="<font style="font-size: 12px;">[Аукцион.ID]</font><div><font style="font-size: 12px;">Пользователь.ID</font></div>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-121">
<mxGeometry y="2.7441479707547485" width="102" height="41.255852029245254" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-123" value="<span style="font-size: 12px;">Publish Участник Аукциона</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-121">
<mxGeometry x="58.679460459630306" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-124" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.537;exitY=0.004;exitDx=0;exitDy=0;exitPerimeter=0;strokeColor=#FF0000;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-22" target="SBzpf0IvcHdCeyiS7mUa-5">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-507" y="-159" as="sourcePoint" />
<mxPoint x="-662.1850000000004" y="-400.7109999999998" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-125" value="" style="shape=message;html=1;outlineConnect=0;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-124">
<mxGeometry width="20" height="14" relative="1" as="geometry">
<mxPoint x="-10" y="-7" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-127" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-301" y="142.00453911206864" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-128" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-127">
<mxGeometry width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-129" value="<font style="font-size: 12px;">[Аукцион.ID]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-128">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-130" value="<span style="font-size: 12px;">Создать заказ</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-128">
<mxGeometry x="41.99608444659816" as="geometry">
<mxPoint x="-4" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-131" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeColor=#FF0000;exitX=0.987;exitY=0.041;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="800U-4hlmmSY4489oO7n-13" target="800U-4hlmmSY4489oO7n-114">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-1020.8275862068963" y="532" as="targetPoint" />
<mxPoint x="-319" y="532" as="sourcePoint" />
</mxGeometry>
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-13" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#FF0000;" parent="1" vertex="1">
<mxGeometry x="-320" y="292" width="324" height="607" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-14" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-307" y="362" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-75" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-14" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-76" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-14" vertex="1">
<mxGeometry x="282" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-77" value="Создание заказа" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-14" vertex="1">
<mxGeometry x="5" y="4.5" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-15" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-314" y="430" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-78" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-15" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-79" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-15" vertex="1">
<mxGeometry x="282" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-80" value="Редактирование заказа" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-15" vertex="1">
<mxGeometry x="3" y="4.5" width="154" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-16" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-314" y="478" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-81" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-16" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-82" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-16" vertex="1">
<mxGeometry x="282" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-83" value="Сохранение заказа" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-16" vertex="1">
<mxGeometry x="4" y="4" width="126" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-17" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-314" y="527" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-84" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-17" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-85" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-17" vertex="1">
<mxGeometry x="281.5" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-86" value="Подтверждение заказа" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-17" vertex="1">
<mxGeometry x="4" y="4.5" width="152" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-18" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-314" y="575" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-87" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-18" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-88" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-18" vertex="1">
<mxGeometry x="281.5" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-89" value="Размещение заказа" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-18" vertex="1">
<mxGeometry x="3" y="4.5" width="130.5" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-19" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-314" y="624" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-90" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-19" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-91" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-19" vertex="1">
<mxGeometry x="281.5" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-92" value="Отобразить все заказы" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-19" vertex="1">
<mxGeometry x="3" y="4.5" width="152" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-20" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-314" y="674" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-93" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-20" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-94" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=default;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-20" vertex="1">
<mxGeometry x="282" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-95" value="Отобразить детали заказа" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-20" vertex="1">
<mxGeometry x="5" y="5" width="169" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-17" value="Заказ" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="-253" y="310" width="177" height="49" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-132" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="221" y="307.00453911206864" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-133" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-132">
<mxGeometry width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-134" value="<font style="font-size: 12px;">[Заказ.ID]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-133">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-135" value="<span style="font-size: 12px;">Инициировать платежную операцию</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-133">
<mxGeometry x="41.99608444659816" as="geometry">
<mxPoint x="-3" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-141" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;strokeColor=#FF3333;" vertex="1" parent="1">
<mxGeometry x="-285" y="733" width="202" height="141" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-110" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#FF0000;" parent="1" vertex="1">
<mxGeometry x="61" y="523" width="409" height="379" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-142" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Заказ.ID</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="-249" y="778" width="144.5" height="21" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-143" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-232" y="725" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-144" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-143">
<mxGeometry y="5.510204081632653" width="109.99999999999999" height="20.20408163265306" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-145" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" vertex="1" parent="IenV7c3uarRnQCwYBT8g-143">
<mxGeometry x="22.58278145695364" width="64.8344370860927" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-35" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="72" y="622" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-10" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-35" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-11" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-35" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-12" value="Сгенерировать отчёт по продажам" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-35" vertex="1">
<mxGeometry x="6" y="4.5" width="226" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-36" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="72" y="667" width="902" height="846" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-13" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-36" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-14" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-36" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-15" value="Отобразить статистику заказов" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-36" vertex="1">
<mxGeometry x="6.5" y="4.5" width="202" height="30" as="geometry" />
</mxCell>
<mxCell id="SBzpf0IvcHdCeyiS7mUa-54" value="16" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;rounded=1;fillColor=#FF77BF;" vertex="1" parent="BZBJQn5B5M7l6MrAMs_o-36">
<mxGeometry x="423" y="67" width="23" height="23" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-39" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="74" y="575" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-16" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-39" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-17" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-39" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-18" value="Сгенерировать отчёт активности пользователей" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-39" vertex="1">
<mxGeometry x="5" y="6" width="215" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-111" value="Отчеты" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="153" y="530" width="186" height="49" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-140" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;strokeColor=#FF0000;" vertex="1" parent="1">
<mxGeometry x="88" y="717" width="105" height="102" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-147" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="98" y="711" width="81" height="36" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-148" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-147">
<mxGeometry y="6.612244897959184" width="80.99999999999999" height="24.24489795918367" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-149" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" vertex="1" parent="IenV7c3uarRnQCwYBT8g-147">
<mxGeometry x="16.62913907284768" width="47.74172185430463" height="36" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-153" value="" style="endArrow=classic;html=1;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.004;entryY=0.806;entryDx=0;entryDy=0;entryPerimeter=0;strokeColor=#FF0000;shape=arrow;" edge="1" parent="1" source="IenV7c3uarRnQCwYBT8g-141" target="IenV7c3uarRnQCwYBT8g-140">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-51" y="793" as="sourcePoint" />
<mxPoint x="109" y="793" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-154" value="Реплицирование" style="edgeLabel;resizable=0;html=1;;align=center;verticalAlign=middle;" connectable="0" vertex="1" parent="IenV7c3uarRnQCwYBT8g-153">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-159" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Заказы</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="101" y="774" width="69" height="21" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-162" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;strokeColor=#FF0000;" vertex="1" parent="1">
<mxGeometry x="346" y="722" width="86" height="95" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-160" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Платежи</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="357" y="761" width="69" height="21" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-163" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;strokeColor=#FF0000;" vertex="1" parent="1">
<mxGeometry x="213" y="729" width="101" height="90" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-161" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><font face="Times New Roman">Аукционы</font></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="223" y="771" width="87" height="21" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-164" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="226" y="716" width="81" height="36" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-165" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-164">
<mxGeometry y="6.612244897959184" width="80.99999999999999" height="24.24489795918367" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-166" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" vertex="1" parent="IenV7c3uarRnQCwYBT8g-164">
<mxGeometry x="16.62913907284768" width="47.74172185430463" height="36" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-167" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="351" y="708" width="81" height="36" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-168" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-167">
<mxGeometry y="6.612244897959184" width="80.99999999999999" height="24.24489795918367" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-169" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" vertex="1" parent="IenV7c3uarRnQCwYBT8g-167">
<mxGeometry x="16.62913907284768" width="47.74172185430463" height="36" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-179" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-36" y="801.0045391120686" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-180" value="<font style="font-size: 12px;">[Заказы]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-179">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-187" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="544" y="745.0045391120684" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-188" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-187">
<mxGeometry width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-189" value="<font style="font-size: 12px;">[Транзакции]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-188">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-190" value="<span style="font-size: 12px;">Реплицировать</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-188">
<mxGeometry x="41.99608444659816" as="geometry">
<mxPoint x="-4" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-242" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="-278" y="942.0045391120686" width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-243" value="" style="group" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-242">
<mxGeometry width="73" height="31.99546088793136" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-244" value="<font style="font-size: 12px;">[Аукционы]</font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;labelBackgroundColor=none;fontColor=#B8B8B8;" vertex="1" parent="IenV7c3uarRnQCwYBT8g-243">
<mxGeometry y="1.9954608879313582" width="73" height="30" as="geometry" />
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-245" value="<span style="font-size: 12px;">Реплицировать</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" vertex="1" connectable="0" parent="IenV7c3uarRnQCwYBT8g-243">
<mxGeometry x="41.99608444659816" as="geometry">
<mxPoint x="-4" y="-4" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="IenV7c3uarRnQCwYBT8g-257" value="" style="group" vertex="1" connectable="0" parent="1">
<mxGeometry x="496" y="-921" width="446" height="669" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-114" value="" style="rounded=1;whiteSpace=wrap;html=1;strokeColor=#FF0000;" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1">
<mxGeometry width="436" height="669" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-46" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="62" y="410" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-130" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-46" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-131" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-46" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-132" value="Предоставить статус операции" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-46" vertex="1">
<mxGeometry y="4.5" width="207" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-47" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="61" y="353" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-127" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-47" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-128" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-47" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-129" value="Запросить статус операции" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-47" vertex="1">
<mxGeometry x="3" y="6" width="179" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-48" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="60" y="301" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-124" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-48" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-125" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-48" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-126" value="Инициировать отмену транзакции" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-48" vertex="1">
<mxGeometry x="2" y="4" width="223" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-49" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="59" y="249" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-121" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-49" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-122" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-49" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-123" value="Предоставить список и статус операций" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-49" vertex="1">
<mxGeometry y="4.5" width="263" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-50" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="54" y="205" width="316" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-118" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-50" vertex="1">
<mxGeometry x="7" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-119" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-50" vertex="1">
<mxGeometry x="287" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-120" value="Авторизация платёжной операции" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-50" vertex="1">
<mxGeometry y="4.5" width="243" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-51" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="59" y="149" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-115" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-51" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-116" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-51" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-117" value="Учёт платёжной операции" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-51" vertex="1">
<mxGeometry x="5" y="4.5" width="173" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-52" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="68" y="101" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-109" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-52" vertex="1">
<mxGeometry x="-3.5" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-110" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-52" vertex="1">
<mxGeometry x="280" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-111" value="Инициировать платёжную операцию" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-52" vertex="1">
<mxGeometry y="4.5" width="243" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-117" value="Платежи" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1">
<mxGeometry x="58" y="11" width="305" height="49" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-137" value="" style="shape=cylinder3;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=15;" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1">
<mxGeometry x="97" y="486" width="176" height="131" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-150" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; line-height: normal; text-align: start;" class="p1"><span style="text-align: center; text-indent: 0px;"><font style="font-size: 14px;" face="Times New Roman">[Транзакция.ID]</font></span><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#B8B8B8;strokeColor=#FFD966;" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1">
<mxGeometry x="130" y="531" width="104" height="21" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-151" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; line-height: normal; text-align: start;" class="p1"><span style="text-align: center; text-indent: 0px;"><font style="font-size: 14px;" face="Times New Roman">[Транзакция.Статус]</font></span><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#B8B8B8;strokeColor=#FFD966;" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1">
<mxGeometry x="131" y="563" width="125" height="21" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-183" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="124" y="479" width="110" height="30" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-184" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=50;" parent="800U-4hlmmSY4489oO7n-183" vertex="1">
<mxGeometry y="5.510204081632653" width="109.99999999999999" height="20.20408163265306" as="geometry" />
</mxCell>
<mxCell id="800U-4hlmmSY4489oO7n-185" value="<font style="font-size: 18px;"><i>PostgreSQL</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="800U-4hlmmSY4489oO7n-183" vertex="1">
<mxGeometry x="22.58278145695364" width="64.8344370860927" height="30" as="geometry" />
</mxCell>
<mxCell id="BZBJQn5B5M7l6MrAMs_o-22" value="" style="group" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1" connectable="0">
<mxGeometry x="67" y="59" width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-106" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1C57CD;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-22" vertex="1">
<mxGeometry width="309" height="39" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-107" value="" style="sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;fillColor=#FFFFFF;strokeColor=none;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;pointerEvents=1;shape=mxgraph.aws4.gear;rounded=1;" parent="BZBJQn5B5M7l6MrAMs_o-22" vertex="1">
<mxGeometry x="286" y="11" width="17" height="17" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-108" value="Определить способ оплаты" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;fontSize=13;fontColor=#FFFFFF;strokeColor=none;" parent="BZBJQn5B5M7l6MrAMs_o-22" vertex="1">
<mxGeometry x="7" y="4.5" width="173" height="30" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-140" value="4" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;rounded=1;fillColor=#FF77BF;" parent="IenV7c3uarRnQCwYBT8g-257" vertex="1">
<mxGeometry x="423" y="408" width="23" height="23" as="geometry" />
</mxCell>
<mxCell id="kQWFD41fJFxlXKQhT5sF-2" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="-2285" y="-951" width="151" height="36" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-91" value="<p style="margin: 0px 0px 0px 13px; text-indent: -13px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; font-size: 14px; line-height: normal; color: rgb(14, 14, 14); text-align: start;" class="p1"><br></p>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#FF77BF;strokeColor=none;arcSize=33;" parent="kQWFD41fJFxlXKQhT5sF-2" vertex="1">
<mxGeometry y="5" width="151" height="31" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-92" value="<font style="font-size: 18px;"><i>Django/Python</i></font>" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="kQWFD41fJFxlXKQhT5sF-2" vertex="1">
<mxGeometry x="30" width="89" height="36" as="geometry" />
</mxCell>
<mxCell id="aNh6FEuhw9lsT8rE3H5J-121" value="Система управления торговыми площадками" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="-902" y="-959" width="549" height="49" as="geometry" />
</mxCell>
<mxCell id="ISwjRsLXD4yoOcMXPSiY-8" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="1112" y="-1527" width="535" height="220" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-102" value="" style="rounded=1;whiteSpace=wrap;html=1;arcSize=5;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ISwjRsLXD4yoOcMXPSiY-8" vertex="1">
<mxGeometry x="17" width="518" height="220" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-103" value="TurboPay" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="ISwjRsLXD4yoOcMXPSiY-8" vertex="1">
<mxGeometry width="177" height="49" as="geometry" />
</mxCell>
<mxCell id="ISwjRsLXD4yoOcMXPSiY-9" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="1162" y="-1467" width="518" height="224" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-100" value="" style="rounded=1;whiteSpace=wrap;html=1;arcSize=5;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ISwjRsLXD4yoOcMXPSiY-9" vertex="1">
<mxGeometry width="518" height="224" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-101" value="FastMoney" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="ISwjRsLXD4yoOcMXPSiY-9" vertex="1">
<mxGeometry x="2" width="141" height="49" as="geometry" />
</mxCell>
<mxCell id="ISwjRsLXD4yoOcMXPSiY-10" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="1192" y="-1407" width="514" height="244" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-104" value="" style="rounded=1;whiteSpace=wrap;html=1;arcSize=5;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ISwjRsLXD4yoOcMXPSiY-10" vertex="1">
<mxGeometry width="514" height="244" as="geometry" />
</mxCell>
<mxCell id="Tz6aEU4ManMyac2rpAqn-105" value="Яндекс.Pay" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=1;shadow=0;fontSize=23;fontStyle=1" parent="ISwjRsLXD4yoOcMXPSiY-10" vertex="1">
<mxGeometry width="150" height="49" as="geometry" />
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-103" value="" style="endArrow=classic;html=1;rounded=1;curved=0;entryX=1.005;entryY=0.384;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="800U-4hlmmSY4489oO7n-114" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1462" y="-1157" as="sourcePoint" />
<mxPoint x="962.1410000000005" y="-648.8359999999998" as="targetPoint" />
<Array as="points">
<mxPoint x="1462" y="-667" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-104" value="<p style="margin: 0px 0px 0px 21px; text-indent: -21px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-stretch: normal; line-height: normal; color: rgb(14, 14, 14); text-align: start; text-wrap: wrap;" class="p1"><font style="font-size: 12px;" face="Helvetica">Подтверждение платежа</font></p>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" parent="cKbgiC5qh_IXnBO1eU4K-103" vertex="1" connectable="0">
<mxGeometry x="0.1936" y="1" relative="1" as="geometry">
<mxPoint x="-269" y="39" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-105" value="" style="endArrow=classic;html=1;rounded=1;exitX=0.998;exitY=0.517;exitDx=0;exitDy=0;exitPerimeter=0;curved=0;entryX=0.68;entryY=1.001;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="800U-4hlmmSY4489oO7n-114" target="Tz6aEU4ManMyac2rpAqn-104" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="962.1410000000005" y="-570.3499999999999" as="sourcePoint" />
<mxPoint x="1542" y="-967" as="targetPoint" />
<Array as="points">
<mxPoint x="1542" y="-587" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-106" value="<font style="font-size: 12px;">Предоставить статус платежа</font>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" parent="cKbgiC5qh_IXnBO1eU4K-105" vertex="1" connectable="0">
<mxGeometry x="0.1936" y="1" relative="1" as="geometry">
<mxPoint x="-209" y="30" as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-107" value="" style="endArrow=classic;html=1;rounded=1;curved=0;entryX=1;entryY=0.76;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" target="800U-4hlmmSY4489oO7n-114" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1702" y="-1157" as="sourcePoint" />
<mxPoint x="962" y="-412.616" as="targetPoint" />
<Array as="points">
<mxPoint x="1702" y="-427" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="cKbgiC5qh_IXnBO1eU4K-108" value="<font style="font-size: 12px;">Подтверждение отмены&nbsp;</font><div><font style="font-size: 12px;">платежа</font></div>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];rounded=1;" parent="cKbgiC5qh_IXnBO1eU4K-107" vertex="1" connectable="0">
<mxGeometry x="0.1936" y="1" relative="1" as="geometry">
<mxPoint x="-262" y="-41" as="offset" />
</mxGeometry>