forked from bcgov/lcfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCFS_ERD.drawio
7229 lines (7229 loc) · 812 KB
/
LCFS_ERD.drawio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="Electron" modified="2023-09-25T18:35:48.780Z" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.7.5 Chrome/114.0.5735.289 Electron/25.8.1 Safari/537.36" etag="FXk1diP8FPn9ZOulp3bQ" version="21.7.5" type="device" pages="7">
<diagram id="R2lEEEUBdFMjLlhIrx00" name="Transfer">
<mxGraphModel dx="1975" dy="804" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1654" pageHeight="1169" math="0" shadow="0" extFonts="Permanent Marker^https://fonts.googleapis.com/css?family=Permanent+Marker">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="4Nez_xDs6f1H6I94Slvg-92" value="Transaction" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="500" y="302" width="180" height="198" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-93" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-94" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-93" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-95" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-93" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-96" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-97" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-96" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-98" value="Compliance Units" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-96" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-99" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="78" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-100" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-99" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-101" value="Issuance Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-99" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-102" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="102" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-103" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-102" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-104" value="Transfer Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-102" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-105" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="126" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-106" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-105" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-107" value="Transaction Type" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-105" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-108" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="150" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-109" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-108" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-110" value="Create Date" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-108" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-111" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-92" vertex="1">
<mxGeometry y="174" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-112" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-111" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-113" value="Organization" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-111" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-114" value="Issuance (Gov to Org)" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="830" y="192" width="180" height="198" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-115" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-116" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-115" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-117" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-115" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-118" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-119" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-118" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-120" value="Compliance Units" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-118" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-121" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="78" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-122" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-121" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-123" value="Organization Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-121" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-124" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="102" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-125" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-124" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-126" value="Transaction Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-124" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-127" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="126" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-128" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-127" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-129" value="Effective Date" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-127" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-130" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="150" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-131" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-130" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-132" value="Compliance Period" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-130" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-133" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-114" vertex="1">
<mxGeometry y="174" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-134" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-133" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-135" value="Comment Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-133" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-136" value="Transfer (Org to Org)" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="830" y="472" width="180" height="246" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-137" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-138" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-137" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-139" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-137" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-140" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-141" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-140" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-142" value="From_Organization" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-140" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-143" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="78" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-144" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-143" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-145" value="To_Organization" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-143" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-146" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="102" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-147" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-146" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-148" value="Transaction Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-146" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-149" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="126" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-150" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-149" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-151" value="Effective Date" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-149" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-152" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="150" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-153" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-152" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-154" value="Compliance Period" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-152" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-155" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="174" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-156" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-155" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-157" value="Comment Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-155" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-158" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="198" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-159" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-158" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-160" value="Transfer Status" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-158" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-161" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-136" vertex="1">
<mxGeometry y="222" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-162" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-161" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-163" value="Transfer Category" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-161" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-204" value="Transfer History" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="1100" y="448" width="180" height="270" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-205" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-206" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-205" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-207" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-205" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-208" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-209" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-208" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-210" value="Transfer Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-208" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-232" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="78" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-233" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-232" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-234" value="From_Organization" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-232" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-211" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="102" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-212" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-211" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-213" value="To_Organization" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-211" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-214" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="126" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-215" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-214" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-216" value="Transaction Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-214" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-217" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="150" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-218" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-217" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-219" value="Effective Date" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-217" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-220" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="174" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-221" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-220" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-222" value="Compliance Period" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-220" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-223" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="198" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-224" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-223" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-225" value="Comment Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-223" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-226" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="222" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-227" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-226" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-228" value="Transfer Status" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-226" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-229" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-204" vertex="1">
<mxGeometry y="246" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-230" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-229" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-231" value="Transfer Category" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-229" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-236" value="Comment" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#121212;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="1360" y="380" width="180" height="78" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-237" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-236" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-238" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-237" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-239" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-237" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-240" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#000000;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-236" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-241" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-240" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-242" value="Comment" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#000000;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-240" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-281" value="Issuance History (Gov to Org)" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="1100" y="168" width="180" height="222" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-282" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-283" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-282" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-284" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-282" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-285" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-286" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-285" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-287" value="Issuance Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-285" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-303" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="78" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-304" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-303" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-305" value="Compliance Units" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-303" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-288" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="102" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-289" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-288" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-290" value="Organization Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-288" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-291" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="126" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-292" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-291" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-293" value="Transaction Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-291" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-294" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="150" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-295" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-294" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-296" value="Effective Date" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-294" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-297" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="174" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-298" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-297" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-299" value="Compliance Period" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-297" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-300" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-281" vertex="1">
<mxGeometry y="198" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-301" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-300" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-302" value="Comment Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-300" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-310" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="220" y="422" width="180" height="158" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-169" value="Transaction Type" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-310" vertex="1">
<mxGeometry width="180" height="78" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-170" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-169" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-171" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-170" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-172" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-170" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-194" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-169" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-195" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-194" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-196" value="type" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-194" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-199" value="List" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=0;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fontSize=15;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;rounded=0;glass=0;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-310" vertex="1">
<mxGeometry y="78" width="180" height="80" as="geometry">
<mxRectangle y="78" width="180" height="30" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-200" value="Administrative Adjustment" style="text;strokeColor=none;fillColor=none;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;whiteSpace=wrap;html=1;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-199" vertex="1">
<mxGeometry x="26" width="154" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-201" value="Initiative Agreement" style="text;strokeColor=none;fillColor=none;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;whiteSpace=wrap;html=1;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-199" vertex="1">
<mxGeometry x="26" y="20" width="154" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-202" value="Assessment" style="text;strokeColor=none;fillColor=none;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;whiteSpace=wrap;html=1;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-199" vertex="1">
<mxGeometry x="26" y="40" width="154" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-203" value="Transfer" style="text;strokeColor=none;fillColor=none;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=12;whiteSpace=wrap;html=1;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-199" vertex="1">
<mxGeometry x="26" y="60" width="154" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-311" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="410" y="700" width="320" height="278" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-261" value="Transfer Status" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-311" vertex="1">
<mxGeometry width="180" height="78" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-262" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-261" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-263" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-262" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-264" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-262" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-265" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-261" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-266" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-265" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-267" value="status" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-265" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-268" value="List" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=0;startSize=26;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;align=center;fontSize=14;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;verticalAlign=middle;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-311" vertex="1">
<mxGeometry y="78" width="320" height="200" as="geometry">
<mxRectangle x="680" y="910" width="180" height="30" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-269" value="<b>Draft </b>- Created by Org" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-270" value="<b>Deleted </b>- Deleted by Org" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="20" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-271" value="<b>Sent </b>- Sent to Org" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="40" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-272" value="<b>Submitted</b> - Submitted to gov by organization.." style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="60" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-275" value="<b>Recommend Record</b> - Analyst Recommends Record" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="80" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-276" value="<b>Recommend Refuse </b>- Analyst Refuse" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="100" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-277" value="<b>Recorded </b>- Approved by Director" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="120" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-278" value="<b>Refused </b>- Declined by director" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="140" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-279" value="<b>Declined </b>- declined by Organization" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="160" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-280" value="<b>Rescinded </b>- Cancelled by Organization" style="text;strokeColor=none;fillColor=none;spacingLeft=3;spacingRight=0;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;whiteSpace=wrap;html=1;verticalAlign=middle;textDirection=ltr;align=left;spacing=2;labelBorderColor=none;labelBackgroundColor=none;" parent="4Nez_xDs6f1H6I94Slvg-268" vertex="1">
<mxGeometry x="26" y="180" width="294" height="20" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-323" value="Category" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;" parent="1" vertex="1">
<mxGeometry x="827" y="818" width="180" height="78" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-324" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-323" vertex="1">
<mxGeometry y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-325" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-324" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-326" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-324" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-327" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-323" vertex="1">
<mxGeometry y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-328" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-327" vertex="1">
<mxGeometry width="30" height="24" as="geometry">
<mxRectangle width="30" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="4Nez_xDs6f1H6I94Slvg-329" value="category" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;" parent="4Nez_xDs6f1H6I94Slvg-327" vertex="1">
<mxGeometry x="30" width="150" height="24" as="geometry">
<mxRectangle width="150" height="24" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-3" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;rounded=0;curved=1;" parent="1" source="4Nez_xDs6f1H6I94Slvg-170" target="4Nez_xDs6f1H6I94Slvg-105" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="780" y="540" as="sourcePoint" />
<mxPoint x="880" y="440" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-4" value="" style="edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-118" target="4Nez_xDs6f1H6I94Slvg-99" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="780" y="540" as="sourcePoint" />
<mxPoint x="880" y="440" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-6" value="" style="edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-137" target="4Nez_xDs6f1H6I94Slvg-102" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="780" y="540" as="sourcePoint" />
<mxPoint x="880" y="440" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-8" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;rounded=0;strokeColor=#0000CC;curved=1;" parent="1" source="4Nez_xDs6f1H6I94Slvg-262" target="4Nez_xDs6f1H6I94Slvg-158" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="410" y="474" as="sourcePoint" />
<mxPoint x="510" y="450" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-10" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;rounded=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-324" target="4Nez_xDs6f1H6I94Slvg-229" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="710" y="794" as="sourcePoint" />
<mxPoint x="1110" y="716" as="targetPoint" />
<Array as="points">
<mxPoint x="1060" y="860" />
<mxPoint x="1060" y="706" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-13" value="" style="edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-137" target="4Nez_xDs6f1H6I94Slvg-208" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="780" y="570" as="sourcePoint" />
<mxPoint x="880" y="470" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-14" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;rounded=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-324" target="4Nez_xDs6f1H6I94Slvg-161" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1049" y="870" as="sourcePoint" />
<mxPoint x="1110" y="716" as="targetPoint" />
<Array as="points">
<mxPoint x="1040" y="860" />
<mxPoint x="1040" y="706" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-15" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;rounded=0;strokeColor=#0000CC;curved=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-262" target="4Nez_xDs6f1H6I94Slvg-226" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="600" y="752" as="sourcePoint" />
<mxPoint x="840" y="692" as="targetPoint" />
<Array as="points">
<mxPoint x="1050" y="742" />
<mxPoint x="1050" y="682" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-16" value="" style="edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;" parent="1" source="4Nez_xDs6f1H6I94Slvg-115" target="4Nez_xDs6f1H6I94Slvg-285" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1020" y="270" as="sourcePoint" />
<mxPoint x="1110" y="270" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-18" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;strokeColor=#FFB366;" parent="1" source="4Nez_xDs6f1H6I94Slvg-237" target="4Nez_xDs6f1H6I94Slvg-300" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1020" y="524" as="sourcePoint" />
<mxPoint x="1110" y="524" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-19" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;strokeColor=#FFB366;" parent="1" source="4Nez_xDs6f1H6I94Slvg-237" target="4Nez_xDs6f1H6I94Slvg-223" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1370" y="432" as="sourcePoint" />
<mxPoint x="1290" y="388" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-20" value="" style="edgeStyle=elbowEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;exitX=0;exitY=0.5;exitDx=0;exitDy=0;strokeColor=#FFB366;" parent="1" source="4Nez_xDs6f1H6I94Slvg-237" target="4Nez_xDs6f1H6I94Slvg-155" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1370" y="432" as="sourcePoint" />
<mxPoint x="1290" y="668" as="targetPoint" />
<Array as="points">
<mxPoint x="1070" y="540" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="thwUDONgM0Hq2-okbv0U-22" value="" style="edgeStyle=orthogonalEdgeStyle;fontSize=12;html=1;endArrow=ERoneToMany;rounded=0;strokeColor=#FFB366;" parent="1" source="4Nez_xDs6f1H6I94Slvg-237" target="4Nez_xDs6f1H6I94Slvg-133" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1370" y="432" as="sourcePoint" />
<mxPoint x="1290" y="668" as="targetPoint" />
<Array as="points">
<mxPoint x="1070" y="422" />
<mxPoint x="1070" y="378" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="40WlOMIsmyYC6uhjGcMX-1" value="<font style="font-size: 45px;">Compliance Units Transfer</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=45;fontFamily=Helvetica;fontColor=#333333;" parent="1" vertex="1">
<mxGeometry x="172" y="80" width="1310" height="30" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="RHv5p1yABkSHaxUgEiab" name="Organization">
<mxGraphModel dx="2074" dy="844" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1654" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-108" value="Organization Status" style="html=1;overflow=block;blockSpacing=1;swimlane;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;swimlaneFillColor=#ffffff;startSize=30;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=#e0e0e0;spacing=0;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="1" vertex="1">
<mxGeometry x="510" y="184" width="210" height="102" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-109" value="PK" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-108" vertex="1">
<mxGeometry y="30" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-110" value="Id" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-108" vertex="1">
<mxGeometry x="30" y="30" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-111" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-108" vertex="1">
<mxGeometry y="54" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-112" value="status" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-108" vertex="1">
<mxGeometry x="30" y="54" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-113" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-108" vertex="1">
<mxGeometry y="78" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-114" value="description" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-108" vertex="1">
<mxGeometry x="30" y="78" width="180" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-115" value="<strike>Organization Actions Type (TO DELETE)</strike>" style="html=1;overflow=block;blockSpacing=1;swimlane;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;swimlaneFillColor=#ffffff;startSize=30;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=#e0e0e0;spacing=0;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="1" vertex="1">
<mxGeometry x="510" y="322" width="270" height="102" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-116" value="PK" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-115" vertex="1">
<mxGeometry y="30" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-117" value="Id" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-115" vertex="1">
<mxGeometry x="30" y="30" width="240" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-118" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-115" vertex="1">
<mxGeometry y="54" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-119" value="the_type" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-115" vertex="1">
<mxGeometry x="30" y="54" width="240" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-120" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-115" vertex="1">
<mxGeometry y="78" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-121" value="description" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-115" vertex="1">
<mxGeometry x="30" y="78" width="240" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-124" value="Organization Type" style="html=1;overflow=block;blockSpacing=1;swimlane;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;swimlaneFillColor=#ffffff;startSize=30;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=#e0e0e0;spacing=0;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="1" vertex="1">
<mxGeometry x="510" y="553" width="170" height="102" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-125" value="PK" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-124" vertex="1">
<mxGeometry y="30" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-126" value="Id" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-124" vertex="1">
<mxGeometry x="30" y="30" width="140" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-127" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-124" vertex="1">
<mxGeometry y="54" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-128" value="type" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-124" vertex="1">
<mxGeometry x="30" y="54" width="140" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-129" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-124" vertex="1">
<mxGeometry y="78" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-130" value="description" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-124" vertex="1">
<mxGeometry x="30" y="78" width="140" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-132" value="<ul style="margin: 0px; padding-left: 10px;list-style-position: inside; list-style-type:disc"><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;font-weight: bold;">Organization Statuses</span><span style="font-size:13px;color:#333333;"></span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;"><span style="font-size:13px;color:#333333;">Unregistered</span></span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;">Registered</span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;">Suspended</span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;">Canceled</span></span></li></ul>" style="html=1;overflow=block;blockSpacing=1;whiteSpace=wrap;fontSize=13;spacing=3.8;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=12;fillColor=#ffffff;strokeWidth=0.8;lucidId=9F3wzCoaaEUU;fontStyle=2" parent="1" vertex="1">
<mxGeometry x="270" y="184" width="240" height="95" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-133" value="<ul style="margin: 0px; padding-left: 10px;list-style-position: inside; list-style-type:disc"><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;font-weight: bold;">Organization Types</span><span style="font-size:13px;color:#333333;"></span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;"><span style="font-size:13px;color:#333333;">Fuel Supplier</span></span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;">Electricity Supplier</span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;">Broker</span></span></li><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;">Utilities (local or public)</span></span></li></ul>" style="html=1;overflow=block;blockSpacing=1;whiteSpace=wrap;fontSize=13;spacing=3.8;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=12;fillColor=#ffffff;strokeWidth=0.8;lucidId=iP3w48Ik9CpQ;fontStyle=2" parent="1" vertex="1">
<mxGeometry x="270" y="553" width="240" height="95" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-172" value="Organization Balance (REPLACE WITH VIEW)" style="html=1;overflow=block;blockSpacing=1;swimlane;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;swimlaneFillColor=#ffffff;startSize=30;whiteSpace=wrap;fontSize=13;fontStyle=2;fillColor=#dae8fc;spacing=0;strokeColor=#6c8ebf;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="1" vertex="1">
<mxGeometry x="515" y="694" width="170" height="80" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-173" value="PK" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-172" vertex="1">
<mxGeometry y="30" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-174" value="Id" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-172" vertex="1">
<mxGeometry x="30" y="30" width="140" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-175" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-172" vertex="1">
<mxGeometry y="54" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-176" value="compliance_units" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-172" vertex="1">
<mxGeometry x="30" y="54" width="140" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-177" value="" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;fontStyle=2" parent="JY8N4wcXGZUfTmdiJQ9s-172" vertex="1">
<mxGeometry y="78" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-179" value="<strike>Organization History</strike>" style="html=1;overflow=block;blockSpacing=1;swimlane;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=0;marginBottom=0;swimlaneFillColor=#ffffff;startSize=30;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=#e0e0e0;spacing=0;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="1" vertex="1">
<mxGeometry x="510" y="442" width="180" height="54" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-180" value="PK" style="strokeColor=none;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-179" vertex="1">
<mxGeometry y="30" width="30" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-181" value="Id" style="shape=partialRectangle;top=0;right=0;bottom=0;part=1;resizeHeight=0;align=left;verticalAlign=top;spacingLeft=4;spacingRight=4;overflow=hidden;rotatable=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;swimlaneFillColor=#ffffff;whiteSpace=wrap;fontSize=13;fontColor=#333333;fontStyle=2;fillColor=none;strokeOpacity=100;fillOpacity=100;spacing=0;strokeColor=#333333;rounded=1;absoluteArcSize=1;arcSize=7.5;strokeWidth=0.8;" parent="JY8N4wcXGZUfTmdiJQ9s-179" vertex="1">
<mxGeometry x="30" y="30" width="150" height="24" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-182" value="<ul style="margin: 0px; padding-left: 10px;list-style-position: inside; list-style-type:disc"><li style="text-align:left;color:#333333;"><span style="margin-left: 0px;margin-top: -2px;"><span style="font-size:13px;color:#333333;font-weight: bold;">every edit creates a new record of organization_address. Orgs grab the latest one. Compliance reports will reference the address_id</span></span></li></ul>" style="html=1;overflow=block;blockSpacing=1;whiteSpace=wrap;fontSize=13;spacing=3.8;strokeColor=#333333;strokeOpacity=100;fillOpacity=100;rounded=1;absoluteArcSize=1;arcSize=12;fillColor=#ffffff;strokeWidth=0.8;lucidId=OC4wjWhFJcoq;fontStyle=2" parent="1" vertex="1">
<mxGeometry x="940" y="484" width="240" height="95" as="geometry" />
</mxCell>
<mxCell id="JY8N4wcXGZUfTmdiJQ9s-201" value="" style="edgeStyle=entityRelationEdgeStyle;fontSize=12;html=1;endArrow=ERzeroToMany;endFill=1;rounded=0;fontStyle=2" parent="1" source="JY8N4wcXGZUfTmdiJQ9s-126" target="piURb_S5pCl-kl6mijnz-11" edge="1">
<mxGeometry width="100" height="100" relative="1" as="geometry">
<mxPoint x="1000" y="534" as="sourcePoint" />
<mxPoint x="940" y="354" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-1" value="Organization" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=3;align=center;resizeLast=1;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#f5f5f5;spacing=2;fontSize=14;" parent="1" vertex="1">
<mxGeometry x="900" y="157" width="180" height="212" as="geometry" />
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-1" vertex="1">
<mxGeometry y="30" width="180" height="26" as="geometry" />
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-3" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=3;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;" parent="piURb_S5pCl-kl6mijnz-2" vertex="1">
<mxGeometry width="30" height="26" as="geometry">
<mxRectangle width="30" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-4" value="Id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=7;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;" parent="piURb_S5pCl-kl6mijnz-2" vertex="1">
<mxGeometry x="30" width="150" height="26" as="geometry">
<mxRectangle width="150" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-5" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-1" vertex="1">
<mxGeometry y="56" width="180" height="26" as="geometry" />
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-6" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-5" vertex="1">
<mxGeometry width="30" height="26" as="geometry">
<mxRectangle width="30" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-7" value="status" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-5" vertex="1">
<mxGeometry x="30" width="150" height="26" as="geometry">
<mxRectangle width="150" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-8" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-1" vertex="1">
<mxGeometry y="82" width="180" height="26" as="geometry" />
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-9" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-8" vertex="1">
<mxGeometry width="30" height="26" as="geometry">
<mxRectangle width="30" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-10" value="<strike>actions type</strike>" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-8" vertex="1">
<mxGeometry x="30" width="150" height="26" as="geometry">
<mxRectangle width="150" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-11" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-1" vertex="1">
<mxGeometry y="108" width="180" height="26" as="geometry" />
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-12" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-11" vertex="1">
<mxGeometry width="30" height="26" as="geometry">
<mxRectangle width="30" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-13" value="type" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-11" vertex="1">
<mxGeometry x="30" width="150" height="26" as="geometry">
<mxRectangle width="150" height="26" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-14" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-1" vertex="1">
<mxGeometry y="134" width="180" height="26" as="geometry" />
</mxCell>
<mxCell id="piURb_S5pCl-kl6mijnz-15" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;strokeColor=#0F8B8D;fontColor=#143642;spacing=2;fontSize=14;fontStyle=2" parent="piURb_S5pCl-kl6mijnz-14" vertex="1">