schema_generator 0.1.1

schema_generator is a Rust crate initially created for parsing XML files containing forestry data and generating corresponding Rust structs. It parses XML documents and automatically generates Rust data structures that map XML elements to fields, including attributes, child elements, and text content. It integrates with the serde library for serialization and deserialization. While it was originally designed for forestry-related XML data, it can be used with any XML data structure, making it a versatile tool for developers working with XML. Additionally, schema_generator supports JSON to XML conversion.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by ForestKit Application 12 Dec 24 05:07 UTC-->
<ForestPropertyData xmlns="http://standardit.tapio.fi/schemas/forestData" xmlns:re="http://standardit.tapio.fi/schemas/forestData/realEstate" xmlns:ci="http://standardit.tapio.fi/schemas/forestData/contactInformation" xmlns:st="http://standardit.tapio.fi/schemas/forestData/Stand" xmlns:ts="http://standardit.tapio.fi/schemas/forestData/treeStand" xmlns:sd="http://standardit.tapio.fi/schemas/forestData/stemDistribution" xmlns:sds="http://standardit.tapio.fi/schemas/forestData/stemDistributionStratum" xmlns:tst="http://standardit.tapio.fi/schemas/forestData/treeStratum" xmlns:dts="http://standardit.tapio.fi/schemas/forestData/deadTreeStrata" xmlns:tss="http://standardit.tapio.fi/schemas/forestData/treeStandSummary" xmlns:op="http://standardit.tapio.fi/schemas/forestData/operation" xmlns:sf="http://standardit.tapio.fi/schemas/forestData/specialFeature" xmlns:sfb="http://standardit.tapio.fi/schemas/forestData/specialFeatureBase" xmlns:gdt="http://standardit.tapio.fi/schemas/forestData/common/geometricDataTypes" xmlns:cdd="http://standardit.tapio.fi/schemas/forestData/commondistributiondata" xmlns:co="http://standardit.tapio.fi/schemas/forestData/common" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink">
  <re:RealEstates>
    <re:RealEstate id="80164">
      <re:MunicipalityNumber>698</re:MunicipalityNumber>
      <re:AreaNumber>893</re:AreaNumber>
      <re:GroupNumber>15</re:GroupNumber>
      <re:UnitNumber>2</re:UnitNumber>
      <re:RealEstateName>698-893-15-2</re:RealEstateName>
      <re:Parcels>
        <re:Parcel id="0">
          <re:ParcelNumber>0</re:ParcelNumber>
          <st:Stands>
            <st:Stand id="1807281" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>22</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>1</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>1</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>6.9779</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426169.1267332 7371787.01375698 426252.93436551 7371678.61054749 426258.2879226 7371669.80144174 426261.63228948 7371664.72182598 426276.46299512 7371643.21671233 426276.46299512 7371643.21671233 426276.46264765 7371643.21624568 426324.9784337 7371585.38424645 426324.99237408 7371585.36762964 426325.01839851 7371585.38050253 426325.00026263 7371585.40395757 426325.12349563 7371585.4788297 426440.03870509 7371642.27842659 426641.36180168 7371628.60516273 426641.36180168 7371628.60516273 426641.84927387 7371629.44456993 426642.56649497 7371629.48142924 426341.62232371 7371893.84305144 426315.52480656 7371869.04655484 426270.24197014 7371883.47916098 426264.2207078 7371853.41635848 426220.23015508 7371837.96649692 426169.1267332 7371787.01375698</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364528102">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>4.3</tst:BasalArea>
                      <tst:StemCount>197</tst:StemCount>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                      <tst:Volume>32.1</tst:Volume>
                      <tst:SawLogPercent>18.1</tst:SawLogPercent>
                      <tst:SawLogVolume>5.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>25.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528103">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>72</tst:Age>
                      <tst:BasalArea>5.7</tst:BasalArea>
                      <tst:StemCount>136</tst:StemCount>
                      <tst:MeanDiameter>24.6</tst:MeanDiameter>
                      <tst:MeanHeight>19.2</tst:MeanHeight>
                      <tst:Volume>51.1</tst:Volume>
                      <tst:SawLogPercent>53.6</tst:SawLogPercent>
                      <tst:SawLogVolume>27.1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>23.4</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.8</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528104">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>58</tst:Age>
                      <tst:BasalArea>2.7</tst:BasalArea>
                      <tst:StemCount>114</tst:StemCount>
                      <tst:MeanDiameter>18.8</tst:MeanDiameter>
                      <tst:MeanHeight>16.2</tst:MeanHeight>
                      <tst:Volume>19.3</tst:Volume>
                      <tst:SawLogPercent>3.5</tst:SawLogPercent>
                      <tst:SawLogVolume>0.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>18.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528105">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>5.7</tst:BasalArea>
                      <tst:StemCount>143</tst:StemCount>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>48.3</tst:Volume>
                      <tst:SawLogPercent>54.1</tst:SawLogPercent>
                      <tst:SawLogVolume>25.9</tst:SawLogVolume>
                      <tst:PulpWoodVolume>22</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528106">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>4</tst:Storey>
                      <tst:Age>150</tst:Age>
                      <tst:BasalArea>0.3</tst:BasalArea>
                      <tst:StemCount>2</tst:StemCount>
                      <tst:MeanDiameter>49</tst:MeanDiameter>
                      <tst:MeanHeight>26</tst:MeanHeight>
                      <tst:Volume>3.7</tst:Volume>
                      <tst:SawLogPercent>32.7</tst:SawLogPercent>
                      <tst:SawLogVolume>1.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>2.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528107">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>4.3</tst:BasalArea>
                      <tst:StemCount>175</tst:StemCount>
                      <tst:MeanDiameter>19</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>37</tst:Volume>
                      <tst:SawLogPercent>24.6</tst:SawLogPercent>
                      <tst:SawLogVolume>8.9</tst:SawLogVolume>
                      <tst:PulpWoodVolume>27.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>70</tss:MeanAge>
                    <tss:BasalArea>23</tss:BasalArea>
                    <tss:StemCount>766</tss:StemCount>
                    <tss:MeanDiameter>21.8</tss:MeanDiameter>
                    <tss:MeanHeight>17.5</tss:MeanHeight>
                    <tss:Volume>191.6</tss:Volume>
                    <tss:SawLogVolume>69.4</tss:SawLogVolume>
                    <tss:PulpWoodVolume>118.7</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.1</tss:VolumeGrowth>
                    <tss:Value>5909.5</tss:Value>
                    <tss:ValueGrowthPercent>4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="352809420">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>4.33</tst:BasalArea>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352809421">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>72</tst:Age>
                      <tst:BasalArea>5.67</tst:BasalArea>
                      <tst:MeanDiameter>24.65</tst:MeanDiameter>
                      <tst:MeanHeight>19.24</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352809422">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>58</tst:Age>
                      <tst:BasalArea>2.67</tst:BasalArea>
                      <tst:MeanDiameter>18.75</tst:MeanDiameter>
                      <tst:MeanHeight>16.25</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352809423">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>5.67</tst:BasalArea>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352809424">
                      <tst:StratumNumber>4</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>4</tst:Storey>
                      <tst:Age>150</tst:Age>
                      <tst:BasalArea>0.33</tst:BasalArea>
                      <tst:MeanDiameter>49</tst:MeanDiameter>
                      <tst:MeanHeight>26</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352809425">
                      <tst:StratumNumber>5</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>4.33</tst:BasalArea>
                      <tst:MeanDiameter>19</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33296590" mainType="1">
                  <op:OperationType>11</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>41.9</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.08</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>6.7</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>10.01</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>3.52</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>9.39</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>12.19</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34256066" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>213.8</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.21</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>33.78</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>2.99</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>95.57</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>65.64</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>15.39</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34015625" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256067" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256078" mainType="2">
                  <op:OperationType>301</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256068" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1807280" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>21</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>1</st:DrainageState>
                <st:DevelopmentClass>04</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>1</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>5.3717</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426341.62635856 7371893.84668703 426642.5665846 7371629.48143384 426642.5665846 7371629.48143384 426699.31429154 7371632.39839161 426672.28625735 7371681.50119217 426689.98366366 7371702.62493862 426656.66550321 7371739.23651854 426618.50735098 7371761.83101031 426594.96990068 7371773.61814028 426609.64921845 7371793.33134781 426654.90119908 7371813.72795232 426736.21042217 7371800.18146804 426760.18582125 7371827.44845307 426510.0643321 7371948.69010392 426409.47433973 7371883.6125633 426365.8969021 7371916.90771393 426341.62635856 7371893.84668703</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364528048">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:StemCount>10</tst:StemCount>
                      <tst:MeanDiameter>36</tst:MeanDiameter>
                      <tst:MeanHeight>20</tst:MeanHeight>
                      <tst:Volume>9.4</tst:Volume>
                      <tst:SawLogPercent>60</tst:SawLogPercent>
                      <tst:SawLogVolume>5.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>3.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528049">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>55</tst:Age>
                      <tst:BasalArea>0.5</tst:BasalArea>
                      <tst:StemCount>18</tst:StemCount>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                      <tst:Volume>3.6</tst:Volume>
                      <tst:SawLogPercent>4.2</tst:SawLogPercent>
                      <tst:SawLogVolume>0.1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>3.4</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528050">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>55</tst:Age>
                      <tst:BasalArea>7</tst:BasalArea>
                      <tst:StemCount>225</tst:StemCount>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>62.3</tst:Volume>
                      <tst:SawLogPercent>35.3</tst:SawLogPercent>
                      <tst:SawLogVolume>21.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>39.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528051">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>65</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:StemCount>46</tst:StemCount>
                      <tst:MeanDiameter>26</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                      <tst:Volume>13.7</tst:Volume>
                      <tst:SawLogPercent>6.8</tst:SawLogPercent>
                      <tst:SawLogVolume>0.9</tst:SawLogVolume>
                      <tst:PulpWoodVolume>12.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528052">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:StemCount>30</tst:StemCount>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>8.6</tst:Volume>
                      <tst:SawLogPercent>42.4</tst:SawLogPercent>
                      <tst:SawLogVolume>3.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>4.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364528053">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>5.5</tst:BasalArea>
                      <tst:StemCount>150</tst:StemCount>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>44.2</tst:Volume>
                      <tst:SawLogPercent>48</tst:SawLogPercent>
                      <tst:SawLogVolume>21</tst:SawLogVolume>
                      <tst:PulpWoodVolume>22.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>60</tss:MeanAge>
                    <tss:BasalArea>17</tss:BasalArea>
                    <tss:StemCount>479</tss:StemCount>
                    <tss:MeanDiameter>23.2</tss:MeanDiameter>
                    <tss:MeanHeight>17.4</tss:MeanHeight>
                    <tss:Volume>141.7</tss:Volume>
                    <tss:SawLogVolume>52.8</tss:SawLogVolume>
                    <tss:PulpWoodVolume>86.9</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>0</tss:VolumeGrowth>
                    <tss:Value>4399.9</tss:Value>
                    <tss:ValueGrowthPercent>0</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>04</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="352756513">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:MeanDiameter>36</tst:MeanDiameter>
                      <tst:MeanHeight>20</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352756514">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>55</tst:Age>
                      <tst:BasalArea>0.5</tst:BasalArea>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352756515">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>55</tst:Age>
                      <tst:BasalArea>7</tst:BasalArea>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352756516">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>65</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:MeanDiameter>26</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352756517">
                      <tst:StratumNumber>4</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352756518">
                      <tst:StratumNumber>5</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>5.5</tst:BasalArea>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33296580" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>134.5</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.67</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>9.15</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>11.16</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>42.64</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>62.27</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>8.61</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34015626" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015628" mainType="2">
                  <op:OperationType>301</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015627" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1807279" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>20</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>2</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>20</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>3</st:Accessibility>
                <st:StandBasicDataDate>2024-11-24</st:StandBasicDataDate>
                <st:Area>0.8021</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426365.89943126 7371916.91011708 426409.47433973 7371883.6125633 426510.05490808 7371948.69467256 426498.24253312 7371954.42131202 426463.98541496 7372010.11399224 426365.89943126 7371916.91011708</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-18"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1807278" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>19</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>2</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>5.9544</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426197.33972002 7372097.82100465 426213.96529778 7371907.9293923 426219.59837983 7371908.02829686 426244.71872261 7371900.28361717 426271.33173421 7371888.92016765 426270.24200377 7371883.4793289 426315.52480656 7371869.04655484 426463.98497739 7372010.11470362 426452.41433182 7372028.92601921 426520.41073285 7372077.41681508 426448.15493368 7372133.79642131 426306.32403951 7372152.48894352 426249.36452264 7372146.84793469 426198.05454715 7372097.68200202 426197.33972002 7372097.82100465</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527992">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>0.3</tst:BasalArea>
                      <tst:StemCount>7</tst:StemCount>
                      <tst:MeanDiameter>28</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>2.9</tst:Volume>
                      <tst:SawLogPercent>60.8</tst:SawLogPercent>
                      <tst:SawLogVolume>1.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>1.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527993">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>12.7</tst:BasalArea>
                      <tst:StemCount>523</tst:StemCount>
                      <tst:MeanDiameter>18.4</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>116.8</tst:Volume>
                      <tst:SawLogPercent>22.6</tst:SawLogPercent>
                      <tst:SawLogVolume>25.5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>87.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>3.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527994">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>62</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:StemCount>129</tst:StemCount>
                      <tst:MeanDiameter>23.8</tst:MeanDiameter>
                      <tst:MeanHeight>20.2</tst:MeanHeight>
                      <tst:Volume>45.6</tst:Volume>
                      <tst:SawLogPercent>6</tst:SawLogPercent>
                      <tst:SawLogVolume>2.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>42.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.8</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>54</tss:MeanAge>
                    <tss:BasalArea>18</tss:BasalArea>
                    <tss:StemCount>659</tss:StemCount>
                    <tss:MeanDiameter>20.1</tss:MeanDiameter>
                    <tss:MeanHeight>18.6</tss:MeanHeight>
                    <tss:Volume>165.3</tss:Volume>
                    <tss:SawLogVolume>30</tss:SawLogVolume>
                    <tss:PulpWoodVolume>131.1</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.3</tss:VolumeGrowth>
                    <tss:Value>4028.1</tss:Value>
                    <tss:ValueGrowthPercent>5</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="352810878">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>0.33</tst:BasalArea>
                      <tst:MeanDiameter>28</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352810879">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>12.67</tst:BasalArea>
                      <tst:MeanDiameter>18.37</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352810880">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>62</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:MeanDiameter>23.8</tst:MeanDiameter>
                      <tst:MeanHeight>20.2</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33635930" mainType="1">
                  <op:OperationType>11</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>13.7</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.21</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>3.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.21</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>7.4</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.1</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34256080" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>227</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>3.86</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.5</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>47.44</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>83.31</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>88.3</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.59</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34015565" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256079" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256081" mainType="2">
                  <op:OperationType>301</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256082" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1805343" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>17</st:StandNumber>
                <st:MainGroup>8</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>2</st:FertilityClass>
                <st:SoilType>20</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>ER</st:DevelopmentClass>
                <st:StandQuality>20</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>5</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>3.5891</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426057.33762546 7372043.51282302 426057.66497831 7372043.43897346 426058.53370066 7372044.3949494 426062.27998203 7372042.39785065 426066.12652972 7372041.53009426 426066.70368489 7372041.43012924 426107.46326888 7372089.58453699 426135.61738637 7372109.82404269 426163.33421999 7372104.43381545 426197.33972002 7372097.82100465 426198.05454715 7372097.68200202 426205.04998209 7372104.38496897 426249.36452264 7372146.84793469 426249.36452264 7372146.84793469 426249.36452264 7372146.84793469 426306.32403951 7372152.48894352 426448.15493368 7372133.79642131 426520.41173841 7372077.41753221 426551.61650115 7372099.67194241 426552.09928933 7372099.02624773 426589.98750947 7372115.11113305 426589.98750949 7372115.11113305 426590.02110304 7372115.12539501 426590.42644426 7372115.05331854 426595.96569513 7372114.32371946 426601.27339059 7372113.12457254 426626.2924512 7372108.67598772 426687.58635176 7372094.4043924 426653.30083196 7372124.60542333 426641.72230108 7372138.3375554 426623.60166425 7372165.82239053 426612.30268064 7372167.34089946 426592.89814435 7372169.81154706 426568.22669775 7372171.99968287 426546.34080962 7372174.98424245 426497.16557616 7372184.94805064 426451.80950854 7372185.58240415 426451.78388795 7372185.54492376 426451.78388795 7372185.54492376 426450.64816083 7372183.88346823 426423.32064214 7372186.88355941 426384.85976675 7372188.76431097 426322.70558577 7372196.02631203 426305.45634178 7372196.04142166 426288.90665827 7372194.56140594 426253.57178884 7372190.9225191 426252.49171358 7372191.01473649 426073.16247647 7372147.92537088 426075.75810999 7372121.1128705 426069.29777787 7372095.02375482 426058.79127604 7372053.15322868 426057.33762546 7372043.51282302</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1805340" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>14</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>11</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:StandBasicDataDate>2024-11-24</st:StandBasicDataDate>
                <st:Area>7.8442</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">425904.18292895 7371843.38706286 425905.3673194 7371841.50586497 425911.76606467 7371831.34262733 425905.64787461 7371749.92120691 426002.59417768 7371680.23215252 426035.90204704 7371595.12696833 426158.49774774 7371548.44667385 426187.53780397 7371600.31560416 426226.47384896 7371578.22854592 426246.631702 7371543.47933674 426282.17648904 7371542.53826098 426314.75577747 7371574.36955958 426325.45168387 7371584.820137 426276.46264765 7371643.21624568 426276.46299512 7371643.21671233 426276.46299512 7371643.21671233 426261.63228948 7371664.72182598 426258.2879226 7371669.80144174 426252.93436551 7371678.61054749 426169.1267332 7371787.01375698 426085.60285142 7371895.06109232 426083.45860417 7371897.83505876 426060.6624293 7371882.65039482 426026.7777489 7371859.95622613 426019.08817607 7371854.80626522 425991.0958473 7371842.39164401 425985.56268087 7371882.01385817 425973.2532405 7371881.6183777 425963.15038451 7371881.29383164 425912.67565525 7371865.53044727 425904.18292895 7371843.38706286</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527968">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>0.7</tst:BasalArea>
                      <tst:StemCount>22</tst:StemCount>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                      <tst:Volume>4.7</tst:Volume>
                      <tst:SawLogPercent>4.9</tst:SawLogPercent>
                      <tst:SawLogVolume>0.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>4.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527969">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>84</tst:Age>
                      <tst:BasalArea>4.3</tst:BasalArea>
                      <tst:StemCount>104</tst:StemCount>
                      <tst:MeanDiameter>24.8</tst:MeanDiameter>
                      <tst:MeanHeight>18.8</tst:MeanHeight>
                      <tst:Volume>38.1</tst:Volume>
                      <tst:SawLogPercent>58.3</tst:SawLogPercent>
                      <tst:SawLogVolume>22</tst:SawLogVolume>
                      <tst:PulpWoodVolume>15.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527970">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:StemCount>195</tst:StemCount>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>49.7</tst:Volume>
                      <tst:SawLogPercent>39.1</tst:SawLogPercent>
                      <tst:SawLogVolume>19.1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>29.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527971">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:StemCount>127</tst:StemCount>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>42.7</tst:Volume>
                      <tst:SawLogPercent>56.2</tst:SawLogPercent>
                      <tst:SawLogVolume>23.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>18.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527972">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>5.7</tst:BasalArea>
                      <tst:StemCount>132</tst:StemCount>
                      <tst:MeanDiameter>25</tst:MeanDiameter>
                      <tst:MeanHeight>20</tst:MeanHeight>
                      <tst:Volume>50.2</tst:Volume>
                      <tst:SawLogPercent>6.5</tst:SawLogPercent>
                      <tst:SawLogVolume>3.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>46.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527973">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>3.7</tst:BasalArea>
                      <tst:StemCount>168</tst:StemCount>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                      <tst:Volume>29.6</tst:Volume>
                      <tst:SawLogPercent>19.6</tst:SawLogPercent>
                      <tst:SawLogVolume>5.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>23.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.8</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>70</tss:MeanAge>
                    <tss:BasalArea>25.3</tss:BasalArea>
                    <tss:StemCount>748</tss:StemCount>
                    <tss:MeanDiameter>22.7</tss:MeanDiameter>
                    <tss:MeanHeight>18</tss:MeanHeight>
                    <tss:Volume>215</tss:Volume>
                    <tss:SawLogVolume>73.9</tss:SawLogVolume>
                    <tss:PulpWoodVolume>138</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>3.9</tss:VolumeGrowth>
                    <tss:Value>6407.1</tss:Value>
                    <tss:ValueGrowthPercent>3.2</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-19">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="356764615">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>0.67</tst:BasalArea>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764616">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>84</tst:Age>
                      <tst:BasalArea>4.33</tst:BasalArea>
                      <tst:MeanDiameter>24.77</tst:MeanDiameter>
                      <tst:MeanHeight>18.77</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764617">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764618">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764619">
                      <tst:StratumNumber>4</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>5.67</tst:BasalArea>
                      <tst:MeanDiameter>25</tst:MeanDiameter>
                      <tst:MeanHeight>20</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764620">
                      <tst:StratumNumber>5</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>3.67</tst:BasalArea>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33635932" mainType="1">
                  <op:OperationType>11</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>64.7</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.2</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>5.5</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>35.91</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>4.01</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>8.67</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>8.48</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34256084" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>208.1</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.62</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>23.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>10.2</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>102.8</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>62.22</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>8.95</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34256086" mainType="2">
                  <op:OperationType>300</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015564" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256083" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256085" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1805339" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>13</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>1</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>1</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>3.3558</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426552.09928933 7372099.02624773 426900.15904543 7371801.32718562 426944.34698337 7371861.50815216 426937.22269228 7371867.9876694 426688.55761135 7372094.17825753 426687.58635176 7372094.4043924 426626.2924512 7372108.67598772 426601.27339059 7372113.12457254 426590.02110304 7372115.12539501 426589.98750947 7372115.11113305 426552.09928933 7372099.02624773</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527952">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>40</tst:Age>
                      <tst:BasalArea>2.8</tst:BasalArea>
                      <tst:StemCount>199</tst:StemCount>
                      <tst:MeanDiameter>14.7</tst:MeanDiameter>
                      <tst:MeanHeight>11.3</tst:MeanHeight>
                      <tst:Volume>14.4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>13.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.5</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527953">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>0.8</tst:BasalArea>
                      <tst:StemCount>34</tst:StemCount>
                      <tst:MeanDiameter>18.7</tst:MeanDiameter>
                      <tst:MeanHeight>12.3</tst:MeanHeight>
                      <tst:Volume>4.3</tst:Volume>
                      <tst:SawLogPercent>17.5</tst:SawLogPercent>
                      <tst:SawLogVolume>0.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>3.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527954">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>58</tst:Age>
                      <tst:BasalArea>14.5</tst:BasalArea>
                      <tst:StemCount>552</tst:StemCount>
                      <tst:MeanDiameter>19</tst:MeanDiameter>
                      <tst:MeanHeight>12.8</tst:MeanHeight>
                      <tst:Volume>91.9</tst:Volume>
                      <tst:SawLogPercent>29.7</tst:SawLogPercent>
                      <tst:SawLogVolume>26.5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>62.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527955">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>0.8</tst:BasalArea>
                      <tst:StemCount>58</tst:StemCount>
                      <tst:MeanDiameter>14.7</tst:MeanDiameter>
                      <tst:MeanHeight>12.3</tst:MeanHeight>
                      <tst:Volume>5</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>4.4</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>58</tss:MeanAge>
                    <tss:BasalArea>18.8</tss:BasalArea>
                    <tss:StemCount>843</tss:StemCount>
                    <tss:MeanDiameter>18.2</tss:MeanDiameter>
                    <tss:MeanHeight>12.5</tss:MeanHeight>
                    <tss:Volume>115.5</tss:Volume>
                    <tss:SawLogVolume>27.2</tss:SawLogVolume>
                    <tss:PulpWoodVolume>83.9</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.9</tss:VolumeGrowth>
                    <tss:Value>3053</tss:Value>
                    <tss:ValueGrowthPercent>5.1</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="352802931">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>40</tst:Age>
                      <tst:BasalArea>2.75</tst:BasalArea>
                      <tst:MeanDiameter>14.73</tst:MeanDiameter>
                      <tst:MeanHeight>11.27</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352802932">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>0.75</tst:BasalArea>
                      <tst:MeanDiameter>18.67</tst:MeanDiameter>
                      <tst:MeanHeight>12.33</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352802933">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>58</tst:Age>
                      <tst:BasalArea>14.5</tst:BasalArea>
                      <tst:MeanDiameter>19.03</tst:MeanDiameter>
                      <tst:MeanHeight>12.76</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352802934">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>0.75</tst:BasalArea>
                      <tst:MeanDiameter>14.67</tst:MeanDiameter>
                      <tst:MeanHeight>12.33</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33296235" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2044</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>202.4</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.4</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>86.63</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>16.8</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>6.27</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>11.13</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>80.96</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34015638" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2045</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015639" mainType="2">
                  <op:OperationType>301</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2045</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015563" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2044</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1805336" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>12</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>2</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>9</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>22</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>6.73</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426594.96990068 7371773.61814028 426618.50735098 7371761.83101031 426656.66550321 7371739.23651854 426689.98366366 7371702.62493862 426672.28625735 7371681.50119217 426699.31429154 7371632.39839161 426641.84927387 7371629.44456993 426632.48080817 7371613.31255422 426626.9144914 7371571.76725316 426616.46769719 7371543.00666891 426634.79361683 7371531.35614614 426673.71906398 7371537.77615794 426732.01106732 7371487.10375772 426773.33958357 7371491.16400385 426773.72945587 7371491.3452556 426758.68474954 7371506.67418427 426724.91081181 7371537.09425693 426725.42804304 7371539.91319992 426729.15654953 7371560.23395043 426735.88661753 7371561.06205754 426768.24495569 7371577.03309718 426772.73668455 7371579.7845096 426787.12430663 7371612.95410024 426793.64675003 7371628.46053962 426796.59897603 7371635.47921262 426796.59897641 7371635.47921283 426796.59897778 7371635.47921607 426796.98423326 7371635.68589732 426798.62323002 7371639.46459762 426811.09642611 7371643.2568423 426817.25638767 7371646.56158947 426817.25638801 7371646.5615893 426817.25638878 7371646.56158971 426863.20330596 7371623.55710808 426887.90732987 7371593.41921226 426891.97023698 7371590.34487782 426919.5967463 7371582.8408743 426940.3775002 7371563.4511254 426931.42659913 7371644.91080236 426931.70276605 7371645.6140787 426931.57396509 7371646.66655968 426931.57396602 7371646.66656206 426931.57396575 7371646.66656427 426945.5080791 7371682.53439906 426950.75589321 7371696.04305193 426979.77566113 7371706.05435009 426980.83868484 7371706.42108135 426980.83868498 7371706.42108134 426980.83868624 7371706.42108178 427007.63025566 7371704.97426254 427007.53039701 7371703.99153419 427038.53560447 7371732.54070233 426956.07225761 7371732.11156274 426955.01292441 7371733.03252029 426955.01292412 7371733.03252043 426948.47130868 7371738.71965849 426909.69281816 7371772.43363178 426904.61967162 7371776.81186102 426880.92059861 7371797.26494967 426870.43067468 7371787.69164944 426860.40824572 7371778.54508913 426858.86864979 7371779.62288184 426760.18582125 7371827.44845307 426736.21042217 7371800.18146804 426654.90119908 7371813.72795232 426609.64921845 7371793.33134781 426594.96990068 7371773.61814028</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1805334" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>10</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>22</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>3.9564</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426724.91081285 7371537.09426146 426773.93967189 7371492.93448527 426776.55135591 7371492.8524978 426791.01632396 7371499.38200454 426853.48552938 7371421.42139189 426861.23445105 7371423.75836949 426900.17042269 7371437.8629041 426913.30853084 7371448.01458254 426914.20062237 7371490.4592522 426916.69201261 7371490.22689994 426966.75388771 7371485.76778981 426966.98512419 7371485.53694314 426970.58920127 7371485.20088947 426986.5764877 7371484.70250202 426982.31133644 7371517.22802932 426983.42881037 7371548.12273231 427009.27856441 7371705.60119814 427007.53039701 7371703.99153419 427007.63025566 7371704.97426254 426980.83868624 7371706.42108178 426980.83868498 7371706.42108134 426980.83868498 7371706.42108134 426980.83868484 7371706.42108135 426979.77566113 7371706.05435009 426950.75589321 7371696.04305193 426945.5080791 7371682.53439906 426931.57396575 7371646.66656427 426931.57396602 7371646.66656206 426931.57396509 7371646.66655968 426931.70276605 7371645.6140787 426931.42659913 7371644.91080236 426940.3775002 7371563.4511254 426919.5967463 7371582.8408743 426919.59674572 7371582.84087445 426919.59674561 7371582.84087354 426889.98547867 7371590.88399556 426863.20330738 7371623.55710428 426817.25638801 7371646.5615893 426817.25638767 7371646.56158947 426811.09642611 7371643.2568423 426796.98423326 7371635.68589732 426796.59897778 7371635.47921607 426796.59897641 7371635.47921283 426796.59897641 7371635.47921283 426793.64675003 7371628.46053962 426787.12430663 7371612.95410024 426787.12430662 7371612.9541002 426773.32309322 7371580.14371568 426772.73668455 7371579.7845096 426768.24495569 7371577.03309718 426743.75147458 7371562.02981705 426735.88661753 7371561.06205754 426729.15654953 7371560.23395043 426724.91081285 7371537.09426146</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33291775" mainType="2">
                  <op:OperationType>401</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1805253" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>9</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>11</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>4.69</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">425792.71579198 7372043.52111732 425830.09580749 7371953.79975478 425896.42323219 7371947.3777231 425968.92474086 7371940.98548945 426029.12709227 7371947.66600102 426031.34319684 7371946.45157621 426031.34319684 7371946.45157621 426031.40747614 7371946.45840591 426031.43658495 7371946.40039961 426069.72694629 7371925.41773723 426170.52873464 7371907.16712464 426213.96526796 7371907.92939178 426197.33972002 7372097.82100465 426135.61738637 7372109.82404269 426107.46326888 7372089.58453699 426066.70368489 7372041.43012924 426062.83994093 7372042.09934379 426058.53370066 7372044.3949494 426057.31692331 7372043.05596043 426056.46541593 7372043.20344716 426030.87274417 7372018.60210967 425976.21402885 7372018.95438236 425976.08997035 7372018.98813329 425974.9998748 7372018.80544809 425845.91613963 7372050.04921268 425792.71579198 7372043.52111732</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527844">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>3.7</tst:BasalArea>
                      <tst:StemCount>112</tst:StemCount>
                      <tst:MeanDiameter>21.9</tst:MeanDiameter>
                      <tst:MeanHeight>17.7</tst:MeanHeight>
                      <tst:Volume>28.7</tst:Volume>
                      <tst:SawLogPercent>5.8</tst:SawLogPercent>
                      <tst:SawLogVolume>1.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>26.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527845">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>71</tst:Age>
                      <tst:BasalArea>15.3</tst:BasalArea>
                      <tst:StemCount>539</tst:StemCount>
                      <tst:MeanDiameter>19.7</tst:MeanDiameter>
                      <tst:MeanHeight>16.6</tst:MeanHeight>
                      <tst:Volume>125.3</tst:Volume>
                      <tst:SawLogPercent>33.7</tst:SawLogPercent>
                      <tst:SawLogVolume>41.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>81</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527846">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>1.3</tst:BasalArea>
                      <tst:StemCount>51</tst:StemCount>
                      <tst:MeanDiameter>20</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                      <tst:Volume>9.6</tst:Volume>
                      <tst:SawLogPercent>3.3</tst:SawLogPercent>
                      <tst:SawLogVolume>0.3</tst:SawLogVolume>
                      <tst:PulpWoodVolume>9.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527847">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>90</tst:Age>
                      <tst:BasalArea>1.3</tst:BasalArea>
                      <tst:StemCount>26</tst:StemCount>
                      <tst:MeanDiameter>29</tst:MeanDiameter>
                      <tst:MeanHeight>21</tst:MeanHeight>
                      <tst:Volume>12.6</tst:Volume>
                      <tst:SawLogPercent>64</tst:SawLogPercent>
                      <tst:SawLogVolume>8</tst:SawLogVolume>
                      <tst:PulpWoodVolume>4.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>71</tss:MeanAge>
                    <tss:BasalArea>21.7</tss:BasalArea>
                    <tss:StemCount>728</tss:StemCount>
                    <tss:MeanDiameter>20.7</tss:MeanDiameter>
                    <tss:MeanHeight>17</tss:MeanHeight>
                    <tss:Volume>176.3</tss:Volume>
                    <tss:SawLogVolume>51.2</tss:SawLogVolume>
                    <tss:PulpWoodVolume>121.3</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>0</tss:VolumeGrowth>
                    <tss:Value>4952.1</tss:Value>
                    <tss:ValueGrowthPercent>0</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-19">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="356764575">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>3.67</tst:BasalArea>
                      <tst:MeanDiameter>21.91</tst:MeanDiameter>
                      <tst:MeanHeight>17.73</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764576">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>71</tst:Age>
                      <tst:BasalArea>15.33</tst:BasalArea>
                      <tst:MeanDiameter>19.74</tst:MeanDiameter>
                      <tst:MeanHeight>16.61</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764577">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>1.33</tst:BasalArea>
                      <tst:MeanDiameter>20</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764578">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>90</tst:Age>
                      <tst:BasalArea>1.33</tst:BasalArea>
                      <tst:MeanDiameter>29</tst:MeanDiameter>
                      <tst:MeanHeight>21</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33635931" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>167.2</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>1.67</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>8.03</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>30.77</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>41.13</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>80.93</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>4.51</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34015562" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015624" mainType="2">
                  <op:OperationType>301</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34015623" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801098" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>8</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>2</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>20</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>3</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>2.8471</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426158.54726533 7371548.53511622 426251.0252311 7371511.92334264 426347.9140725 7371480.11710933 426413.77306718 7371494.83814471 426468.73920839 7371372.51470027 426525.49564916 7371389.71208982 426672.7025629 7371318.66045806 426692.8509162 7371356.8830739 426687.54173022 7371389.88183444 426687.5313953 7371389.88689517 426505.01344738 7371430.07026886 426424.76302955 7371506.65567872 426389.87746335 7371524.92854766 426356.82215192 7371546.62818933 426314.74346213 7371574.37768131 426282.17648904 7371542.53826098 426246.631702 7371543.47933674 426226.47384896 7371578.22854592 426187.53780397 7371600.31560416 426158.54726533 7371548.53511622</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1801097" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>7</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>20</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>9.2865</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426315.61026109 7371573.80201448 426356.82215192 7371546.62818933 426389.87746335 7371524.92854766 426424.76302955 7371506.65567872 426505.01344738 7371430.07026886 426687.5313953 7371389.88689517 426687.54173022 7371389.88183444 426692.8509162 7371356.8830739 426646.88193438 7371269.6788723 426732.18239657 7371181.81759736 426770.2724892 7371217.9165961 426770.27248921 7371217.9165961 426804.45462766 7371250.31314938 426811.66324219 7371307.19997122 426837.85381547 7371361.68447358 426816.41877593 7371402.98266367 426770.78392051 7371490.91067982 426733.69967854 7371486.67247357 426733.06647456 7371487.20743606 426732.01106732 7371487.10375772 426691.23250462 7371522.55165144 426673.98897713 7371537.12061654 426636.10419288 7371531.02693067 426635.34311652 7371531.44677165 426634.79361683 7371531.35614614 426630.11125889 7371534.3328883 426616.71102159 7371541.72510485 426617.04817152 7371542.63763474 426616.46769719 7371543.00666891 426626.9144914 7371571.76725316 426632.06237736 7371610.18947925 426632.27643654 7371612.10089258 426632.33245362 7371612.20526808 426632.48080817 7371613.31255422 426638.35909664 7371623.43463982 426641.06751231 7371628.48123061 426610.94503701 7371630.66999185 426542.99515817 7371635.28407144 426439.55781406 7371641.73463245 426325.27970588 7371585.025133 426325.45168387 7371584.820137 426323.09555097 7371582.51803591 426315.61026109 7371573.80201448</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527796">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>1.5</tst:BasalArea>
                      <tst:StemCount>47</tst:StemCount>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                      <tst:Volume>11.1</tst:Volume>
                      <tst:SawLogPercent>48.3</tst:SawLogPercent>
                      <tst:SawLogVolume>5.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>5.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527797">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:StemCount>151</tst:StemCount>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>51.1</tst:Volume>
                      <tst:SawLogPercent>53.4</tst:SawLogPercent>
                      <tst:SawLogVolume>27</tst:SawLogVolume>
                      <tst:PulpWoodVolume>23.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527798">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>75</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:StemCount>36</tst:StemCount>
                      <tst:MeanDiameter>30</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>16.9</tst:Volume>
                      <tst:SawLogPercent>59</tst:SawLogPercent>
                      <tst:SawLogVolume>9.8</tst:SawLogVolume>
                      <tst:PulpWoodVolume>6.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527799">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>6.5</tst:BasalArea>
                      <tst:StemCount>289</tst:StemCount>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>56.3</tst:Volume>
                      <tst:SawLogPercent>17.3</tst:SawLogPercent>
                      <tst:SawLogVolume>9.5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>45.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>56</tss:MeanAge>
                    <tss:BasalArea>16</tss:BasalArea>
                    <tss:StemCount>523</tss:StemCount>
                    <tss:MeanDiameter>22.1</tss:MeanDiameter>
                    <tss:MeanHeight>17.2</tss:MeanHeight>
                    <tss:Volume>135.4</tss:Volume>
                    <tss:SawLogVolume>51.5</tss:SawLogVolume>
                    <tss:PulpWoodVolume>81.5</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.3</tss:VolumeGrowth>
                    <tss:Value>4314.6</tss:Value>
                    <tss:ValueGrowthPercent>4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="352754814">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>1.5</tst:BasalArea>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352754815">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352754816">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>75</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:MeanDiameter>30</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352754817">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>6.5</tst:BasalArea>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33291777" mainType="1">
                  <op:OperationType>3</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>5.1</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>1.4</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.9</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.2</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34015561" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256096" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256097" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>207.3</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>64.26</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>51.41</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>57.63</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>34</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34256098" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256099" mainType="2">
                  <op:OperationType>300</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801096" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>6</st:StandNumber>
                <st:MainGroup>2</st:MainGroup>
                <st:SubGroup>2</st:SubGroup>
                <st:FertilityClass>2</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>9</st:DrainageState>
                <st:DevelopmentClass>A0</st:DevelopmentClass>
                <st:StandQuality>31</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>4.4678</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426731.42859006 7371182.59399778 426752.32267917 7371078.54507269 426819.52218459 7371099.39935338 426865.80991682 7371217.76841502 426979.44489746 7371380.1515063 426985.15277595 7371483.84299149 426914.20062237 7371490.4592522 426913.30853084 7371448.01458255 426900.17042269 7371437.8629041 426853.61649151 7371420.99884847 426791.01632396 7371499.38200454 426772.68704957 7371490.86064078 426816.41877593 7371402.98266367 426837.85381547 7371361.68447358 426811.66324219 7371307.19997122 426810.11454958 7371248.26185877 426770.2724892 7371217.9165961 426770.2724892 7371217.9165961 426732.18239657 7371181.81759736 426731.42859006 7371182.59399778</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1801036" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>5</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>20</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>3</st:Accessibility>
                <st:StandBasicDataDate>2024-11-24</st:StandBasicDataDate>
                <st:Area>2.6767</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426451.44019129 7372185.59214593 426451.78388795 7372185.54492376 426451.80950854 7372185.58240415 426497.16557616 7372184.94805064 426546.34080962 7372174.98424245 426568.22669775 7372171.99968287 426592.89814435 7372169.81154706 426612.30268064 7372167.34089946 426623.27519221 7372165.86626556 426607.18386029 7372197.83166318 426598.2797086 7372218.95822554 426597.38584823 7372238.98132893 426600.26146017 7372361.8778833 426581.65101223 7372381.21338996 426533.74274926 7372370.89462473 426500.90452623 7372360.66426754 426466.83911817 7372353.05628056 426455.73870572 7372210.38685146 426454.68923333 7372204.92284862 426454.67506646 7372204.68609303 426454.64158377 7372204.67476506 426451.44019129 7372185.59214593</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-24">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="363014271">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>9</tst:BasalArea>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="363014272">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="363014273">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:MeanDiameter>20</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527784">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>9</tst:BasalArea>
                      <tst:StemCount>222</tst:StemCount>
                      <tst:MeanDiameter>24</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>71.3</tst:Volume>
                      <tst:SawLogPercent>54.3</tst:SawLogPercent>
                      <tst:SawLogVolume>38</tst:SawLogVolume>
                      <tst:PulpWoodVolume>32</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527785">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:StemCount>92</tst:StemCount>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>25.7</tst:Volume>
                      <tst:SawLogPercent>39.9</tst:SawLogPercent>
                      <tst:SawLogVolume>9.9</tst:SawLogVolume>
                      <tst:PulpWoodVolume>14.9</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527786">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:StemCount>215</tst:StemCount>
                      <tst:MeanDiameter>20</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                      <tst:Volume>40.7</tst:Volume>
                      <tst:SawLogPercent>2.6</tst:SawLogPercent>
                      <tst:SawLogVolume>1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>38.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>70</tss:MeanAge>
                    <tss:BasalArea>18</tss:BasalArea>
                    <tss:StemCount>528</tss:StemCount>
                    <tss:MeanDiameter>22.3</tss:MeanDiameter>
                    <tss:MeanHeight>16.3</tss:MeanHeight>
                    <tss:Volume>137.6</tss:Volume>
                    <tss:SawLogVolume>49</tss:SawLogVolume>
                    <tss:PulpWoodVolume>85.5</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>3.9</tss:VolumeGrowth>
                    <tss:Value>4121.9</tss:Value>
                    <tss:ValueGrowthPercent>3</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="34242794" mainType="1">
                  <op:OperationType>3</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>6.6</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.9</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>1.8</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.5</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.8</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34242795" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256064" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2040</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>196.1</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.75</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>23.14</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>47.65</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>73.34</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>32.75</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>16.47</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="34256065" mainType="2">
                  <op:OperationType>450</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2035</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256100" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="34256102" mainType="2">
                  <op:OperationType>300</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2041</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801035" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>4</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>11</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>8.6135</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">425918.82092418 7372309.29386873 425921.88513008 7372280.51368733 425923.18182168 7372272.44937508 425929.63556897 7372219.37001513 425935.7707229 7372204.82503273 425967.09524266 7372193.43794772 425981.23011873 7372188.29978485 425997.01348759 7372180.93754095 426035.77292314 7372167.13158418 426072.60968576 7372147.79256589 426073.16247647 7372147.92537088 426252.49171358 7372191.01473649 426253.57178884 7372190.9225191 426288.90665827 7372194.56140594 426305.45634178 7372196.04142166 426322.70558577 7372196.02631203 426384.85976675 7372188.76431097 426423.32064214 7372186.88355941 426450.64817621 7372183.88354834 426454.64158377 7372204.67476506 426454.67506646 7372204.68609303 426454.68923333 7372204.92284862 426455.73870572 7372210.38685146 426458.768646 7372249.52266267 426466.62375711 7372351.76626336 426449.20682241 7372348.35452026 426432.35200849 7372341.69103856 426384.27535844 7372336.51301148 426300.27575265 7372344.61233237 426218.35132396 7372360.04816591 426179.08360106 7372358.33476463 426135.86131332 7372354.13723123 426000.30299659 7372325.29828821 425918.82092418 7372309.29386873</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527749">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>3.2</tst:BasalArea>
                      <tst:StemCount>204</tst:StemCount>
                      <tst:MeanDiameter>15.6</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                      <tst:Volume>22.1</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>21.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527750">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>74</tst:Age>
                      <tst:BasalArea>4.2</tst:BasalArea>
                      <tst:StemCount>139</tst:StemCount>
                      <tst:MeanDiameter>21.1</tst:MeanDiameter>
                      <tst:MeanHeight>16.1</tst:MeanHeight>
                      <tst:Volume>32.8</tst:Volume>
                      <tst:SawLogPercent>40.2</tst:SawLogPercent>
                      <tst:SawLogVolume>13</tst:SawLogVolume>
                      <tst:PulpWoodVolume>19.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527751">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:StemCount>106</tst:StemCount>
                      <tst:MeanDiameter>20.5</tst:MeanDiameter>
                      <tst:MeanHeight>16.6</tst:MeanHeight>
                      <tst:Volume>24</tst:Volume>
                      <tst:SawLogPercent>39.6</tst:SawLogPercent>
                      <tst:SawLogVolume>9.4</tst:SawLogVolume>
                      <tst:PulpWoodVolume>14.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527752">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>1.2</tst:BasalArea>
                      <tst:StemCount>44</tst:StemCount>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                      <tst:Volume>10.3</tst:Volume>
                      <tst:SawLogPercent>44.6</tst:SawLogPercent>
                      <tst:SawLogVolume>4.4</tst:SawLogVolume>
                      <tst:PulpWoodVolume>5.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527753">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>1.8</tst:BasalArea>
                      <tst:StemCount>107</tst:StemCount>
                      <tst:MeanDiameter>16</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                      <tst:Volume>13.9</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>13.4</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527754">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>3</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:StemCount>68</tst:StemCount>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>16.1</tst:Volume>
                      <tst:SawLogPercent>14.2</tst:SawLogPercent>
                      <tst:SawLogVolume>2.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>13.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527755">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:StemCount>32</tst:StemCount>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>8.5</tst:Volume>
                      <tst:SawLogPercent>42.4</tst:SawLogPercent>
                      <tst:SawLogVolume>3.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>4.9</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>69</tss:MeanAge>
                    <tss:BasalArea>16.5</tss:BasalArea>
                    <tss:StemCount>700</tss:StemCount>
                    <tss:MeanDiameter>19.4</tss:MeanDiameter>
                    <tss:MeanHeight>16.4</tss:MeanHeight>
                    <tss:Volume>127.7</tss:Volume>
                    <tss:SawLogVolume>32.6</tss:SawLogVolume>
                    <tss:PulpWoodVolume>92.2</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.3</tss:VolumeGrowth>
                    <tss:Value>3382.6</tss:Value>
                    <tss:ValueGrowthPercent>4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-19">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="356764651">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>3.25</tst:BasalArea>
                      <tst:MeanDiameter>15.62</tst:MeanDiameter>
                      <tst:MeanHeight>15</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764652">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>74</tst:Age>
                      <tst:BasalArea>4.25</tst:BasalArea>
                      <tst:MeanDiameter>21.12</tst:MeanDiameter>
                      <tst:MeanHeight>16.06</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764653">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:MeanDiameter>20.5</tst:MeanDiameter>
                      <tst:MeanHeight>16.58</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764654">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>1.25</tst:BasalArea>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>16</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764655">
                      <tst:StratumNumber>4</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>1.75</tst:BasalArea>
                      <tst:MeanDiameter>16</tst:MeanDiameter>
                      <tst:MeanHeight>17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764656">
                      <tst:StratumNumber>5</tst:StratumNumber>
                      <tst:TreeSpecies>3</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:MeanDiameter>21</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="356764657">
                      <tst:StratumNumber>6</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>80</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1801034" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>3</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>04</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-29</st:StandBasicDataDate>
                <st:Area>6.4748</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426452.41433182 7372028.92601921 426498.24253312 7371954.42131202 426510.06433201 7371948.69010387 426510.0643321 7371948.69010392 426760.18582125 7371827.44845307 426760.18582125 7371827.44845307 426858.86864979 7371779.62288184 426858.86866238 7371779.62287304 426860.64563335 7371778.76173015 426870.43067468 7371787.69164944 426880.92059909 7371797.26495241 426904.61967162 7371776.81186102 426909.69281816 7371772.43363178 426948.47130868 7371738.71965849 426955.01292441 7371733.03252029 426955.0129257 7371733.03251918 426963.06513405 7371733.1259723 427000.76015398 7371732.34381562 427038.53560447 7371732.54070233 427037.39595425 7371731.49131178 427041.61760992 7371731.37364599 427122.75406794 7371734.98411752 427139.25954239 7371758.29004286 427124.4339475 7371773.89555967 426998.43236458 7371834.2610854 426937.22269228 7371867.9876694 426944.34698337 7371861.50815216 426900.15904543 7371801.32718562 426552.09928933 7372099.02624773 426551.61650115 7372099.67194241 426520.41173841 7372077.41753221 426520.41173841 7372077.41753221 426452.41433182 7372028.92601921</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="364527696">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>57</tst:Age>
                      <tst:BasalArea>10.2</tst:BasalArea>
                      <tst:StemCount>338</tst:StemCount>
                      <tst:MeanDiameter>20.5</tst:MeanDiameter>
                      <tst:MeanHeight>17.4</tst:MeanHeight>
                      <tst:Volume>84.8</tst:Volume>
                      <tst:SawLogPercent>30.5</tst:SawLogPercent>
                      <tst:SawLogVolume>25.5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>58.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527697">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>32</tst:Age>
                      <tst:BasalArea>0.8</tst:BasalArea>
                      <tst:StemCount>119</tst:StemCount>
                      <tst:MeanDiameter>11</tst:MeanDiameter>
                      <tst:MeanHeight>10.8</tst:MeanHeight>
                      <tst:Volume>4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>3.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527698">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>56</tst:Age>
                      <tst:BasalArea>6.2</tst:BasalArea>
                      <tst:StemCount>224</tst:StemCount>
                      <tst:MeanDiameter>19.9</tst:MeanDiameter>
                      <tst:MeanHeight>16.9</tst:MeanHeight>
                      <tst:Volume>50.7</tst:Volume>
                      <tst:SawLogPercent>32.2</tst:SawLogPercent>
                      <tst:SawLogVolume>16</tst:SawLogVolume>
                      <tst:PulpWoodVolume>33.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527699">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>47</tst:Age>
                      <tst:BasalArea>2.8</tst:BasalArea>
                      <tst:StemCount>165</tst:StemCount>
                      <tst:MeanDiameter>16.1</tst:MeanDiameter>
                      <tst:MeanHeight>11.8</tst:MeanHeight>
                      <tst:Volume>16.1</tst:Volume>
                      <tst:SawLogPercent>12.1</tst:SawLogPercent>
                      <tst:SawLogVolume>1.8</tst:SawLogVolume>
                      <tst:PulpWoodVolume>13.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="364527700">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>1.8</tst:BasalArea>
                      <tst:StemCount>56</tst:StemCount>
                      <tst:MeanDiameter>22.1</tst:MeanDiameter>
                      <tst:MeanHeight>19.1</tst:MeanHeight>
                      <tst:Volume>15.4</tst:Volume>
                      <tst:SawLogPercent>4.6</tst:SawLogPercent>
                      <tst:SawLogVolume>0.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>14.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>57</tss:MeanAge>
                    <tss:BasalArea>21.8</tss:BasalArea>
                    <tss:StemCount>901</tss:StemCount>
                    <tss:MeanDiameter>19.6</tss:MeanDiameter>
                    <tss:MeanHeight>16.4</tss:MeanHeight>
                    <tss:Volume>171</tss:Volume>
                    <tss:SawLogVolume>44.1</tss:SawLogVolume>
                    <tss:PulpWoodVolume>123.2</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>0</tss:VolumeGrowth>
                    <tss:Value>4679.4</tss:Value>
                    <tss:ValueGrowthPercent>0</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>04</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-10-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="352786058">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>57</tst:Age>
                      <tst:BasalArea>10.2</tst:BasalArea>
                      <tst:MeanDiameter>20.53</tst:MeanDiameter>
                      <tst:MeanHeight>17.37</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352786059">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>32</tst:Age>
                      <tst:BasalArea>0.8</tst:BasalArea>
                      <tst:MeanDiameter>11</tst:MeanDiameter>
                      <tst:MeanHeight>10.75</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352786060">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>56</tst:Age>
                      <tst:BasalArea>6.2</tst:BasalArea>
                      <tst:MeanDiameter>19.9</tst:MeanDiameter>
                      <tst:MeanHeight>16.94</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352786061">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>47</tst:Age>
                      <tst:BasalArea>2.8</tst:BasalArea>
                      <tst:MeanDiameter>16.14</tst:MeanDiameter>
                      <tst:MeanHeight>11.79</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="352786062">
                      <tst:StratumNumber>4</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>3</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>1.8</tst:BasalArea>
                      <tst:MeanDiameter>22.11</tst:MeanDiameter>
                      <tst:MeanHeight>19.11</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33294705" mainType="1">
                  <op:OperationType>5</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2024</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>159.9</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.16</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>15.99</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>11.19</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>27.34</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>71.48</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>33.74</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="33294709" mainType="2">
                  <op:OperationType>520</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
                <op:Operation id="33294711" mainType="2">
                  <op:OperationType>301</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Silviculture></op:Silviculture>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801033" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>2</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>ER</st:DevelopmentClass>
                <st:StandQuality>22</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-24</st:StandBasicDataDate>
                <st:Area>3.042</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">425829.08967572 7371953.31602807 425903.81500609 7371836.95551248 425905.3673194 7371841.50586497 425904.18292895 7371843.38706286 425912.67565525 7371865.53044727 425963.15038451 7371881.29383164 425973.2532405 7371881.6183777 425982.05453421 7371881.90114209 425985.56268087 7371882.01385817 425991.0958473 7371842.39164401 426019.08817607 7371854.80626522 426026.7777489 7371859.95622613 426060.6624293 7371882.65039482 426083.45860417 7371897.83505876 426085.60285142 7371895.06109232 426169.1267332 7371787.01375698 426220.23015508 7371837.96649692 426264.2207078 7371853.41635848 426271.33173421 7371888.92016765 426244.71872261 7371900.28361717 426219.59837983 7371908.02829686 426170.52873464 7371907.16712464 426069.72694629 7371925.41773723 426031.34319684 7371946.45157621 426031.34319684 7371946.45157621 426029.12709227 7371947.66600102 425968.92474086 7371940.98548945 425829.08967572 7371953.31602807</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1801032" realEstateId="80164" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>1</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>ER</st:DevelopmentClass>
                <st:StandQuality>22</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-24</st:StandBasicDataDate>
                <st:Area>4.0824</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">425792.42314074 7372043.60661982 425847.27187418 7372051.50614858 425894.1590562 7372041.27936116 425976.21402885 7372018.95438236 426030.87274417 7372018.60210967 426056.46541593 7372043.20344716 426056.46541593 7372043.20344716 426058.58280204 7372051.75386361 426058.79127604 7372053.15322868 426069.29777787 7372095.02375482 426075.75810999 7372121.1128705 426073.20561879 7372147.47971182 426072.60968576 7372147.79256589 426035.77292314 7372167.13158418 425990.34621865 7372183.31246353 425967.09524266 7372193.43794772 425935.7707229 7372204.82503273 425929.63556897 7372219.37001513 425923.18182168 7372272.44937508 425921.57686237 7372280.52188864 425918.56631491 7372310.41152524 425838.57673085 7372143.2187866 425792.42314074 7372043.60661982</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
          </st:Stands>
        </re:Parcel>
      </re:Parcels>
    </re:RealEstate>
  </re:RealEstates>
</ForestPropertyData>