V0.13.0 MN Sync updates (#98)

* Guide - Update MN sync info for DIP3

* Guide - Add deprecation warning for ongoing MN sync

* Guide - Update heading formatting

* Guide - Update MN sync images

Add DIP3 initial sync
Show DIP3-deprecated parts of ongoing sync

* Guide - Update MN sync status table
This commit is contained in:
thephez 2018-12-27 13:00:03 -05:00 committed by GitHub
parent c779eef1e6
commit 7ce4a78ca3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 354 additions and 159 deletions

View file

@ -348,16 +348,23 @@ several conditions that initiate a start/restart the sync process:
* A failure occurred during the last sync attempt (after a 1 minute cooldown before sync restarts)
* Issuing a `mnsync reset` RPC command
{% endautocrossref %}
#### Initial Masternode<!--noref--> Sync
{% include helpers/subhead-links.md %}
##### Before DIP3 Activation
<!-- no subhead-links here -->
{% autocrossref %}
This diagram shows the order in which P2P messages are sent to perform
masternode synchronization initially after startup.
![Masternode Sync (Initial)](/img/dev/en-masternode-sync-initial.svg)
The following table details the data flow of P2P messages exchanged during
initial masternode synchronization.
initial masternode synchronization before the activation of DIP3 and Spork 15.
| **Syncing Node Message** | **Direction** | **Masternode Response** | **Description** |
| **1. Sporks** | | | |
@ -380,6 +387,31 @@ initial masternode synchronization.
| | ← | `mnw` message(s) | (If requested) Masternode payment vote message
| **4. Governance** | | | See [Governance sync](#governance) |
{% endautocrossref %}
##### After DIP3 Activation
<!-- no subhead-links here -->
{% autocrossref %}
The deterministic masternode lists introduced by DIP3 make the masternode
list and masternode payments steps of the sync process obsolete. Since the
information is available on-chain, the P2P messages related to those steps
are no longer required.
This diagram shows the order in which P2P messages are sent to perform
masternode synchronization initially after startup.
![Masternode Sync (Initial)](/img/dev/en-masternode-sync-initial-dip3.svg)
The following table details the data flow of P2P messages exchanged during
initial masternode synchronization after the activation of DIP3 and Spork 15.
| **Syncing Node Message** | **Direction** | **Masternode Response** | **Description** |
| **1. Sporks** | | | |
| `getsporks` message | → | | Syncing node requests sporks
| | ← | `spork` message(s) |
| **2. Governance** | | | See [Governance sync](#governance) |
*Masternode Sync Status*
@ -390,8 +422,8 @@ are used in both `ssc` messages and the `mnsync` RPC.
| -1 | `MASTERNODE_SYNC_FAILED` | Synchronization failed |
| 0 | `MASTERNODE_SYNC_INITIAL` | Synchronization just started, was reset recently, or is still in IBD |
| 1 | `MASTERNODE_SYNC_WAITING` | Synchronization pending - waiting after initial to check for more headers/blocks |
| 2 | `MASTERNODE_SYNC_LIST` | Synchronizing masternode list |
| 3 | `MASTERNODE_SYNC_MNW` | Synchronizing masternode payments |
| 2 | `MASTERNODE_SYNC_LIST` | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Synchronizing masternode list |
| 3 | `MASTERNODE_SYNC_MNW` | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Synchronizing masternode payments |
| 4 | `MASTERNODE_SYNC_GOVERNANCE` | Synchronizing governance objects |
| 999 | `MASTERNODE_SYNC_FINISHED` | Synchronization finished |
@ -408,6 +440,9 @@ payments, and governance objects synchronized between masternodes.
**Recurring Ping**
![Warning icon](/img/icons/icon_warning.svg) NOTE: This will be deprecated
following activation of DIP3 which implements deterministic masternode lists.
Each masternode issues a ping (`mnp` message) periodically to notify the network
that it is still online. Masternodes that do not issue a ping for 3 hours will
be put into the `MASTERNODE_NEW_START_REQUIRED` state and will need to issue a
@ -415,6 +450,9 @@ masternode announce (`mnb` message).
**Masternode List**
![Warning icon](/img/icons/icon_warning.svg) NOTE: This will be deprecated
following activation of DIP3 which implements deterministic masternode lists.
After the initial masternode list has been received, it is kept current by a
combination of the periodic `mnp` messages received from other masternodes,
the `mnb` messages sent by masternodes as they come online, and `mnv` messages
@ -429,6 +467,9 @@ Unsynchronized peers may send a `dseg` message to request the entire masternode
**Masternode Payment**
![Warning icon](/img/icons/icon_warning.svg) NOTE: This will be deprecated
following activation of DIP3 which implements deterministic masternode lists.
After the initial masternode payment synchronization, payment information is
kept current via the `mnw` messages relayed on the network. Unsynchronized peers
may send a `mnget` message to request masternode payment sync.
@ -453,14 +494,14 @@ scheduler section of `AppInitMain` in `src/init.cpp`.
The following actions only run when the masternode sync is past `MASTERNODE_SYNC_WAITING` status.
| **Period (seconds)** | **Action** | **Description** |
| 1 | MN Check | Check the state of each masternode that is still funded and not banned. The action occurs once per second, but individual masternodes are only checked at most every 5 seconds (only a subset of masternodes are checked each time it runs) (masternodeman.cpp) |
| 1 | MN Check | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Check the state of each masternode that is still funded and not banned. The action occurs once per second, but individual masternodes are only checked at most every 5 seconds (only a subset of masternodes are checked each time it runs) (masternodeman.cpp) |
| 60 | Process MN Connections | Disconnects some masternodes (masternodeman.cpp) |
| 60 | MN Check/Remove | Remove spent masternodes and check the state of inactive ones (masternodeman.cpp) |
| 60 | MN Payment Check/Remove | Remove old masternode payment votes/blocks (masternode-payments.cpp) |
| 60 | MN Check/Remove | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Remove spent masternodes and check the state of inactive ones (masternodeman.cpp) |
| 60 | MN Payment Check/Remove | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Remove old masternode payment votes/blocks (masternode-payments.cpp) |
| 60 | InstantSend<!--noref--> Check/Remove | Remove expired/orphaned/invalid InstantSend candidates and votes (instantx.cpp) |
| 300 | Full verification | Verify masternodes via direct requests (`mnv` messages - note time constraints in the Developer Reference section) (masternodeman.cpp) |
| 300 | Full verification | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Verify masternodes via direct requests (`mnv` messages - note time constraints in the Developer Reference section) (masternodeman.cpp) |
| 300 | Maintenance | Check/remove/reprocess governance objects (governance.cpp) |
| 600 | Manage State | Sends masternode pings (`mnp` message). Also sends initial masternode broadcast (`mnb` message) for local masternodes. (activemasternode.cpp) |
| 600 | Manage State | ![Warning icon](/img/icons/icon_warning.svg) _Deprecated following activation of DIP3 and Spork 15_<br><br>Sends masternode pings (`mnp` message). Also sends initial masternode broadcast (`mnb` message) for local masternodes. (activemasternode.cpp) |
{% endautocrossref %}

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="97.6mm" height="32.29mm" viewBox="8155 3340 9760 3229" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="8155" y="3340" width="9760" height="3229"/>
</clipPath>
</defs>
<defs>
<font id="EmbeddedFont_1" horiz-adv-x="2048">
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
<glyph unicode="z" horiz-adv-x="928" d="M 49,0 L 49,137 710,943 89,943 89,1082 913,1082 913,945 251,139 950,139 950,0 49,0 Z"/>
<glyph unicode="y" horiz-adv-x="1033" d="M 604,1 C 579,-64 553,-123 527,-175 500,-227 471,-272 438,-309 405,-346 369,-374 329,-394 289,-413 243,-423 191,-423 168,-423 147,-423 128,-423 109,-423 88,-420 67,-414 L 67,-279 C 80,-282 94,-284 110,-284 126,-284 140,-284 151,-284 204,-284 253,-264 298,-225 343,-186 383,-124 417,-38 L 434,5 5,1082 197,1082 425,484 C 432,466 440,442 451,412 461,382 471,352 482,322 492,292 501,265 509,241 517,217 522,202 523,196 525,203 530,218 538,240 545,261 554,285 564,312 573,339 583,366 593,393 603,420 611,444 618,464 L 830,1082 1020,1082 604,1 Z"/>
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 442,363 447,346 454,325 460,304 466,282 473,259 480,236 486,215 492,194 497,173 502,155 506,141 510,155 515,173 522,194 528,215 534,236 541,258 548,280 555,302 562,323 569,344 575,361 580,376 L 826,1082 1017,1082 613,0 Z"/>
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 527,1 499,-5 471,-10 442,-14 409,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 467,127 484,128 501,131 517,134 535,137 554,141 L 554,8 Z"/>
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,248 940,203 921,164 901,124 872,91 835,64 798,37 752,16 698,2 643,-13 581,-20 511,-20 448,-20 392,-15 342,-6 291,4 247,20 209,41 171,62 139,91 114,126 88,161 69,203 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 550,117 585,120 618,125 650,130 678,140 701,153 724,166 743,183 756,205 769,226 775,253 775,285 775,318 767,345 752,366 737,387 715,404 688,418 661,432 628,444 589,455 550,465 507,476 460,489 417,500 374,513 331,527 288,541 250,560 216,583 181,606 153,634 132,668 111,702 100,745 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 763,842 752,866 736,885 720,904 701,919 678,931 655,942 630,951 602,956 573,961 544,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,785 282,761 297,742 311,723 331,707 357,694 382,681 413,669 449,660 485,650 525,640 568,629 597,622 626,614 656,606 686,597 715,587 744,576 772,564 799,550 824,535 849,519 870,500 889,478 908,456 923,430 934,401 945,372 950,338 950,299 Z"/>
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,853 142,876 142,900 141,923 141,946 140,968 139,990 139,1011 138,1030 137,1049 137,1067 136,1082 L 306,1082 C 307,1067 308,1049 309,1030 310,1010 311,990 312,969 313,948 313,929 314,910 314,891 314,874 314,861 L 318,861 C 331,902 344,938 359,969 373,999 390,1024 409,1044 428,1063 451,1078 478,1088 505,1097 537,1102 575,1102 590,1102 604,1101 617,1099 630,1096 641,1094 648,1092 L 648,927 C 636,930 622,933 606,935 590,936 572,937 552,937 511,937 476,928 447,909 418,890 394,865 376,832 357,799 344,759 335,714 326,668 322,618 322,564 L 322,0 142,0 Z"/>
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,464 1046,388 1033,319 1020,250 998,190 967,140 936,90 895,51 844,23 793,-6 730,-20 655,-20 578,-20 510,-5 452,24 394,53 350,101 319,168 L 314,168 C 315,167 315,161 316,150 316,139 316,126 317,110 317,94 317,76 318,57 318,37 318,17 318,-2 L 318,-425 138,-425 138,864 C 138,891 138,916 138,940 137,964 137,986 136,1005 135,1025 135,1042 134,1056 133,1070 133,1077 132,1077 L 306,1077 C 307,1075 308,1068 309,1057 310,1045 311,1031 312,1014 313,998 314,980 315,961 316,943 316,925 316,908 L 320,908 C 337,943 356,972 377,997 398,1021 423,1041 450,1057 477,1072 508,1084 542,1091 575,1098 613,1101 655,1101 730,1101 793,1088 844,1061 895,1034 936,997 967,949 998,900 1020,842 1033,774 1046,705 1053,629 1053,546 Z M 864,542 C 864,609 860,668 852,720 844,772 830,816 811,852 791,888 765,915 732,934 699,953 658,962 609,962 569,962 531,956 496,945 461,934 430,912 404,880 377,848 356,804 341,748 326,691 318,618 318,528 318,451 324,387 337,334 350,281 368,238 393,205 417,172 447,149 483,135 519,120 560,113 607,113 657,113 699,123 732,142 765,161 791,189 811,226 830,263 844,308 852,361 860,414 864,474 864,542 Z"/>
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 490,-20 422,-9 363,14 304,37 254,71 213,118 172,165 140,223 119,294 97,364 86,447 86,542 86,915 248,1102 571,1102 655,1102 728,1090 789,1067 850,1044 900,1009 939,962 978,915 1006,857 1025,787 1044,717 1053,635 1053,542 Z M 864,542 C 864,626 858,695 845,750 832,805 813,848 788,881 763,914 732,937 696,950 660,963 619,969 574,969 528,969 487,962 450,949 413,935 381,912 355,879 329,846 309,802 296,747 282,692 275,624 275,542 275,458 282,389 297,334 312,279 332,235 358,202 383,169 414,146 449,133 484,120 522,113 563,113 609,113 651,120 688,133 725,146 757,168 783,201 809,234 829,278 843,333 857,388 864,458 864,542 Z"/>
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,739 821,783 814,818 806,853 793,882 776,904 759,925 736,941 708,950 679,959 644,963 602,963 559,963 521,956 487,941 452,926 423,904 399,876 374,847 355,812 342,771 329,729 322,681 322,627 L 322,0 142,0 142,853 C 142,876 142,900 142,925 141,950 141,974 140,996 139,1019 139,1038 138,1054 137,1070 137,1078 136,1078 L 306,1078 C 307,1075 307,1066 308,1052 309,1037 310,1021 311,1002 312,984 312,965 313,945 314,926 314,910 314,897 L 317,897 C 334,928 353,957 374,982 395,1007 419,1029 446,1047 473,1064 505,1078 540,1088 575,1097 616,1102 663,1102 723,1102 775,1095 818,1080 861,1065 897,1043 925,1012 953,981 974,942 987,894 1000,845 1006,788 1006,721 L 1006,0 825,0 Z"/>
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
<glyph unicode="j" horiz-adv-x="372" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 317,-132 C 317,-174 314,-212 307,-247 300,-283 287,-313 269,-339 251,-365 227,-386 196,-401 165,-416 125,-423 77,-423 54,-423 32,-423 11,-423 -11,-423 -31,-421 -50,-416 L -50,-277 C -41,-278 -31,-280 -19,-281 -7,-282 3,-283 12,-283 37,-283 58,-280 75,-273 91,-266 104,-256 113,-242 122,-227 129,-209 132,-187 135,-164 137,-138 137,-107 L 137,1082 317,1082 317,-132 Z"/>
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 337,934 359,965 382,991 405,1016 431,1037 459,1054 487,1071 518,1083 551,1091 584,1098 622,1102 663,1102 732,1102 789,1093 834,1074 878,1055 913,1029 939,996 964,962 982,922 992,875 1001,828 1006,777 1006,721 L 1006,0 825,0 825,686 C 825,732 822,772 817,807 811,842 800,871 784,894 768,917 745,934 716,946 687,957 649,963 602,963 559,963 521,955 487,940 452,925 423,903 399,875 374,847 355,813 342,773 329,733 322,688 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1076 322,1054 321,1032 320,1010 320,990 319,971 318,952 317,937 316,924 315,911 315,902 314,897 L 317,897 Z"/>
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 486,-425 431,-419 383,-406 335,-393 294,-375 260,-352 226,-328 198,-300 177,-267 156,-234 140,-198 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 594,-288 631,-282 664,-271 697,-260 726,-241 749,-217 772,-191 790,-159 803,-119 816,-79 822,-30 822,27 L 822,201 820,201 C 807,174 790,148 771,123 751,98 727,75 699,56 670,37 637,21 600,10 563,-2 520,-8 472,-8 403,-8 345,4 296,27 247,50 207,84 176,130 145,176 122,233 108,302 93,370 86,449 86,539 86,626 93,704 108,773 122,842 145,901 178,950 210,998 252,1035 304,1061 355,1086 418,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,914 825,933 826,953 827,974 828,994 829,1012 830,1031 831,1046 832,1060 833,1073 835,1080 836,1080 L 1007,1080 C 1006,1074 1006,1064 1005,1050 1004,1035 1004,1018 1003,998 1002,978 1002,956 1002,932 1001,907 1001,882 1001,856 L 1001,30 C 1001,-121 964,-234 890,-311 815,-387 701,-425 548,-425 Z M 822,541 C 822,616 814,681 798,735 781,788 760,832 733,866 706,900 676,925 642,941 607,957 572,965 536,965 490,965 451,957 418,941 385,925 357,900 336,866 314,831 298,787 288,734 277,680 272,616 272,541 272,463 277,398 288,345 298,292 314,249 335,216 356,183 383,160 416,146 449,132 488,125 533,125 569,125 604,133 639,148 673,163 704,188 731,221 758,254 780,297 797,350 814,403 822,466 822,541 Z"/>
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,446 282,394 294,347 305,299 323,258 348,224 372,189 403,163 441,144 479,125 525,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 1008,206 992,176 972,146 951,115 924,88 890,64 856,39 814,19 763,4 712,-12 650,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,649 100,735 125,806 150,876 185,933 229,977 273,1021 324,1053 383,1073 442,1092 504,1102 571,1102 662,1102 738,1087 799,1058 860,1029 909,988 946,937 983,885 1009,824 1025,754 1040,684 1048,608 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 538,969 507,964 474,955 441,945 410,928 382,903 354,878 330,845 311,803 292,760 281,706 278,641 L 862,641 Z"/>
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 C 823,921 823,931 823,946 822,960 822,975 822,991 821,1006 821,1021 821,1035 821,1049 821,1059 821,1065 L 821,1484 1001,1484 1001,219 C 1001,193 1001,168 1002,143 1002,119 1002,97 1003,77 1004,57 1004,40 1005,26 1006,11 1006,4 1007,4 L 835,4 C 834,11 833,20 832,32 831,44 830,58 829,73 828,89 827,105 826,123 825,140 825,157 825,174 L 821,174 Z M 275,542 C 275,467 280,403 289,350 298,297 313,253 334,219 355,184 381,159 413,143 445,127 484,119 530,119 577,119 619,127 656,142 692,157 722,182 747,217 771,251 789,296 802,351 815,406 821,474 821,554 821,631 815,696 802,749 789,802 771,844 746,877 721,910 691,933 656,948 620,962 579,969 532,969 488,969 450,961 418,946 386,931 359,906 338,872 317,838 301,794 291,740 280,685 275,619 275,542 Z"/>
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,484 280,427 289,375 298,323 313,278 334,241 355,203 384,174 419,153 454,132 497,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 964,283 951,239 931,197 911,155 884,118 850,86 815,54 773,28 724,9 675,-10 618,-20 553,-20 468,-20 396,-6 337,23 278,52 230,91 193,142 156,192 129,251 112,320 95,388 87,462 87,542 87,615 93,679 105,735 117,790 134,839 156,881 177,922 203,957 232,986 261,1014 293,1037 328,1054 362,1071 398,1083 436,1091 474,1098 512,1102 551,1102 612,1102 666,1094 713,1077 760,1060 801,1038 836,1009 870,980 898,945 919,906 940,867 955,824 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 495,961 452,953 418,936 383,919 355,893 334,859 313,824 298,781 289,729 280,677 275,616 275,546 Z"/>
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,150 316,132 315,113 314,94 313,77 312,61 311,45 310,31 309,19 308,8 307,2 306,2 L 132,2 C 133,8 133,18 134,32 135,47 135,64 136,84 137,104 137,126 138,150 138,174 138,199 138,225 L 138,1484 318,1484 318,1061 C 318,1041 318,1022 318,1004 317,985 317,969 316,955 315,938 315,923 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,615 859,679 850,732 841,785 826,829 805,864 784,898 758,923 726,939 694,955 655,963 609,963 562,963 520,955 484,940 447,925 417,900 393,866 368,832 350,787 337,732 324,677 318,609 318,529 318,452 324,387 337,334 350,281 368,239 393,206 417,173 447,149 483,135 519,120 560,113 607,113 651,113 689,121 721,136 753,151 780,176 801,210 822,244 838,288 849,343 859,397 864,463 864,540 Z"/>
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,124 87,203 87,303 87,375 101,434 128,480 155,526 190,562 234,588 277,614 327,632 383,642 439,652 496,657 554,657 L 797,657 797,717 C 797,762 792,800 783,832 774,863 759,889 740,908 721,928 697,942 668,951 639,960 604,965 565,965 530,965 499,963 471,958 443,953 419,944 398,931 377,918 361,900 348,878 335,855 327,827 323,793 L 135,810 C 142,853 154,892 173,928 192,963 218,994 253,1020 287,1046 330,1066 382,1081 433,1095 496,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1090,111 1100,112 1110,113 1120,114 1130,116 1139,118 L 1139,6 C 1116,1 1094,-3 1072,-6 1049,-9 1025,-10 1000,-10 966,-10 937,-5 913,4 888,13 868,26 853,45 838,63 826,86 818,113 810,140 805,171 803,207 L 797,207 C 778,172 757,141 734,113 711,85 684,61 653,42 622,22 588,7 549,-4 510,-15 465,-20 414,-20 Z M 455,115 C 512,115 563,125 606,146 649,167 684,194 713,226 741,259 762,294 776,332 790,371 797,408 797,443 L 797,531 600,531 C 556,531 514,528 475,522 435,517 400,506 370,489 340,472 316,449 299,418 281,388 272,349 272,300 272,241 288,195 320,163 351,131 396,115 455,115 Z"/>
<glyph unicode="V" horiz-adv-x="1377" d="M 782,0 L 584,0 9,1409 210,1409 600,417 C 610,387 620,357 630,328 640,298 649,271 657,248 666,221 675,194 684,168 692,193 701,219 710,246 718,269 727,296 737,325 746,354 757,385 768,417 L 1156,1409 1357,1409 782,0 Z"/>
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,330 1261,275 1238,225 1215,175 1179,132 1131,96 1083,59 1023,31 950,11 877,-10 790,-20 690,-20 515,-20 378,11 280,72 182,133 120,222 93,338 L 278,375 C 287,338 302,305 321,275 340,245 367,219 400,198 433,176 473,159 522,147 571,135 629,129 697,129 754,129 806,134 853,144 900,153 941,168 975,188 1009,208 1036,234 1055,266 1074,297 1083,335 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 613,659 573,668 534,679 494,689 456,701 420,716 383,730 349,747 317,766 285,785 257,809 234,836 211,863 192,894 179,930 166,965 159,1006 159,1053 159,1120 173,1177 200,1225 227,1272 264,1311 312,1342 360,1373 417,1395 482,1409 547,1423 618,1430 694,1430 781,1430 856,1423 918,1410 980,1396 1032,1375 1075,1348 1118,1321 1152,1287 1178,1247 1203,1206 1224,1159 1239,1106 L 1051,1073 C 1042,1107 1028,1137 1011,1164 993,1191 970,1213 941,1231 912,1249 878,1263 837,1272 796,1281 747,1286 692,1286 627,1286 572,1280 528,1269 483,1257 448,1241 421,1221 394,1201 374,1178 363,1151 351,1124 345,1094 345,1063 345,1021 356,987 377,960 398,933 426,910 462,892 498,874 540,859 587,847 634,835 685,823 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
<glyph unicode="O" horiz-adv-x="1430" d="M 1495,711 C 1495,601 1479,501 1448,411 1416,321 1370,244 1310,180 1250,116 1177,67 1090,32 1003,-3 905,-20 795,-20 679,-20 577,-2 490,35 403,71 330,122 272,187 214,252 170,329 141,418 112,507 97,605 97,711 97,821 112,920 143,1009 174,1098 219,1173 278,1236 337,1298 411,1346 498,1380 585,1413 684,1430 797,1430 909,1430 1009,1413 1096,1379 1183,1345 1256,1297 1315,1234 1374,1171 1418,1096 1449,1007 1480,918 1495,820 1495,711 Z M 1300,711 C 1300,796 1289,873 1268,942 1246,1011 1214,1071 1172,1120 1129,1169 1077,1207 1014,1234 951,1261 879,1274 797,1274 713,1274 639,1261 576,1234 513,1207 460,1169 418,1120 375,1071 344,1011 323,942 302,873 291,796 291,711 291,626 302,549 324,479 345,408 377,348 420,297 462,246 515,206 578,178 641,149 713,135 795,135 883,135 959,149 1023,178 1086,207 1139,247 1180,298 1221,349 1251,409 1271,480 1290,551 1300,628 1300,711 Z"/>
<glyph unicode="M" horiz-adv-x="1377" d="M 1366,0 L 1366,940 C 1366,974 1366,1009 1367,1044 1368,1079 1369,1112 1370,1141 1371,1175 1373,1208 1375,1240 1366,1206 1356,1172 1346,1139 1337,1110 1328,1080 1318,1048 1307,1015 1297,986 1287,960 L 923,0 789,0 420,960 C 416,970 412,982 408,995 403,1008 399,1023 394,1038 389,1053 384,1068 379,1084 374,1099 369,1115 364,1130 353,1165 342,1202 331,1240 332,1203 333,1166 334,1129 335,1098 336,1065 337,1031 338,996 338,966 338,940 L 338,0 168,0 168,1409 419,1409 794,432 C 799,419 804,402 811,381 818,360 824,338 830,316 836,294 842,273 847,254 852,234 855,219 857,208 859,219 863,234 868,254 873,274 880,295 887,317 894,339 900,360 907,381 914,402 920,419 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
<glyph unicode="I" horiz-adv-x="213" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,821 118,920 148,1009 177,1098 222,1173 281,1236 340,1298 413,1346 500,1380 587,1413 689,1430 804,1430 891,1430 967,1422 1032,1407 1097,1392 1154,1370 1202,1341 1250,1312 1291,1278 1324,1237 1357,1196 1386,1149 1409,1098 L 1227,1044 C 1210,1079 1189,1110 1165,1139 1140,1167 1111,1191 1076,1211 1041,1231 1001,1247 956,1258 910,1269 858,1274 799,1274 714,1274 640,1261 577,1234 514,1207 461,1169 420,1120 379,1071 348,1011 328,942 307,873 297,796 297,711 297,626 308,549 330,479 352,408 385,348 428,297 471,246 525,206 590,178 654,149 728,135 813,135 868,135 919,140 966,149 1013,158 1055,171 1093,186 1130,201 1163,217 1192,236 1221,254 1245,272 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1409,187 1372,157 1330,128 1287,99 1240,73 1187,51 1134,29 1077,12 1014,-1 951,-14 884,-20 813,-20 694,-20 591,-2 502,35 413,71 340,122 281,187 222,252 177,329 148,418 118,507 103,605 103,711 Z"/>
<glyph unicode=")" horiz-adv-x="557" d="M 555,528 C 555,435 548,346 534,262 520,177 498,96 468,18 438,-60 400,-136 353,-209 306,-282 251,-354 186,-424 L 12,-424 C 75,-354 129,-282 175,-209 220,-136 258,-60 287,19 316,98 338,179 353,264 367,349 374,437 374,530 374,623 367,711 353,796 338,881 316,962 287,1041 258,1119 220,1195 175,1269 129,1342 75,1414 12,1484 L 186,1484 C 251,1414 306,1342 353,1269 400,1196 438,1120 468,1042 498,964 520,883 534,798 548,713 555,625 555,532 L 555,528 Z"/>
<glyph unicode="(" horiz-adv-x="583" d="M 127,532 C 127,625 134,713 148,798 162,883 184,964 214,1042 244,1120 282,1196 329,1269 376,1342 431,1414 496,1484 L 670,1484 C 607,1414 553,1342 508,1269 462,1195 424,1119 395,1041 366,962 344,881 330,796 315,711 308,623 308,530 308,437 315,349 330,264 344,179 366,98 395,19 424,-60 462,-136 508,-209 553,-282 607,-354 670,-424 L 496,-424 C 431,-354 376,-282 329,-209 282,-136 244,-60 214,18 184,96 162,177 148,262 134,346 127,435 127,528 L 127,532 Z"/>
<glyph unicode=" " horiz-adv-x="556"/>
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
</g>
<g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
</g>
<g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
</g>
<g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
</g>
<g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
</g>
<g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
</g>
<g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
</g>
<g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
</g>
<g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
<path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
</g>
</defs>
<defs class="TextEmbeddedBitmaps"/>
<g class="SlideGroup">
<g>
<g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
<g class="Page">
<g class="Group">
<g class="Group">
<g class="com.sun.star.drawing.CustomShape">
<g id="id3">
<rect class="BoundingBox" stroke="none" fill="none" x="8154" y="5042" width="2798" height="1274"/>
<path fill="rgb(221,221,221)" stroke="none" d="M 8155,5043 L 10950,5043 10950,6314 8155,6314 8155,5043 8155,5043 Z M 8155,5043 L 8155,5043 Z M 10950,6314 L 10950,6314 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 8155,5043 L 10950,5043 10950,6314 8155,6314 8155,5043 8155,5043 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 8155,5043 L 8155,5043 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 10950,6314 L 10950,6314 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="8947" y="5597"><tspan fill="rgb(0,0,0)" stroke="none">Sporks</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="8576" y="6029"><tspan fill="rgb(0,0,0)" stroke="none">(getsporks)</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
<g id="id4">
<rect class="BoundingBox" stroke="none" fill="none" x="11654" y="4788" width="2798" height="1782"/>
<path fill="rgb(221,221,221)" stroke="none" d="M 11655,4789 L 14450,4789 14450,6568 11655,6568 11655,4789 11655,4789 Z M 11655,4789 L 11655,4789 Z M 14450,6568 L 14450,6568 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 11655,4789 L 14450,4789 14450,6568 11655,6568 11655,4789 11655,4789 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 11655,4789 L 11655,4789 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 14450,6568 L 14450,6568 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="11992" y="5381"><tspan fill="rgb(0,0,0)" stroke="none">Governance</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="12337" y="5813"><tspan fill="rgb(0,0,0)" stroke="none"> </tspan><tspan fill="rgb(0,0,0)" stroke="none">Objects</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="12208" y="6245"><tspan fill="rgb(0,0,0)" stroke="none">(govsync)</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="10948" y="5528" width="708" height="301"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 10949,5678 L 11225,5678"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 11655,5678 L 11205,5528 11205,5828 11655,5678 Z"/>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="15118" y="4788" width="2798" height="1782"/>
<path fill="rgb(221,221,221)" stroke="none" d="M 15119,4789 L 17914,4789 17914,6568 15119,6568 15119,4789 15119,4789 Z M 15119,4789 L 15119,4789 Z M 17914,6568 L 17914,6568 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 15119,4789 L 17914,4789 17914,6568 15119,6568 15119,4789 15119,4789 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 15119,4789 L 15119,4789 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 17914,6568 L 17914,6568 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15456" y="5381"><tspan fill="rgb(0,0,0)" stroke="none">Governance</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15977" y="5813"><tspan fill="rgb(0,0,0)" stroke="none"> </tspan><tspan fill="rgb(0,0,0)" stroke="none">Votes</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15672" y="6245"><tspan fill="rgb(0,0,0)" stroke="none">(govsync)</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id7">
<rect class="BoundingBox" stroke="none" fill="none" x="14448" y="5528" width="672" height="301"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 14449,5678 L 14689,5678"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 15119,5678 L 14669,5528 14669,5828 15119,5678 Z"/>
</g>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="8283" y="3340" width="9503" height="879"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="564px" font-weight="400"><tspan class="TextPosition" x="8533" y="3973"><tspan fill="rgb(0,0,0)" stroke="none">Masternode Synchronization (Initial)</tspan></tspan></tspan></text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

After

Width:  |  Height:  |  Size: 128 KiB

Before After
Before After

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.2" width="175.71mm" height="143.58mm" viewBox="5246 4205 17571 14358" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<svg version="1.2" width="175.71mm" height="147.97mm" viewBox="5246 4205 17571 14797" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
<defs class="ClipPathGroup">
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
<rect x="5246" y="4205" width="17571" height="14358"/>
<rect x="5246" y="4205" width="17571" height="14797"/>
</clipPath>
</defs>
<defs>
@ -43,6 +43,7 @@
<glyph unicode="M" horiz-adv-x="1377" d="M 1366,0 L 1366,940 C 1366,974 1366,1009 1367,1044 1368,1079 1369,1112 1370,1141 1371,1175 1373,1208 1375,1240 1366,1206 1356,1172 1346,1139 1337,1110 1328,1080 1318,1048 1307,1015 1297,986 1287,960 L 923,0 789,0 420,960 C 416,970 412,982 408,995 403,1008 399,1023 394,1038 389,1053 384,1068 379,1084 374,1099 369,1115 364,1130 353,1165 342,1202 331,1240 332,1203 333,1166 334,1129 335,1098 336,1065 337,1031 338,996 338,966 338,940 L 338,0 168,0 168,1409 419,1409 794,432 C 799,419 804,402 811,381 818,360 824,338 830,316 836,294 842,273 847,254 852,234 855,219 857,208 859,219 863,234 868,254 873,274 880,295 887,317 894,339 900,360 907,381 914,402 920,419 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
<glyph unicode="L" horiz-adv-x="927" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
<glyph unicode="G" horiz-adv-x="1377" d="M 103,711 C 103,821 118,920 148,1009 177,1098 222,1173 281,1236 340,1298 413,1346 500,1380 587,1413 689,1430 804,1430 891,1430 967,1422 1032,1407 1097,1392 1154,1370 1202,1341 1250,1312 1291,1278 1324,1237 1357,1196 1386,1149 1409,1098 L 1227,1044 C 1210,1079 1189,1110 1165,1139 1140,1167 1111,1191 1076,1211 1041,1231 1001,1247 956,1258 910,1269 858,1274 799,1274 714,1274 640,1261 577,1234 514,1207 461,1169 420,1120 379,1071 348,1011 328,942 307,873 297,796 297,711 297,626 308,549 330,479 352,408 385,348 428,297 471,246 525,206 590,178 654,149 728,135 813,135 868,135 919,140 966,149 1013,158 1055,171 1093,186 1130,201 1163,217 1192,236 1221,254 1245,272 1264,291 L 1264,545 843,545 843,705 1440,705 1440,219 C 1409,187 1372,157 1330,128 1287,99 1240,73 1187,51 1134,29 1077,12 1014,-1 951,-14 884,-20 813,-20 694,-20 591,-2 502,35 413,71 340,122 281,187 222,252 177,329 148,418 118,507 103,605 103,711 Z"/>
<glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,602 1363,498 1328,409 1293,319 1244,244 1183,184 1122,123 1049,78 966,47 882,16 792,0 695,0 L 168,0 168,1409 634,1409 C 743,1409 843,1396 935,1369 1026,1342 1105,1300 1171,1244 1237,1187 1289,1116 1326,1029 1363,942 1381,839 1381,719 Z M 1189,719 C 1189,814 1175,896 1148,964 1121,1031 1082,1087 1033,1130 984,1173 925,1205 856,1226 787,1246 712,1256 630,1256 L 359,1256 359,153 673,153 C 747,153 816,165 879,189 942,213 996,249 1042,296 1088,343 1124,402 1150,473 1176,544 1189,626 1189,719 Z"/>
<glyph unicode="C" horiz-adv-x="1324" d="M 792,1274 C 712,1274 641,1261 580,1234 518,1207 466,1169 425,1120 383,1071 351,1011 330,942 309,873 298,796 298,711 298,626 310,549 333,479 356,408 389,348 432,297 475,246 527,207 590,179 652,151 722,137 800,137 855,137 905,144 950,159 995,173 1035,193 1072,219 1108,245 1140,276 1169,312 1198,347 1223,387 1245,430 L 1401,352 C 1376,299 1344,250 1307,205 1270,160 1226,120 1176,87 1125,54 1068,28 1005,9 941,-10 870,-20 791,-20 677,-20 577,-2 492,35 406,71 334,122 277,187 219,252 176,329 147,418 118,507 104,605 104,711 104,821 119,920 150,1009 180,1098 224,1173 283,1236 341,1298 413,1346 498,1380 583,1413 681,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1194,1054 1176,1086 1153,1117 1130,1147 1102,1174 1068,1197 1034,1220 994,1239 949,1253 903,1267 851,1274 792,1274 Z"/>
<glyph unicode="B" horiz-adv-x="1112" d="M 1258,397 C 1258,326 1244,265 1216,215 1188,164 1150,123 1103,92 1056,60 1001,37 938,22 875,7 809,0 740,0 L 168,0 168,1409 680,1409 C 758,1409 828,1403 889,1390 950,1377 1002,1356 1045,1328 1088,1300 1120,1265 1143,1222 1165,1179 1176,1127 1176,1067 1176,1028 1171,991 1160,956 1149,921 1132,890 1110,862 1087,833 1059,809 1026,789 992,768 953,753 908,743 965,736 1015,723 1059,704 1102,685 1139,660 1168,630 1197,600 1220,565 1235,526 1250,486 1258,443 1258,397 Z M 984,1044 C 984,1120 958,1174 906,1207 854,1240 779,1256 680,1256 L 359,1256 359,810 680,810 C 736,810 783,816 822,827 861,838 892,853 916,874 940,894 957,918 968,947 979,976 984,1008 984,1044 Z M 1065,412 C 1065,457 1057,495 1041,526 1024,557 1001,583 970,603 939,623 903,638 860,647 817,656 768,661 715,661 L 359,661 359,153 730,153 C 779,153 824,157 865,165 906,173 941,187 971,207 1000,227 1023,254 1040,287 1057,320 1065,362 1065,412 Z"/>
<glyph unicode="5" horiz-adv-x="980" d="M 1053,459 C 1053,388 1042,324 1021,265 1000,206 968,156 926,114 884,71 832,38 770,15 707,-8 635,-20 553,-20 479,-20 415,-11 360,6 305,23 258,47 220,78 182,108 152,143 130,184 107,225 91,268 82,315 L 264,336 C 271,309 282,284 295,259 308,234 327,211 350,192 373,172 401,156 435,145 468,133 509,127 557,127 604,127 646,134 684,149 722,163 755,184 782,212 809,240 829,274 844,315 859,356 866,402 866,455 866,498 859,538 845,575 831,611 811,642 785,669 759,695 727,715 690,730 652,745 609,752 561,752 531,752 503,749 478,744 453,739 429,731 408,722 386,713 366,702 349,690 331,677 314,664 299,651 L 123,651 170,1409 971,1409 971,1256 334,1256 307,809 C 339,834 379,855 427,873 475,890 532,899 598,899 668,899 731,888 787,867 843,846 891,816 930,777 969,738 1000,691 1021,637 1042,583 1053,524 1053,459 Z"/>
@ -53,7 +54,7 @@
</font>
</defs>
<defs class="TextShapeIndex">
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45"/>
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47"/>
</defs>
<defs class="EmbeddedBulletChars">
<g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
@ -324,20 +325,20 @@
<g id="id5">
<rect class="BoundingBox" stroke="none" fill="none" x="9969" y="9508" width="2798" height="1274"/>
<path fill="rgb(238,238,238)" stroke="none" d="M 9970,9509 L 12765,9509 12765,10780 9970,10780 9970,9509 9970,9509 Z M 9970,9509 L 9970,9509 Z M 12765,10780 L 12765,10780 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9970,9509 L 12765,9509 12765,10780 9970,10780 9970,9509 9970,9509 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 9970,9509 L 9970,9509 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 12765,10780 L 12765,10780 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="10245" y="10055"><tspan fill="rgb(0,0,0)" stroke="none">Masternode</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="10423" y="10529"><tspan fill="rgb(0,0,0)" stroke="none">Payments</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" d="M 9970,9509 L 12765,9509 12765,10780 9970,10780 9970,9509 9970,9509 Z"/>
<path fill="none" stroke="rgb(128,128,128)" d="M 9970,9509 L 9970,9509 Z"/>
<path fill="none" stroke="rgb(128,128,128)" d="M 12765,10780 L 12765,10780 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="10245" y="10055"><tspan fill="rgb(128,128,128)" stroke="none">Masternode</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="10423" y="10529"><tspan fill="rgb(128,128,128)" stroke="none">Payments</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
<g id="id6">
<rect class="BoundingBox" stroke="none" fill="none" x="14022" y="9508" width="2798" height="1274"/>
<path fill="rgb(238,238,238)" stroke="none" d="M 14023,9509 L 16818,9509 16818,10780 14023,10780 14023,9509 14023,9509 Z M 14023,9509 L 14023,9509 Z M 16818,10780 L 16818,10780 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 14023,9509 L 16818,9509 16818,10780 14023,10780 14023,9509 14023,9509 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 14023,9509 L 14023,9509 Z"/>
<path fill="none" stroke="rgb(0,0,0)" d="M 16818,10780 L 16818,10780 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14298" y="10055"><tspan fill="rgb(0,0,0)" stroke="none">Masternode</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="15090" y="10529"><tspan fill="rgb(0,0,0)" stroke="none">List</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" d="M 14023,9509 L 16818,9509 16818,10780 14023,10780 14023,9509 14023,9509 Z"/>
<path fill="none" stroke="rgb(128,128,128)" d="M 14023,9509 L 14023,9509 Z"/>
<path fill="none" stroke="rgb(128,128,128)" d="M 16818,10780 L 16818,10780 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14298" y="10055"><tspan fill="rgb(128,128,128)" stroke="none">Masternode</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="15090" y="10529"><tspan fill="rgb(128,128,128)" stroke="none">List</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
@ -353,251 +354,251 @@
<g class="com.sun.star.drawing.TextShape">
<g id="id8">
<rect class="BoundingBox" stroke="none" fill="none" x="5510" y="9559" width="2040" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="5760" y="10035"><tspan fill="rgb(0,0,0)" stroke="none">Payment</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="6044" y="10467"><tspan fill="rgb(0,0,0)" stroke="none">Votes</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="5760" y="10035"><tspan fill="rgb(128,128,128)" stroke="none">Payment</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="6044" y="10467"><tspan fill="rgb(128,128,128)" stroke="none">Votes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id9">
<rect class="BoundingBox" stroke="none" fill="none" x="7549" y="9840" width="2440" height="408"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9970,10144 L 9901,10143"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9832,10142 L 9763,10142"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9694,10141 L 9625,10140"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9556,10139 L 9487,10138"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9418,10138 L 9349,10137"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9281,10136 L 9212,10135"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9143,10134 L 9074,10134"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 9005,10133 L 8936,10132"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8867,10131 L 8798,10130"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8729,10130 L 8660,10129"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8591,10128 L 8522,10127"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8453,10126 L 8384,10126"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8315,10125 L 8246,10124"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8177,10123 L 8108,10122"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 8040,10122 L 7971,10121"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 7549,10116 L 7926,10246 7928,9994 7549,10116 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="8349" y="10049"><tspan fill="rgb(0,0,0)" stroke="none">mnw</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9970,10144 L 9901,10143"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9832,10142 L 9763,10142"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9694,10141 L 9625,10140"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9556,10139 L 9487,10138"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9418,10138 L 9349,10137"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9281,10136 L 9212,10135"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9143,10134 L 9074,10134"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 9005,10133 L 8936,10132"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8867,10131 L 8798,10130"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8729,10130 L 8660,10129"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8591,10128 L 8522,10127"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8453,10126 L 8384,10126"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8315,10125 L 8246,10124"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8177,10123 L 8108,10122"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 8040,10122 L 7971,10121"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 7549,10116 L 7926,10246 7928,9994 7549,10116 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="8349" y="10049"><tspan fill="rgb(128,128,128)" stroke="none">mnw</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id10">
<rect class="BoundingBox" stroke="none" fill="none" x="8800" y="5800" width="2107" height="1170"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="9050" y="6276"><tspan fill="rgb(0,0,0)" stroke="none">Payment</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="9334" y="6708"><tspan fill="rgb(0,0,0)" stroke="none">Votes</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="9050" y="6276"><tspan fill="rgb(128,128,128)" stroke="none">Payment</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="9334" y="6708"><tspan fill="rgb(128,128,128)" stroke="none">Votes</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id11">
<rect class="BoundingBox" stroke="none" fill="none" x="9835" y="6951" width="1533" height="2559"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 11182,9199 L 9853,6969"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 11367,9509 L 11282,9120 11065,9249 11367,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="10200" y="7462"><tspan fill="rgb(0,0,0)" stroke="none">mnw</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 11182,9199 L 9853,6969"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 11367,9509 L 11282,9120 11065,9249 11367,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="10200" y="7462"><tspan fill="rgb(128,128,128)" stroke="none">mnw</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id12">
<rect class="BoundingBox" stroke="none" fill="none" x="15526" y="5803" width="2755" height="1548"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15929" y="6279"><tspan fill="rgb(0,0,0)" stroke="none">Broadcasts</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="16511" y="6711"><tspan fill="rgb(0,0,0)" stroke="none">from</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15776" y="7143"><tspan fill="rgb(0,0,0)" stroke="none">Starting MNs</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15929" y="6279"><tspan fill="rgb(128,128,128)" stroke="none">Broadcasts</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="16511" y="6711"><tspan fill="rgb(128,128,128)" stroke="none">from</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15776" y="7143"><tspan fill="rgb(128,128,128)" stroke="none">Starting MNs</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id13">
<rect class="BoundingBox" stroke="none" fill="none" x="20050" y="7327" width="2306" height="1548"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20300" y="7803"><tspan fill="rgb(0,0,0)" stroke="none">Recurring </tspan></tspan><tspan class="TextPosition" x="20755" y="8235"><tspan fill="rgb(0,0,0)" stroke="none">Ping</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20427" y="8667"><tspan fill="rgb(0,0,0)" stroke="none">(15 min)</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20300" y="7803"><tspan fill="rgb(128,128,128)" stroke="none">Recurring </tspan></tspan><tspan class="TextPosition" x="20755" y="8235"><tspan fill="rgb(128,128,128)" stroke="none">Ping</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20427" y="8667"><tspan fill="rgb(128,128,128)" stroke="none">(15 min)</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id14">
<rect class="BoundingBox" stroke="none" fill="none" x="15210" y="7332" width="1712" height="2178"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16903,7350 L 15626,9209"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 15420,9509 L 15740,9267 15531,9123 15420,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15223" y="8565"><tspan fill="rgb(0,0,0)" stroke="none">mnb</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16903,7350 L 15626,9209"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 15420,9509 L 15740,9267 15531,9123 15420,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15223" y="8565"><tspan fill="rgb(128,128,128)" stroke="none">mnb</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id15">
<rect class="BoundingBox" stroke="none" fill="none" x="19823" y="11188" width="2641" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20073" y="11664"><tspan fill="rgb(0,0,0)" stroke="none">Relayed MN</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20169" y="12096"><tspan fill="rgb(0,0,0)" stroke="none">Broadcasts</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20073" y="11664"><tspan fill="rgb(128,128,128)" stroke="none">Relayed MN</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20169" y="12096"><tspan fill="rgb(128,128,128)" stroke="none">Broadcasts</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id16">
<rect class="BoundingBox" stroke="none" fill="none" x="20177" y="9636" width="2641" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20427" y="10112"><tspan fill="rgb(0,0,0)" stroke="none">Relayed MN</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="21012" y="10544"><tspan fill="rgb(0,0,0)" stroke="none">Pings</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="20427" y="10112"><tspan fill="rgb(128,128,128)" stroke="none">Relayed MN</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="21012" y="10544"><tspan fill="rgb(128,128,128)" stroke="none">Pings</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id17">
<rect class="BoundingBox" stroke="none" fill="none" x="19415" y="12585" width="2641" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="19665" y="13061"><tspan fill="rgb(0,0,0)" stroke="none">Relayed MN</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="19689" y="13493"><tspan fill="rgb(0,0,0)" stroke="none">Verifications</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="19665" y="13061"><tspan fill="rgb(128,128,128)" stroke="none">Relayed MN</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="19689" y="13493"><tspan fill="rgb(128,128,128)" stroke="none">Verifications</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id18">
<rect class="BoundingBox" stroke="none" fill="none" x="17143" y="13827" width="2146" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17554" y="14303"><tspan fill="rgb(0,0,0)" stroke="none">MN List</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17393" y="14735"><tspan fill="rgb(0,0,0)" stroke="none">Requests</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17554" y="14303"><tspan fill="rgb(128,128,128)" stroke="none">MN List</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17393" y="14735"><tspan fill="rgb(128,128,128)" stroke="none">Requests</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id19">
<rect class="BoundingBox" stroke="none" fill="none" x="15420" y="10779" width="2796" height="3049"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 15664,11045 L 17971,13561"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 15420,10779 L 15583,11143 15768,10972 15420,10779 Z"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 18215,13827 L 18052,13463 17867,13634 18215,13827 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15863" y="12438"><tspan fill="rgb(0,0,0)" stroke="none">dseg</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 15664,11045 L 17971,13561"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 15420,10779 L 15583,11143 15768,10972 15420,10779 Z"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 18215,13827 L 18052,13463 17867,13634 18215,13827 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="15863" y="12438"><tspan fill="rgb(128,128,128)" stroke="none">dseg</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id20">
<rect class="BoundingBox" stroke="none" fill="none" x="16799" y="10126" width="3025" height="1620"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16817,10144 L 16878,10176"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16939,10209 L 17000,10241"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17060,10274 L 17121,10306"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17182,10338 L 17243,10371"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17304,10403 L 17365,10436"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17426,10468 L 17486,10501"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17547,10533 L 17608,10565"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17669,10598 L 17730,10630"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17791,10663 L 17852,10695"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17912,10727 L 17973,10760"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18034,10792 L 18095,10825"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18156,10857 L 18217,10889"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18278,10922 L 18338,10954"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18399,10987 L 18460,11019"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18521,11052 L 18582,11084"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18643,11116 L 18704,11149"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18764,11181 L 18825,11214"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18886,11246 L 18947,11278"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19008,11311 L 19069,11343"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19130,11376 L 19190,11408"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19251,11440 L 19312,11473"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19373,11505 L 19434,11538"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19495,11570 L 19502,11574"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 19823,11745 L 19546,11454 19427,11678 19823,11745 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="18754" y="11080"><tspan fill="rgb(0,0,0)" stroke="none">mnb</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16817,10144 L 16878,10176"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16939,10209 L 17000,10241"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17060,10274 L 17121,10306"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17182,10338 L 17243,10371"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17304,10403 L 17365,10436"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17426,10468 L 17486,10501"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17547,10533 L 17608,10565"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17669,10598 L 17730,10630"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17791,10663 L 17852,10695"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17912,10727 L 17973,10760"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18034,10792 L 18095,10825"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18156,10857 L 18217,10889"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18278,10922 L 18338,10954"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18399,10987 L 18460,11019"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18521,11052 L 18582,11084"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18643,11116 L 18704,11149"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18764,11181 L 18825,11214"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18886,11246 L 18947,11278"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19008,11311 L 19069,11343"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19130,11376 L 19190,11408"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19251,11440 L 19312,11473"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19373,11505 L 19434,11538"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19495,11570 L 19502,11574"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 19823,11745 L 19546,11454 19427,11678 19823,11745 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="18754" y="11080"><tspan fill="rgb(128,128,128)" stroke="none">mnb</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id21">
<rect class="BoundingBox" stroke="none" fill="none" x="16790" y="8100" width="3261" height="2072"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 16817,10144 L 16862,10116"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 17033,10007 L 17078,9979"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 17250,9870 L 17421,9762"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 17593,9653 L 17638,9625"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 17809,9517 L 17854,9488"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 18026,9380 L 18197,9271"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 18369,9163 L 18414,9135"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 18585,9026 L 18630,8998"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 18802,8889 L 18973,8781"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 19145,8672 L 19190,8644"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 19361,8535 L 19406,8507"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="53" stroke-linejoin="round" d="M 19578,8399 L 19710,8315"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 20050,8100 L 19619,8206 19769,8444 20050,8100 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17775" y="9041"><tspan fill="rgb(0,0,0)" stroke="none">mnp</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 16817,10144 L 16862,10116"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 17033,10007 L 17078,9979"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 17250,9870 L 17421,9762"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 17593,9653 L 17638,9625"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 17809,9517 L 17854,9488"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 18026,9380 L 18197,9271"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 18369,9163 L 18414,9135"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 18585,9026 L 18630,8998"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 18802,8889 L 18973,8781"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 19145,8672 L 19190,8644"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 19361,8535 L 19406,8507"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 19578,8399 L 19710,8315"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 20050,8100 L 19619,8206 19769,8444 20050,8100 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17775" y="9041"><tspan fill="rgb(128,128,128)" stroke="none">mnp</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id22">
<rect class="BoundingBox" stroke="none" fill="none" x="16799" y="9878" width="3379" height="438"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16817,10144 L 16886,10145"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16955,10146 L 17024,10147"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17093,10148 L 17162,10149"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17231,10150 L 17300,10151"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17369,10152 L 17437,10153"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17506,10154 L 17575,10155"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17644,10156 L 17713,10157"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17782,10158 L 17851,10159"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17920,10160 L 17989,10161"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18058,10162 L 18127,10163"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18196,10164 L 18265,10165"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18334,10166 L 18403,10167"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18472,10168 L 18541,10169"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18610,10170 L 18678,10171"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18747,10172 L 18816,10173"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18885,10174 L 18954,10175"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19023,10176 L 19092,10177"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19161,10178 L 19230,10179"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19299,10180 L 19368,10181"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19437,10182 L 19506,10183"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19575,10184 L 19644,10185"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19713,10186 L 19782,10187"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 20177,10193 L 19798,10060 19794,10314 20177,10193 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="18118" y="10088"><tspan fill="rgb(0,0,0)" stroke="none">mnp</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16817,10144 L 16886,10145"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16955,10146 L 17024,10147"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17093,10148 L 17162,10149"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17231,10150 L 17300,10151"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17369,10152 L 17437,10153"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17506,10154 L 17575,10155"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17644,10156 L 17713,10157"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17782,10158 L 17851,10159"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17920,10160 L 17989,10161"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18058,10162 L 18127,10163"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18196,10164 L 18265,10165"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18334,10166 L 18403,10167"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18472,10168 L 18541,10169"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18610,10170 L 18678,10171"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18747,10172 L 18816,10173"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18885,10174 L 18954,10175"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19023,10176 L 19092,10177"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19161,10178 L 19230,10179"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19299,10180 L 19368,10181"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19437,10182 L 19506,10183"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19575,10184 L 19644,10185"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19713,10186 L 19782,10187"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 20177,10193 L 19798,10060 19794,10314 20177,10193 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="18118" y="10088"><tspan fill="rgb(128,128,128)" stroke="none">mnp</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id23">
<rect class="BoundingBox" stroke="none" fill="none" x="16799" y="10126" width="2617" height="3017"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16817,10144 L 16862,10196"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16907,10248 L 16952,10300"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 16998,10352 L 17043,10405"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17088,10457 L 17133,10509"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17178,10561 L 17223,10613"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17269,10665 L 17314,10717"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17359,10769 L 17404,10821"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17449,10873 L 17494,10926"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17539,10978 L 17585,11030"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17630,11082 L 17675,11134"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17720,11186 L 17765,11238"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17810,11290 L 17856,11342"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17901,11395 L 17946,11447"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 17991,11499 L 18036,11551"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18081,11603 L 18126,11655"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18172,11707 L 18217,11759"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18262,11811 L 18307,11864"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18352,11916 L 18397,11968"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18443,12020 L 18488,12072"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18533,12124 L 18578,12176"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18623,12228 L 18668,12280"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18714,12332 L 18759,12385"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18804,12437 L 18849,12489"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18894,12541 L 18939,12593"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 18984,12645 L 19030,12697"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19075,12749 L 19120,12801"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19165,12854 L 19177,12867"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 19415,13142 L 19261,12771 19070,12937 19415,13142 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17240" y="11778"><tspan fill="rgb(0,0,0)" stroke="none">mnv</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16817,10144 L 16862,10196"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16907,10248 L 16952,10300"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 16998,10352 L 17043,10405"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17088,10457 L 17133,10509"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17178,10561 L 17223,10613"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17269,10665 L 17314,10717"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17359,10769 L 17404,10821"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17449,10873 L 17494,10926"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17539,10978 L 17585,11030"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17630,11082 L 17675,11134"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17720,11186 L 17765,11238"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17810,11290 L 17856,11342"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17901,11395 L 17946,11447"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 17991,11499 L 18036,11551"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18081,11603 L 18126,11655"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18172,11707 L 18217,11759"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18262,11811 L 18307,11864"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18352,11916 L 18397,11968"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18443,12020 L 18488,12072"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18533,12124 L 18578,12176"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18623,12228 L 18668,12280"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18714,12332 L 18759,12385"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18804,12437 L 18849,12489"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18894,12541 L 18939,12593"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 18984,12645 L 19030,12697"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19075,12749 L 19120,12801"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19165,12854 L 19177,12867"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 19415,13142 L 19261,12771 19070,12937 19415,13142 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17240" y="11778"><tspan fill="rgb(128,128,128)" stroke="none">mnv</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id24">
<rect class="BoundingBox" stroke="none" fill="none" x="18780" y="6413" width="2188" height="684"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="19030" y="6889"><tspan fill="rgb(0,0,0)" stroke="none">MN Pings</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="19030" y="6889"><tspan fill="rgb(128,128,128)" stroke="none">MN Pings</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id25">
<rect class="BoundingBox" stroke="none" fill="none" x="15420" y="7078" width="4472" height="2432"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 19873,7096 L 15740,9336"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 15420,9509 L 15815,9439 15694,9216 15420,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17014" y="8222"><tspan fill="rgb(0,0,0)" stroke="none">mnp</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 19873,7096 L 15740,9336"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 15420,9509 L 15815,9439 15694,9216 15420,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="17014" y="8222"><tspan fill="rgb(128,128,128)" stroke="none">mnp</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id26">
<rect class="BoundingBox" stroke="none" fill="none" x="5953" y="7251" width="2924" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="6645" y="7727"><tspan fill="rgb(0,0,0)" stroke="none">Payment</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="6203" y="8159"><tspan fill="rgb(0,0,0)" stroke="none">Sync Request</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="6645" y="7727"><tspan fill="rgb(128,128,128)" stroke="none">Payment</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="6203" y="8159"><tspan fill="rgb(128,128,128)" stroke="none">Sync Request</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.TextShape">
<g id="id27">
<rect class="BoundingBox" stroke="none" fill="none" x="13018" y="5780" width="2400" height="1116"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="13268" y="6256"><tspan fill="rgb(0,0,0)" stroke="none">Verification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="13395" y="6688"><tspan fill="rgb(0,0,0)" stroke="none">Requests</tspan></tspan></tspan></text>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="13268" y="6256"><tspan fill="rgb(128,128,128)" stroke="none">Verification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="13395" y="6688"><tspan fill="rgb(128,128,128)" stroke="none">Requests</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id28">
<rect class="BoundingBox" stroke="none" fill="none" x="13980" y="6895" width="1441" height="2615"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 14368,7223 L 15268,9178"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 14217,6895 L 14261,7291 14489,7186 14217,6895 Z"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 15420,9509 L 15376,9110 15145,9216 15420,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="13993" y="8337"><tspan fill="rgb(0,0,0)" stroke="none">mnv</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 14368,7223 L 15268,9178"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 14217,6895 L 14261,7291 14489,7186 14217,6895 Z"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 15420,9509 L 15376,9110 15145,9216 15420,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="13993" y="8337"><tspan fill="rgb(128,128,128)" stroke="none">mnv</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.ConnectorShape">
<g id="id29">
<rect class="BoundingBox" stroke="none" fill="none" x="7396" y="8348" width="3972" height="1179"/>
<path fill="none" stroke="rgb(0,0,0)" stroke-width="35" stroke-linejoin="round" d="M 7414,8366 L 11017,9408"/>
<path fill="rgb(0,0,0)" stroke="none" d="M 11367,9509 L 11036,9281 10966,9525 11367,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="9128" y="8859"><tspan fill="rgb(0,0,0)" stroke="none">mnget</tspan></tspan></tspan></text>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="35" stroke-linejoin="round" d="M 7414,8366 L 11017,9408"/>
<path fill="rgb(128,128,128)" stroke="none" d="M 11367,9509 L 11036,9281 10966,9525 11367,9509 Z"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="9128" y="8859"><tspan fill="rgb(128,128,128)" stroke="none">mnget</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.CustomShape">
@ -757,6 +758,20 @@
</g>
</g>
</g>
<g class="Group">
<g class="com.sun.star.drawing.TextShape">
<g id="id46">
<rect class="BoundingBox" stroke="none" fill="none" x="10425" y="18319" width="8470" height="684"/>
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="388px" font-weight="400"><tspan class="TextPosition" x="10675" y="18795"><tspan fill="rgb(128,128,128)" stroke="none">Deprecated by Deterministic Masternode Lists</tspan></tspan></tspan></text>
</g>
</g>
<g class="com.sun.star.drawing.LineShape">
<g id="id47">
<rect class="BoundingBox" stroke="none" fill="none" x="8493" y="18633" width="1960" height="55"/>
<path fill="none" stroke="rgb(128,128,128)" stroke-width="53" stroke-linejoin="round" d="M 8520,18660 L 10425,18660"/>
</g>
</g>
</g>
</g>
</g>
</g>

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 99 KiB

Before After
Before After

Binary file not shown.