-
Notifications
You must be signed in to change notification settings - Fork 1
/
apollo_smooth.drawio
1228 lines (1228 loc) · 116 KB
/
apollo_smooth.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="2021-03-26T05:49:50.953Z" agent="5.0 (X11)" etag="Tj1wjGdSnIiIabLtdLAy" version="14.5.1" type="github" pages="13">
<diagram id="0JeVI4y79oNMQUJZnk2E" name="Page-4">
<mxGraphModel dx="1357" dy="807" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="#ffffff" math="1" shadow="0">
<root>
<mxCell id="f8F4ityLIGbXevkoASlZ-0" />
<mxCell id="f8F4ityLIGbXevkoASlZ-1" parent="f8F4ityLIGbXevkoASlZ-0" />
<mxCell id="7CdX3RvJnE9fq7ostzmj-6" value="" style="group" parent="f8F4ityLIGbXevkoASlZ-1" vertex="1" connectable="0">
<mxGeometry x="212" y="161" width="912" height="394" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-0" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="65" y="235" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-20" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="7CdX3RvJnE9fq7ostzmj-6" source="WH9B3-VsasH7qFReulRE-21" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="5" y="380" as="sourcePoint" />
<mxPoint x="835" y="105" as="targetPoint" />
<Array as="points">
<mxPoint x="135" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-21" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry y="368" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-22" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="7CdX3RvJnE9fq7ostzmj-6" target="WH9B3-VsasH7qFReulRE-21" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="5" y="380" as="sourcePoint" />
<mxPoint x="835" y="105" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-23" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="324" y="70" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-24" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="393" y="90" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-25" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="504" y="65" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-26" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="831" y="99" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-27" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="706" y="92" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-28" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="620" y="65" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-29" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="241" y="134" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-30" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="185" y="122.5" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="WH9B3-VsasH7qFReulRE-31" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="145" y="189" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="7CdX3RvJnE9fq7ostzmj-0" value="<font style="font-size: 18px">`P_0 ( x_0, y_0 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="25" y="374" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="7CdX3RvJnE9fq7ostzmj-1" value="<font style="font-size: 18px">`P_i ( x_k, y_k )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="330" y="114" width="186" height="44" as="geometry" />
</mxCell>
<mxCell id="7CdX3RvJnE9fq7ostzmj-3" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="7CdX3RvJnE9fq7ostzmj-6" vertex="1">
<mxGeometry x="776" y="129" width="136" height="20" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="FJ2nE_yomXhn5pENyMo0" name="Page-3">
<mxGraphModel dx="919" dy="618" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="#ffffff" math="0" shadow="0">
<root>
<mxCell id="ToawQGv2b0d8S6mhemMl-0" />
<mxCell id="ToawQGv2b0d8S6mhemMl-1" parent="ToawQGv2b0d8S6mhemMl-0" />
<mxCell id="4LOiGytlx0I-MUQJASyl-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeColor=#000000;fontSize=14;fontColor=#000000;fillColor=none;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="420" y="191" width="280" height="280" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-6" value="theta1" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=10;fontStyle=1;fontColor=#3399FF;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="522" y="362" width="38" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-7" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=2;startArrow=none;startFill=0;endFill=0;dashed=1;entryX=1;entryY=1;entryDx=0;entryDy=0;exitX=0;exitY=1;exitDx=0;exitDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" source="4LOiGytlx0I-MUQJASyl-8" target="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="270" y="381" as="sourcePoint" />
<mxPoint x="360" y="291" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-9" value="" style="endArrow=none;html=1;dashed=1;strokeColor=#000000;strokeWidth=2;fontSize=14;fontColor=#000000;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" source="4LOiGytlx0I-MUQJASyl-8" target="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="410" y="280" as="sourcePoint" />
<mxPoint x="460" y="230" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-10" value="" style="endArrow=none;html=1;strokeWidth=2;fontSize=14;fontColor=#000000;exitX=0;exitY=0.75;exitDx=0;exitDy=0;fillColor=#e51400;strokeColor=#FF9933;" parent="ToawQGv2b0d8S6mhemMl-1" source="uFXd101UEMglb_fdY7vO-0" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="90" y="401" as="sourcePoint" />
<mxPoint x="560" y="331" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-11" value="" style="endArrow=none;html=1;dashed=1;strokeColor=#000000;strokeWidth=2;fontSize=14;fontColor=#000000;exitX=0;exitY=1;exitDx=0;exitDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" source="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="330" y="521" as="sourcePoint" />
<mxPoint x="560" y="331" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-12" value="" style="endArrow=none;html=1;dashed=1;strokeColor=#000000;strokeWidth=2;fontSize=14;fontColor=#000000;exitX=1;exitY=1;exitDx=0;exitDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" source="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="412.5399999999999" y="610.04" as="sourcePoint" />
<mxPoint x="560" y="331" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-13" value="" style="endArrow=none;html=1;strokeWidth=2;fontSize=14;fontColor=#000000;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=1;exitY=1;exitDx=0;exitDy=0;endFill=0;startArrow=blockThin;startFill=1;fillColor=#0050ef;rounded=0;strokeColor=#3399FF;" parent="ToawQGv2b0d8S6mhemMl-1" source="4LOiGytlx0I-MUQJASyl-8" target="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="300" y="561" as="sourcePoint" />
<mxPoint x="350" y="511" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-14" value="" style="endArrow=none;html=1;strokeWidth=2;fontSize=14;fontColor=#000000;exitX=0;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;startArrow=blockThin;startFill=1;fillColor=#0050ef;rounded=0;strokeColor=#007FFF;" parent="ToawQGv2b0d8S6mhemMl-1" source="4LOiGytlx0I-MUQJASyl-8" target="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="668.9949493661165" y="439.99494936611654" as="sourcePoint" />
<mxPoint x="560" y="471" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-15" value="" style="endArrow=none;html=1;dashed=1;strokeColor=#000000;strokeWidth=2;fontSize=14;fontColor=#000000;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=1;exitY=1;exitDx=0;exitDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="560.9949493661165" y="389.00494936611653" as="sourcePoint" />
<mxPoint x="462" y="430.01" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-17" value="" style="endArrow=none;html=1;dashed=1;strokeColor=#000000;strokeWidth=2;fontSize=14;fontColor=#000000;exitX=0;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="561.0050506338835" y="389.00494936611653" as="sourcePoint" />
<mxPoint x="660" y="430.0099999999999" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-18" value="" style="endArrow=blockThin;html=1;strokeWidth=2;fontSize=14;endFill=1;gradientColor=#97d077;fillColor=#d5e8d4;strokeColor=#00CC00;entryX=0;entryY=0.75;entryDx=0;entryDy=0;fontColor=#00CC00;" parent="ToawQGv2b0d8S6mhemMl-1" target="uFXd101UEMglb_fdY7vO-0" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="560" y="471" as="sourcePoint" />
<mxPoint x="560" y="391" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-19" value="P0 ( x0, y0 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#007FFF;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="380" y="431" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-20" value="P1 ( x1, y1 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#007FFF;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="520" y="481" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-21" value="P2 ( x2, y2 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#007FFF;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="660" y="431" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-22" value="ds" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#007FFF;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="580" y="454" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-23" value="ds" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#3399FF;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="453" y="454" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-24" value="R" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="568" y="355" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4LOiGytlx0I-MUQJASyl-25" value="R" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="500" y="355" width="20" height="20" as="geometry" />
</mxCell>
<mxCell id="uFXd101UEMglb_fdY7vO-0" value="P3" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#00CC00;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="560.25" y="374" width="30" height="20" as="geometry" />
</mxCell>
<mxCell id="uFXd101UEMglb_fdY7vO-1" value="O" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="543" y="309" width="14" height="20" as="geometry" />
</mxCell>
<mxCell id="k4BzqRfUvH9KY8tjO-jY-0" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.arc;startAngle=0.39758361765043326;endAngle=0.5906090085310911;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="520" y="281" width="80" height="81" as="geometry" />
</mxCell>
<mxCell id="k4BzqRfUvH9KY8tjO-jY-1" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.arc;startAngle=0.8701044693787208;endAngle=0.13815956485558364;fontSize=14;fontColor=#000000;strokeColor=#000000;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="537.5" y="454" width="45" height="57" as="geometry" />
</mxCell>
<mxCell id="k4BzqRfUvH9KY8tjO-jY-4" value="" style="shape=partialRectangle;whiteSpace=wrap;html=1;bottom=0;right=0;strokeColor=#B20000;fontSize=14;fontColor=#ffffff;rotation=90;fillColor=none;strokeWidth=2;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="558.75" y="419.75" width="12.5" height="10" as="geometry" />
</mxCell>
<mxCell id="k4BzqRfUvH9KY8tjO-jY-6" value="theta2" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=10;fontStyle=1;fontColor=#00CC00;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="520" y="435" width="38" height="20" as="geometry" />
</mxCell>
<mxCell id="k4BzqRfUvH9KY8tjO-jY-7" value="" style="endArrow=none;html=1;dashed=1;strokeColor=#000000;strokeWidth=2;fontSize=14;fontColor=#000000;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="ToawQGv2b0d8S6mhemMl-1" target="4LOiGytlx0I-MUQJASyl-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="560" y="331" as="sourcePoint" />
<mxPoint x="570" y="201" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="k4BzqRfUvH9KY8tjO-jY-8" value="C" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=12;fontStyle=1;fontColor=#00CC00;" parent="ToawQGv2b0d8S6mhemMl-1" vertex="1">
<mxGeometry x="571.25" y="409.75" width="14" height="20" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="tvtIKhyV1O0-T3Sdl4FX" name="Page-2">
<mxGraphModel dx="919" dy="618" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="#ffffff" math="0" shadow="0">
<root>
<mxCell id="t-Sdtp0R812g-nXroGzI-0" />
<mxCell id="t-Sdtp0R812g-nXroGzI-1" parent="t-Sdtp0R812g-nXroGzI-0" />
<mxCell id="t-Sdtp0R812g-nXroGzI-2" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=4;startArrow=blockThin;startFill=1;endFill=0;" parent="t-Sdtp0R812g-nXroGzI-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="400" y="330" as="sourcePoint" />
<mxPoint x="490" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="t-Sdtp0R812g-nXroGzI-3" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=4;endFill=1;" parent="t-Sdtp0R812g-nXroGzI-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="490" y="240" as="sourcePoint" />
<mxPoint x="660" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="t-Sdtp0R812g-nXroGzI-4" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=4;startArrow=none;startFill=0;endFill=0;dashed=1;" parent="t-Sdtp0R812g-nXroGzI-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="570" y="300" as="sourcePoint" />
<mxPoint x="660" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="t-Sdtp0R812g-nXroGzI-5" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=4;endFill=0;dashed=1;" parent="t-Sdtp0R812g-nXroGzI-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="400" y="330" as="sourcePoint" />
<mxPoint x="570" y="300" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="t-Sdtp0R812g-nXroGzI-7" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=4;endFill=1;" parent="t-Sdtp0R812g-nXroGzI-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="490" y="240" as="sourcePoint" />
<mxPoint x="560" y="300" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="pOHL2yp6pSBohHUREj36-0" value="P1 ( x1, y1 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="t-Sdtp0R812g-nXroGzI-1" vertex="1">
<mxGeometry x="420" y="210" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4u09DKBZBWlMYJ-NqpqB-0" value="P0 ( x0, y0 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="t-Sdtp0R812g-nXroGzI-1" vertex="1">
<mxGeometry x="352" y="339" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4u09DKBZBWlMYJ-NqpqB-1" value="P2 ( x2, y2 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="t-Sdtp0R812g-nXroGzI-1" vertex="1">
<mxGeometry x="640" y="180" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="4u09DKBZBWlMYJ-NqpqB-2" value="P‘" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="t-Sdtp0R812g-nXroGzI-1" vertex="1">
<mxGeometry x="526" y="310" width="90" height="20" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="6e6QVuMAChF1wa0YB66m" name="Page-1">
<mxGraphModel dx="1357" dy="807" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="#ffffff" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="2" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=4;startArrow=none;startFill=0;endFill=1;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="400" y="330" as="sourcePoint" />
<mxPoint x="490" y="240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="3" value="" style="endArrow=blockThin;html=1;strokeWidth=4;endFill=1;fillColor=#d5e8d4;gradientColor=#97d077;strokeColor=#00B300;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="490" y="240" as="sourcePoint" />
<mxPoint x="660" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="5" value="P0 ( x0, y0 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="352" y="339" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="9" value="P1 ( x1, y1 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="400" y="210" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="10" value="P2 ( x2, y2 )" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="640" y="180" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="11" value="" style="verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.arc;startAngle=0.12284938843075538;endAngle=0.19554419958102937;fontSize=14;fontColor=#ffffff;fillColor=#e51400;strokeWidth=4;strokeColor=#FF9933;" parent="1" vertex="1">
<mxGeometry x="465" y="213" width="52" height="73" as="geometry" />
</mxCell>
<mxCell id="13" value="<font color="#ff9933">theta</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="1" vertex="1">
<mxGeometry x="492" y="207" width="90" height="20" as="geometry" />
</mxCell>
<mxCell id="15" value="" style="endArrow=none;html=1;strokeWidth=4;startArrow=none;startFill=0;endFill=0;dashed=1;fillColor=#d5e8d4;gradientColor=#97d077;strokeColor=#000000;" parent="1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="490" y="240" as="sourcePoint" />
<mxPoint x="580" y="150" as="targetPoint" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="S3TT6FWY6wlJtiyWpEly" name="Page-5">
<mxGraphModel dx="1357" dy="807" grid="0" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" background="#ffffff" math="1" shadow="0">
<root>
<mxCell id="P2edfQlIa4kU6NB3tRC9-0" />
<mxCell id="P2edfQlIa4kU6NB3tRC9-1" parent="P2edfQlIa4kU6NB3tRC9-0" />
<mxCell id="P2edfQlIa4kU6NB3tRC9-3" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="277" y="396" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-5" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="212" y="529" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-6" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="P2edfQlIa4kU6NB3tRC9-1" target="P2edfQlIa4kU6NB3tRC9-5" edge="1">
<mxGeometry x="212" y="161" width="50" height="50" as="geometry">
<mxPoint x="217" y="541" as="sourcePoint" />
<mxPoint x="1047" y="266" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="570" y="238" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="700" y="226" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="1043" y="260" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="918" y="253" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-12" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="810" y="226" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-13" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="453" y="295" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-15" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="357" y="350" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-16" value="<font style="font-size: 18px">`P_0 ( x_0, y_0 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="237" y="535" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-17" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="542" y="275" width="186" height="44" as="geometry" />
</mxCell>
<mxCell id="P2edfQlIa4kU6NB3tRC9-18" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="988" y="290" width="136" height="20" as="geometry" />
</mxCell>
<mxCell id="N9FohAa819nWw7oCexpw-1" value="" style="curved=1;endArrow=none;html=1;endFill=0;strokeWidth=5;strokeColor=#6666FF;" parent="P2edfQlIa4kU6NB3tRC9-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="221" y="533" as="sourcePoint" />
<mxPoint x="521" y="273" as="targetPoint" />
<Array as="points">
<mxPoint x="276" y="406" />
<mxPoint x="407" y="303" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="N9FohAa819nWw7oCexpw-2" value="" style="curved=1;endArrow=none;html=1;strokeColor=#EA6B66;strokeWidth=5;endFill=0;" parent="P2edfQlIa4kU6NB3tRC9-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="520" y="273" as="sourcePoint" />
<mxPoint x="1051" y="268" as="targetPoint" />
<Array as="points">
<mxPoint x="750" y="217" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="N9FohAa819nWw7oCexpw-3" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=5;strokeColor=#00CC00;" parent="P2edfQlIa4kU6NB3tRC9-1" vertex="1">
<mxGeometry x="487" y="241" width="71" height="67" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="d_0CSSUfGpOLgzQ4uhdz" name="Page-6">
<mxGraphModel dx="1357" dy="807" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1169" pageHeight="827" math="1" shadow="0">
<root>
<mxCell id="FVhu0wnEtTb-1ISWkzqW-0" />
<mxCell id="FVhu0wnEtTb-1ISWkzqW-1" parent="FVhu0wnEtTb-1ISWkzqW-0" />
<mxCell id="n478FI64fpul2nEOuWVr-0" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeColor=#FF0000;strokeWidth=4;rotation=-25;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="420.69" y="283.82" width="79.5" height="33" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-1" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="277" y="396" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-2" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="FVhu0wnEtTb-1ISWkzqW-1" source="n478FI64fpul2nEOuWVr-3" edge="1">
<mxGeometry x="212" y="161" width="50" height="50" as="geometry">
<mxPoint x="217" y="541" as="sourcePoint" />
<mxPoint x="1047" y="266" as="targetPoint" />
<Array as="points">
<mxPoint x="347" y="161" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-3" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="212" y="529" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-4" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="FVhu0wnEtTb-1ISWkzqW-1" target="n478FI64fpul2nEOuWVr-3" edge="1">
<mxGeometry x="212" y="161" width="50" height="50" as="geometry">
<mxPoint x="217" y="541" as="sourcePoint" />
<mxPoint x="1047" y="266" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-5" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="570" y="238" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-6" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="700" y="226" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="1043" y="260" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="918" y="253" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="810" y="226" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="453" y="295" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="357" y="350" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-12" value="<font style="font-size: 18px">`P_0 ( x_0, y_0 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="237" y="535" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-13" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="542" y="275" width="186" height="44" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-14" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="988" y="290" width="136" height="20" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-15" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeColor=#FF0000;strokeWidth=4;rotation=-55;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="249.9" y="385.04" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-16" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeColor=#FF0000;strokeWidth=4;rotation=-5;" parent="FVhu0wnEtTb-1ISWkzqW-1" vertex="1">
<mxGeometry x="670" y="221.99999999999994" width="79.5" height="33" as="geometry" />
</mxCell>
<mxCell id="n478FI64fpul2nEOuWVr-17" value="" style="endArrow=blockThin;html=1;strokeWidth=4;endFill=1;strokeColor=#FF9933;" parent="FVhu0wnEtTb-1ISWkzqW-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="220.8251642990549" y="528.9966511215498" as="sourcePoint" />
<mxPoint x="278.0000000000002" y="278" as="targetPoint" />
</mxGeometry>
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="P2S7a6anhXoKikD63d0q" name="第 7 页">
<mxGraphModel dx="1357" dy="807" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="1" shadow="0">
<root>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-0" />
<mxCell id="ZH5btaF2E1ur9hXwwTwc-1" parent="ZH5btaF2E1ur9hXwwTwc-0" />
<mxCell id="ZH5btaF2E1ur9hXwwTwc-2" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeColor=#FF0000;strokeWidth=4;rotation=-25;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="420.69" y="283.82" width="79.5" height="33" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-3" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="277" y="396" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-4" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" edge="1" parent="ZH5btaF2E1ur9hXwwTwc-1" source="ZH5btaF2E1ur9hXwwTwc-5">
<mxGeometry x="212" y="161" width="50" height="50" as="geometry">
<mxPoint x="217" y="541" as="sourcePoint" />
<mxPoint x="1047" y="266" as="targetPoint" />
<Array as="points">
<mxPoint x="347" y="161" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-5" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="212" y="529" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-6" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" edge="1" parent="ZH5btaF2E1ur9hXwwTwc-1" target="ZH5btaF2E1ur9hXwwTwc-5">
<mxGeometry x="212" y="161" width="50" height="50" as="geometry">
<mxPoint x="217" y="541" as="sourcePoint" />
<mxPoint x="1047" y="266" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="570" y="238" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="700" y="226" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="1043" y="260" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="918" y="253" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="810" y="226" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-12" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="453" y="295" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-13" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="357" y="350" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-14" value="<font style="font-size: 18px">`P_0 ( x_0, y_0 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="237" y="535" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-15" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="542" y="275" width="186" height="44" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-16" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="988" y="290" width="136" height="20" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-17" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeColor=#FF0000;strokeWidth=4;rotation=-55;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="249.9" y="385.04" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-18" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeColor=#FF0000;strokeWidth=4;rotation=-5;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="670" y="221.99999999999994" width="79.5" height="33" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-19" value="" style="endArrow=blockThin;html=1;strokeWidth=4;endFill=1;strokeColor=#FF9933;" edge="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="220.8251642990549" y="528.9966511215498" as="sourcePoint" />
<mxPoint x="278" y="278" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-20" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#3399FF;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="249.89999999999998" y="384.40000000000003" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-21" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#3399FF;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="421.93999999999994" y="278.62" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="ZH5btaF2E1ur9hXwwTwc-22" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#3399FF;" vertex="1" parent="ZH5btaF2E1ur9hXwwTwc-1">
<mxGeometry x="671.25" y="222.00000000000003" width="77" height="38.2" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="lPBr--60yE-RMuCtjvVy" name="第 8 页">
<mxGraphModel dx="1357" dy="807" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" background="#ffffff" math="1" shadow="0">
<root>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-0" />
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-1" parent="OK1V4KeL6pWvwz3Aqe3U-0" />
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-2" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="385" y="345" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-3" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="OK1V4KeL6pWvwz3Aqe3U-1" source="OK1V4KeL6pWvwz3Aqe3U-4" edge="1">
<mxGeometry x="320" y="110" width="50" height="50" as="geometry">
<mxPoint x="325" y="490" as="sourcePoint" />
<mxPoint x="1155" y="215" as="targetPoint" />
<Array as="points">
<mxPoint x="455" y="110" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-4" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="320" y="478" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-5" value="" style="curved=1;endArrow=none;html=1;strokeColor=#00B300;strokeWidth=5;endFill=0;" parent="OK1V4KeL6pWvwz3Aqe3U-1" target="OK1V4KeL6pWvwz3Aqe3U-4" edge="1">
<mxGeometry x="320" y="110" width="50" height="50" as="geometry">
<mxPoint x="325" y="490" as="sourcePoint" />
<mxPoint x="1155" y="215" as="targetPoint" />
<Array as="points" />
</mxGeometry>
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-6" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="678" y="187" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="808" y="175" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="1151" y="209" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="1026" y="202" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="918" y="175" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="561" y="244" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-12" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;strokeWidth=4;fillColor=#2a2a2a;gradientColor=none;strokeColor=none;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="465" y="299" width="15" height="15" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-13" value="<font style="font-size: 18px">`P_0 ( x_0, y_0 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="345" y="484" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-14" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="650" y="224" width="186" height="44" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-15" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="1096" y="239" width="136" height="20" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-16" value="" style="endArrow=blockThin;html=1;strokeWidth=4;endFill=1;strokeColor=#FF9933;" parent="OK1V4KeL6pWvwz3Aqe3U-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="328.8251642990549" y="477.9966511215498" as="sourcePoint" />
<mxPoint x="386" y="227" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-17" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="356.9" y="334.40000000000003" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-18" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="529.9399999999999" y="228.62" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-19" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="775" y="167.8" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-20" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="434" y="287.40000000000003" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-21" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="647" y="175.00000000000003" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-22" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="887" y="167.80000000000004" width="77" height="38.2" as="geometry" />
</mxCell>
<mxCell id="OK1V4KeL6pWvwz3Aqe3U-23" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=none;strokeWidth=4;rotation=0;strokeColor=#FF6666;" parent="OK1V4KeL6pWvwz3Aqe3U-1" vertex="1">
<mxGeometry x="995" y="187.00000000000003" width="77" height="38.2" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="slu1QzyBlFoEuLOtPcPi" name="Page-9">
<mxGraphModel dx="1357" dy="807" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="1" shadow="0">
<root>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-0" />
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-1" parent="gkcZ9iSO2cZ8y4xRj0ky-0" />
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-2" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=3;endFill=1;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="120" y="519" as="sourcePoint" />
<mxPoint x="120" y="89" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-3" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=3;endFill=1;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="120" y="519" as="sourcePoint" />
<mxPoint x="1020" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-4" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="180" y="438" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-5" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="230" y="309" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-6" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="350" y="189" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="510" y="139" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="750" y="149" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="890" y="269" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="930" y="442" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-11" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.688;exitY=0.097;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1" source="gkcZ9iSO2cZ8y4xRj0ky-4" target="gkcZ9iSO2cZ8y4xRj0ky-5">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="191" y="441" as="sourcePoint" />
<mxPoint x="580" y="329" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-12" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1" source="gkcZ9iSO2cZ8y4xRj0ky-5" target="gkcZ9iSO2cZ8y4xRj0ky-6">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="309.9980000000001" y="308.99700000000007" as="sourcePoint" />
<mxPoint x="352.3035526698141" y="198.2688802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-13" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.958;exitY=0.305;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitPerimeter=0;dashed=1;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1" source="gkcZ9iSO2cZ8y4xRj0ky-6" target="gkcZ9iSO2cZ8y4xRj0ky-7">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="214.4480000000001" y="460.03700000000003" as="sourcePoint" />
<mxPoint x="256.7535526698141" y="349.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-14" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#1ba1e2;strokeColor=#007FFF;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1" source="gkcZ9iSO2cZ8y4xRj0ky-7" target="gkcZ9iSO2cZ8y4xRj0ky-8">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="224.4480000000001" y="470.03700000000003" as="sourcePoint" />
<mxPoint x="266.7535526698141" y="359.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-15" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=1;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=0;entryDy=0;dashed=1;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1" source="gkcZ9iSO2cZ8y4xRj0ky-8" target="gkcZ9iSO2cZ8y4xRj0ky-9">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="234.4480000000001" y="480.03700000000003" as="sourcePoint" />
<mxPoint x="276.7535526698141" y="369.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-16" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.644;exitY=0.952;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1" source="gkcZ9iSO2cZ8y4xRj0ky-9" target="gkcZ9iSO2cZ8y4xRj0ky-10">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="244.4480000000001" y="490.03700000000003" as="sourcePoint" />
<mxPoint x="286.7535526698141" y="379.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-17" value="<font style="font-size: 18px">`P_3 ( x_3, y_3 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="230" y="160" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-18" value="<font style="font-size: 18px">`P_1 ( x_1, y_1 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="114" y="469" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-19" value="<font style="font-size: 18px">`P_2 ( x_2, y_2 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="259" y="320" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-20" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="960" y="449" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-21" value="<font style="font-size: 18px">Y</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="21" y="89" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-22" value="<font style="font-size: 18px">X</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="951" y="536" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-23" value="<font style="font-size: 18px">`\Delta s_2`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="190" y="239" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-24" value="<font style="font-size: 18px">`\Delta s_1`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="114" y="370" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-25" value="<font style="font-size: 18px">`P_{n-1} ( x_{n-1}, y_{n-1}&nbsp;)`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="929" y="259" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-26" value="<font style="font-size: 18px">`\Delta s_{n-1}`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="920" y="349" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-27" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="460" y="100" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-28" value="<font style="font-size: 18px">`P_{i+1} ( x_{i+1}, y_{i+1} )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="700" y="109" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="gkcZ9iSO2cZ8y4xRj0ky-29" value="<font style="font-size: 22px" color="#3399ff">`\Delta s_i`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="gkcZ9iSO2cZ8y4xRj0ky-1">
<mxGeometry x="590" y="169" width="78" height="40" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="COS8L5ORBw-TqfM1DB06" name="Page-10">
<mxGraphModel dx="1357" dy="807" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="1" shadow="0">
<root>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-0" />
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-1" parent="wWJ6HpxHoXgZH-h4GC7C-0" />
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-2" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=3;endFill=1;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="119.99999999999977" y="519" as="sourcePoint" />
<mxPoint x="119.99999999999977" y="89" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-3" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=3;endFill=1;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="119.99999999999977" y="519" as="sourcePoint" />
<mxPoint x="1020" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-4" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="180" y="438" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-5" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="230" y="309" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-6" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="350" y="189" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="510" y="139" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="750" y="149" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="890" y="269" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="930" y="442" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-11" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.688;exitY=0.097;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-4" target="wWJ6HpxHoXgZH-h4GC7C-5">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="191" y="441" as="sourcePoint" />
<mxPoint x="580" y="329" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-12" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-5" target="wWJ6HpxHoXgZH-h4GC7C-6">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="309.9980000000001" y="308.99700000000007" as="sourcePoint" />
<mxPoint x="352.3035526698141" y="198.2688802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-13" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.958;exitY=0.305;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitPerimeter=0;dashed=1;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-6" target="wWJ6HpxHoXgZH-h4GC7C-7">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="214.4480000000001" y="460.03700000000003" as="sourcePoint" />
<mxPoint x="256.7535526698141" y="349.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-14" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#1ba1e2;strokeColor=#007FFF;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-7" target="wWJ6HpxHoXgZH-h4GC7C-8">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="224.4480000000001" y="470.03700000000003" as="sourcePoint" />
<mxPoint x="266.7535526698141" y="359.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-15" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=1;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0;entryDx=0;entryDy=0;dashed=1;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-8" target="wWJ6HpxHoXgZH-h4GC7C-9">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="234.4480000000001" y="480.03700000000003" as="sourcePoint" />
<mxPoint x="276.7535526698141" y="369.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-16" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.644;exitY=0.952;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-9" target="wWJ6HpxHoXgZH-h4GC7C-10">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="244.4480000000001" y="490.03700000000003" as="sourcePoint" />
<mxPoint x="286.7535526698141" y="379.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-17" value="<font style="font-size: 18px">Y</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="21" y="89" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-18" value="<font style="font-size: 18px">X</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="951" y="536" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-19" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=0.5;exitY=1;exitDx=0;exitDy=0;dashed=1;strokeColor=#FF9933;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1" source="wWJ6HpxHoXgZH-h4GC7C-7">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="480.00462120245044" y="339.0046212024507" as="sourcePoint" />
<mxPoint x="519.9999999999998" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-20" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=0.5;exitY=1;exitDx=0;exitDy=0;dashed=1;strokeColor=#FF9933;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="560.5" y="149.5" as="sourcePoint" />
<mxPoint x="560" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-21" value="" style="endArrow=none;html=1;strokeWidth=3;dashed=1;strokeColor=#FF9933;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="600" y="159" as="sourcePoint" />
<mxPoint x="600" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-22" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=0.5;exitY=1;exitDx=0;exitDy=0;dashed=1;strokeColor=#FF9933;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="640.5" y="156.5" as="sourcePoint" />
<mxPoint x="640" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-23" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=0.5;exitY=1;exitDx=0;exitDy=0;dashed=1;strokeColor=#FF9933;" edge="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="760.5" y="169" as="sourcePoint" />
<mxPoint x="760" y="528" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-24" value="<font style="font-size: 18px" color="#3399ff">0</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="500" y="536" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-25" value="<font style="font-size: 18px" color="#3399ff">1</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="541" y="536" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-26" value="<font style="font-size: 18px" color="#3399ff">2</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="582" y="536" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-27" value="<font style="font-size: 18px" color="#3399ff">3</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="620" y="536" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-28" value="<font style="font-size: 18px" color="#3399ff">m-1</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="740" y="535" width="41" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-29" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="460" y="100" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-30" value="<font style="font-size: 18px">`P_{i+1} ( x_{i+1}, y_{i+1} )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="700" y="109" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="wWJ6HpxHoXgZH-h4GC7C-31" value="<font style="font-size: 18px" color="#ff9933">`\Delta s_i`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="wWJ6HpxHoXgZH-h4GC7C-1">
<mxGeometry x="572" y="120" width="137" height="20" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="kPBZ6Sj_uGuKxFA2LBY8" name="Page-11">
<mxGraphModel dx="1357" dy="807" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="1" shadow="0">
<root>
<mxCell id="czw1rj68SNFMK1tSnqk6-0" />
<mxCell id="czw1rj68SNFMK1tSnqk6-1" parent="czw1rj68SNFMK1tSnqk6-0" />
<mxCell id="czw1rj68SNFMK1tSnqk6-2" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=none;strokeColor=#FF0000;strokeWidth=3;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="480.5" y="109.5" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-3" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=3;endFill=1;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="119.99999999999977" y="519" as="sourcePoint" />
<mxPoint x="119.99999999999977" y="89" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-4" value="" style="endArrow=blockThin;html=1;strokeColor=#000000;strokeWidth=3;endFill=1;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="119.99999999999977" y="519" as="sourcePoint" />
<mxPoint x="1020" y="519" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-5" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="180" y="438" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-6" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="230" y="309" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-7" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="350" y="189" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-8" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="510" y="139" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-9" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="750" y="149" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-10" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="890" y="269" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="930" y="442" width="21" height="21" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-12" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.688;exitY=0.097;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" source="czw1rj68SNFMK1tSnqk6-5" target="czw1rj68SNFMK1tSnqk6-6">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="191" y="441" as="sourcePoint" />
<mxPoint x="580" y="329" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-13" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=1;exitY=0;exitDx=0;exitDy=0;entryX=0;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" source="czw1rj68SNFMK1tSnqk6-6" target="czw1rj68SNFMK1tSnqk6-7">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="309.9980000000001" y="308.99700000000007" as="sourcePoint" />
<mxPoint x="352.3035526698141" y="198.2688802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-14" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.958;exitY=0.305;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitPerimeter=0;dashed=1;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" source="czw1rj68SNFMK1tSnqk6-7" target="czw1rj68SNFMK1tSnqk6-8">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="214.4480000000001" y="460.03700000000003" as="sourcePoint" />
<mxPoint x="256.7535526698141" y="349.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-15" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#1ba1e2;strokeColor=#007FFF;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" source="czw1rj68SNFMK1tSnqk6-8" target="czw1rj68SNFMK1tSnqk6-9">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="224.4480000000001" y="470.03700000000003" as="sourcePoint" />
<mxPoint x="266.7535526698141" y="359.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-16" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;entryX=0;entryY=0;entryDx=0;entryDy=0;dashed=1;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" target="czw1rj68SNFMK1tSnqk6-10">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="760" y="160" as="sourcePoint" />
<mxPoint x="276.7535526698141" y="369.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-17" value="" style="endArrow=none;html=1;strokeColor=#000000;strokeWidth=3;exitX=0.644;exitY=0.952;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" source="czw1rj68SNFMK1tSnqk6-10" target="czw1rj68SNFMK1tSnqk6-11">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="244.4480000000001" y="490.03700000000003" as="sourcePoint" />
<mxPoint x="286.7535526698141" y="379.3088802826692" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-18" value="<font style="font-size: 18px">`P_1 ( x_1, y_1 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="104" y="469" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-19" value="<font style="font-size: 18px">`P_3 ( x_3, y_3 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="241" y="160" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-20" value="<font style="font-size: 18px">`P_2 ( x_2, y_2 )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="259" y="320" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-21" value="<font style="font-size: 18px">`P_n ( x_n, y_n )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="960" y="449" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-22" value="<font style="font-size: 18px">Y</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="21" y="89" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-23" value="<font style="font-size: 18px">X</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="951" y="536" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-24" value="<font style="font-size: 18px">`\Delta s_1`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="122" y="359" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-25" value="<font style="font-size: 18px">`\Delta s_2`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="201" y="229" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-26" value="<font style="font-size: 18px">`P_{n-1} ( x_{n-1}, y_{n-1}&nbsp;)`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="929" y="259" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-27" value="<font style="font-size: 18px">`\Delta s_{n-1}`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="920" y="349" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-28" value="<font style="font-size: 18px">`P_i ( x_i, y_i )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="448" y="80" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-29" value="<font style="font-size: 18px">`P_{i+1} ( x_{i+1}, y_{i+1} )`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="709" y="89" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-30" value="<font style="font-size: 18px" color="#ff9933">`\Delta s_i`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="572" y="120" width="137" height="20" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-31" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=none;strokeColor=#FF0000;strokeWidth=3;" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="720.5" y="119" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-32" value="" style="endArrow=none;html=1;strokeWidth=3;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#FF9933;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" target="czw1rj68SNFMK1tSnqk6-31">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="761" y="159" as="sourcePoint" />
<mxPoint x="893.0753787975414" y="272.07537879754136" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-33" value="<font style="font-size: 22px" color="#ff9933">`\r_i`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="450" y="199" width="60" height="40" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-34" value="" style="endArrow=none;html=1;strokeWidth=3;exitX=0.494;exitY=0.506;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;strokeColor=#FF9933;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1" source="czw1rj68SNFMK1tSnqk6-2" target="czw1rj68SNFMK1tSnqk6-2">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="560" y="180" as="sourcePoint" />
<mxPoint x="550" y="170" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-35" value="" style="endArrow=classic;html=1;strokeWidth=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;strokeColor=#000000;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="491" y="199" as="sourcePoint" />
<mxPoint x="516" y="170" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-36" value="<font style="font-size: 22px" color="#ff9933">`\r_{i+1}`</font>" style="text;html=1;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#000000;fontSize=14;fontStyle=1" vertex="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry x="693" y="202" width="61" height="37" as="geometry" />
</mxCell>
<mxCell id="czw1rj68SNFMK1tSnqk6-37" value="" style="endArrow=classic;html=1;strokeWidth=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;strokeColor=#000000;" edge="1" parent="czw1rj68SNFMK1tSnqk6-1">
<mxGeometry width="50" height="50" relative="1" as="geometry">