-
Notifications
You must be signed in to change notification settings - Fork 0
/
ser_db.drawio
1329 lines (1329 loc) · 142 KB
/
ser_db.drawio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" modified="2022-09-07T22:32:41.740Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36" etag="it6yNELWS9YdyGtNj-hw" version="20.2.8" type="github">
<diagram name="DB" id="efa7a0a1-bf9b-a30e-e6df-94a7791c09e9">
<mxGraphModel dx="474" dy="257" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="4000" pageHeight="2000" background="none" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="k99aoyYJCD8kDP9gguMM-137" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;endArrow=ERone;endFill=0;startArrow=ERmany;startFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-140" target="k99aoyYJCD8kDP9gguMM-285" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="990" y="691.0000000000001" as="sourcePoint" />
<mxPoint x="960" y="790" as="targetPoint" />
<Array as="points">
<mxPoint x="2380" y="830" />
<mxPoint x="1520" y="830" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-140" value="student" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="2280" y="550" width="200" height="156.16000000000008" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-141" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-143" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-141" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-144" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-141" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-142" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-141" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-65" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-66" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="FdM-SJP1FNGF9AtFyQpi-65" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-67" value="id_user" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="FdM-SJP1FNGF9AtFyQpi-65" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-68" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="FdM-SJP1FNGF9AtFyQpi-65" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-145" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-147" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-145" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-148" value="id_classroom" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-145" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-146" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-145" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-436" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-437" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-436" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-438" value="id_class" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-436" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-439" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-436" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-451" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="102" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-452" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-451" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-453" value="absences" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-451" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-454" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-451" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-455" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="120" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-456" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-455" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-457" value="presences" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-455" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-458" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-455" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-467" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-140" vertex="1">
<mxGeometry y="138" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-468" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-467" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-469" value="replacements" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-467" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-470" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-467" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-285" value="classroom" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="1420" y="618.1599999999999" width="200" height="174.16000000000008" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-286" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-287" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-286" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-288" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-286" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-289" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-286" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-397" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-398" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-397" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-399" value="id_class" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-397" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-400" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-397" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-290" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-291" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-290" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-292" value="floor" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-290" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-293" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-290" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-294" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-295" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-294" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-296" value="classroom_number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-294" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-297" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-294" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-298" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="102" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-299" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-298" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-300" value="number_students" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-298" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-301" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-298" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-302" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="120" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-303" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-302" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-304" value="photo" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-302" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-305" value="image" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-302" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-459" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="138" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-460" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-459" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-461" value="last_class_day" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-459" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-462" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-459" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-463" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-285" vertex="1">
<mxGeometry y="156" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-464" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-463" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-465" value="next_class_day" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-463" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-466" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-463" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-367" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=10;fontColor=#003366;startArrow=ERone;startFill=0;endArrow=ERoneToMany;endFill=0;" parent="1" source="FdM-SJP1FNGF9AtFyQpi-89" target="k99aoyYJCD8kDP9gguMM-285" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1330" y="682" />
<mxPoint x="1330" y="730" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-102" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmany;startFill=0;endArrow=ERone;endFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-338" target="FdM-SJP1FNGF9AtFyQpi-76" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1030" y="619" />
<mxPoint x="1030" y="590" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-103" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmany;startFill=0;endArrow=ERone;endFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-338" target="FdM-SJP1FNGF9AtFyQpi-89" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1030" y="650" />
<mxPoint x="1030" y="682" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-338" value="notification" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="780" y="532" width="200" height="174.16000000000008" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-339" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-340" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-339" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-341" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-339" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-342" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-339" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-347" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-348" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-347" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-349" value="message" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-347" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-350" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-347" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-351" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-352" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-351" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-353" value="recurrent" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-351" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-354" value="boolean" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-351" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-355" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-356" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-355" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-357" value="notification_date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-355" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-358" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-355" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-359" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="102" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-360" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-359" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-361" value="link" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-359" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-362" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-359" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-363" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="120" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-364" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-363" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-365" value="photo" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-363" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-366" value="image" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-363" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-10" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-338" vertex="1">
<mxGeometry y="138" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-11" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-10" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-12" value="notification_week_day" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-10" vertex="1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-13" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-10" vertex="1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="87HOMTp7mkTqSt5LtorJ-1" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" vertex="1" parent="k99aoyYJCD8kDP9gguMM-338">
<mxGeometry y="156" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="87HOMTp7mkTqSt5LtorJ-2" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" vertex="1" parent="87HOMTp7mkTqSt5LtorJ-1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="87HOMTp7mkTqSt5LtorJ-3" value="already_sent" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" vertex="1" parent="87HOMTp7mkTqSt5LtorJ-1">
<mxGeometry x="40" width="110" height="18" as="geometry">
<mxRectangle width="110" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="87HOMTp7mkTqSt5LtorJ-4" value="bool" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" vertex="1" parent="87HOMTp7mkTqSt5LtorJ-1">
<mxGeometry x="150" width="50" height="18" as="geometry">
<mxRectangle width="50" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-449" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=10;fontColor=#003366;startArrow=ERone;startFill=0;endArrow=ERmany;endFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-368" target="k99aoyYJCD8kDP9gguMM-140" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1240" y="688.92" as="targetPoint" />
<Array as="points">
<mxPoint x="1520" y="420" />
<mxPoint x="2380" y="420" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-368" value="class" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="1420" y="460.5" width="200" height="138.16000000000008" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-369" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-368" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-370" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-369" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-371" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-369" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-372" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-369" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-377" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-368" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-378" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-377" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-379" value="beginning_date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-377" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-380" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-377" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-381" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-368" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-382" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-381" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-383" value="semester" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-381" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-384" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-381" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-385" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-368" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-386" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-385" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-387" value="number_students" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-385" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-388" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-385" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-1" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-368" vertex="1">
<mxGeometry y="102" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-2" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="-urQn-KPwoWv8S4fxi-n-1" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-3" value="number_cooperators" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="-urQn-KPwoWv8S4fxi-n-1" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-4" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="-urQn-KPwoWv8S4fxi-n-1" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-5" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-368" vertex="1">
<mxGeometry y="120" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-6" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="-urQn-KPwoWv8S4fxi-n-5" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-7" value="number_classrooms" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="-urQn-KPwoWv8S4fxi-n-5" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="-urQn-KPwoWv8S4fxi-n-8" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="-urQn-KPwoWv8S4fxi-n-5" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-413" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=10;fontColor=#003366;startArrow=ERone;startFill=0;endArrow=ERmany;endFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-368" target="k99aoyYJCD8kDP9gguMM-285" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1180" y="810" as="sourcePoint" />
<Array as="points">
<mxPoint x="1510" y="600" />
<mxPoint x="1510" y="600" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="eRRRN9okpvkNv3TECPkI-22" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmany;startFill=0;endArrow=ERone;endFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-414" target="eRRRN9okpvkNv3TECPkI-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-414" value="book" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="1410" y="70" width="200" height="138.16000000000008" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-415" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-414" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-416" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-415" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-417" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-415" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-418" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="k99aoyYJCD8kDP9gguMM-415" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-419" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-414" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-420" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-419" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-421" value="book_name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-419" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-422" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-419" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-423" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-414" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-424" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-423" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-425" value="actual_chapter" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-423" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-426" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-423" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-427" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-414" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-428" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-427" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-429" value="synopsis" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-427" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-430" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="k99aoyYJCD8kDP9gguMM-427" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-1" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-414" vertex="1">
<mxGeometry y="102" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-2" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-1" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-3" value="beginning_date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-1" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-4" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-1" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-5" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="k99aoyYJCD8kDP9gguMM-414" vertex="1">
<mxGeometry y="120" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-6" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-5" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-7" value="end_date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-5" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="hu69lWbusFyaquPtLniE-8" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="hu69lWbusFyaquPtLniE-5" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="k99aoyYJCD8kDP9gguMM-450" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontSize=10;fontColor=#003366;startArrow=ERoneToMany;startFill=0;endArrow=ERone;endFill=0;" parent="1" source="k99aoyYJCD8kDP9gguMM-368" target="FdM-SJP1FNGF9AtFyQpi-76" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1110" y="928.1600000000001" as="sourcePoint" />
<mxPoint x="1110" y="996.9999999999999" as="targetPoint" />
<Array as="points">
<mxPoint x="1330" y="521" />
<mxPoint x="1330" y="574" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-73" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmandOne;startFill=0;endArrow=ERzeroToOne;endFill=0;" parent="1" source="ETxLCoc8DICCgq4HBjo8-62" target="k99aoyYJCD8kDP9gguMM-140" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="2330" y="730" as="targetPoint" />
<Array as="points">
<mxPoint x="2280" y="778" />
<mxPoint x="2340" y="778" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-75" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmandOne;startFill=0;endArrow=ERzeroToOne;endFill=0;" parent="1" source="ETxLCoc8DICCgq4HBjo8-62" target="ETxLCoc8DICCgq4HBjo8-112" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="2249.9999999999995" y="694.9199999999998" as="targetPoint" />
<Array as="points">
<mxPoint x="2210" y="778" />
<mxPoint x="2120" y="778" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-62" value="user" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="2150" y="850" width="200" height="210.16000000000008" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-63" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-64" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="ETxLCoc8DICCgq4HBjo8-63" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-65" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="ETxLCoc8DICCgq4HBjo8-63" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-66" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="ETxLCoc8DICCgq4HBjo8-63" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-75" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-76" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-75" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-77" value="email" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-75" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-78" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-75" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-79" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-80" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-79" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-81" value="password" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-79" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-82" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-79" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-83" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-84" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-83" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-85" value="first_name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-83" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-86" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-83" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-87" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="102" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-88" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-87" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-89" value="last_name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-87" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-90" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-87" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-91" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="120" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-92" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-91" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-93" value="birthday" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-91" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-94" value="date" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-91" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-95" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="138" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-96" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-95" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-97" value="supervision" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-95" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-98" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-95" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-99" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="156" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-100" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-99" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-101" value="supervision_area" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-99" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-102" value="string" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-99" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-103" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="174" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-104" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-103" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-105" value="phone" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-103" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-106" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-103" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-107" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-62" vertex="1">
<mxGeometry y="192" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-108" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-107" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-109" value="photo" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-107" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-110" value="image" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-107" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-61" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmany;startFill=0;endArrow=ERone;endFill=0;" parent="1" source="ETxLCoc8DICCgq4HBjo8-112" target="FdM-SJP1FNGF9AtFyQpi-26" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1970" y="600" />
<mxPoint x="1970" y="560" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-62" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERmany;startFill=0;endArrow=ERone;endFill=0;" parent="1" source="ETxLCoc8DICCgq4HBjo8-112" target="FdM-SJP1FNGF9AtFyQpi-1" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1970" y="650" />
<mxPoint x="1970" y="680" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-112" value="cooperator" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;fontStyle=5;align=center;fillColor=#D4E1F5;strokeColor=#003366;fontColor=#003366;verticalAlign=top;swimlaneLine=1;sketch=0;perimeterSpacing=1;" parent="1" vertex="1">
<mxGeometry x="2021" y="550" width="200" height="120.16000000000008" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-113" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-112" vertex="1">
<mxGeometry y="30" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-114" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="ETxLCoc8DICCgq4HBjo8-113" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-115" value="id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="ETxLCoc8DICCgq4HBjo8-113" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-116" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;allowArrows=1;expand=1;resizeHeight=0;resizeWidth=0;" parent="ETxLCoc8DICCgq4HBjo8-113" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-69" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-112" vertex="1">
<mxGeometry y="48" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-70" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="FdM-SJP1FNGF9AtFyQpi-69" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-71" value="id_user" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="FdM-SJP1FNGF9AtFyQpi-69" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="FdM-SJP1FNGF9AtFyQpi-72" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="FdM-SJP1FNGF9AtFyQpi-69" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-125" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-112" vertex="1">
<mxGeometry y="66" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-126" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-125" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-127" value="absences" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-125" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">
<mxRectangle width="100" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-128" value="number" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-125" vertex="1">
<mxGeometry x="140" width="60" height="18" as="geometry">
<mxRectangle width="60" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-129" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;" parent="ETxLCoc8DICCgq4HBjo8-112" vertex="1">
<mxGeometry y="84" width="200" height="18" as="geometry" />
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-130" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-129" vertex="1">
<mxGeometry width="40" height="18" as="geometry">
<mxRectangle width="40" height="18" as="alternateBounds" />
</mxGeometry>
</mxCell>
<mxCell id="ETxLCoc8DICCgq4HBjo8-131" value="presences" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=1;fillColor=#D4E1F5;top=1;left=1;bottom=1;right=1;overflow=hidden;strokeColor=#003366;strokeWidth=1;allowArrows=1;snapToPoint=0;align=left;fontColor=#003366;spacingLeft=5;fontSize=10;spacing=0;" parent="ETxLCoc8DICCgq4HBjo8-129" vertex="1">
<mxGeometry x="40" width="100" height="18" as="geometry">