mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-20 23:51:29 -07:00
Files

The big mathematical news this month is that a polygon has been discovered that will tile the plane but only aperiodically. Penrose tiles achieve this with two tile types; it's been an open question for decades whether you could do it with only one tile. Now someone has announced the discovery of such a thing, so _obviously_ this mathematically exciting tiling ought to be one of the Loopy grid options! The polygon, named a 'hat' by its discoverers, consists of the union of eight cells of the 'Kites' periodic tiling that Loopy already implements. So all the vertex coordinates of the whole tiling are vertices of the Kites grid, which makes handling the coordinates in an exact manner a lot easier than Penrose tilings. What's _harder_ than Penrose tilings is that, although this tiling can be generated by a vaguely similar system of recursive expansion, the expansion is geometrically distorting, which means you can't easily figure out which tiles can be discarded early to save CPU. Instead I've come up with a completely different system for generating a patch of tiling, by using a hierarchical coordinate system to track a location within many levels of the expansion process without ever simulating the process as a whole. I'm really quite pleased with that technique, and am tempted to try switching the Penrose generator over to it too - except that we'd have to keep the old generator around to stop old game ids being invalidated, and also, I think it would be slightly trickier without an underlying fixed grid and without overlaps in the tile expansion system. However, before coming up with that, I got most of the way through implementing the more obvious system of actually doing the expansions. The result worked, but was very slow (because I changed approach rather than try to implement tree-pruning under distortion). But the code was reusable for two other useful purposes: it generated the lookup tables needed for the production code, and it also generated a lot of useful diagrams. So I've committed it anyway as a supporting program, in a new 'aux' source subdirectory, and in aux/doc is a writeup of the coordinate system's concepts, with all those diagrams. (That's the kind of thing I'd normally put in a huge comment at the top of the file, but doing all those diagrams in ASCII art would be beyond miserable.) From a gameplay perspective: the hat polygon has 13 edges, but one of them has a vertex of the Kites tiling in the middle, and sometimes two other tile boundaries meet at that vertex. I've chosen to represent every hat as having degree 14 for Loopy purposes, because if you only included that extra vertex when it was needed, then people would be forever having to check whether this was a 13-hat or a 14-hat and it would be nightmarish to play. Even so, there's a lot of clicking involved to turn all those fiddly individual edges on or off. This grid is noticeably nicer to play in 'autofollow' mode, by setting LOOPY_AUTOFOLLOW in the environment to either 'fixed' or 'adaptive'. I'm tempted to make 'fixed' the default, except that I think it would confuse players of ordinary square Loopy!
784 lines
71 KiB
XML
784 lines
71 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="732" height="1104">
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 419.692169
|
|
L 544.000000 367.730652
|
|
L 514.000000 350.410156
|
|
L 484.000000 367.730652
|
|
L 454.000000 385.051178
|
|
L 454.000000 419.692169
|
|
L 394.000000 419.692169
|
|
L 364.000000 471.653687
|
|
L 394.000000 488.974213
|
|
L 424.000000 471.653687
|
|
L 454.000000 523.615234
|
|
L 514.000000 523.615234
|
|
L 514.000000 488.974213
|
|
L 544.000000 471.653687
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 419.692169 L 484.000000 367.730652" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 419.692169 L 454.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 419.692169 L 424.000000 471.653687" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 419.692169 L 454.000000 523.615234" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 424.000000 471.653687 L 454.000000 454.333191" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 419.692169 L 454.000000 454.333191" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 488.974213 L 454.000000 454.333191" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="457.333">0.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="440.013">1.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="491.974">2.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="509.295">3.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="457.333">4.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="440.013">5.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="405.372">6.0.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="388.051">7.0.0</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 315.769165
|
|
L 484.000000 367.730652
|
|
L 514.000000 350.410156
|
|
L 514.000000 315.769165
|
|
L 514.000000 281.128113
|
|
L 484.000000 263.807617
|
|
L 514.000000 211.846069
|
|
L 484.000000 159.884521
|
|
L 454.000000 177.205017
|
|
L 454.000000 211.846069
|
|
L 394.000000 211.846069
|
|
L 364.000000 263.807617
|
|
L 394.000000 281.128113
|
|
L 394.000000 315.769165
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 315.769165 L 514.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 315.769165 L 484.000000 263.807617" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 211.846069 L 454.000000 211.846069" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 315.769165 L 394.000000 211.846069" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 211.846069 L 454.000000 246.487122" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 484.000000 263.807617 L 454.000000 246.487122" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 281.128113 L 454.000000 246.487122" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="197.526">0.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="232.167">1.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="232.167">2.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="249.487">3.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="301.449">4.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="284.128">5.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="301.449">6.1.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="336.09">7.1.0</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 315.769165
|
|
L 364.000000 263.807617
|
|
L 334.000000 246.487122
|
|
L 304.000000 263.807617
|
|
L 274.000000 281.128113
|
|
L 274.000000 315.769165
|
|
L 214.000000 315.769165
|
|
L 184.000000 367.730652
|
|
L 214.000000 385.051178
|
|
L 244.000000 367.730652
|
|
L 274.000000 419.692169
|
|
L 334.000000 419.692169
|
|
L 334.000000 385.051178
|
|
L 364.000000 367.730652
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 315.769165 L 304.000000 263.807617" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 315.769165 L 274.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 315.769165 L 244.000000 367.730652" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 315.769165 L 274.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 244.000000 367.730652 L 274.000000 350.410156" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 315.769165 L 274.000000 350.410156" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 385.051178 L 274.000000 350.410156" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="353.41">0.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="336.09">1.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="388.051">2.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="405.372">3.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="353.41">4.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="336.09">5.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="301.449">6.2.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="284.128">7.2.0</text>
|
|
<path style="fill: rgba(0,0,0,0.2); stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 419.692169
|
|
L 454.000000 385.051178
|
|
L 484.000000 367.730652
|
|
L 454.000000 315.769165
|
|
L 394.000000 315.769165
|
|
L 394.000000 281.128113
|
|
L 364.000000 263.807617
|
|
L 334.000000 315.769165
|
|
L 364.000000 367.730652
|
|
L 334.000000 385.051178
|
|
L 334.000000 419.692169
|
|
L 334.000000 454.333221
|
|
L 364.000000 471.653687
|
|
L 394.000000 419.692169
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 419.692169 L 334.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 419.692169 L 364.000000 367.730652" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 315.769165 L 394.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 419.692169 L 454.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 315.769165 L 394.000000 350.410156" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 364.000000 367.730652 L 394.000000 350.410156" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 385.051178 L 394.000000 350.410156" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="301.449">0.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="336.09">1.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="336.09">2.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="353.41">3.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="405.372">4.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="388.051">5.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="405.372">6.3.0</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="440.013">7.3.0</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 627.538269
|
|
L 364.000000 575.576782
|
|
L 334.000000 592.897278
|
|
L 334.000000 627.538269
|
|
L 334.000000 662.179321
|
|
L 364.000000 679.499817
|
|
L 334.000000 731.461304
|
|
L 364.000000 783.422852
|
|
L 394.000000 766.102356
|
|
L 394.000000 731.461304
|
|
L 454.000000 731.461304
|
|
L 484.000000 679.499817
|
|
L 454.000000 662.179321
|
|
L 454.000000 627.538269
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 627.538269 L 334.000000 627.538269" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 627.538269 L 364.000000 679.499817" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 731.461304 L 394.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 627.538269 L 454.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 731.461304 L 394.000000 696.820312" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 364.000000 679.499817 L 394.000000 696.820312" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 662.179321 L 394.000000 696.820312" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="751.782">0.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="717.141">1.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="717.141">2.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="699.82">3.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="647.859">4.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="665.179">5.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="647.859">6.0.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="613.218">7.0.1</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 627.538269
|
|
L 334.000000 627.538269
|
|
L 334.000000 592.897278
|
|
L 304.000000 575.576782
|
|
L 274.000000 558.256226
|
|
L 244.000000 575.576782
|
|
L 214.000000 523.615234
|
|
L 154.000000 523.615234
|
|
L 154.000000 558.256226
|
|
L 184.000000 575.576782
|
|
L 154.000000 627.538269
|
|
L 184.000000 679.499817
|
|
L 214.000000 662.179321
|
|
L 244.000000 679.499817
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 627.538269 L 304.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 627.538269 L 244.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 523.615234 L 184.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 627.538269 L 154.000000 627.538269" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 184.000000 575.576782 L 214.000000 592.897217" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 244.000000 575.576782 L 214.000000 592.897217" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 662.179321 L 214.000000 592.897217" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="543.936">0.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="561.256">1.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="613.218">2.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="647.859">3.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="647.859">4.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="613.218">5.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="595.897">6.1.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="613.218">7.1.1</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 731.461304
|
|
L 184.000000 679.499817
|
|
L 154.000000 696.820312
|
|
L 154.000000 731.461304
|
|
L 154.000000 766.102356
|
|
L 184.000000 783.422852
|
|
L 154.000000 835.384399
|
|
L 184.000000 887.345886
|
|
L 214.000000 870.025391
|
|
L 214.000000 835.384399
|
|
L 274.000000 835.384399
|
|
L 304.000000 783.422852
|
|
L 274.000000 766.102356
|
|
L 274.000000 731.461304
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 731.461304 L 154.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 731.461304 L 184.000000 783.422852" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 835.384399 L 214.000000 835.384399" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 731.461304 L 274.000000 835.384399" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 835.384399 L 214.000000 800.743347" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 184.000000 783.422852 L 214.000000 800.743347" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 766.102356 L 214.000000 800.743347" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="855.705">0.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="821.064">1.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="821.064">2.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="803.743">3.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="751.782">4.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="769.102">5.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="751.782">6.2.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="717.141">7.2.1</text>
|
|
<path style="fill: rgba(0,0,0,0.2); stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 364.000000 679.499817
|
|
L 334.000000 662.179321
|
|
L 334.000000 627.538269
|
|
L 274.000000 627.538269
|
|
L 244.000000 679.499817
|
|
L 214.000000 662.179321
|
|
L 184.000000 679.499817
|
|
L 214.000000 731.461304
|
|
L 274.000000 731.461304
|
|
L 274.000000 766.102356
|
|
L 304.000000 783.422852
|
|
L 334.000000 800.743347
|
|
L 364.000000 783.422852
|
|
L 334.000000 731.461304
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 731.461304 L 304.000000 783.422852" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 731.461304 L 274.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 731.461304 L 244.000000 679.499817" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 731.461304 L 274.000000 627.538269" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 244.000000 679.499817 L 274.000000 696.820312" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 731.461304 L 274.000000 696.820312" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 662.179321 L 274.000000 696.820312" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="699.82">0.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="717.141">1.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="665.179">2.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="647.859">3.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="699.82">4.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="717.141">5.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="751.782">6.3.1</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="769.102">7.3.1</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 315.769165
|
|
L 544.000000 263.807617
|
|
L 514.000000 281.128113
|
|
L 514.000000 315.769165
|
|
L 514.000000 350.410156
|
|
L 544.000000 367.730652
|
|
L 514.000000 419.692169
|
|
L 544.000000 471.653687
|
|
L 574.000000 454.333221
|
|
L 574.000000 419.692169
|
|
L 634.000000 419.692169
|
|
L 664.000000 367.730652
|
|
L 634.000000 350.410156
|
|
L 634.000000 315.769165
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 315.769165 L 514.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 315.769165 L 544.000000 367.730652" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 419.692169 L 574.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 315.769165 L 634.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 419.692169 L 574.000000 385.051178" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 544.000000 367.730652 L 574.000000 385.051178" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 350.410156 L 574.000000 385.051178" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="440.013">0.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="405.372">1.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="405.372">2.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="634" y="388.051">3.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="336.09">4.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="353.41">5.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="336.09">6.0.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="301.449">7.0.2</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 211.846069
|
|
L 664.000000 159.884521
|
|
L 634.000000 142.564087
|
|
L 604.000000 159.884521
|
|
L 574.000000 177.205017
|
|
L 574.000000 211.846069
|
|
L 514.000000 211.846069
|
|
L 484.000000 263.807617
|
|
L 514.000000 281.128113
|
|
L 544.000000 263.807617
|
|
L 574.000000 315.769165
|
|
L 634.000000 315.769165
|
|
L 634.000000 281.128113
|
|
L 664.000000 263.807617
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 211.846069 L 604.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 211.846069 L 574.000000 211.846069" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 211.846069 L 544.000000 263.807617" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 211.846069 L 574.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 544.000000 263.807617 L 574.000000 246.487122" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 211.846069 L 574.000000 246.487122" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 281.128113 L 574.000000 246.487122" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="249.487">0.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="232.167">1.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="284.128">2.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="301.449">3.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="634" y="249.487">4.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="232.167">5.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="197.526">6.1.2</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="634" y="180.205">7.1.2</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 523.615234
|
|
L 274.000000 523.615234
|
|
L 274.000000 558.256226
|
|
L 304.000000 575.576782
|
|
L 334.000000 592.897278
|
|
L 364.000000 575.576782
|
|
L 394.000000 627.538269
|
|
L 454.000000 627.538269
|
|
L 454.000000 592.897278
|
|
L 424.000000 575.576782
|
|
L 454.000000 523.615234
|
|
L 424.000000 471.653687
|
|
L 394.000000 488.974213
|
|
L 364.000000 471.653687
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 523.615234 L 304.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 523.615234 L 364.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 627.538269 L 424.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 523.615234 L 454.000000 523.615234" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 424.000000 575.576782 L 394.000000 558.256226" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 364.000000 575.576782 L 394.000000 558.256226" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 488.974213 L 394.000000 558.256226" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="613.218">0.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="595.897">1.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="543.936">2.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="509.295">3.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="509.295">4.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="543.936">5.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="561.256">6.0.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="543.936">7.0.3</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 419.692169
|
|
L 244.000000 367.730652
|
|
L 214.000000 385.051178
|
|
L 214.000000 419.692169
|
|
L 214.000000 454.333221
|
|
L 244.000000 471.653687
|
|
L 214.000000 523.615234
|
|
L 244.000000 575.576782
|
|
L 274.000000 558.256226
|
|
L 274.000000 523.615234
|
|
L 334.000000 523.615234
|
|
L 364.000000 471.653687
|
|
L 334.000000 454.333221
|
|
L 334.000000 419.692169
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 419.692169 L 214.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 419.692169 L 244.000000 471.653687" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 523.615234 L 274.000000 523.615234" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 419.692169 L 334.000000 523.615234" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 523.615234 L 274.000000 488.974213" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 244.000000 471.653687 L 274.000000 488.974213" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 454.333221 L 274.000000 488.974213" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="543.936">0.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="509.295">1.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="509.295">2.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="491.974">3.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="440.013">4.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="457.333">5.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="440.013">6.1.3</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="405.372">7.1.3</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 211.846069
|
|
L 304.000000 159.884521
|
|
L 274.000000 142.564087
|
|
L 244.000000 159.884521
|
|
L 214.000000 177.205017
|
|
L 214.000000 211.846069
|
|
L 154.000000 211.846069
|
|
L 124.000000 263.807617
|
|
L 154.000000 281.128113
|
|
L 184.000000 263.807617
|
|
L 214.000000 315.769165
|
|
L 274.000000 315.769165
|
|
L 274.000000 281.128113
|
|
L 304.000000 263.807617
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 211.846069 L 244.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 211.846069 L 214.000000 211.846069" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 211.846069 L 184.000000 263.807617" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 211.846069 L 214.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 184.000000 263.807617 L 214.000000 246.487122" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 211.846069 L 214.000000 246.487122" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 281.128113 L 214.000000 246.487122" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="249.487">0.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="232.167">1.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="284.128">2.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="301.449">3.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="249.487">4.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="232.167">5.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="197.526">6.0.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="180.205">7.0.4</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 211.846069
|
|
L 454.000000 211.846069
|
|
L 454.000000 177.205017
|
|
L 424.000000 159.884521
|
|
L 394.000000 142.564087
|
|
L 364.000000 159.884521
|
|
L 334.000000 107.923035
|
|
L 274.000000 107.923035
|
|
L 274.000000 142.564087
|
|
L 304.000000 159.884521
|
|
L 274.000000 211.846069
|
|
L 304.000000 263.807617
|
|
L 334.000000 246.487122
|
|
L 364.000000 263.807617
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 211.846069 L 424.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 211.846069 L 364.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 107.923035 L 304.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 211.846069 L 274.000000 211.846069" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 304.000000 159.884521 L 334.000000 177.205078" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 364.000000 159.884521 L 334.000000 177.205078" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 246.487122 L 334.000000 177.205078" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="128.244">0.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="145.564">1.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="197.526">2.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="232.167">3.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="232.167">4.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="197.526">5.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="180.205">6.1.4</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="197.526">7.1.4</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 419.692169
|
|
L 184.000000 471.653687
|
|
L 214.000000 454.333221
|
|
L 214.000000 419.692169
|
|
L 214.000000 385.051178
|
|
L 184.000000 367.730652
|
|
L 214.000000 315.769165
|
|
L 184.000000 263.807617
|
|
L 154.000000 281.128113
|
|
L 154.000000 315.769165
|
|
L 94.000000 315.769165
|
|
L 64.000000 367.730652
|
|
L 94.000000 385.051178
|
|
L 94.000000 419.692169
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 419.692169 L 214.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 419.692169 L 184.000000 367.730652" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 315.769165 L 154.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 419.692169 L 94.000000 315.769165" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 315.769165 L 154.000000 350.410156" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 184.000000 367.730652 L 154.000000 350.410156" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 385.051178 L 154.000000 350.410156" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="301.449">0.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="336.09">1.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="336.09">2.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="94" y="353.41">3.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="405.372">4.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="388.051">5.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="405.372">6.0.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="440.013">7.0.5</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 523.615234
|
|
L 64.000000 575.576782
|
|
L 94.000000 592.897278
|
|
L 124.000000 575.576782
|
|
L 154.000000 558.256226
|
|
L 154.000000 523.615234
|
|
L 214.000000 523.615234
|
|
L 244.000000 471.653687
|
|
L 214.000000 454.333221
|
|
L 184.000000 471.653687
|
|
L 154.000000 419.692169
|
|
L 94.000000 419.692169
|
|
L 94.000000 454.333221
|
|
L 64.000000 471.653687
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 523.615234 L 124.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 523.615234 L 154.000000 523.615234" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 523.615234 L 184.000000 471.653687" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 523.615234 L 154.000000 419.692169" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 184.000000 471.653687 L 154.000000 488.974213" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 523.615234 L 154.000000 488.974213" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 454.333221 L 154.000000 488.974213" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="491.974">0.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="509.295">1.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="457.333">2.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="440.013">3.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="94" y="491.974">4.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="509.295">5.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="543.936">6.1.5</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="94" y="561.256">7.1.5</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 731.461304
|
|
L 64.000000 679.499817
|
|
L 34.000000 696.820312
|
|
L 34.000000 731.461304
|
|
L 34.000000 766.102356
|
|
L 64.000000 783.422852
|
|
L 34.000000 835.384399
|
|
L 64.000000 887.345886
|
|
L 94.000000 870.025391
|
|
L 94.000000 835.384399
|
|
L 154.000000 835.384399
|
|
L 184.000000 783.422852
|
|
L 154.000000 766.102356
|
|
L 154.000000 731.461304
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 731.461304 L 34.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 731.461304 L 64.000000 783.422852" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 34.000000 835.384399 L 94.000000 835.384399" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 731.461304 L 154.000000 835.384399" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 835.384399 L 94.000000 800.743347" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 64.000000 783.422852 L 94.000000 800.743347" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 766.102356 L 94.000000 800.743347" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="64" y="855.705">0.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="64" y="821.064">1.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="821.064">2.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="803.743">3.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="751.782">4.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="94" y="769.102">5.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="64" y="751.782">6.0.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="64" y="717.141">7.0.6</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 627.538269
|
|
L 184.000000 575.576782
|
|
L 154.000000 558.256226
|
|
L 124.000000 575.576782
|
|
L 94.000000 592.897278
|
|
L 94.000000 627.538269
|
|
L 34.000000 627.538269
|
|
L 4.000000 679.499817
|
|
L 34.000000 696.820312
|
|
L 64.000000 679.499817
|
|
L 94.000000 731.461304
|
|
L 154.000000 731.461304
|
|
L 154.000000 696.820312
|
|
L 184.000000 679.499817
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 627.538269 L 124.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 627.538269 L 94.000000 627.538269" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 34.000000 627.538269 L 64.000000 679.499817" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 627.538269 L 94.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 64.000000 679.499817 L 94.000000 662.179321" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 94.000000 627.538269 L 94.000000 662.179321" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 696.820312 L 94.000000 662.179321" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="34" y="665.179">0.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="64" y="647.859">1.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="94" y="699.82">2.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="717.141">3.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="665.179">4.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="647.859">5.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="613.218">6.1.6</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="595.897">7.1.6</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 939.307434
|
|
L 274.000000 939.307434
|
|
L 274.000000 904.666382
|
|
L 244.000000 887.345886
|
|
L 214.000000 870.025391
|
|
L 184.000000 887.345886
|
|
L 154.000000 835.384399
|
|
L 94.000000 835.384399
|
|
L 94.000000 870.025391
|
|
L 124.000000 887.345886
|
|
L 94.000000 939.307434
|
|
L 124.000000 991.268921
|
|
L 154.000000 973.948425
|
|
L 184.000000 991.268921
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 939.307434 L 244.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 939.307434 L 184.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 835.384399 L 124.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 939.307434 L 94.000000 939.307434" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 124.000000 887.345886 L 154.000000 904.666382" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 184.000000 887.345886 L 154.000000 904.666382" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 154.000000 973.948425 L 154.000000 904.666382" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="855.705">0.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="154" y="873.025">1.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="924.987">2.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="124" y="959.628">3.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="959.628">4.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="184" y="924.987">5.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="907.666">6.0.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="924.987">7.0.7</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 1043.230469
|
|
L 304.000000 1095.192017
|
|
L 334.000000 1077.871460
|
|
L 334.000000 1043.230469
|
|
L 334.000000 1008.589478
|
|
L 304.000000 991.268921
|
|
L 334.000000 939.307434
|
|
L 304.000000 887.345886
|
|
L 274.000000 904.666382
|
|
L 274.000000 939.307434
|
|
L 214.000000 939.307434
|
|
L 184.000000 991.268921
|
|
L 214.000000 1008.589478
|
|
L 214.000000 1043.230469
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 1043.230469 L 334.000000 1043.230469" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 1043.230469 L 304.000000 991.268921" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 939.307434 L 274.000000 939.307434" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 1043.230469 L 214.000000 939.307434" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 939.307434 L 274.000000 973.948425" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 304.000000 991.268921 L 274.000000 973.948425" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 214.000000 1008.589478 L 274.000000 973.948425" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="924.987">0.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="959.628">1.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="959.628">2.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="214" y="976.948">3.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="1028.91">4.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="1011.59">5.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="1028.91">6.1.7</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="1063.55">7.1.7</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 107.923035
|
|
L 544.000000 159.884521
|
|
L 574.000000 177.205017
|
|
L 604.000000 159.884521
|
|
L 634.000000 142.564087
|
|
L 634.000000 107.923035
|
|
L 694.000000 107.923035
|
|
L 724.000000 55.961548
|
|
L 694.000000 38.641052
|
|
L 664.000000 55.961548
|
|
L 634.000000 4.000000
|
|
L 574.000000 4.000000
|
|
L 574.000000 38.641052
|
|
L 544.000000 55.961548
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 107.923035 L 604.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 107.923035 L 634.000000 107.923035" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 694.000000 107.923035 L 664.000000 55.961548" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 107.923035 L 634.000000 4.000000" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 664.000000 55.961548 L 634.000000 73.282104" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 634.000000 107.923035 L 634.000000 73.282104" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 38.641052 L 634.000000 73.282104" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="694" y="76.282">0.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="664" y="93.6025">1.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="634" y="41.6411">2.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="24.3205">3.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="76.282">4.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="93.6025">5.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="604" y="128.244">6.0.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="145.564">7.0.8</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 107.923035
|
|
L 394.000000 107.923035
|
|
L 394.000000 142.564087
|
|
L 424.000000 159.884521
|
|
L 454.000000 177.205017
|
|
L 484.000000 159.884521
|
|
L 514.000000 211.846069
|
|
L 574.000000 211.846069
|
|
L 574.000000 177.205017
|
|
L 544.000000 159.884521
|
|
L 574.000000 107.923035
|
|
L 544.000000 55.961548
|
|
L 514.000000 73.281982
|
|
L 484.000000 55.961548
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 107.923035 L 424.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 107.923035 L 484.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 211.846069 L 544.000000 159.884521" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 107.923035 L 574.000000 107.923035" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 544.000000 159.884521 L 514.000000 142.563965" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 484.000000 159.884521 L 514.000000 142.563965" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 73.281982 L 514.000000 142.563965" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="197.526">0.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="180.205">1.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="128.244">2.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="93.6025">3.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="93.6025">4.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="128.244">5.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="145.564">6.1.8</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="128.244">7.1.8</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 627.538269
|
|
L 484.000000 575.576782
|
|
L 454.000000 592.897278
|
|
L 454.000000 627.538269
|
|
L 454.000000 662.179321
|
|
L 484.000000 679.499817
|
|
L 454.000000 731.461304
|
|
L 484.000000 783.422852
|
|
L 514.000000 766.102356
|
|
L 514.000000 731.461304
|
|
L 574.000000 731.461304
|
|
L 604.000000 679.499817
|
|
L 574.000000 662.179321
|
|
L 574.000000 627.538269
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 627.538269 L 454.000000 627.538269" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 627.538269 L 484.000000 679.499817" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 731.461304 L 514.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 627.538269 L 574.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 731.461304 L 514.000000 696.820312" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 484.000000 679.499817 L 514.000000 696.820312" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 662.179321 L 514.000000 696.820312" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="751.782">0.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="717.141">1.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="717.141">2.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="699.82">3.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="647.859">4.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="665.179">5.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="647.859">6.0.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="613.218">7.0.9</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 523.615234
|
|
L 604.000000 471.653687
|
|
L 574.000000 454.333221
|
|
L 544.000000 471.653687
|
|
L 514.000000 488.974213
|
|
L 514.000000 523.615234
|
|
L 454.000000 523.615234
|
|
L 424.000000 575.576782
|
|
L 454.000000 592.897278
|
|
L 484.000000 575.576782
|
|
L 514.000000 627.538269
|
|
L 574.000000 627.538269
|
|
L 574.000000 592.897278
|
|
L 604.000000 575.576782
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 523.615234 L 544.000000 471.653687" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 523.615234 L 514.000000 523.615234" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 523.615234 L 484.000000 575.576782" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 523.615234 L 514.000000 627.538269" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 484.000000 575.576782 L 514.000000 558.256226" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 523.615234 L 514.000000 558.256226" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 574.000000 592.897278 L 514.000000 558.256226" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="561.256">0.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="543.936">1.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="595.897">2.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="613.218">3.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="561.256">4.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="543.936">5.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="544" y="509.295">6.1.9</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="574" y="491.974">7.1.9</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 835.384399
|
|
L 364.000000 887.345886
|
|
L 394.000000 904.666382
|
|
L 424.000000 887.345886
|
|
L 454.000000 870.025391
|
|
L 454.000000 835.384399
|
|
L 514.000000 835.384399
|
|
L 544.000000 783.422852
|
|
L 514.000000 766.102356
|
|
L 484.000000 783.422852
|
|
L 454.000000 731.461304
|
|
L 394.000000 731.461304
|
|
L 394.000000 766.102356
|
|
L 364.000000 783.422852
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 835.384399 L 424.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 835.384399 L 454.000000 835.384399" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 514.000000 835.384399 L 484.000000 783.422852" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 835.384399 L 454.000000 731.461304" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 484.000000 783.422852 L 454.000000 800.743347" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 454.000000 835.384399 L 454.000000 800.743347" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 394.000000 766.102356 L 454.000000 800.743347" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="514" y="803.743">0.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="484" y="821.064">1.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="454" y="769.102">2.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="751.782">3.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="803.743">4.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="821.064">5.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="424" y="855.705">6.0.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="394" y="873.025">7.0.10</text>
|
|
<path style="fill: none; stroke: black; stroke-width: 4.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 835.384399
|
|
L 214.000000 835.384399
|
|
L 214.000000 870.025391
|
|
L 244.000000 887.345886
|
|
L 274.000000 904.666382
|
|
L 304.000000 887.345886
|
|
L 334.000000 939.307434
|
|
L 394.000000 939.307434
|
|
L 394.000000 904.666382
|
|
L 364.000000 887.345886
|
|
L 394.000000 835.384399
|
|
L 364.000000 783.422852
|
|
L 334.000000 800.743347
|
|
L 304.000000 783.422852
|
|
z" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 835.384399 L 244.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 835.384399 L 304.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 939.307434 L 364.000000 887.345886" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 274.000000 835.384399 L 394.000000 835.384399" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 364.000000 887.345886 L 334.000000 870.025391" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 304.000000 887.345886 L 334.000000 870.025391" />
|
|
<path style="fill: none; stroke: rgba(0,0,0,0.2); stroke-width: 2.000000; stroke-linejoin: round; stroke-linecap: round; " d="M 334.000000 800.743347 L 334.000000 870.025391" />
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="924.987">0.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="334" y="907.666">1.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="855.705">2.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="364" y="821.064">3.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="821.064">4.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="304" y="855.705">5.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="274" y="873.025">6.1.10</text>
|
|
<text style="fill: black; font-family: Sans; font-size: 10px; text-anchor: middle; text-align: center; " x="244" y="855.705">7.1.10</text>
|
|
</svg>
|