linny-r 1.4.2 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +162 -74
  2. package/package.json +1 -1
  3. package/server.js +145 -49
  4. package/static/images/check-off-not-same-changed.png +0 -0
  5. package/static/images/check-off-not-same-not-changed.png +0 -0
  6. package/static/images/check-off-same-changed.png +0 -0
  7. package/static/images/check-off-same-not-changed.png +0 -0
  8. package/static/images/check-on-not-same-changed.png +0 -0
  9. package/static/images/check-on-not-same-not-changed.png +0 -0
  10. package/static/images/check-on-same-changed.png +0 -0
  11. package/static/images/check-on-same-not-changed.png +0 -0
  12. package/static/images/eq-not-same-changed.png +0 -0
  13. package/static/images/eq-not-same-not-changed.png +0 -0
  14. package/static/images/eq-same-changed.png +0 -0
  15. package/static/images/eq-same-not-changed.png +0 -0
  16. package/static/images/ne-not-same-changed.png +0 -0
  17. package/static/images/ne-not-same-not-changed.png +0 -0
  18. package/static/images/ne-same-changed.png +0 -0
  19. package/static/images/ne-same-not-changed.png +0 -0
  20. package/static/images/octaeder.svg +993 -0
  21. package/static/images/sort-asc-lead.png +0 -0
  22. package/static/images/sort-asc.png +0 -0
  23. package/static/images/sort-desc-lead.png +0 -0
  24. package/static/images/sort-desc.png +0 -0
  25. package/static/images/sort-not.png +0 -0
  26. package/static/index.html +72 -647
  27. package/static/linny-r.css +199 -417
  28. package/static/scripts/linny-r-gui-actor-manager.js +340 -0
  29. package/static/scripts/linny-r-gui-chart-manager.js +944 -0
  30. package/static/scripts/linny-r-gui-constraint-editor.js +681 -0
  31. package/static/scripts/linny-r-gui-controller.js +4005 -0
  32. package/static/scripts/linny-r-gui-dataset-manager.js +1176 -0
  33. package/static/scripts/linny-r-gui-documentation-manager.js +739 -0
  34. package/static/scripts/linny-r-gui-equation-manager.js +307 -0
  35. package/static/scripts/linny-r-gui-experiment-manager.js +1944 -0
  36. package/static/scripts/linny-r-gui-expression-editor.js +449 -0
  37. package/static/scripts/linny-r-gui-file-manager.js +392 -0
  38. package/static/scripts/linny-r-gui-finder.js +727 -0
  39. package/static/scripts/linny-r-gui-model-autosaver.js +230 -0
  40. package/static/scripts/linny-r-gui-monitor.js +448 -0
  41. package/static/scripts/linny-r-gui-paper.js +2789 -0
  42. package/static/scripts/linny-r-gui-receiver.js +323 -0
  43. package/static/scripts/linny-r-gui-repository-browser.js +819 -0
  44. package/static/scripts/linny-r-gui-scale-unit-manager.js +244 -0
  45. package/static/scripts/linny-r-gui-sensitivity-analysis.js +778 -0
  46. package/static/scripts/linny-r-gui-undo-redo.js +560 -0
  47. package/static/scripts/linny-r-model.js +27 -11
  48. package/static/scripts/linny-r-utils.js +17 -2
  49. package/static/scripts/linny-r-vm.js +31 -12
  50. package/static/scripts/linny-r-gui.js +0 -16761
package/static/index.html CHANGED
@@ -121,7 +121,16 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
121
121
  document.getElementById('doc-head').appendChild(link);
122
122
  // Reload the scripts in their proper sequence, i.e., such that all
123
123
  // classes are initialized before their instances are created
124
- loadScripts(['-config', '-model', '-ctrl', '-gui', '-vm', '-utils'], t);
124
+ loadScripts(['-config', '-model', '-ctrl',
125
+ '-gui-paper', '-gui-controller', '-gui-monitor',
126
+ '-gui-file-manager', '-gui-expression-editor',
127
+ '-gui-model-autosaver', '-gui-scale-unit-manager',
128
+ '-gui-actor-manager', '-gui-constraint-editor',
129
+ '-gui-repository-browser', '-gui-dataset-manager',
130
+ '-gui-equation-manager', '-gui-chart-manager',
131
+ '-gui-sensitivity-analysis', '-gui-experiment-manager',
132
+ '-gui-documentation-manager', '-gui-finder', '-gui-receiver',
133
+ '-gui-undo-redo', '-vm', '-utils'], t);
125
134
  }
126
135
  }
127
136
 
@@ -877,9 +886,9 @@ NOTE: Unit symbols are case-sensitive, so BTU ≠ Btu">
877
886
  will discard changes you made to the current model. Continue?
878
887
  </div>
879
888
  <div id="confirm-load-from-repo-buttons">
880
- <img class="ok-btn big-btn" src="images/ok.png">
889
+ <img class="ok-btn" src="images/ok.png">
881
890
  Yes
882
- <img class="cancel-btn big-btn" src="images/cancel.png">
891
+ <img class="cancel-btn" src="images/cancel.png">
883
892
  No
884
893
  </div>
885
894
  </div>
@@ -898,9 +907,9 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
898
907
  <span id="confirm-delete-from-repo-name"></span>?
899
908
  </div>
900
909
  <div id="confirm-delete-from-repo-buttons">
901
- <img class="ok-btn big-btn" src="images/ok.png">
910
+ <img class="ok-btn" src="images/ok.png">
902
911
  Yes
903
- <img class="cancel-btn big-btn" src="images/cancel.png">
912
+ <img class="cancel-btn" src="images/cancel.png">
904
913
  No
905
914
  </div>
906
915
  </div>
@@ -1016,7 +1025,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1016
1025
  <tr>
1017
1026
  <td>Actor:</td>
1018
1027
  <td>
1019
- <input id="add-process-actor-name" style="width:223px" type="text"
1028
+ <input id="add-process-actor" style="width:223px" type="text"
1020
1029
  autocomplete="off">
1021
1030
  </td>
1022
1031
  </tr>
@@ -1065,6 +1074,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1065
1074
  <div id="cluster-dlg" class="inp-dlg">
1066
1075
  <div class="dlg-title">
1067
1076
  <span id="cluster-action">Add</span> cluster
1077
+ <span id="cluster-group"></span>
1068
1078
  <img class="cancel-btn" src="images/cancel.png">
1069
1079
  <img class="ok-btn" src="images/ok.png">
1070
1080
  </div>
@@ -1076,7 +1086,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1076
1086
  </tr>
1077
1087
  <tr>
1078
1088
  <td>Actor:</td>
1079
- <td><input id="cluster-actor-name" style="width:270px"
1089
+ <td><input id="cluster-actor" style="width:270px"
1080
1090
  type="text" autocomplete="off"></td>
1081
1091
  </tr>
1082
1092
  </table>
@@ -1136,11 +1146,14 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1136
1146
  <div id="link-modal" class="modal">
1137
1147
  <div id="link-dlg" class="inp-dlg">
1138
1148
  <div class="dlg-title">
1139
- <!-- link arrow symbol depends on type of link: product => solid, data => dashed -->
1140
- Link X <span id="link-arrow-1">&#x279D;</span> Y:
1141
- <div id="link-from-name" title="FROM"></div>
1142
- <span id="link-arrow-2">&#x279D;</span>
1143
- <div id="link-to-name" title="TO"></div>
1149
+ <!-- link arrow symbol depends on type of link: product => solid,
1150
+ data => dashed; no spacing between <span> elements, as these
1151
+ elements have left and right padding. -->
1152
+ <div id="link-x-y">Link X<span id="link-arrow-1">&#x279D;</span>Y:</div>
1153
+ <div id="link-from-name" title="FROM">
1154
+ </div><span id="link-arrow-2">&#x279D;</span><div id="link-to-name" title="TO">
1155
+ </div>
1156
+ <span id="link-group"></span>
1144
1157
  <img class="cancel-btn" src="images/cancel.png">
1145
1158
  <img class="ok-btn" src="images/ok.png">
1146
1159
  </div>
@@ -1231,13 +1244,14 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1231
1244
  <div id="constraint-modal" class="modal">
1232
1245
  <div id="constraint-dlg" class="inp-dlg">
1233
1246
  <div class="dlg-title">Constraint X &DDotrahd; Y
1247
+ <span id="constraint-group"></span>
1234
1248
  <div style="display: inline-block; margin-left: 219px; margin-bottom: -7px">
1235
1249
  <img class="cancel-btn" src="images/cancel.png">
1236
1250
  <img class="ok-btn" src="images/ok.png"
1237
1251
  style="margin-left: 4px; margin-bottom: 3px">
1238
1252
  </div>
1239
1253
  </div>
1240
- <div id="ce-button-bar">
1254
+ <div id="constraint-button-bar">
1241
1255
  <img id="add-point-btn" class="mbtn enab" src="images/add.png"
1242
1256
  title="Add new point to selected bound line">
1243
1257
  <img id="del-point-btn" class="mbtn disab"
@@ -1256,27 +1270,27 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1256
1270
  <input id="bl-selectors" type="text" placeholder="(any)"
1257
1271
  title="When specified, bound line will constrain only in matching experiment runs">
1258
1272
  </div>
1259
- <div id="ce-y-label">% range of <span id="ce-to-name"></span></div>
1273
+ <div id="constraint-y-label">% range of <span id="constraint-to-name"></span></div>
1260
1274
  <!-- NOTE: this is the div that will contain the chart's SVG image -->
1261
- <div id="ce-container"></div>
1262
- <div id="ce-x-label">% range of <span id="ce-from-name"></span></div>
1263
- <div id="ce-pos-x">X = 0</div>
1264
- <div id="ce-pos-y">Y = 0</div>
1265
- <div id="ce-point" title="Selected point"></div>
1266
- <div id="ce-equation" title="Equation for line segment"></div>
1267
- <div id="ce-bottom-div">
1268
- <div id="ce-no-slack-div"
1275
+ <div id="constraint-container"></div>
1276
+ <div id="constraint-x-label">% range of <span id="constraint-from-name"></span></div>
1277
+ <div id="constraint-pos-x">X = 0</div>
1278
+ <div id="constraint-pos-y">Y = 0</div>
1279
+ <div id="constraint-point" title="Selected point"></div>
1280
+ <div id="constraint-equation" title="Equation for line segment"></div>
1281
+ <div id="constraint-bottom-div">
1282
+ <div id="constraint-no-slack-div"
1269
1283
  title="Check to enforce bounds (Caution: this may make model infeasible)">
1270
- <div id="ce-no-slack" class="box clear"></div>
1271
- <div id="ce-no-slack-lbl">No slack</div>
1284
+ <div id="constraint-no-slack" class="box clear"></div>
1285
+ <div id="constraint-no-slack-lbl">No slack</div>
1272
1286
  </div>
1273
- <div id="ce-soc">
1287
+ <div id="constraint-soc">
1274
1288
  <label>Attributed share of cost:</label>
1275
- <select id="ce-soc-direct">
1289
+ <select id="constraint-soc-direct">
1276
1290
  <option value="1">X&rarr;Y</option>
1277
1291
  <option value="-1">Y&rarr;X</option>
1278
1292
  </selector>
1279
- <input id="ce-share-of-cost" type="text" autocomplete="off"><label>%</label>
1293
+ <input id="constraint-share-of-cost" type="text" autocomplete="off"><label>%</label>
1280
1294
  </div>
1281
1295
  </div>
1282
1296
  </div>
@@ -1287,6 +1301,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1287
1301
  <div id="process-dlg" class="inp-dlg">
1288
1302
  <div class="dlg-title">
1289
1303
  Process properties
1304
+ <span id="process-group"></span>
1290
1305
  <img class="cancel-btn" src="images/cancel.png">
1291
1306
  <img class="ok-btn" src="images/ok.png">
1292
1307
  </div>
@@ -1303,7 +1318,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1303
1318
  <img id="process-UB-x" class="sbtn enab" src="images/edit.png"
1304
1319
  title="Edit expression for upper process bound">
1305
1320
  <!-- "equal bounds" button is displayed middle-left of the two input fields -->
1306
- <div id="process-UB-equal" class="nebtn" title="Set equal bounds"></div>
1321
+ <div id="process-UB-equal" class="bbtn ne" title="Set equal bounds"></div>
1307
1322
  <div id="process-IL-lbl">Initial level:</div>
1308
1323
  <input id="process-IL" type="text" autocomplete="off">
1309
1324
  <img id="process-IL-x" class="sbtn enab" src="images/edit.png"
@@ -1320,9 +1335,9 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1320
1335
  </div>
1321
1336
  <div id="process-pace-div">
1322
1337
  Level change frequency: 1/
1323
- <input id="process-pace" type="text" autocomplete="off">
1338
+ <input id="process-LCF" type="text" autocomplete="off">
1324
1339
  time step(s)
1325
- <img id="process-pace-x" class="sbtn enab" src="images/edit.png"
1340
+ <img id="process-LCF-x" class="sbtn enab" src="images/edit.png"
1326
1341
  title="Edit expression for level change frequency">
1327
1342
  </div>
1328
1343
  <div id="process-collapsed-div">
@@ -1337,6 +1352,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1337
1352
  <div id="product-dlg" class="inp-dlg">
1338
1353
  <div class="dlg-title">
1339
1354
  Product properties
1355
+ <span id="product-group"></span>
1340
1356
  <img class="cancel-btn" src="images/cancel.png">
1341
1357
  <img class="ok-btn" src="images/ok.png">
1342
1358
  </div>
@@ -1371,7 +1387,7 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1371
1387
  <img id="product-UB-x" class="sbtn enab" src="images/edit.png"
1372
1388
  title="Edit expression for upper product bound">
1373
1389
  <!-- "equal bounds" button is displayed middle-left of the two input fields -->
1374
- <div id="product-UB-equal" class="nebtn" title="Set equal bounds"></div>
1390
+ <div id="product-UB-equal" class="bbtn ne" title="Set equal bounds"></div>
1375
1391
  <div id="product-IL-lbl">Initial level:</div>
1376
1392
  <input id="product-IL" type="text" autocomplete="off">
1377
1393
  <img id="product-IL-x" class="sbtn enab" src="images/edit.png"
@@ -1456,9 +1472,9 @@ NOTE: Unit symbols are case-sensitive, so BTU &ne; Btu">
1456
1472
  to this cluster?
1457
1473
  </div>
1458
1474
  <div id="move-buttons">
1459
- <img class="ok-btn big-btn" src="images/ok.png">
1475
+ <img class="ok-btn" src="images/ok.png">
1460
1476
  Yes
1461
- <img class="cancel-btn big-btn" src="images/cancel.png">
1477
+ <img class="cancel-btn" src="images/cancel.png">
1462
1478
  No
1463
1479
  </div>
1464
1480
  </div>
@@ -2644,6 +2660,9 @@ where X can be one or several of these letters: ABCDELPQ">
2644
2660
  <div id="finder-status">
2645
2661
  <span id="finder-count"></span> found
2646
2662
  </div>
2663
+ <img id="finder-edit-btn" class="btn enab"
2664
+ src="images/edit.png"
2665
+ title="Edit attributes">
2647
2666
  <img id="finder-copy-btn" class="btn enab"
2648
2667
  src="images/table-to-clpbrd.png"
2649
2668
  title="Copy entity attributes to clipboard">
@@ -2804,14 +2823,31 @@ where X can be one or several of these letters: ABCDELPQ">
2804
2823
  </div>
2805
2824
  <div id="check-update-msg"></div>
2806
2825
  <div id="check-update-buttons">
2807
- <img class="ok-btn big-btn" src="images/ok.png">
2826
+ <img class="ok-btn" src="images/ok.png">
2808
2827
  Shut down server to install new version
2809
- <img class="cancel-btn big-btn" src="images/cancel.png">
2828
+ <img class="cancel-btn" src="images/cancel.png">
2810
2829
  Continue using current version
2811
2830
  </div>
2812
2831
  </div>
2813
2832
  </div>
2814
2833
 
2834
+ <!-- the UPDATING modal notifies that an update is in progress -->
2835
+ <div id="updating-modal" class="modal">
2836
+ <div id="updating-dlg" class="inp-dlg">
2837
+ <div class="dlg-title" style="background-color: #cc88b0">
2838
+ Linny-R software update in progress
2839
+ </div>
2840
+ <div id="updating-msg">
2841
+ Updating should take only a few seconds.<br>
2842
+ After completion, Linny-R will reload.
2843
+ Your browser will prompt you to confirm.
2844
+ </div>
2845
+ <div id="updating-icon">
2846
+ <img src="images/octaeder.svg">
2847
+ </div>
2848
+ </div>
2849
+ </div>
2850
+
2815
2851
  <!-- the PASTE dialog prompts for a prefix and parameter bindings -->
2816
2852
  <div id="paste-modal" class="modal">
2817
2853
  <div id="paste-dlg" class="inp-dlg">
@@ -2864,618 +2900,7 @@ where X can be one or several of these letters: ABCDELPQ">
2864
2900
  <!--- rotating Linny-R logo icon -->
2865
2901
  <div id="rotating-icon">
2866
2902
  <div>
2867
- <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"
2868
- viewBox="24 32 232 231" preserveAspectRatio="xMidYMid">
2869
- <style>
2870
- path.roic {
2871
- stroke: #8264a0;
2872
- stroke-width: 1px;
2873
- stroke-linejoin: round;
2874
- stroke-opacity: 1;
2875
- opacity: 0.45;
2876
- }
2877
- </style>
2878
- <g id="fr00">
2879
- <path id="ABC0" class="roic" style="fill:#960041" d="M40 96L167 78L122 32z"></path>
2880
- <path id="ADE0" class="roic" style="fill:#ebebe1" d="M40 96L61 189L120 208z"></path>
2881
- <path id="AEB0" class="roic" style="fill:#fab8ea" d="M40 96L120 208L167 78z"></path>
2882
- <path id="FEB0" class="roic" style="fill:#3236c8" d="M215 160L120 208L167 78z"></path>
2883
- <path id="FBC0" class="roic" style="fill:#ebebe1" d="M215 160L167 78L122 32z"></path>
2884
- <path id="FDE0" class="roic" style="fill:#960041" d="M215 160L61 189L120 208z"></path>
2885
- <path id="FCD0" class="roic" style="fill:#fab8ea" d="M215 160L122 32L61 189z"></path>
2886
- <path id="ACD0" class="roic" style="fill:#3236c8" d="M40 96L122 32L61 189z"></path>
2887
- </g>
2888
- <g id="fr01">
2889
- <path id="ABC1" class="roic" style="fill:#960041" d="M45 96L172 77L115 32z"></path>
2890
- <path id="ADE1" class="roic" style="fill:#ebebe1" d="M45 96L54 188L125 208z"></path>
2891
- <path id="AEB1" class="roic" style="fill:#fab8ea" d="M45 96L125 208L172 77z"></path>
2892
- <path id="FEB1" class="roic" style="fill:#3236c8" d="M212 161L125 208L172 77z"></path>
2893
- <path id="FBC1" class="roic" style="fill:#ebebe1" d="M212 161L172 77L115 32z"></path>
2894
- <path id="FCD1" class="roic" style="fill:#fab8ea" d="M212 161L115 32L54 188z"></path>
2895
- <path id="FDE1" class="roic" style="fill:#960041" d="M212 161L54 188L125 208z"></path>
2896
- <path id="ACD1" class="roic" style="fill:#3236c8" d="M45 96L115 32L54 188z"></path>
2897
- </g>
2898
- <g id="fr02">
2899
- <path id="ABC2" class="roic" style="fill:#960041" d="M51 96L178 76L107 32z"></path>
2900
- <path id="ADE2" class="roic" style="fill:#ebebe1" d="M51 96L48 187L131 208z"></path>
2901
- <path id="AEB2" class="roic" style="fill:#fab8ea" d="M51 96L131 208L178 76z"></path>
2902
- <path id="FEB2" class="roic" style="fill:#3236c8" d="M207 162L131 208L178 76z"></path>
2903
- <path id="FBC2" class="roic" style="fill:#ebebe1" d="M207 162L178 76L107 32z"></path>
2904
- <path id="FCD2" class="roic" style="fill:#fab8ea" d="M207 162L107 32L48 187z"></path>
2905
- <path id="FDE2" class="roic" style="fill:#960041" d="M207 162L48 187L131 208z"></path>
2906
- <path id="ACD2" class="roic" style="fill:#3236c8" d="M51 96L107 32L48 187z"></path>
2907
- </g>
2908
- <g id="fr03">
2909
- <path id="ABC3" class="roic" style="fill:#960041" d="M57 96L184 75L100 32z"></path>
2910
- <path id="ADE3" class="roic" style="fill:#ebebe1" d="M57 96L43 186L136 209z"></path>
2911
- <path id="AEB3" class="roic" style="fill:#fab8ea" d="M57 96L136 209L184 75z"></path>
2912
- <path id="FEB3" class="roic" style="fill:#3236c8" d="M201 163L136 209L184 75z"></path>
2913
- <path id="FBC3" class="roic" style="fill:#ebebe1" d="M201 163L184 75L100 32z"></path>
2914
- <path id="FCD3" class="roic" style="fill:#fab8ea" d="M201 163L100 32L43 186z"></path>
2915
- <path id="FDE3" class="roic" style="fill:#960041" d="M201 163L43 186L136 209z"></path>
2916
- <path id="ACD3" class="roic" style="fill:#3236c8" d="M57 96L100 32L43 186z"></path>
2917
- </g>
2918
- <g id="fr04">
2919
- <path id="ABC4" class="roic" style="fill:#960041" d="M65 97L189 75L93 33z"></path>
2920
- <path id="ADE4" class="roic" style="fill:#ebebe1" d="M65 97L39 185L142 208z"></path>
2921
- <path id="AEB4" class="roic" style="fill:#fab8ea" d="M65 97L142 208L189 75z"></path>
2922
- <path id="FEB4" class="roic" style="fill:#3236c8" d="M195 164L142 208L189 75z"></path>
2923
- <path id="FBC4" class="roic" style="fill:#ebebe1" d="M195 164L189 75L93 33z"></path>
2924
- <path id="FCD4" class="roic" style="fill:#fab8ea" d="M195 164L93 33L39 185z"></path>
2925
- <path id="FDE4" class="roic" style="fill:#960041" d="M195 164L39 185L142 208z"></path>
2926
- <path id="ACD4" class="roic" style="fill:#3236c8" d="M65 97L93 33L39 185z"></path>
2927
- </g>
2928
- <g id="fr05">
2929
- <path id="ABC5" class="roic" style="fill:#960041" d="M73 98L193 74L87 34z"></path>
2930
- <path id="ACD5" class="roic" style="fill:#3236c8" d="M73 98L87 34L36 184z"></path>
2931
- <path id="ADE5" class="roic" style="fill:#ebebe1" d="M73 98L36 184L149 209z"></path>
2932
- <path id="AEB5" class="roic" style="fill:#fab8ea" d="M73 98L149 209L193 74z"></path>
2933
- <path id="FEB5" class="roic" style="fill:#3236c8" d="M186 164L149 209L193 74z"></path>
2934
- <path id="FBC5" class="roic" style="fill:#ebebe1" d="M186 164L193 74L87 34z"></path>
2935
- <path id="FCD5" class="roic" style="fill:#fab8ea" d="M186 164L87 34L36 184z"></path>
2936
- <path id="FDE5" class="roic" style="fill:#960041" d="M186 164L36 184L149 209z"></path>
2937
- </g>
2938
- <g id="fr06">
2939
- <path id="ABC6" class="roic" style="fill:#960041" d="M80 98L198 73L80 35z"></path>
2940
- <path id="ACD6" class="roic" style="fill:#3236c8" d="M80 98L80 35L35 183z"></path>
2941
- <path id="ADE6" class="roic" style="fill:#ebebe1" d="M80 98L35 183L153 209z"></path>
2942
- <path id="AEB6" class="roic" style="fill:#fab8ea" d="M80 98L153 209L198 73z"></path>
2943
- <path id="FEB6" class="roic" style="fill:#3236c8" d="M178 165L153 209L198 73z"></path>
2944
- <path id="FBC6" class="roic" style="fill:#ebebe1" d="M178 165L198 73L80 35z"></path>
2945
- <path id="FCD6" class="roic" style="fill:#fab8ea" d="M178 165L80 35L35 183z"></path>
2946
- <path id="FDE6" class="roic" style="fill:#960041" d="M178 165L35 183L153 209z"></path>
2947
- </g>
2948
- <g id="fr07">
2949
- <path id="ABC7" class="roic" style="fill:#960041" d="M88 99L201 73L74 35z"></path>
2950
- <path id="ACD7" class="roic" style="fill:#3236c8" d="M88 99L74 35L34 181z"></path>
2951
- <path id="ADE7" class="roic" style="fill:#ebebe1" d="M88 99L34 181L158 210z"></path>
2952
- <path id="AEB7" class="roic" style="fill:#fab8ea" d="M88 99L158 210L201 73z"></path>
2953
- <path id="FBC7" class="roic" style="fill:#ebebe1" d="M168 165L201 73L74 35z"></path>
2954
- <path id="FCD7" class="roic" style="fill:#fab8ea" d="M168 165L74 35L34 181z"></path>
2955
- <path id="FDE7" class="roic" style="fill:#960041" d="M168 165L34 181L158 210z"></path>
2956
- <path id="FEB7" class="roic" style="fill:#3236c8" d="M168 165L158 210L201 73z"></path>
2957
- </g>
2958
- <g id="fr08">
2959
- <path id="ABC8" class="roic" style="fill:#960041" d="M96 99L204 72L70 36z"></path>
2960
- <path id="ACD8" class="roic" style="fill:#3236c8" d="M96 99L70 36L34 181z"></path>
2961
- <path id="ADE8" class="roic" style="fill:#ebebe1" d="M96 99L34 181L163 210z"></path>
2962
- <path id="AEB8" class="roic" style="fill:#fab8ea" d="M96 99L163 210L204 72z"></path>
2963
- <path id="FBC8" class="roic" style="fill:#ebebe1" d="M156 165L204 72L70 36z"></path>
2964
- <path id="FCD8" class="roic" style="fill:#fab8ea" d="M156 165L70 36L34 181z"></path>
2965
- <path id="FDE8" class="roic" style="fill:#960041" d="M156 165L34 181L163 210z"></path>
2966
- <path id="FEB8" class="roic" style="fill:#3236c8" d="M156 165L163 210L204 72z"></path>
2967
- </g>
2968
- <g id="fr09">
2969
- <path id="ABC9" class="roic" style="fill:#960041" d="M104 99L206 71L66 37z"></path>
2970
- <path id="ACD9" class="roic" style="fill:#3236c8" d="M104 99L66 37L35 180z"></path>
2971
- <path id="ADE9" class="roic" style="fill:#ebebe1" d="M104 99L35 180L168 212z"></path>
2972
- <path id="AEB9" class="roic" style="fill:#fab8ea" d="M104 99L168 212L206 71z"></path>
2973
- <path id="FBC9" class="roic" style="fill:#ebebe1" d="M144 165L206 71L66 37z"></path>
2974
- <path id="FCD9" class="roic" style="fill:#fab8ea" d="M144 165L66 37L35 180z"></path>
2975
- <path id="FDE9" class="roic" style="fill:#960041" d="M144 165L35 180L168 212z"></path>
2976
- <path id="FEB9" class="roic" style="fill:#3236c8" d="M144 165L168 212L206 71z"></path>
2977
- </g>
2978
- <g id="fr10">
2979
- <path id="ABC10" class="roic" style="fill:#960041" d="M112 99L207 69L62 38z"></path>
2980
- <path id="ACD10" class="roic" style="fill:#3236c8" d="M112 99L62 38L38 179z"></path>
2981
- <path id="ADE10" class="roic" style="fill:#ebebe1" d="M112 99L38 179L171 212z"></path>
2982
- <path id="AEB10" class="roic" style="fill:#fab8ea" d="M112 99L171 212L207 69z"></path>
2983
- <path id="FBC10" class="roic" style="fill:#ebebe1" d="M132 166L207 69L62 38z"></path>
2984
- <path id="FCD10" class="roic" style="fill:#fab8ea" d="M132 166L62 38L38 179z"></path>
2985
- <path id="FDE10" class="roic" style="fill:#960041" d="M132 166L38 179L171 212z"></path>
2986
- <path id="FEB10" class="roic" style="fill:#3236c8" d="M132 166L171 212L207 69z"></path>
2987
- </g>
2988
- <g id="fr11">
2989
- <path id="ABC11" class="roic" style="fill:#960041" d="M120 99L207 68L59 39z"></path>
2990
- <path id="ACD11" class="roic" style="fill:#3236c8" d="M120 99L59 39L40 178z"></path>
2991
- <path id="ADE11" class="roic" style="fill:#ebebe1" d="M120 99L40 178L175 214z"></path>
2992
- <path id="AEB11" class="roic" style="fill:#fab8ea" d="M120 99L175 214L207 68z"></path>
2993
- <path id="FBC11" class="roic" style="fill:#ebebe1" d="M120 166L207 68L59 39z"></path>
2994
- <path id="FCD11" class="roic" style="fill:#fab8ea" d="M120 166L59 39L40 178z"></path>
2995
- <path id="FDE11" class="roic" style="fill:#960041" d="M120 166L40 178L175 214z"></path>
2996
- <path id="FEB11" class="roic" style="fill:#3236c8" d="M120 166L175 214L207 68z"></path>
2997
- </g>
2998
- <g id="fr12">
2999
- <path id="ABC12" class="roic" style="fill:#960041" d="M129 99L206 67L57 40z"></path>
3000
- <path id="ACD12" class="roic" style="fill:#3236c8" d="M129 99L57 40L44 177z"></path>
3001
- <path id="ADE12" class="roic" style="fill:#ebebe1" d="M129 99L44 177L178 214z"></path>
3002
- <path id="AEB12" class="roic" style="fill:#fab8ea" d="M129 99L178 214L206 67z"></path>
3003
- <path id="FBC12" class="roic" style="fill:#ebebe1" d="M108 166L206 67L57 40z"></path>
3004
- <path id="FCD12" class="roic" style="fill:#fab8ea" d="M108 166L57 40L44 177z"></path>
3005
- <path id="FDE12" class="roic" style="fill:#960041" d="M108 166L44 177L178 214z"></path>
3006
- <path id="FEB12" class="roic" style="fill:#3236c8" d="M108 166L178 214L206 67z"></path>
3007
- </g>
3008
- <g id="fr13">
3009
- <path id="ABC13" class="roic" style="fill:#960041" d="M137 98L204 66L57 42z"></path>
3010
- <path id="ACD13" class="roic" style="fill:#3236c8" d="M137 98L57 42L49 176z"></path>
3011
- <path id="ADE13" class="roic" style="fill:#ebebe1" d="M137 98L49 176L181 215z"></path>
3012
- <path id="AEB13" class="roic" style="fill:#fab8ea" d="M137 98L181 215L204 66z"></path>
3013
- <path id="FBC13" class="roic" style="fill:#ebebe1" d="M96 166L204 66L57 42z"></path>
3014
- <path id="FCD13" class="roic" style="fill:#fab8ea" d="M96 166L57 42L49 176z"></path>
3015
- <path id="FDE13" class="roic" style="fill:#960041" d="M96 166L49 176L181 215z"></path>
3016
- <path id="FEB13" class="roic" style="fill:#3236c8" d="M96 166L181 215L204 66z"></path>
3017
- </g>
3018
- <g id="fr14">
3019
- <path id="ABC14" class="roic" style="fill:#960041" d="M145 99L200 65L56 43z"></path>
3020
- <path id="ACD14" class="roic" style="fill:#3236c8" d="M145 99L56 43L54 175z"></path>
3021
- <path id="ADE14" class="roic" style="fill:#ebebe1" d="M145 99L54 175L183 216z"></path>
3022
- <path id="AEB14" class="roic" style="fill:#fab8ea" d="M145 99L183 216L200 65z"></path>
3023
- <path id="FBC14" class="roic" style="fill:#ebebe1" d="M85 165L200 65L56 43z"></path>
3024
- <path id="FCD14" class="roic" style="fill:#fab8ea" d="M85 165L56 43L54 175z"></path>
3025
- <path id="FDE14" class="roic" style="fill:#960041" d="M85 165L54 175L183 216z"></path>
3026
- <path id="FEB14" class="roic" style="fill:#3236c8" d="M85 165L183 216L200 65z"></path>
3027
- </g>
3028
- <g id="fr15">
3029
- <path id="ABC15" class="roic" style="fill:#960041" d="M153 99L197 64L56 44z"></path>
3030
- <path id="ACD15" class="roic" style="fill:#3236c8" d="M153 99L56 44L58 174z"></path>
3031
- <path id="ADE15" class="roic" style="fill:#ebebe1" d="M153 99L58 174L184 218z"></path>
3032
- <path id="AEB15" class="roic" style="fill:#fab8ea" d="M153 99L184 218L197 64z"></path>
3033
- <path id="FBC15" class="roic" style="fill:#ebebe1" d="M74 164L197 64L56 44z"></path>
3034
- <path id="FCD15" class="roic" style="fill:#fab8ea" d="M74 164L56 44L58 174z"></path>
3035
- <path id="FDE15" class="roic" style="fill:#960041" d="M74 164L58 174L184 218z"></path>
3036
- <path id="FEB15" class="roic" style="fill:#3236c8" d="M74 164L184 218L197 64z"></path>
3037
- </g>
3038
- <g id="fr16">
3039
- <path id="FCD16" class="roic" style="fill:#fab8ea" d="M63 164L57 45L65 174z"></path>
3040
- <path id="ABC16" class="roic" style="fill:#960041" d="M161 99L192 62L57 45z"></path>
3041
- <path id="ACD16" class="roic" style="fill:#3236c8" d="M161 99L57 45L65 174z"></path>
3042
- <path id="ADE16" class="roic" style="fill:#ebebe1" d="M161 99L65 174L184 219z"></path>
3043
- <path id="AEB16" class="roic" style="fill:#fab8ea" d="M161 99L184 219L192 62z"></path>
3044
- <path id="FBC16" class="roic" style="fill:#ebebe1" d="M63 164L192 62L57 45z"></path>
3045
- <path id="FDE16" class="roic" style="fill:#960041" d="M63 164L65 174L184 219z"></path>
3046
- <path id="FEB16" class="roic" style="fill:#3236c8" d="M63 164L184 219L192 62z"></path>
3047
- </g>
3048
- <g id="fr17">
3049
- <path id="FCD17" class="roic" style="fill:#fab8ea" d="M54 164L59 46L72 173z"></path>
3050
- <path id="ABC17" class="roic" style="fill:#960041" d="M168 98L185 62L59 46z"></path>
3051
- <path id="ACD17" class="roic" style="fill:#3236c8" d="M168 98L59 46L72 173z"></path>
3052
- <path id="ADE17" class="roic" style="fill:#ebebe1" d="M168 98L72 173L184 219z"></path>
3053
- <path id="AEB17" class="roic" style="fill:#fab8ea" d="M168 98L184 219L185 62z"></path>
3054
- <path id="FBC17" class="roic" style="fill:#ebebe1" d="M54 164L185 62L59 46z"></path>
3055
- <path id="FDE17" class="roic" style="fill:#960041" d="M54 164L72 173L184 219z"></path>
3056
- <path id="FEB17" class="roic" style="fill:#3236c8" d="M54 164L184 219L185 62z"></path>
3057
- </g>
3058
- <g id="fr18">
3059
- <path id="FDE18" class="roic" style="fill:#960041" d="M45 164L78 171L184 221z"></path>
3060
- <path id="FCD18" class="roic" style="fill:#fab8ea" d="M45 164L62 47L78 171z"></path>
3061
- <path id="ABC18" class="roic" style="fill:#960041" d="M176 98L178 61L62 47z"></path>
3062
- <path id="ACD18" class="roic" style="fill:#3236c8" d="M176 98L62 47L78 171z"></path>
3063
- <path id="ADE18" class="roic" style="fill:#ebebe1" d="M176 98L78 171L184 221z"></path>
3064
- <path id="AEB18" class="roic" style="fill:#fab8ea" d="M176 98L184 221L178 61z"></path>
3065
- <path id="FBC18" class="roic" style="fill:#ebebe1" d="M45 164L178 61L62 47z"></path>
3066
- <path id="FEB18" class="roic" style="fill:#3236c8" d="M45 164L184 221L178 61z"></path>
3067
- </g>
3068
- <g id="fr19">
3069
- <path id="FDE19" class="roic" style="fill:#960041" d="M39 163L85 171L183 223z"></path>
3070
- <path id="FCD19" class="roic" style="fill:#fab8ea" d="M39 163L65 48L85 171z"></path>
3071
- <path id="ABC19" class="roic" style="fill:#960041" d="M184 97L170 60L65 48z"></path>
3072
- <path id="ACD19" class="roic" style="fill:#3236c8" d="M184 97L65 48L85 171z"></path>
3073
- <path id="ADE19" class="roic" style="fill:#ebebe1" d="M184 97L85 171L183 223z"></path>
3074
- <path id="AEB19" class="roic" style="fill:#fab8ea" d="M184 97L183 223L170 60z"></path>
3075
- <path id="FBC19" class="roic" style="fill:#ebebe1" d="M39 163L170 60L65 48z"></path>
3076
- <path id="FEB19" class="roic" style="fill:#3236c8" d="M39 163L183 223L170 60z"></path>
3077
- </g>
3078
- <g id="fr20">
3079
- <path id="FDE20" class="roic" style="fill:#960041" d="M33 162L92 171L180 224z"></path>
3080
- <path id="FCD20" class="roic" style="fill:#fab8ea" d="M33 162L68 49L92 171z"></path>
3081
- <path id="ABC20" class="roic" style="fill:#960041" d="M190 97L160 60L68 49z"></path>
3082
- <path id="ACD20" class="roic" style="fill:#3236c8" d="M190 97L68 49L92 171z"></path>
3083
- <path id="ADE20" class="roic" style="fill:#ebebe1" d="M190 97L92 171L180 224z"></path>
3084
- <path id="AEB20" class="roic" style="fill:#fab8ea" d="M190 97L180 224L160 60z"></path>
3085
- <path id="FBC20" class="roic" style="fill:#ebebe1" d="M33 162L160 60L68 49z"></path>
3086
- <path id="FEB20" class="roic" style="fill:#3236c8" d="M33 162L180 224L160 60z"></path>
3087
- </g>
3088
- <g id="fr21">
3089
- <path id="FDE21" class="roic" style="fill:#960041" d="M28 161L99 171L177 225z"></path>
3090
- <path id="FCD21" class="roic" style="fill:#fab8ea" d="M28 161L72 50L99 171z"></path>
3091
- <path id="ABC21" class="roic" style="fill:#960041" d="M197 96L151 59L72 50z"></path>
3092
- <path id="ACD21" class="roic" style="fill:#3236c8" d="M197 96L72 50L99 171z"></path>
3093
- <path id="ADE21" class="roic" style="fill:#ebebe1" d="M197 96L99 171L177 225z"></path>
3094
- <path id="AEB21" class="roic" style="fill:#fab8ea" d="M197 96L177 225L151 59z"></path>
3095
- <path id="FBC21" class="roic" style="fill:#ebebe1" d="M28 161L151 59L72 50z"></path>
3096
- <path id="FEB21" class="roic" style="fill:#3236c8" d="M28 161L177 225L151 59z"></path>
3097
- </g>
3098
- <g id="fr22">
3099
- <path id="FDE22" class="roic" style="fill:#960041" d="M25 161L106 171L173 226z"></path>
3100
- <path id="FCD22" class="roic" style="fill:#fab8ea" d="M25 161L76 51L106 171z"></path>
3101
- <path id="ABC22" class="roic" style="fill:#960041" d="M201 95L140 59L76 51z"></path>
3102
- <path id="ACD22" class="roic" style="fill:#3236c8" d="M201 95L76 51L106 171z"></path>
3103
- <path id="ADE22" class="roic" style="fill:#ebebe1" d="M201 95L106 171L173 226z"></path>
3104
- <path id="AEB22" class="roic" style="fill:#fab8ea" d="M201 95L173 226L140 59z"></path>
3105
- <path id="FBC22" class="roic" style="fill:#ebebe1" d="M25 161L140 59L76 51z"></path>
3106
- <path id="FEB22" class="roic" style="fill:#3236c8" d="M25 161L173 226L140 59z"></path>
3107
- </g>
3108
- <g id="fr23">
3109
- <path id="FDE23" class="roic" style="fill:#960041" d="M24 160L114 171L168 227z"></path>
3110
- <path id="FCD23" class="roic" style="fill:#fab8ea" d="M24 160L81 51L114 171z"></path>
3111
- <path id="ABC23" class="roic" style="fill:#960041" d="M206 95L130 58L81 51z"></path>
3112
- <path id="ACD23" class="roic" style="fill:#3236c8" d="M206 95L81 51L114 171z"></path>
3113
- <path id="ADE23" class="roic" style="fill:#ebebe1" d="M206 95L114 171L168 227z"></path>
3114
- <path id="AEB23" class="roic" style="fill:#fab8ea" d="M206 95L168 227L130 58z"></path>
3115
- <path id="FBC23" class="roic" style="fill:#ebebe1" d="M24 160L130 58L81 51z"></path>
3116
- <path id="FEB23" class="roic" style="fill:#3236c8" d="M24 160L168 227L130 58z"></path>
3117
- </g>
3118
- <g id="fr24">
3119
- <path id="FDE24" class="roic" style="fill:#960041" d="M24 159L121 170L164 228z"></path>
3120
- <path id="FCD24" class="roic" style="fill:#fab8ea" d="M24 159L86 52L121 170z"></path>
3121
- <path id="ABC24" class="roic" style="fill:#960041" d="M210 94L119 58L86 52z"></path>
3122
- <path id="ACD24" class="roic" style="fill:#3236c8" d="M210 94L86 52L121 170z"></path>
3123
- <path id="ADE24" class="roic" style="fill:#ebebe1" d="M210 94L121 170L164 228z"></path>
3124
- <path id="AEB24" class="roic" style="fill:#fab8ea" d="M210 94L164 228L119 58z"></path>
3125
- <path id="FBC24" class="roic" style="fill:#ebebe1" d="M24 159L119 58L86 52z"></path>
3126
- <path id="FEB24" class="roic" style="fill:#3236c8" d="M24 159L164 228L119 58z"></path>
3127
- </g>
3128
- <g id="fr25">
3129
- <path id="FDE25" class="roic" style="fill:#960041" d="M24 158L129 170L157 230z"></path>
3130
- <path id="FCD25" class="roic" style="fill:#fab8ea" d="M24 158L91 52L129 170z"></path>
3131
- <path id="ACD25" class="roic" style="fill:#3236c8" d="M214 93L91 52L129 170z"></path>
3132
- <path id="ADE25" class="roic" style="fill:#ebebe1" d="M214 93L129 170L157 230z"></path>
3133
- <path id="AEB25" class="roic" style="fill:#fab8ea" d="M214 93L157 230L108 59z"></path>
3134
- <path id="FBC25" class="roic" style="fill:#ebebe1" d="M24 158L108 59L91 52z"></path>
3135
- <path id="FEB25" class="roic" style="fill:#3236c8" d="M24 158L157 230L108 59z"></path>
3136
- <path id="ABC25" class="roic" style="fill:#960041" d="M214 93L108 59L91 52z"></path>
3137
- </g>
3138
- <g id="fr26">
3139
- <path id="FDE26" class="roic" style="fill:#960041" d="M24 158L136 170L152 230z"></path>
3140
- <path id="FCD26" class="roic" style="fill:#fab8ea" d="M24 158L96 53L136 170z"></path>
3141
- <path id="ACD26" class="roic" style="fill:#3236c8" d="M216 93L96 53L136 170z"></path>
3142
- <path id="ADE26" class="roic" style="fill:#ebebe1" d="M216 93L136 170L152 230z"></path>
3143
- <path id="AEB26" class="roic" style="fill:#fab8ea" d="M216 93L152 230L98 60z"></path>
3144
- <path id="FBC26" class="roic" style="fill:#ebebe1" d="M24 158L98 60L96 53z"></path>
3145
- <path id="FEB26" class="roic" style="fill:#3236c8" d="M24 158L152 230L98 60z"></path>
3146
- <path id="ABC26" class="roic" style="fill:#960041" d="M216 93L98 60L96 53z"></path>
3147
- </g>
3148
- <g id="fr27">
3149
- <path id="FBC27" class="roic" style="fill:#ebebe1" d="M27 157L87 59L103 54z"></path>
3150
- <path id="FDE27" class="roic" style="fill:#960041" d="M27 157L144 171L144 230z"></path>
3151
- <path id="FCD27" class="roic" style="fill:#fab8ea" d="M27 157L103 54L144 171z"></path>
3152
- <path id="ACD27" class="roic" style="fill:#3236c8" d="M216 92L103 54L144 171z"></path>
3153
- <path id="ADE27" class="roic" style="fill:#ebebe1" d="M216 92L144 171L144 230z"></path>
3154
- <path id="AEB27" class="roic" style="fill:#fab8ea" d="M216 92L144 230L87 59z"></path>
3155
- <path id="FEB27" class="roic" style="fill:#3236c8" d="M27 157L144 230L87 59z"></path>
3156
- <path id="ABC27" class="roic" style="fill:#960041" d="M216 92L87 59L103 54z"></path>
3157
- </g>
3158
- <g id="fr28">
3159
- <path id="FBC28" class="roic" style="fill:#ebebe1" d="M30 156L77 60L108 53z"></path>
3160
- <path id="FDE28" class="roic" style="fill:#960041" d="M30 156L152 171L137 230z"></path>
3161
- <path id="FCD28" class="roic" style="fill:#fab8ea" d="M30 156L108 53L152 171z"></path>
3162
- <path id="ACD28" class="roic" style="fill:#3236c8" d="M217 92L108 53L152 171z"></path>
3163
- <path id="ADE28" class="roic" style="fill:#ebebe1" d="M217 92L152 171L137 230z"></path>
3164
- <path id="AEB28" class="roic" style="fill:#fab8ea" d="M217 92L137 230L77 60z"></path>
3165
- <path id="FEB28" class="roic" style="fill:#3236c8" d="M30 156L137 230L77 60z"></path>
3166
- <path id="ABC28" class="roic" style="fill:#960041" d="M217 92L77 60L108 53z"></path>
3167
- </g>
3168
- <g id="fr29">
3169
- <path id="FBC29" class="roic" style="fill:#ebebe1" d="M35 155L69 59L114 54z"></path>
3170
- <path id="FDE29" class="roic" style="fill:#960041" d="M35 155L159 172L130 231z"></path>
3171
- <path id="FCD29" class="roic" style="fill:#fab8ea" d="M35 155L114 54L159 172z"></path>
3172
- <path id="ACD29" class="roic" style="fill:#3236c8" d="M216 91L114 54L159 172z"></path>
3173
- <path id="ADE29" class="roic" style="fill:#ebebe1" d="M216 91L159 172L130 231z"></path>
3174
- <path id="AEB29" class="roic" style="fill:#fab8ea" d="M216 91L130 231L69 59z"></path>
3175
- <path id="FEB29" class="roic" style="fill:#3236c8" d="M35 155L130 231L69 59z"></path>
3176
- <path id="ABC29" class="roic" style="fill:#960041" d="M216 91L69 59L114 54z"></path>
3177
- </g>
3178
- <g id="fr30">
3179
- <path id="FBC30" class="roic" style="fill:#ebebe1" d="M40 155L60 60L120 53z"></path>
3180
- <path id="FDE30" class="roic" style="fill:#960041" d="M40 155L166 172L122 231z"></path>
3181
- <path id="FCD30" class="roic" style="fill:#fab8ea" d="M40 155L120 53L166 172z"></path>
3182
- <path id="ACD30" class="roic" style="fill:#3236c8" d="M216 90L120 53L166 172z"></path>
3183
- <path id="ADE30" class="roic" style="fill:#ebebe1" d="M216 90L166 172L122 231z"></path>
3184
- <path id="AEB30" class="roic" style="fill:#fab8ea" d="M216 90L122 231L60 60z"></path>
3185
- <path id="FEB30" class="roic" style="fill:#3236c8" d="M40 155L122 231L60 60z"></path>
3186
- <path id="ABC30" class="roic" style="fill:#960041" d="M216 90L60 60L120 53z"></path>
3187
- </g>
3188
- <g id="fr31">
3189
- <path id="FBC31" class="roic" style="fill:#ebebe1" d="M45 155L53 62L125 54z"></path>
3190
- <path id="FDE31" class="roic" style="fill:#960041" d="M45 155L172 173L115 230z"></path>
3191
- <path id="FCD31" class="roic" style="fill:#fab8ea" d="M45 155L125 54L172 173z"></path>
3192
- <path id="ACD31" class="roic" style="fill:#3236c8" d="M212 89L125 54L172 173z"></path>
3193
- <path id="ADE31" class="roic" style="fill:#ebebe1" d="M212 89L172 173L115 230z"></path>
3194
- <path id="AEB31" class="roic" style="fill:#fab8ea" d="M212 89L115 230L53 62z"></path>
3195
- <path id="FEB31" class="roic" style="fill:#3236c8" d="M45 155L115 230L53 62z"></path>
3196
- <path id="ABC31" class="roic" style="fill:#960041" d="M212 89L53 62L125 54z"></path>
3197
- </g>
3198
- <g id="fr32">
3199
- <path id="FBC32" class="roic" style="fill:#ebebe1" d="M51 154L47 63L132 53z"></path>
3200
- <path id="FDE32" class="roic" style="fill:#960041" d="M51 154L178 174L107 230z"></path>
3201
- <path id="FCD32" class="roic" style="fill:#fab8ea" d="M51 154L132 53L178 174z"></path>
3202
- <path id="ACD32" class="roic" style="fill:#3236c8" d="M207 88L132 53L178 174z"></path>
3203
- <path id="ADE32" class="roic" style="fill:#ebebe1" d="M207 88L178 174L107 230z"></path>
3204
- <path id="AEB32" class="roic" style="fill:#fab8ea" d="M207 88L107 230L47 63z"></path>
3205
- <path id="FEB32" class="roic" style="fill:#3236c8" d="M51 154L107 230L47 63z"></path>
3206
- <path id="ABC32" class="roic" style="fill:#960041" d="M207 88L47 63L132 53z"></path>
3207
- </g>
3208
- <g id="fr33">
3209
- <path id="FBC33" class="roic" style="fill:#ebebe1" d="M58 153L42 64L136 54z"></path>
3210
- <path id="FDE33" class="roic" style="fill:#960041" d="M58 153L184 174L100 230z"></path>
3211
- <path id="FCD33" class="roic" style="fill:#fab8ea" d="M58 153L136 54L184 174z"></path>
3212
- <path id="ACD33" class="roic" style="fill:#3236c8" d="M202 87L136 54L184 174z"></path>
3213
- <path id="ADE33" class="roic" style="fill:#ebebe1" d="M202 87L184 174L100 230z"></path>
3214
- <path id="AEB33" class="roic" style="fill:#fab8ea" d="M202 87L100 230L42 64z"></path>
3215
- <path id="FEB33" class="roic" style="fill:#3236c8" d="M58 153L100 230L42 64z"></path>
3216
- <path id="ABC33" class="roic" style="fill:#960041" d="M202 87L42 64L136 54z"></path>
3217
- </g>
3218
- <g id="fr34">
3219
- <path id="FBC34" class="roic" style="fill:#ebebe1" d="M65 152L39 65L142 53z"></path>
3220
- <path id="FDE34" class="roic" style="fill:#960041" d="M65 152L189 175L92 230z"></path>
3221
- <path id="FCD34" class="roic" style="fill:#fab8ea" d="M65 152L142 53L189 175z"></path>
3222
- <path id="ACD34" class="roic" style="fill:#3236c8" d="M195 87L142 53L189 175z"></path>
3223
- <path id="ADE34" class="roic" style="fill:#ebebe1" d="M195 87L189 175L92 230z"></path>
3224
- <path id="AEB34" class="roic" style="fill:#fab8ea" d="M195 87L92 230L39 65z"></path>
3225
- <path id="ABC34" class="roic" style="fill:#960041" d="M195 87L39 65L142 53z"></path>
3226
- </g>
3227
- <g id="fr35">
3228
- <path id="FEB35" class="roic" style="fill:#3236c8" d="M72 152L86 228L36 67z"></path>
3229
- <path id="FEB34" class="roic" style="fill:#3236c8" d="M65 152L92 230L39 65z"></path>
3230
- <path id="FBC35" class="roic" style="fill:#ebebe1" d="M72 152L36 67L149 53z"></path>
3231
- <path id="FDE35" class="roic" style="fill:#960041" d="M72 152L194 176L86 228z"></path>
3232
- <path id="FCD35" class="roic" style="fill:#fab8ea" d="M72 152L149 53L194 176z"></path>
3233
- <path id="ACD35" class="roic" style="fill:#3236c8" d="M187 86L149 53L194 176z"></path>
3234
- <path id="ADE35" class="roic" style="fill:#ebebe1" d="M187 86L194 176L86 228z"></path>
3235
- <path id="AEB35" class="roic" style="fill:#fab8ea" d="M187 86L86 228L36 67z"></path>
3236
- <path id="ABC35" class="roic" style="fill:#960041" d="M187 86L36 67L149 53z"></path>
3237
- </g>
3238
- <g id="fr36">
3239
- <path id="FEB36" class="roic" style="fill:#3236c8" d="M80 152L79 228L34 67z"></path>
3240
- <path id="FBC36" class="roic" style="fill:#ebebe1" d="M80 152L34 67L153 52z"></path>
3241
- <path id="FDE36" class="roic" style="fill:#960041" d="M80 152L198 177L79 228z"></path>
3242
- <path id="FCD36" class="roic" style="fill:#fab8ea" d="M80 152L153 52L198 177z"></path>
3243
- <path id="ACD36" class="roic" style="fill:#3236c8" d="M178 86L153 52L198 177z"></path>
3244
- <path id="ADE36" class="roic" style="fill:#ebebe1" d="M178 86L198 177L79 228z"></path>
3245
- <path id="AEB36" class="roic" style="fill:#fab8ea" d="M178 86L79 228L34 67z"></path>
3246
- <path id="ABC36" class="roic" style="fill:#960041" d="M178 86L34 67L153 52z"></path>
3247
- </g>
3248
- <g id="fr37">
3249
- <path id="FEB37" class="roic" style="fill:#3236c8" d="M88 151L75 227L33 68z"></path>
3250
- <path id="FBC37" class="roic" style="fill:#ebebe1" d="M88 151L33 68L158 52z"></path>
3251
- <path id="FDE37" class="roic" style="fill:#960041" d="M88 151L201 177L75 227z"></path>
3252
- <path id="FCD37" class="roic" style="fill:#fab8ea" d="M88 151L158 52L201 177z"></path>
3253
- <path id="ADE37" class="roic" style="fill:#ebebe1" d="M168 86L201 177L75 227z"></path>
3254
- <path id="AEB37" class="roic" style="fill:#fab8ea" d="M168 86L75 227L33 68z"></path>
3255
- <path id="ACD37" class="roic" style="fill:#3236c8" d="M168 86L158 52L201 177z"></path>
3256
- <path id="ABC37" class="roic" style="fill:#960041" d="M168 86L33 68L158 52z"></path>
3257
- </g>
3258
- <g id="fr38">
3259
- <path id="FEB38" class="roic" style="fill:#3236c8" d="M96 151L70 226L34 69z"></path>
3260
- <path id="FBC38" class="roic" style="fill:#ebebe1" d="M96 151L34 69L163 51z"></path>
3261
- <path id="FDE38" class="roic" style="fill:#960041" d="M96 151L204 179L70 226z"></path>
3262
- <path id="FCD38" class="roic" style="fill:#fab8ea" d="M96 151L163 51L204 179z"></path>
3263
- <path id="ADE38" class="roic" style="fill:#ebebe1" d="M156 85L204 179L70 226z"></path>
3264
- <path id="AEB38" class="roic" style="fill:#fab8ea" d="M156 85L70 226L34 69z"></path>
3265
- <path id="ACD38" class="roic" style="fill:#3236c8" d="M156 85L163 51L204 179z"></path>
3266
- <path id="ABC38" class="roic" style="fill:#960041" d="M156 85L34 69L163 51z"></path>
3267
- </g>
3268
- <g id="fr39">
3269
- <path id="FEB39" class="roic" style="fill:#3236c8" d="M103 151L66 225L35 71z"></path>
3270
- <path id="FBC39" class="roic" style="fill:#ebebe1" d="M103 151L35 71L167 50z"></path>
3271
- <path id="FDE39" class="roic" style="fill:#960041" d="M103 151L206 179L66 225z"></path>
3272
- <path id="FCD39" class="roic" style="fill:#fab8ea" d="M103 151L167 50L206 179z"></path>
3273
- <path id="ADE39" class="roic" style="fill:#ebebe1" d="M145 85L206 179L66 225z"></path>
3274
- <path id="AEB39" class="roic" style="fill:#fab8ea" d="M145 85L66 225L35 71z"></path>
3275
- <path id="ACD39" class="roic" style="fill:#3236c8" d="M145 85L167 50L206 179z"></path>
3276
- <path id="ABC39" class="roic" style="fill:#960041" d="M145 85L35 71L167 50z"></path>
3277
- </g>
3278
- <g id="fr40">
3279
- <path id="FEB40" class="roic" style="fill:#3236c8" d="M113 151L62 224L37 72z"></path>
3280
- <path id="FBC40" class="roic" style="fill:#ebebe1" d="M113 151L37 72L171 49z"></path>
3281
- <path id="FDE40" class="roic" style="fill:#960041" d="M113 151L208 181L62 224z"></path>
3282
- <path id="FCD40" class="roic" style="fill:#fab8ea" d="M113 151L171 49L208 181z"></path>
3283
- <path id="ADE40" class="roic" style="fill:#ebebe1" d="M132 85L208 181L62 224z"></path>
3284
- <path id="AEB40" class="roic" style="fill:#fab8ea" d="M132 85L62 224L37 72z"></path>
3285
- <path id="ACD40" class="roic" style="fill:#3236c8" d="M132 85L171 49L208 181z"></path>
3286
- <path id="ABC40" class="roic" style="fill:#960041" d="M132 85L37 72L171 49z"></path>
3287
- </g>
3288
- <g id="fr41">
3289
- <path id="FEB41" class="roic" style="fill:#3236c8" d="M120 151L59 223L40 73z"></path>
3290
- <path id="FBC41" class="roic" style="fill:#ebebe1" d="M120 151L40 73L174 48z"></path>
3291
- <path id="FDE41" class="roic" style="fill:#960041" d="M120 151L207 182L59 223z"></path>
3292
- <path id="FCD41" class="roic" style="fill:#fab8ea" d="M120 151L174 48L207 182z"></path>
3293
- <path id="ADE41" class="roic" style="fill:#ebebe1" d="M119 85L207 182L59 223z"></path>
3294
- <path id="AEB41" class="roic" style="fill:#fab8ea" d="M119 85L59 223L40 73z"></path>
3295
- <path id="ACD41" class="roic" style="fill:#3236c8" d="M119 85L174 48L207 182z"></path>
3296
- <path id="ABC41" class="roic" style="fill:#960041" d="M119 85L40 73L174 48z"></path>
3297
- </g>
3298
- <g id="fr42">
3299
- <path id="FEB42" class="roic" style="fill:#3236c8" d="M129 151L57 222L43 74z"></path>
3300
- <path id="FBC42" class="roic" style="fill:#ebebe1" d="M129 151L43 74L178 48z"></path>
3301
- <path id="FDE42" class="roic" style="fill:#960041" d="M129 151L206 184L57 222z"></path>
3302
- <path id="FCD42" class="roic" style="fill:#fab8ea" d="M129 151L178 48L206 184z"></path>
3303
- <path id="ADE42" class="roic" style="fill:#ebebe1" d="M107 85L206 184L57 222z"></path>
3304
- <path id="AEB42" class="roic" style="fill:#fab8ea" d="M107 85L57 222L43 74z"></path>
3305
- <path id="ACD42" class="roic" style="fill:#3236c8" d="M107 85L178 48L206 184z"></path>
3306
- <path id="ABC42" class="roic" style="fill:#960041" d="M107 85L43 74L178 48z"></path>
3307
- </g>
3308
- <g id="fr43">
3309
- <path id="FEB43" class="roic" style="fill:#3236c8" d="M137 152L56 221L48 75z"></path>
3310
- <path id="FBC43" class="roic" style="fill:#ebebe1" d="M137 152L48 75L181 46z"></path>
3311
- <path id="FDE43" class="roic" style="fill:#960041" d="M137 152L204 185L56 221z"></path>
3312
- <path id="FCD43" class="roic" style="fill:#fab8ea" d="M137 152L181 46L204 185z"></path>
3313
- <path id="ADE43" class="roic" style="fill:#ebebe1" d="M96 85L204 185L56 221z"></path>
3314
- <path id="AEB43" class="roic" style="fill:#fab8ea" d="M96 85L56 221L48 75z"></path>
3315
- <path id="ACD43" class="roic" style="fill:#3236c8" d="M96 85L181 46L204 185z"></path>
3316
- <path id="ABC43" class="roic" style="fill:#960041" d="M96 85L48 75L181 46z"></path>
3317
- </g>
3318
- <g id="fr44">
3319
- <path id="FEB44" class="roic" style="fill:#3236c8" d="M145 151L56 219L54 75z"></path>
3320
- <path id="FBC44" class="roic" style="fill:#ebebe1" d="M145 151L54 75L184 45z"></path>
3321
- <path id="FDE44" class="roic" style="fill:#960041" d="M145 151L201 186L56 219z"></path>
3322
- <path id="FCD44" class="roic" style="fill:#fab8ea" d="M145 151L184 45L201 186z"></path>
3323
- <path id="ADE44" class="roic" style="fill:#ebebe1" d="M84 85L201 186L56 219z"></path>
3324
- <path id="AEB44" class="roic" style="fill:#fab8ea" d="M84 85L56 219L54 75z"></path>
3325
- <path id="ACD44" class="roic" style="fill:#3236c8" d="M84 85L184 45L201 186z"></path>
3326
- <path id="ABC44" class="roic" style="fill:#960041" d="M84 85L54 75L184 45z"></path>
3327
- </g>
3328
- <g id="fr45">
3329
- <path id="FEB45" class="roic" style="fill:#3236c8" d="M153 152L56 218L58 76z"></path>
3330
- <path id="FBC45" class="roic" style="fill:#ebebe1" d="M153 152L58 76L184 44z"></path>
3331
- <path id="FDE45" class="roic" style="fill:#960041" d="M153 152L198 188L56 218z"></path>
3332
- <path id="FCD45" class="roic" style="fill:#fab8ea" d="M153 152L184 44L198 188z"></path>
3333
- <path id="ADE45" class="roic" style="fill:#ebebe1" d="M73 86L198 188L56 218z"></path>
3334
- <path id="AEB45" class="roic" style="fill:#fab8ea" d="M73 86L56 218L58 76z"></path>
3335
- <path id="ACD45" class="roic" style="fill:#3236c8" d="M73 86L184 44L198 188z"></path>
3336
- <path id="ABC45" class="roic" style="fill:#960041" d="M73 86L58 76L184 44z"></path>
3337
- </g>
3338
- <g id="fr46">
3339
- <path id="FEB46" class="roic" style="fill:#3236c8" d="M161 152L57 216L65 75z"></path>
3340
- <path id="FBC46" class="roic" style="fill:#ebebe1" d="M161 152L65 75L184 43z"></path>
3341
- <path id="FDE46" class="roic" style="fill:#960041" d="M161 152L192 189L57 216z"></path>
3342
- <path id="FCD46" class="roic" style="fill:#fab8ea" d="M161 152L184 43L192 189z"></path>
3343
- <path id="ADE46" class="roic" style="fill:#ebebe1" d="M62 86L192 189L57 216z"></path>
3344
- <path id="AEB46" class="roic" style="fill:#fab8ea" d="M62 86L57 216L65 75z"></path>
3345
- <path id="ACD46" class="roic" style="fill:#3236c8" d="M62 86L184 43L192 189z"></path>
3346
- <path id="ABC46" class="roic" style="fill:#960041" d="M62 86L65 75L184 43z"></path>
3347
- </g>
3348
- <g id="fr47">
3349
- <path id="FEB47" class="roic" style="fill:#3236c8" d="M168 152L59 216L72 78z"></path>
3350
- <path id="FBC47" class="roic" style="fill:#ebebe1" d="M168 152L72 78L184 43z"></path>
3351
- <path id="FDE47" class="roic" style="fill:#960041" d="M168 152L185 190L59 216z"></path>
3352
- <path id="FCD47" class="roic" style="fill:#fab8ea" d="M168 152L184 43L185 190z"></path>
3353
- <path id="ADE47" class="roic" style="fill:#ebebe1" d="M53 86L185 190L59 216z"></path>
3354
- <path id="AEB47" class="roic" style="fill:#fab8ea" d="M53 86L59 216L72 78z"></path>
3355
- <path id="ACD47" class="roic" style="fill:#3236c8" d="M53 86L184 43L185 190z"></path>
3356
- <path id="ABC47" class="roic" style="fill:#960041" d="M53 86L72 78L184 43z"></path>
3357
- </g>
3358
- <g id="fr48">
3359
- <path id="FEB48" class="roic" style="fill:#3236c8" d="M176 153L62 215L78 79z"></path>
3360
- <path id="FBC48" class="roic" style="fill:#ebebe1" d="M176 153L78 79L184 41z"></path>
3361
- <path id="ABC48" class="roic" style="fill:#960041" d="M45 86L78 79L184 41z"></path>
3362
- <path id="FDE48" class="roic" style="fill:#960041" d="M176 153L179 191L62 215z"></path>
3363
- <path id="FCD48" class="roic" style="fill:#fab8ea" d="M176 153L184 41L179 191z"></path>
3364
- <path id="ADE48" class="roic" style="fill:#ebebe1" d="M45 86L179 191L62 215z"></path>
3365
- <path id="AEB48" class="roic" style="fill:#fab8ea" d="M45 86L62 215L78 79z"></path>
3366
- <path id="ACD48" class="roic" style="fill:#3236c8" d="M45 86L184 41L179 191z"></path>
3367
- </g>
3368
- <g id="fr49">
3369
- <path id="FEB49" class="roic" style="fill:#3236c8" d="M184 154L64 214L85 79z"></path>
3370
- <path id="FBC49" class="roic" style="fill:#ebebe1" d="M184 154L85 79L183 39z"></path>
3371
- <path id="ABC49" class="roic" style="fill:#960041" d="M38 87L85 79L183 39z"></path>
3372
- <path id="FDE49" class="roic" style="fill:#960041" d="M184 154L169 191L64 214z"></path>
3373
- <path id="ADE49" class="roic" style="fill:#ebebe1" d="M38 87L169 191L64 214z"></path>
3374
- <path id="AEB49" class="roic" style="fill:#fab8ea" d="M38 87L64 214L85 79z"></path>
3375
- <path id="FCD49" class="roic" style="fill:#fab8ea" d="M184 154L183 39L169 191z"></path>
3376
- <path id="ACD49" class="roic" style="fill:#3236c8" d="M38 87L183 39L169 191z"></path>
3377
- </g>
3378
- <g id="fr50">
3379
- <path id="FEB50" class="roic" style="fill:#3236c8" d="M190 154L68 213L92 79z"></path>
3380
- <path id="FBC50" class="roic" style="fill:#ebebe1" d="M190 154L92 79L180 38z"></path>
3381
- <path id="ABC50" class="roic" style="fill:#960041" d="M33 88L92 79L180 38z"></path>
3382
- <path id="FDE50" class="roic" style="fill:#960041" d="M190 154L160 191L68 213z"></path>
3383
- <path id="ADE50" class="roic" style="fill:#ebebe1" d="M33 88L160 191L68 213z"></path>
3384
- <path id="AEB50" class="roic" style="fill:#fab8ea" d="M33 88L68 213L92 79z"></path>
3385
- <path id="FCD50" class="roic" style="fill:#fab8ea" d="M190 154L180 38L160 191z"></path>
3386
- <path id="ACD50" class="roic" style="fill:#3236c8" d="M33 88L180 38L160 191z"></path>
3387
- </g>
3388
- <g id="fr51">
3389
- <path id="FEB51" class="roic" style="fill:#3236c8" d="M196 154L72 212L100 79z"></path>
3390
- <path id="FBC51" class="roic" style="fill:#ebebe1" d="M196 154L100 79L177 37z"></path>
3391
- <path id="ABC51" class="roic" style="fill:#960041" d="M28 89L100 79L177 37z"></path>
3392
- <path id="FDE51" class="roic" style="fill:#960041" d="M196 154L151 191L72 212z"></path>
3393
- <path id="ADE51" class="roic" style="fill:#ebebe1" d="M28 89L151 191L72 212z"></path>
3394
- <path id="AEB51" class="roic" style="fill:#fab8ea" d="M28 89L72 212L100 79z"></path>
3395
- <path id="FCD51" class="roic" style="fill:#fab8ea" d="M196 154L177 37L151 191z"></path>
3396
- <path id="ACD51" class="roic" style="fill:#3236c8" d="M28 89L177 37L151 191z"></path>
3397
- </g>
3398
- <g id="fr52">
3399
- <path id="FEB52" class="roic" style="fill:#3236c8" d="M201 155L76 211L106 79z"></path>
3400
- <path id="FBC52" class="roic" style="fill:#ebebe1" d="M201 155L106 79L173 36z"></path>
3401
- <path id="ABC52" class="roic" style="fill:#960041" d="M25 90L106 79L173 36z"></path>
3402
- <path id="FDE52" class="roic" style="fill:#960041" d="M201 155L140 191L76 211z"></path>
3403
- <path id="ADE52" class="roic" style="fill:#ebebe1" d="M25 90L140 191L76 211z"></path>
3404
- <path id="AEB52" class="roic" style="fill:#fab8ea" d="M25 90L76 211L106 79z"></path>
3405
- <path id="FCD52" class="roic" style="fill:#fab8ea" d="M201 155L173 36L140 191z"></path>
3406
- <path id="ACD52" class="roic" style="fill:#3236c8" d="M25 90L173 36L140 191z"></path>
3407
- </g>
3408
- <g id="fr53">
3409
- <path id="FEB53" class="roic" style="fill:#3236c8" d="M206 156L80 210L114 79z"></path>
3410
- <path id="FBC53" class="roic" style="fill:#ebebe1" d="M206 156L114 79L169 35z"></path>
3411
- <path id="ABC53" class="roic" style="fill:#960041" d="M24 91L114 79L169 35z"></path>
3412
- <path id="FDE53" class="roic" style="fill:#960041" d="M206 156L130 191L80 210z"></path>
3413
- <path id="ADE53" class="roic" style="fill:#ebebe1" d="M24 91L130 191L80 210z"></path>
3414
- <path id="AEB53" class="roic" style="fill:#fab8ea" d="M24 91L80 210L114 79z"></path>
3415
- <path id="FCD53" class="roic" style="fill:#fab8ea" d="M206 156L169 35L130 191z"></path>
3416
- <path id="ACD53" class="roic" style="fill:#3236c8" d="M24 91L169 35L130 191z"></path>
3417
- </g>
3418
- <g id="fr54">
3419
- <path id="FEB54" class="roic" style="fill:#3236c8" d="M211 156L86 210L121 79z"></path>
3420
- <path id="FBC54" class="roic" style="fill:#ebebe1" d="M211 156L121 79L164 34z"></path>
3421
- <path id="ABC54" class="roic" style="fill:#960041" d="M23 91L121 79L164 34z"></path>
3422
- <path id="ADE54" class="roic" style="fill:#ebebe1" d="M23 91L120 191L86 210z"></path>
3423
- <path id="AEB54" class="roic" style="fill:#fab8ea" d="M23 91L86 210L121 79z"></path>
3424
- <path id="FCD54" class="roic" style="fill:#fab8ea" d="M211 156L164 34L120 191z"></path>
3425
- <path id="ACD54" class="roic" style="fill:#3236c8" d="M23 91L164 34L120 191z"></path>
3426
- <path id="FDE54" class="roic" style="fill:#960041" d="M211 156L120 191L86 210z"></path>
3427
- </g>
3428
- <g id="fr55">
3429
- <path id="FEB55" class="roic" style="fill:#3236c8" d="M214 157L91 209L130 79z"></path>
3430
- <path id="FBC55" class="roic" style="fill:#ebebe1" d="M214 157L130 79L158 33z"></path>
3431
- <path id="ABC55" class="roic" style="fill:#960041" d="M23 92L130 79L158 33z"></path>
3432
- <path id="ADE55" class="roic" style="fill:#ebebe1" d="M23 92L108 191L91 209z"></path>
3433
- <path id="AEB55" class="roic" style="fill:#fab8ea" d="M23 92L91 209L130 79z"></path>
3434
- <path id="FCD55" class="roic" style="fill:#fab8ea" d="M214 157L158 33L108 191z"></path>
3435
- <path id="ACD55" class="roic" style="fill:#3236c8" d="M23 92L158 33L108 191z"></path>
3436
- <path id="FDE55" class="roic" style="fill:#960041" d="M214 157L108 191L91 209z"></path>
3437
- </g>
3438
- <g id="fr56">
3439
- <path id="FEB56" class="roic" style="fill:#3236c8" d="M216 158L96 210L137 79z"></path>
3440
- <path id="FBC56" class="roic" style="fill:#ebebe1" d="M216 158L137 79L152 32z"></path>
3441
- <path id="ABC56" class="roic" style="fill:#960041" d="M24 93L137 79L152 32z"></path>
3442
- <path id="ADE56" class="roic" style="fill:#ebebe1" d="M24 93L98 191L96 210z"></path>
3443
- <path id="AEB56" class="roic" style="fill:#fab8ea" d="M24 93L96 210L137 79z"></path>
3444
- <path id="FCD56" class="roic" style="fill:#fab8ea" d="M216 158L152 32L98 191z"></path>
3445
- <path id="ACD56" class="roic" style="fill:#3236c8" d="M24 93L152 32L98 191z"></path>
3446
- <path id="FDE56" class="roic" style="fill:#960041" d="M216 158L98 191L96 210z"></path>
3447
- </g>
3448
- <g id="fr57">
3449
- <path id="FEB57" class="roic" style="fill:#3236c8" d="M217 158L103 209L144 79z"></path>
3450
- <path id="FBC57" class="roic" style="fill:#ebebe1" d="M217 158L144 79L144 32z"></path>
3451
- <path id="ABC57" class="roic" style="fill:#960041" d="M27 94L144 79L144 32z"></path>
3452
- <path id="ADE57" class="roic" style="fill:#ebebe1" d="M27 94L88 191L103 209z"></path>
3453
- <path id="AEB57" class="roic" style="fill:#fab8ea" d="M27 94L103 209L144 79z"></path>
3454
- <path id="FCD57" class="roic" style="fill:#fab8ea" d="M217 158L144 32L88 191z"></path>
3455
- <path id="ACD57" class="roic" style="fill:#3236c8" d="M27 94L144 32L88 191z"></path>
3456
- <path id="FDE57" class="roic" style="fill:#960041" d="M217 158L88 191L103 209z"></path>
3457
- </g>
3458
- <g id="fr58">
3459
- <path id="FEB58" class="roic" style="fill:#3236c8" d="M218 159L107 209L151 79z"></path>
3460
- <path id="ABC58" class="roic" style="fill:#960041" d="M30 95L151 79L137 32z"></path>
3461
- <path id="ADE58" class="roic" style="fill:#ebebe1" d="M30 95L77 191L107 209z"></path>
3462
- <path id="AEB58" class="roic" style="fill:#fab8ea" d="M30 95L107 209L151 79z"></path>
3463
- <path id="FBC58" class="roic" style="fill:#ebebe1" d="M218 159L151 79L137 32z"></path>
3464
- <path id="FCD58" class="roic" style="fill:#fab8ea" d="M218 159L137 32L77 191z"></path>
3465
- <path id="ACD58" class="roic" style="fill:#3236c8" d="M30 95L137 32L77 191z"></path>
3466
- <path id="FDE58" class="roic" style="fill:#960041" d="M218 159L77 191L107 209z"></path>
3467
- </g>
3468
- <g id="fr59">
3469
- <path id="FEB59" class="roic" style="fill:#3236c8" d="M217 160L114 208L158 79z"></path>
3470
- <path id="ABC59" class="roic" style="fill:#960041" d="M35 96L158 79L130 32z"></path>
3471
- <path id="ADE59" class="roic" style="fill:#ebebe1" d="M35 96L70 190L114 208z"></path>
3472
- <path id="AEB59" class="roic" style="fill:#fab8ea" d="M35 96L114 208L158 79z"></path>
3473
- <path id="FBC59" class="roic" style="fill:#ebebe1" d="M217 160L158 79L130 32z"></path>
3474
- <path id="FCD59" class="roic" style="fill:#fab8ea" d="M217 160L130 32L70 190z"></path>
3475
- <path id="ACD59" class="roic" style="fill:#3236c8" d="M35 96L130 32L70 190z"></path>
3476
- <path id="FDE59" class="roic" style="fill:#960041" d="M217 160L70 190L114 208z"></path>
3477
- </g>
3478
- </svg>
2903
+ <img src="images/octaeder.svg">
3479
2904
  </div>
3480
2905
  </div>
3481
2906
  </body>